2025-11-24 22:52:51 +03:00

59 lines
2.2 KiB
Java

/*
* Decompiled with CFR 0.152.
*
* Could not load the following classes:
* com.google.common.collect.ImmutableMap
* com.google.common.collect.Maps
* com.mojang.datafixers.DSL
* com.mojang.datafixers.DataFix
* com.mojang.datafixers.TypeRewriteRule
* com.mojang.datafixers.schemas.Schema
* com.mojang.datafixers.types.Type
* com.mojang.serialization.Dynamic
*/
package net.minecraft.util.datafix.fixes;
import com.google.common.collect.ImmutableMap;
import com.google.common.collect.Maps;
import com.mojang.datafixers.DSL;
import com.mojang.datafixers.DataFix;
import com.mojang.datafixers.TypeRewriteRule;
import com.mojang.datafixers.schemas.Schema;
import com.mojang.datafixers.types.Type;
import com.mojang.serialization.Dynamic;
import java.util.HashMap;
import java.util.Map;
import java.util.Objects;
import java.util.Optional;
import net.minecraft.util.datafix.fixes.References;
public class ReorganizePoi
extends DataFix {
public ReorganizePoi(Schema outputSchema, boolean changesType) {
super(outputSchema, changesType);
}
protected TypeRewriteRule makeRule() {
Type poiChunkType = DSL.named((String)References.POI_CHUNK.typeName(), (Type)DSL.remainderType());
if (!Objects.equals(poiChunkType, this.getInputSchema().getType(References.POI_CHUNK))) {
throw new IllegalStateException("Poi type is not what was expected.");
}
return this.fixTypeEverywhere("POI reorganization", poiChunkType, ops -> input -> input.mapSecond(ReorganizePoi::cap));
}
private static <T> Dynamic<T> cap(Dynamic<T> input) {
HashMap sections = Maps.newHashMap();
for (int i = 0; i < 16; ++i) {
String key = String.valueOf(i);
Optional section = input.get(key).result();
if (!section.isPresent()) continue;
Dynamic sectionRecords = (Dynamic)section.get();
Dynamic newSection = input.createMap((Map)ImmutableMap.of((Object)input.createString("Records"), (Object)sectionRecords));
sections.put(input.createString(Integer.toString(i)), newSection);
input = input.remove(key);
}
return input.set("Sections", input.createMap((Map)sections));
}
}