1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
|
package com.thatgravyboat.skyblockhud.location;
public enum Locations {
//ERROR LOCATIONS
DEFAULT("unknown", "Error", LocationCategory.ERROR),
NONE("none", "Unknown", LocationCategory.ERROR),
//ISLAND
YOURISLAND("yourisland", "Your Island", LocationCategory.ISLAND),
GUESTISLAND("guestisland", "Guest Island", LocationCategory.ISLAND),
MOULBERRYSISLAND(
"moulberryisland",
"Cool Dude Hub",
LocationCategory.ISLAND
),
//HUB
VILLAGE("village", "Village", LocationCategory.HUB),
AUCTIONHOUSE("auctionhouse", "Auction House", LocationCategory.HUB),
BAZAARALLEY("bazaaralley", "Bazaar Alley", LocationCategory.HUB),
BANK("bank", "Bank", LocationCategory.HUB),
FASHIONSHOP("fashionshop", "Fashion Shop", LocationCategory.HUB),
COLOSSEUM("colosseum", "Colosseum", LocationCategory.HUB),
COLOSSEUMARENA("colosseumarena", "Colosseum Arena", LocationCategory.HUB),
MOUNTAIN("mountain", "Mountain", LocationCategory.HUB),
HIGHLEVEL("highlevel", "High Level", LocationCategory.HUB),
WILDERNESS("wilderness", "Wilderness", LocationCategory.HUB),
FISHERMANSHUT("fishermanshut", "Fisherman's Hut", LocationCategory.HUB),
FLOWERHOUSE("flowerhouse", "Flower House", LocationCategory.HUB),
CANVASROOM("canvasroom", "Canvas Room", LocationCategory.HUB),
TAVERN("tavern", "Tavern", LocationCategory.HUB),
FOREST("forest", "Forest", LocationCategory.HUB),
RUINS("ruins", "Ruins", LocationCategory.HUB),
GRAVEYARD("graveyard", "Graveyard", LocationCategory.HUB),
COALMINE("coalmine", "Coal Mine", LocationCategory.HUB),
FARM("farm", "Farm", LocationCategory.HUB),
LIBRARY("library", "Library", LocationCategory.HUB),
COMMUNITYCENTER(
"communitycenter",
"Community Center",
LocationCategory.HUB
),
ELECTIONROOM("electionroom", "Election Room", LocationCategory.HUB),
BUILDERSHOUSE("buildershouse", "Builder's House", LocationCategory.HUB),
BLACKSMITH("blacksmith", "Blacksmith", LocationCategory.HUB),
FARMHOUSE("farmhouse", "Farmhouse", LocationCategory.HUB),
WIZARDTOWER("wizardtower", "Wizard Tower", LocationCategory.HUB),
//THE BARN
THEBARN("thebarn", "The Barn", LocationCategory.BARN),
WINDMILL("windmill", "Windmill", LocationCategory.BARN),
//MUSHROOM DESERT
MUSHROOMDESERT(
"mushroomdesert",
"Mushroom Desert",
LocationCategory.MUSHROOMDESERT
),
DESERTSETTLEMENT(
"desertsettlement",
"Desert Settlement",
LocationCategory.MUSHROOMDESERT
),
OASIS("oasis", "Oasis", LocationCategory.MUSHROOMDESERT),
MUSHROOMGORGE(
"mushroomgorge",
"Mushroom Gorge",
LocationCategory.MUSHROOMDESERT
),
SHEPHERDSKEEP(
"shepherdskeep",
"Shepherds Keep",
LocationCategory.MUSHROOMDESERT
),
JAKESHOUSE("jakeshouse", "Jake's House", LocationCategory.MUSHROOMDESERT),
TREASUREHUNTERCAMP(
"treasurehuntercamp",
"Treasure Hunter Camp",
LocationCategory.MUSHROOMDESERT
),
GLOWINGMUSHROOMCAVE(
"glowingmushroomcave",
"Glowing Mushroom Cave",
LocationCategory.MUSHROOMDESERT
),
TRAPPERSDEN("trappersden", "Trappers Den", LocationCategory.MUSHROOMDESERT),
OVERGROWNMUSHROOMCAVE(
"overgrownmushroomcave",
"Overgrown Mushroom Cave",
LocationCategory.MUSHROOMDESERT
),
//GOLD MINE
GOLDMINE("goldmine", "Gold Mine", LocationCategory.GOLDMINE),
//DEEP CAVERNS
DEEPCAVERNS("deepcaverns", "Deep Caverns", LocationCategory.DEEPCAVERNS),
GUNPOWDERMINES(
"gunpowdermines",
"Gunpowder Mines",
LocationCategory.DEEPCAVERNS
),
LAPISQUARRY("lapisquarry", "Lapis Quarry", LocationCategory.DEEPCAVERNS),
PIGMANSDEN("pigmansden", "Pigman's Den", LocationCategory.DEEPCAVERNS),
SLIMEHILL("slimehill", "Slimehill", LocationCategory.DEEPCAVERNS),
DIAMONDRESERVE(
"diamondreserve",
"Diamond Reserve",
LocationCategory.DEEPCAVERNS
),
OBSIDIANSANCTUARY(
"obsidiansanctuary",
"Obsidian Sanctuary",
LocationCategory.DEEPCAVERNS
),
//SPIDERS DEN
SPIDERSDEN("spidersden", "Spider's Den", LocationCategory.SPIDERSDEN),
//THE END
THEEND("theend", "The End", LocationCategory.THEEND),
DRAGONSNEST("dragonsnest", "Dragon's Nest", LocationCategory.THEEND),
VOIDSEPULTURE("voidsepulture", "Void Sepulture", LocationCategory.THEEND),
//PARK
HOWLINGCAVE("howlingcave", "Howling Cave", LocationCategory.PARK),
BIRCHPARK("birchpark", "Birch Park", LocationCategory.PARK),
SPRUCEWOODS("sprucewoods", "Spruce Woods", LocationCategory.PARK),
DARKTHICKET("darkthicket", "Dark Thicket", LocationCategory.PARK),
SAVANNAWOODLAND(
"savannawoodland",
"Savanna Woodland",
LocationCategory.PARK
),
JUNGLEISLAND("jungleisland", "Jungle Island", LocationCategory.PARK),
//BLAZING FORTRESS
BLAZINGFORTRESS(
"blazingfortress",
"Blazing Fortress",
LocationCategory.FORTRESS
),
//DUNGEONS
DUNGEONHUB("dungeonhub", "Dungeon Hub", LocationCategory.DUNGEONHUB),
CATACOMBS("catacombs", "The Catacombs", LocationCategory.DUNGEONHUB),
CATACOMBSENTRANCE(
"catacombsentrance",
"Catacombs Entrance",
LocationCategory.DUNGEONHUB
),
//JERRYISLAND
JERRYSWORKSHOP(
"jerrysworkshop",
"Jerry's Workshop",
LocationCategory.JERRY
),
JERRYPOND("jerrypond", "Jerry Pond", LocationCategory.JERRY),
//DWARVENMINES
THELIFT("thelift", "The Lift", LocationCategory.DWARVENMINES),
DWARVENVILLAGE(
"dwarvenvillage",
"Dwarven Village",
LocationCategory.DWARVENMINES
),
DWARVENMINES(
"dwarvenmines",
"Dwarven Mines",
LocationCategory.DWARVENMINES
),
LAVASPRINGS("lavasprings", "Lava Springs", LocationCategory.DWARVENMINES),
PALACEBRIDGE(
"palacebridge",
"Palace Bridge",
LocationCategory.DWARVENMINES
),
ROYALPALACE("royalpalace", "Royal Palace", LocationCategory.DWARVENMINES),
GRANDLIBRARY(
"grandlibrary",
"Grand Library",
LocationCategory.DWARVENMINES
),
ROYALQUARTERS(
"royalquarters",
"Royal Quarters",
LocationCategory.DWARVENMINES
),
BARRACKSOFHEROES(
"barracksofheroes",
"Barracks of Heroes",
LocationCategory.DWARVENMINES
),
HANGINGCOURT(
"hangingcourt",
"Hanging Court",
LocationCategory.DWARVENMINES
),
GREATICEWALL(
"greaticewall",
"Great Ice Wall",
LocationCategory.DWARVENMINES
),
GOBLINBURROWS(
"goblinburrows",
"Goblin Burrows",
LocationCategory.DWARVENMINES
),
FARRESERVE("farreserve", "Far Reserve", LocationCategory.DWARVENMINES),
CCMINECARTSCO(
"ccminecartco",
"Minecart Co.",
LocationCategory.DWARVENMINES
),
UPPERMINES("uppermines", "Upper Mines", LocationCategory.DWARVENMINES),
RAMPARTSQUARRY(
"rampartsquarry",
"Ramparts Quarry",
LocationCategory.DWARVENMINES
),
GATESTOTHEMINES(
"gatestothemines",
"Gates to The Mines",
LocationCategory.DWARVENMINES
),
FORGEBASIN("forgebasin", "Forge Basin", LocationCategory.DWARVENMINES),
THEFORGE("theforge", "The Forge", LocationCategory.DWARVENMINES),
CLIFFSIDEVEINS(
"cliffsideveins",
"Cliffside Veins",
LocationCategory.DWARVENMINES
),
DIVANSGATEWAY(
"divansgateway",
"Divan's Gateway",
LocationCategory.DWARVENMINES
),
THEMIST("themist", "The Mist", LocationCategory.DWARVENMINES),
ROYALMINES("royalmines", "Royal Mines", LocationCategory.DWARVENMINES),
ARISTOCRATPASSAGE(
"aristocratpassage",
"Aristocrat Passage",
LocationCategory.DWARVENMINES
),
MINERSGUILD("minersguild", "Miner's Guild", LocationCategory.DWARVENMINES),
//CRYSTALHOLLOWS
JUNGLE("jungle", "Jungle", LocationCategory.CRYSTALHOLLOWS),
MAMGAFIELDS("magmafields", "Magma Fields", LocationCategory.CRYSTALHOLLOWS),
GOBLINHOLDOUT(
"goblinholdout",
"Goblin Holdout",
LocationCategory.CRYSTALHOLLOWS
),
CRYSTALNUCLEUS(
"crystalnucleus",
"Crystal Nucleus",
LocationCategory.CRYSTALHOLLOWS
),
PERCURSORREMNANTS(
"precursorremnants",
"Precursor Remnants",
LocationCategory.CRYSTALHOLLOWS
),
MITHRILDEPOSITS(
"mithrildeposits",
"Mithril Deposits",
LocationCategory.CRYSTALHOLLOWS
);
private final String name;
private final String displayName;
private final LocationCategory category;
Locations(String name, String displayName, LocationCategory category) {
this.name = name;
this.displayName = displayName;
this.category = category;
}
public String getName() {
return this.name;
}
public String getDisplayName() {
return this.displayName;
}
public LocationCategory getCategory() {
return this.category;
}
public static Locations get(String id) {
try {
return Locations.valueOf(id.replace(" ", "").toUpperCase());
} catch (IllegalArgumentException ex) {
LocationHandler.reportUndocumentedLocation(id);
return DEFAULT;
}
}
@Override
public String toString() {
return this.name;
}
}
|