From 777bbd7ebb19f1312ae1e4fda9a43f29ca7606a0 Mon Sep 17 00:00:00 2001 From: Indyuce Date: Wed, 28 Aug 2019 21:36:19 +0200 Subject: [PATCH] improved DoubleData --- .../mmoitems/stat/type/DoubleStat.java | 28 ++++++------------- 1 file changed, 8 insertions(+), 20 deletions(-) diff --git a/src/main/java/net/Indyuce/mmoitems/stat/type/DoubleStat.java b/src/main/java/net/Indyuce/mmoitems/stat/type/DoubleStat.java index 9c4f4485..2bd098d1 100644 --- a/src/main/java/net/Indyuce/mmoitems/stat/type/DoubleStat.java +++ b/src/main/java/net/Indyuce/mmoitems/stat/type/DoubleStat.java @@ -157,40 +157,30 @@ public class DoubleStat extends ItemStat implements Upgradable { public class DoubleData extends StatData { private double min, max; - private boolean hasMax; - + public DoubleData() { } public DoubleData(String string) { - try { - String[] split = string.split("\\="); + String[] split = string.split("\\="); + if (split.length == 2) { min = Double.parseDouble(split[0]); max = Double.parseDouble(split[1]); - hasMax = true; - } catch (Exception e) { + } else min = Double.valueOf(string); - hasMax = false; - } } - // max not used if there is only one value public DoubleData(double value) { - this(value, 0, false); + this(value, 0); } - public DoubleData(double min, double max) { - this(min, max, true); - } - - private DoubleData(double min, double max, boolean hasMax) { + private DoubleData(double min, double max) { this.min = min; this.max = max; - this.hasMax = hasMax; } public boolean hasMax() { - return hasMax; + return max > min; } public double getMin() { @@ -203,12 +193,10 @@ public class DoubleStat extends ItemStat implements Upgradable { public void setMax(double value) { max = value; - hasMax = max > min; } public void setMin(double value) { min = value; - hasMax = max > min; } public void add(double value) { @@ -220,7 +208,7 @@ public class DoubleStat extends ItemStat implements Upgradable { } public double generateNewValue() { - return hasMax ? min + random.nextDouble() * (max - min) : min; + return hasMax() ? min + random.nextDouble() * (max - min) : min; } } }