Skip to content

Commit

Permalink
Fix waypoints parse int
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinthegreat1 committed May 13, 2024
1 parent 8316418 commit b78deac
Showing 1 changed file with 19 additions and 25 deletions.
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
package com.kevinthegreat.skyblockmod.waypoint;

import com.kevinthegreat.skyblockmod.mixins.CheckboxWidgetAccessor;
import it.unimi.dsi.fastutil.ints.Int2ObjectFunction;
import net.minecraft.client.MinecraftClient;
import net.minecraft.client.gui.DrawContext;
import net.minecraft.client.gui.Element;
import net.minecraft.client.gui.Selectable;
import net.minecraft.client.gui.widget.*;
import net.minecraft.text.Text;
import net.minecraft.util.math.BlockPos;
import org.apache.commons.lang3.math.NumberUtils;

import java.util.ArrayList;
import java.util.Arrays;
Expand Down Expand Up @@ -227,35 +227,28 @@ public void updateName(String name) {
}

public void updateX(String xString) {
if (!NumberUtils.isParsable(xString)) return;
int index = category.category.waypoints().indexOf(waypoint);
int x = Integer.parseInt(xString);
if (waypoint.pos.getX() == x) return;
waypoint = waypoint.withX(x);
if (index >= 0) {
category.category.waypoints().set(index, waypoint);
}
updateInt(xString, waypoint.pos.getX(), waypoint::withX);
}

public void updateY(String yString) {
if (!NumberUtils.isParsable(yString)) return;
int index = category.category.waypoints().indexOf(waypoint);
int y = Integer.parseInt(yString);
if (waypoint.pos.getY() == y) return;
waypoint = waypoint.withY(y);
if (index >= 0) {
category.category.waypoints().set(index, waypoint);
}
updateInt(yString, waypoint.pos.getY(), waypoint::withY);
}

public void updateZ(String zString) {
if (!NumberUtils.isParsable(zString)) return;
int index = category.category.waypoints().indexOf(waypoint);
int z = Integer.parseInt(zString);
if (waypoint.pos.getZ() == z) return;
waypoint = waypoint.withZ(z);
if (index >= 0) {
category.category.waypoints().set(index, waypoint);
updateInt(zString, waypoint.pos.getZ(), waypoint::withZ);
}

public void updateInt(String newValueString, int currentValue, Int2ObjectFunction<NamedWaypoint> wither) {
try {
int index = category.category.waypoints().indexOf(waypoint);
int newValue = Integer.parseInt(newValueString);
if (newValue == currentValue) return;
waypoint = wither.apply(newValue);
if (index >= 0) {
category.category.waypoints().set(index, waypoint);
}
} catch (NumberFormatException e) {
Waypoints.LOGGER.warn("[Skyblocker Waypoints] Failed to parse integer: {}", newValueString, e);
}
}

Expand All @@ -270,7 +263,8 @@ public void updateColor(String colorString) {
if (index >= 0) {
category.category.waypoints().set(index, waypoint);
}
} catch (NumberFormatException ignored) {
} catch (NumberFormatException e) {
Waypoints.LOGGER.error("[Skyblocker Waypoints] Failed to parse color: {}", colorString, e);
}
}

Expand Down

0 comments on commit b78deac

Please sign in to comment.