mirror of
https://github.com/VolmitSoftware/Iris.git
synced 2025-07-19 02:36:59 +00:00
225 lines
4.7 KiB
Java
225 lines
4.7 KiB
Java
package com.volmit.iris;
|
|
|
|
import com.google.gson.Gson;
|
|
import com.volmit.iris.util.*;
|
|
import lombok.Data;
|
|
|
|
import java.io.File;
|
|
import java.io.IOException;
|
|
|
|
@Data
|
|
public class IrisSettings
|
|
{
|
|
public static transient IrisSettings settings;
|
|
|
|
@DontObfuscate
|
|
public int configurationVersion = 2;
|
|
|
|
@DontObfuscate
|
|
public int streamingCacheSize = 8192;
|
|
|
|
@DontObfuscate
|
|
public int parallaxRegionEvictionMS = 15000;
|
|
|
|
@DontObfuscate
|
|
public int parallaxChunkEvictionMS = 5000;
|
|
|
|
@DontObfuscate
|
|
public boolean forceSingleThreadedPerChunk = false;
|
|
|
|
@DontObfuscate
|
|
public int forceThreadCount = -1;
|
|
|
|
@DontObfuscate
|
|
public String defaultWorldType = "overworld";
|
|
|
|
@DontObfuscate
|
|
public int maxAsyncChunkPregenThreads = 128;
|
|
|
|
@DontObfuscate
|
|
public boolean maximumPregenGuiFPS = false;
|
|
|
|
@DontObfuscate
|
|
public boolean commandSounds = true;
|
|
|
|
@DontObfuscate
|
|
public boolean verbose = false;
|
|
|
|
@DontObfuscate
|
|
public boolean ignoreWorldEdit = false;
|
|
|
|
@DontObfuscate
|
|
public boolean useGleamPregenerator = false;
|
|
|
|
@DontObfuscate
|
|
public boolean disableNMS = false;
|
|
|
|
@DontObfuscate
|
|
public boolean systemEffects = true;
|
|
|
|
@DontObfuscate
|
|
public boolean saveAllDuringPregen = true;
|
|
|
|
@DontObfuscate
|
|
public boolean localPregenGui = true;
|
|
|
|
@DontObfuscate
|
|
public boolean systemEntitySpawnOverrides = true;
|
|
|
|
@DontObfuscate
|
|
public boolean systemEntityInitialSpawns = true;
|
|
|
|
@DontObfuscate
|
|
public int maxBiomeChildDepth = 5;
|
|
|
|
@DontObfuscate
|
|
public boolean sharedCaching = true;
|
|
|
|
@DontObfuscate
|
|
public boolean studio = true;
|
|
|
|
@DontObfuscate
|
|
public boolean useServerLaunchedGuis = true;
|
|
|
|
@DontObfuscate
|
|
public boolean openVSCode = true;
|
|
|
|
@DontObfuscate
|
|
public boolean pluginMetrics = true;
|
|
|
|
@DontObfuscate
|
|
public boolean splashLogoStartup = true;
|
|
|
|
public static IrisSettings get()
|
|
{
|
|
if(settings != null)
|
|
{
|
|
return settings;
|
|
}
|
|
|
|
IrisSettings defaults = new IrisSettings();
|
|
JSONObject def = new JSONObject(new Gson().toJson(defaults));
|
|
if(settings == null)
|
|
{
|
|
settings = new IrisSettings();
|
|
|
|
File s = Iris.instance.getDataFile("settings.json");
|
|
|
|
if(!s.exists())
|
|
{
|
|
try
|
|
{
|
|
IO.writeAll(s, new JSONObject(new Gson().toJson(settings)).toString(4));
|
|
}
|
|
|
|
catch(JSONException | IOException e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
|
|
else
|
|
{
|
|
try
|
|
{
|
|
String ss = IO.readAll(s);
|
|
settings = new Gson().fromJson(ss, IrisSettings.class);
|
|
|
|
J.a(() ->
|
|
{
|
|
try
|
|
{
|
|
JSONObject j = new JSONObject(ss);
|
|
boolean u = false;
|
|
for(String i : def.keySet())
|
|
{
|
|
if(!j.has(i))
|
|
{
|
|
u = true;
|
|
j.put(i, def.get(i));
|
|
Iris.warn("Adding new config key: " + i);
|
|
}
|
|
}
|
|
|
|
for(String i : new KSet<>(j.keySet()))
|
|
{
|
|
if(!def.has(i))
|
|
{
|
|
u = true;
|
|
j.remove(i);
|
|
Iris.warn("Removing unused config key: " + i);
|
|
}
|
|
}
|
|
|
|
if(u)
|
|
{
|
|
try
|
|
{
|
|
IO.writeAll(s, j.toString(4));
|
|
Iris.info("Updated Configuration Files");
|
|
}
|
|
|
|
catch(Throwable e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|
|
|
|
catch(Throwable ee)
|
|
{
|
|
Iris.error("Configuration Error in settings.json! " + ee.getClass().getSimpleName() + ": " + ee.getMessage());
|
|
Iris.warn("Attempting to fix configuration while retaining valid in-memory settings...");
|
|
|
|
try {
|
|
IO.writeAll(s, new JSONObject(new Gson().toJson(settings)).toString(4));
|
|
Iris.info("Configuration Fixed!");
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
Iris.error("ERROR! CONFIGURATION IMPOSSIBLE TO READ! Using an unmodifiable configuration from memory. Please delete the settings.json at some point to try to restore configurability!");
|
|
}
|
|
}
|
|
});
|
|
}
|
|
|
|
catch(Throwable ee)
|
|
{
|
|
Iris.error("Configuration Error in settings.json! " + ee.getClass().getSimpleName() + ": " + ee.getMessage());
|
|
Iris.warn("Attempting to fix configuration while retaining valid in-memory settings...");
|
|
|
|
try {
|
|
IO.writeAll(s, new JSONObject(new Gson().toJson(settings)).toString(4));
|
|
Iris.info("Configuration Fixed!");
|
|
} catch (IOException e) {
|
|
e.printStackTrace();
|
|
Iris.error("ERROR! CONFIGURATION IMPOSSIBLE TO READ! Using an unmodifiable configuration from memory. Please delete the settings.json at some point to try to restore configurability!");
|
|
}
|
|
}
|
|
}
|
|
|
|
if(!s.exists())
|
|
{
|
|
try
|
|
{
|
|
IO.writeAll(s, new JSONObject(new Gson().toJson(settings)).toString(4));
|
|
}
|
|
|
|
catch(JSONException | IOException e)
|
|
{
|
|
e.printStackTrace();
|
|
}
|
|
}
|
|
}
|
|
|
|
return settings;
|
|
}
|
|
|
|
public static void invalidate()
|
|
{
|
|
synchronized(settings)
|
|
{
|
|
settings = null;
|
|
}
|
|
}
|
|
}
|