]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blob - src/main/java/com/irtimaled/bbor/common/BoundingBoxType.java
Upgrade to 1.14.2
[BoundingBoxOutlineReloaded.git] / src / main / java / com / irtimaled / bbor / common / BoundingBoxType.java
1 package com.irtimaled.bbor.common;
2
3 import java.util.HashMap;
4 import java.util.Map;
5
6 public class BoundingBoxType {
7     private static final Map<Integer, BoundingBoxType> structureTypeMap = new HashMap<>();
8
9     public static final BoundingBoxType WorldSpawn = register("World_Spawn");
10     public static final BoundingBoxType SpawnChunks = register("Spawn_Chunks");
11     public static final BoundingBoxType LazySpawnChunks = register("Lazy_Chunks");
12     public static final BoundingBoxType MobSpawner = register("Mob_Spawner");
13     public static final BoundingBoxType SlimeChunks = register("Slime_Chunks");
14     public static final BoundingBoxType AFKSphere = register("AFK Sphere");
15     public static final BoundingBoxType BiomeBorder = register("Biome Border");
16     public static final BoundingBoxType Custom = register("Custom");
17     public static final BoundingBoxType Beacon = register("Beacon");
18     public static final BoundingBoxType Conduit = register("Conduit");
19     public static final BoundingBoxType SpawnableBlocks = register("Spawnable Blocks");
20
21     public static final BoundingBoxType JungleTemple = register("Jungle_Pyramid");
22     public static final BoundingBoxType DesertTemple = register("Desert_Pyramid");
23     public static final BoundingBoxType WitchHut = register("Swamp_Hut");
24     public static final BoundingBoxType OceanMonument = register("Monument");
25     public static final BoundingBoxType Shipwreck = register("Shipwreck");
26     public static final BoundingBoxType OceanRuin = register("Ocean_Ruin");
27     public static final BoundingBoxType BuriedTreasure = register("Buried_Treasure");
28     public static final BoundingBoxType Stronghold = register("Stronghold");
29     public static final BoundingBoxType MineShaft = register("Mineshaft");
30     public static final BoundingBoxType NetherFortress = register("Fortress");
31     public static final BoundingBoxType EndCity = register("EndCity");
32     public static final BoundingBoxType Mansion = register("Mansion");
33     public static final BoundingBoxType Igloo = register("Igloo");
34     public static final BoundingBoxType PillagerOutpost = register("Pillager_Outpost");
35     public static final BoundingBoxType Village = register("Village");
36     public static final BoundingBoxType NetherFossil = register("Nether_Fossil");
37     public static final BoundingBoxType BastionRemnant = register("Bastion_Remnant");
38     public static final BoundingBoxType RuinedPortal = register("Ruined_Portal");
39
40     private static BoundingBoxType register(String name) {
41         return structureTypeMap.computeIfAbsent(name.hashCode(), k -> new BoundingBoxType(name));
42     }
43
44     public static void registerTypes() {
45         structureTypeMap.values().forEach(StructureProcessor::registerSupportedStructure);
46     }
47
48     public static BoundingBoxType getByNameHash(Integer nameHash) {
49         return structureTypeMap.get(nameHash);
50     }
51
52     private final String name;
53
54     private BoundingBoxType(String name) {
55         this.name = name;
56     }
57
58     public String getName() {
59         return name;
60     }
61
62     @Override
63     public int hashCode() {
64         return name.hashCode();
65     }
66
67     @Override
68     public boolean equals(Object obj) {
69         if (this == obj) return true;
70         if (obj == null || getClass() != obj.getClass()) return false;
71         BoundingBoxType other = (BoundingBoxType) obj;
72         return this.name.equals(other.name);
73     }
74 }