Fixed replacement of preset sectors in JSON

This commit is contained in:
Anuken
2026-01-13 22:32:22 -05:00
parent 772404a494
commit b50b922d3a
2 changed files with 21 additions and 26 deletions

View File

@@ -695,17 +695,29 @@ public class ContentParser{
return locate(ContentType.sector, name);
}
if(!value.has("sector") || !value.get("sector").isNumber()) throw new RuntimeException("SectorPresets must have a sector number.");
SectorPreset preset;
SectorPreset found = locate(ContentType.sector, name);
SectorPreset out = new SectorPreset(mod + "-" + name, currentMod);
if(found != null){
preset = found;
}else{
if(!value.has("sector") || !value.get("sector").isNumber()) throw new RuntimeException("SectorPresets must have a sector number.");
currentContent = out;
preset = new SectorPreset(mod + "-" + name, currentMod);
}
currentContent = preset;
read(() -> {
Planet planet = locate(ContentType.planet, value.getString("planet", "serpulo"));
Planet planet = preset.planet == null ? Planets.serpulo : preset.planet;
if(value.has("planet")){
planet = locate(ContentType.planet, value.getString("planet", "serpulo"));
if(planet == null) throw new RuntimeException("Planet '" + value.getString("planet") + "' not found.");
if(planet == null) throw new RuntimeException("Planet '" + value.getString("planet") + "' not found.");
}
out.initialize(planet, value.getInt("sector", 0));
if(value.has("sector")){
preset.initialize(planet, value.getInt("sector", 0));
}
value.remove("sector");
value.remove("planet");
@@ -713,7 +725,7 @@ public class ContentParser{
if(value.has("rules")){
JsonValue r = value.remove("rules");
if(!r.isObject()) throw new RuntimeException("Rules must be an object!");
out.rules = rules -> {
preset.rules = rules -> {
try{
//Use standard JSON, this is not content-parser relevant
JsonIO.json.readFields(rules, r);
@@ -723,9 +735,9 @@ public class ContentParser{
};
}
readFields(out, value);
readFields(preset, value);
});
return out;
return preset;
},
ContentType.planet, (TypeParser<Planet>)(mod, name, value) -> {
if(value.isString()) return locate(ContentType.planet, name);