]> git.lizzy.rs Git - BoundingBoxOutlineReloaded.git/blob - src/main/java/com/irtimaled/bbor/common/BoundingBoxType.java
Allow colors to be configured
[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 VillageSpheres = register("Village Sphere");
37     public static final BoundingBoxType NetherFossil = register("Nether_Fossil");
38     public static final BoundingBoxType BastionRemnant = register("Bastion_Remnant");
39     public static final BoundingBoxType RuinedPortal = register("Ruined_Portal");
40
41     private static BoundingBoxType register(String name) {
42         BoundingBoxType type = structureTypeMap.computeIfAbsent(name.hashCode(), k -> new BoundingBoxType(name));
43         StructureProcessor.registerSupportedStructure(type);
44         return type;
45     }
46
47     public static BoundingBoxType getByNameHash(Integer nameHash) {
48         return structureTypeMap.get(nameHash);
49     }
50
51     private final String name;
52
53     private BoundingBoxType(String name) {
54         this.name = name;
55     }
56
57     public String getName() {
58         return name;
59     }
60
61     @Override
62     public int hashCode() {
63         return name.hashCode();
64     }
65
66     @Override
67     public boolean equals(Object obj) {
68         if (this == obj) return true;
69         if (obj == null || getClass() != obj.getClass()) return false;
70         BoundingBoxType other = (BoundingBoxType) obj;
71         return this.name.equals(other.name);
72     }
73 }