blob: cfbfdc3243b2a4c0cc36c75a76be876b084392bc (
plain)
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
|
package com.thatgravyboat.skyblockhud.location;
import com.thatgravyboat.skyblockhud.api.events.LocationChangeEvent;
import com.thatgravyboat.skyblockhud.api.events.SidebarLineUpdateEvent;
import java.util.Locale;
import net.minecraftforge.common.MinecraftForge;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
public class LocationHandler {
private static Locations currentLocation = Locations.NONE;
@SubscribeEvent
public void onSidebarLineUpdate(SidebarLineUpdateEvent event) {
if (event.rawLine.contains("\u23E3")) {
String objectiveName = event.objective.getDisplayName().replaceAll("(?i)\\u00A7.", "");
if (objectiveName.toLowerCase(Locale.ENGLISH).endsWith("guest")) {
LocationHandler.setCurrentLocation(Locations.GUESTISLAND);
} else {
LocationHandler.handleLocation(event.formattedLine);
}
}
}
public static void setCurrentLocation(Locations location) {
currentLocation = location;
}
public static Locations getCurrentLocation() {
return currentLocation;
}
public static void handleLocation(String locationLine) {
String location = locationLine.replace(" ", "").toUpperCase(Locale.ENGLISH).trim();
if (location.startsWith("THECATACOMBS")) {
MinecraftForge.EVENT_BUS.post(new LocationChangeEvent(currentLocation, Locations.CATACOMBS));
currentLocation = Locations.CATACOMBS;
} else {
Locations locations = Locations.get(location.replaceAll("[^A-Za-z0-9]", ""));
MinecraftForge.EVENT_BUS.post(new LocationChangeEvent(currentLocation, locations));
currentLocation = locations;
}
}
}
|