blob: cc6668a174759a7dbae363f66a0810d54de6c4ae (
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
|
package com.thatgravyboat.skyblockhud.location;
import com.thatgravyboat.skyblockhud.api.events.ProfileSwitchedEvent;
import com.thatgravyboat.skyblockhud.api.events.SidebarLineUpdateEvent;
import com.thatgravyboat.skyblockhud.utils.Utils;
import net.minecraftforge.fml.common.eventhandler.SubscribeEvent;
public class IslandHandler {
public static int flightTime;
public static boolean hadFlightTime;
public static int redstone;
public static boolean hadRedstone;
@SubscribeEvent
public void onSidebarLineUpdate(SidebarLineUpdateEvent event) {
hadFlightTime = checkFlightDuration(event.formattedLine);
hadRedstone = checkRestone(event.formattedLine);
}
@SubscribeEvent
public void onProfileSwitch(ProfileSwitchedEvent event) {
flightTime = 0;
}
public static boolean checkFlightDuration(String formatedScoreboardLine) {
if (LocationHandler.getCurrentLocation() == Locations.YOURISLAND && Utils.removeColor(formatedScoreboardLine.toLowerCase().trim()).contains("flight duration:")) {
String timeString = formatedScoreboardLine.toLowerCase().replace("flight duration:", "").replace(" ", "");
String[] times = timeString.split(":");
if (times.length == 2) {
int s = 0;
try {
s += Integer.parseInt(times[0]) * 60;
} catch (NumberFormatException ignored) {}
try {
s += Integer.parseInt(times[1]);
} catch (NumberFormatException ignored) {}
flightTime = s - 1;
} else if (times.length == 3) {
int s = 0;
try {
s += Integer.parseInt(times[0]) * 3600;
} catch (NumberFormatException ignored) {}
try {
s += Integer.parseInt(times[1]) * 60;
} catch (NumberFormatException ignored) {}
try {
s += Integer.parseInt(times[2]);
} catch (NumberFormatException ignored) {}
flightTime = s - 1;
}
return true;
}
return false;
}
public static boolean checkRestone(String formatedScoreboardLine) {
if (LocationHandler.getCurrentLocation() == Locations.YOURISLAND) {
if (formatedScoreboardLine.toLowerCase().contains("redstone:")) return true;
try {
redstone = formatedScoreboardLine.toLowerCase().contains("redstone:") ? Integer.parseInt(Utils.removeWhiteSpaceAndRemoveWord(formatedScoreboardLine, "redstone:")) : 0;
} catch (Exception ignored) {}
}
return false;
}
}
|