diff options
author | nea <nea@nea.moe> | 2023-02-17 00:49:23 +0100 |
---|---|---|
committer | nea <nea@nea.moe> | 2023-02-17 00:49:23 +0100 |
commit | 6f7966056af411c7e195a48dc56264636731db8a (patch) | |
tree | 09ce12a8fae314598e3ced4175e05a39590d7c73 /src/main/java/com/thatgravyboat/skyblockhud/location | |
parent | dbf9bb7b21046bb39c8a389c0d8130b0dcff0068 (diff) | |
download | SkyblockHud-Death-Defied-6f7966056af411c7e195a48dc56264636731db8a.tar.gz SkyblockHud-Death-Defied-6f7966056af411c7e195a48dc56264636731db8a.tar.bz2 SkyblockHud-Death-Defied-6f7966056af411c7e195a48dc56264636731db8a.zip |
Cleanup percentage
Diffstat (limited to 'src/main/java/com/thatgravyboat/skyblockhud/location')
-rw-r--r-- | src/main/java/com/thatgravyboat/skyblockhud/location/IslandHandler.java | 48 |
1 files changed, 41 insertions, 7 deletions
diff --git a/src/main/java/com/thatgravyboat/skyblockhud/location/IslandHandler.java b/src/main/java/com/thatgravyboat/skyblockhud/location/IslandHandler.java index 223eaf0..a2d113d 100644 --- a/src/main/java/com/thatgravyboat/skyblockhud/location/IslandHandler.java +++ b/src/main/java/com/thatgravyboat/skyblockhud/location/IslandHandler.java @@ -1,10 +1,13 @@ package com.thatgravyboat.skyblockhud.location; +import com.thatgravyboat.skyblockhud.api.events.LocationChangeEvent; 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; +import java.util.Locale; + public class IslandHandler { public static int flightTime; @@ -13,29 +16,42 @@ public class IslandHandler { public static int redstone; public static boolean hadRedstone; + public static float cleanupPercentage; + public static boolean hadCleanupPercentage; + @SubscribeEvent public void onSidebarLineUpdate(SidebarLineUpdateEvent event) { hadFlightTime = checkFlightDuration(event.formattedLine); hadRedstone = checkRestone(event.formattedLine); + hadCleanupPercentage |= checkPlotClearPercentage(event.formattedLine); } @SubscribeEvent + public void onLocationChange(LocationChangeEvent event) { + hadCleanupPercentage = false; + } + + + @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:")) { + if (LocationHandler.getCurrentLocation().getCategory() == LocationCategory.ISLAND + && 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].replaceAll(",", "")) * 60; - } catch (NumberFormatException ignored) {} + } catch (NumberFormatException ignored) { + } try { s += Integer.parseInt(times[1].replaceAll(",", "")); - } catch (NumberFormatException ignored) {} + } catch (NumberFormatException ignored) { + } flightTime = s - 1; } else if (times.length == 3) { int s = 0; @@ -44,10 +60,12 @@ public class IslandHandler { } catch (NumberFormatException ignored) {} try { s += Integer.parseInt(times[1].replaceAll(",", "")) * 60; - } catch (NumberFormatException ignored) {} + } catch (NumberFormatException ignored) { + } try { s += Integer.parseInt(times[2].replaceAll(",", "")); - } catch (NumberFormatException ignored) {} + } catch (NumberFormatException ignored) { + } flightTime = s - 1; } return true; @@ -55,12 +73,28 @@ public class IslandHandler { return false; } + public static boolean checkPlotClearPercentage(String formatedScoreboardLine) { + if (LocationHandler.getCurrentLocation() == Locations.THEGARDEN) { + String lowered = formatedScoreboardLine.toLowerCase(Locale.ROOT); + if (lowered.contains("cleanup:")) { + try { + String s = Utils.removeWhiteSpaceAndRemoveWord(lowered, "cleanup:").replace("%", ""); + cleanupPercentage = Float.parseFloat(s); + return true; + } catch (Exception ignored) { + } + } + } + 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:").replaceAll(",", "")) : 0; - } catch (Exception ignored) {} + } catch (Exception ignored) { + } + return formatedScoreboardLine.toLowerCase().contains("redstone:"); } return false; } |