|
@@ -8,179 +8,61 @@ import java.nio.file.Files;
|
|
import java.nio.file.Paths;
|
|
import java.nio.file.Paths;
|
|
import java.util.TreeMap;
|
|
import java.util.TreeMap;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
+import me.hammerle.code.ISnuviLogger;
|
|
|
|
+import me.hammerle.code.Script;
|
|
|
|
+import me.hammerle.config.SnuviConfig;
|
|
|
|
+import me.hammerle.exceptions.SnuviException;
|
|
import me.km.dimensions.ModDimensions;
|
|
import me.km.dimensions.ModDimensions;
|
|
import me.km.exception.IllegalItemStackStringException;
|
|
import me.km.exception.IllegalItemStackStringException;
|
|
import me.km.utils.ItemStackUtils;
|
|
import me.km.utils.ItemStackUtils;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.math.Vec3d;
|
|
import net.minecraft.util.math.Vec3d;
|
|
|
|
|
|
-public class SimpleConfig
|
|
|
|
-{
|
|
|
|
- private Module m;
|
|
|
|
-
|
|
|
|
- private final TreeMap<String, String> conf;
|
|
|
|
- private File file;
|
|
|
|
-
|
|
|
|
- public SimpleConfig(Module m, String path, boolean load)
|
|
|
|
|
|
+public class SimpleConfig extends SnuviConfig
|
|
|
|
+{
|
|
|
|
+ public SimpleConfig(Module m, String path, String name, boolean load)
|
|
{
|
|
{
|
|
- this.m = m;
|
|
|
|
- file = new File("./" + path + ".snuvi");
|
|
|
|
- conf = new TreeMap<>();
|
|
|
|
- if(load && file.exists())
|
|
|
|
|
|
+ super(new ISnuviLogger()
|
|
{
|
|
{
|
|
- try
|
|
|
|
|
|
+ @Override
|
|
|
|
+ public void printException(SnuviException ex)
|
|
{
|
|
{
|
|
- Files.readAllLines(file.toPath()).stream().forEach(s ->
|
|
|
|
- {
|
|
|
|
- int b = s.indexOf("=");
|
|
|
|
- if(b == -1)
|
|
|
|
- {
|
|
|
|
- m.sendWarningToConsole("Wrong syntax in '" + file.getPath() + "' - " + s);
|
|
|
|
- return;
|
|
|
|
- }
|
|
|
|
- conf.put(s.substring(0, b).trim(), s.substring(b + 1).trim());
|
|
|
|
- });
|
|
|
|
- }
|
|
|
|
- catch (MalformedInputException ex)
|
|
|
|
- {
|
|
|
|
- m.sendWarningToConsole("'" + file.getPath() + "' contains an illegal character, change file encoding");
|
|
|
|
|
|
+ // should not happen
|
|
}
|
|
}
|
|
- catch (IOException ex)
|
|
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void printException(SnuviException ex, Script s)
|
|
{
|
|
{
|
|
- m.sendWarningToConsole("File '" + file.getPath() + "' cannot be read");
|
|
|
|
|
|
+ // should not happen
|
|
}
|
|
}
|
|
- }
|
|
|
|
-
|
|
|
|
- //System.out.println("WUSI");
|
|
|
|
- //conf.forEach((k, v) -> System.out.println(k + " " + v));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public static File[] getFiles(String path)
|
|
|
|
- {
|
|
|
|
- return new File("./" + path).listFiles();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public boolean exists()
|
|
|
|
- {
|
|
|
|
- return file.exists();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public boolean delete()
|
|
|
|
- {
|
|
|
|
- return file.delete();
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public boolean save()
|
|
|
|
- {
|
|
|
|
- try
|
|
|
|
- {
|
|
|
|
- if(!file.getParentFile().exists())
|
|
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void printWarning(String s)
|
|
{
|
|
{
|
|
- file.getParentFile().mkdirs();
|
|
|
|
|
|
+ m.sendWarningToConsole(s);
|
|
}
|
|
}
|
|
- if(!file.exists())
|
|
|
|
|
|
+
|
|
|
|
+ @Override
|
|
|
|
+ public void printInfo(String s)
|
|
{
|
|
{
|
|
- file.createNewFile();
|
|
|
|
|
|
+ m.sendToConsole(s);
|
|
}
|
|
}
|
|
- Files.write(Paths.get(file.toURI()), conf.entrySet().stream()
|
|
|
|
- .map(e -> e.getKey() + "=" + e.getValue())
|
|
|
|
- .collect(Collectors.toList()), Charset.forName("UTF-8"));
|
|
|
|
- return true;
|
|
|
|
- }
|
|
|
|
- catch(IOException ex)
|
|
|
|
|
|
+ }, path, name, "snuvi");
|
|
|
|
+
|
|
|
|
+ if(load && exists())
|
|
{
|
|
{
|
|
- m.sendWarningToConsole("Can't write to '" + file.getPath() + "'");
|
|
|
|
- ex.printStackTrace();
|
|
|
|
- return false;
|
|
|
|
|
|
+ load();
|
|
}
|
|
}
|
|
- }
|
|
|
|
|
|
+ }
|
|
|
|
|
|
- // -----------------------------------------------------------------------------------
|
|
|
|
- // Get Data
|
|
|
|
- // -----------------------------------------------------------------------------------
|
|
|
|
-
|
|
|
|
- public String getString(String key)
|
|
|
|
- {
|
|
|
|
- return conf.get(key);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public String getString(String key, String error)
|
|
|
|
- {
|
|
|
|
- String s = conf.get(key);
|
|
|
|
- if(s == null)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- return s;
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public float getFloat(String key, float error)
|
|
|
|
- {
|
|
|
|
- String s = conf.get(key);
|
|
|
|
- if(s == null)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- try
|
|
|
|
- {
|
|
|
|
- return Float.parseFloat(s);
|
|
|
|
- }
|
|
|
|
- catch(NumberFormatException ex)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public double getDouble(String key, double error)
|
|
|
|
- {
|
|
|
|
- String s = conf.get(key);
|
|
|
|
- if(s == null)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- try
|
|
|
|
- {
|
|
|
|
- return Double.parseDouble(s);
|
|
|
|
- }
|
|
|
|
- catch(NumberFormatException ex)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public int getInt(String key, int error)
|
|
|
|
|
|
+ public static File[] getFiles(String path)
|
|
{
|
|
{
|
|
- String s = conf.get(key);
|
|
|
|
- if(s == null)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- try
|
|
|
|
- {
|
|
|
|
- return Integer.parseInt(s);
|
|
|
|
- }
|
|
|
|
- catch(NumberFormatException ex)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
|
|
+ return new File("./" + path).listFiles();
|
|
}
|
|
}
|
|
|
|
|
|
- public boolean getBoolean(String key, boolean error)
|
|
|
|
- {
|
|
|
|
- String s = conf.get(key);
|
|
|
|
- if(s == null)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- try
|
|
|
|
- {
|
|
|
|
- return Boolean.valueOf(s);
|
|
|
|
- }
|
|
|
|
- catch(NumberFormatException ex)
|
|
|
|
- {
|
|
|
|
- return error;
|
|
|
|
- }
|
|
|
|
- }
|
|
|
|
|
|
+ // -----------------------------------------------------------------------------------
|
|
|
|
+ // get
|
|
|
|
+ // -----------------------------------------------------------------------------------
|
|
|
|
|
|
public Location getLocation(String key)
|
|
public Location getLocation(String key)
|
|
{
|
|
{
|
|
@@ -191,14 +73,14 @@ public class SimpleConfig
|
|
|
|
|
|
public ItemStack getItemStack(String key)
|
|
public ItemStack getItemStack(String key)
|
|
{
|
|
{
|
|
- String s = conf.get(key);
|
|
|
|
|
|
+ Object s = conf.get(key);
|
|
if(s == null)
|
|
if(s == null)
|
|
{
|
|
{
|
|
return ItemStack.EMPTY;
|
|
return ItemStack.EMPTY;
|
|
}
|
|
}
|
|
try
|
|
try
|
|
{
|
|
{
|
|
- return ItemStackUtils.getStackFromNbtString(s);
|
|
|
|
|
|
+ return ItemStackUtils.getStackFromNbtString(s.toString());
|
|
}
|
|
}
|
|
catch(IllegalItemStackStringException ex)
|
|
catch(IllegalItemStackStringException ex)
|
|
{
|
|
{
|
|
@@ -209,44 +91,19 @@ public class SimpleConfig
|
|
// -----------------------------------------------------------------------------------
|
|
// -----------------------------------------------------------------------------------
|
|
// Add Data
|
|
// Add Data
|
|
// -----------------------------------------------------------------------------------
|
|
// -----------------------------------------------------------------------------------
|
|
-
|
|
|
|
- public void setString(String key, String value)
|
|
|
|
- {
|
|
|
|
- conf.put(key, value);
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setDouble(String key, double d)
|
|
|
|
- {
|
|
|
|
- setString(key, String.valueOf(d));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setFloat(String key, float d)
|
|
|
|
- {
|
|
|
|
- setString(key, String.valueOf(d));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setInt(String key, int i)
|
|
|
|
- {
|
|
|
|
- setString(key, String.valueOf(i));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
- public void setBoolean(String key, boolean b)
|
|
|
|
- {
|
|
|
|
- setString(key, String.valueOf(b));
|
|
|
|
- }
|
|
|
|
-
|
|
|
|
|
|
+
|
|
public void setLocation(String key, Location l)
|
|
public void setLocation(String key, Location l)
|
|
{
|
|
{
|
|
- setString(key + ".world", l.getWorld().getWorldInfo().getWorldName());
|
|
|
|
- setDouble(key + ".x", l.getX());
|
|
|
|
- setDouble(key + ".y", l.getY());
|
|
|
|
- setDouble(key + ".z", l.getZ());
|
|
|
|
- setDouble(key + ".yaw", l.getYaw());
|
|
|
|
- setDouble(key + ".pitch", l.getPitch());
|
|
|
|
|
|
+ set(key + ".world", l.getWorld().getWorldInfo().getWorldName());
|
|
|
|
+ set(key + ".x", l.getX());
|
|
|
|
+ set(key + ".y", l.getY());
|
|
|
|
+ set(key + ".z", l.getZ());
|
|
|
|
+ set(key + ".yaw", l.getYaw());
|
|
|
|
+ set(key + ".pitch", l.getPitch());
|
|
}
|
|
}
|
|
|
|
|
|
public void setItemStack(String key, ItemStack stack)
|
|
public void setItemStack(String key, ItemStack stack)
|
|
{
|
|
{
|
|
- setString(key, ItemStackUtils.getNbtString(stack));
|
|
|
|
|
|
+ set(key, ItemStackUtils.getNbtString(stack));
|
|
}
|
|
}
|
|
}
|
|
}
|