101 lines
2.9 KiB
Java
101 lines
2.9 KiB
Java
package net.minecraft.world.level.levelgen.structure.pools;
|
|
|
|
import com.google.common.collect.ImmutableMap;
|
|
import com.google.common.collect.ImmutableMap.Builder;
|
|
import com.mojang.serialization.Dynamic;
|
|
import com.mojang.serialization.DynamicOps;
|
|
|
|
public class JigsawJunction {
|
|
private final int sourceX;
|
|
private final int sourceGroundY;
|
|
private final int sourceZ;
|
|
private final int deltaY;
|
|
private final StructureTemplatePool.Projection destProjection;
|
|
|
|
public JigsawJunction(int sourceX, int sourceGroundY, int sourceZ, int deltaY, StructureTemplatePool.Projection destProjection) {
|
|
this.sourceX = sourceX;
|
|
this.sourceGroundY = sourceGroundY;
|
|
this.sourceZ = sourceZ;
|
|
this.deltaY = deltaY;
|
|
this.destProjection = destProjection;
|
|
}
|
|
|
|
public int getSourceX() {
|
|
return this.sourceX;
|
|
}
|
|
|
|
public int getSourceGroundY() {
|
|
return this.sourceGroundY;
|
|
}
|
|
|
|
public int getSourceZ() {
|
|
return this.sourceZ;
|
|
}
|
|
|
|
public int getDeltaY() {
|
|
return this.deltaY;
|
|
}
|
|
|
|
public StructureTemplatePool.Projection getDestProjection() {
|
|
return this.destProjection;
|
|
}
|
|
|
|
public <T> Dynamic<T> serialize(DynamicOps<T> ops) {
|
|
Builder<T, T> builder = ImmutableMap.builder();
|
|
builder.put(ops.createString("source_x"), ops.createInt(this.sourceX))
|
|
.put(ops.createString("source_ground_y"), ops.createInt(this.sourceGroundY))
|
|
.put(ops.createString("source_z"), ops.createInt(this.sourceZ))
|
|
.put(ops.createString("delta_y"), ops.createInt(this.deltaY))
|
|
.put(ops.createString("dest_proj"), ops.createString(this.destProjection.getName()));
|
|
return new Dynamic<>(ops, ops.createMap(builder.build()));
|
|
}
|
|
|
|
public static <T> JigsawJunction deserialize(Dynamic<T> dynamic) {
|
|
return new JigsawJunction(
|
|
dynamic.get("source_x").asInt(0),
|
|
dynamic.get("source_ground_y").asInt(0),
|
|
dynamic.get("source_z").asInt(0),
|
|
dynamic.get("delta_y").asInt(0),
|
|
StructureTemplatePool.Projection.byName(dynamic.get("dest_proj").asString(""))
|
|
);
|
|
}
|
|
|
|
public boolean equals(Object object) {
|
|
if (this == object) {
|
|
return true;
|
|
} else if (object != null && this.getClass() == object.getClass()) {
|
|
JigsawJunction jigsawJunction = (JigsawJunction)object;
|
|
if (this.sourceX != jigsawJunction.sourceX) {
|
|
return false;
|
|
} else if (this.sourceZ != jigsawJunction.sourceZ) {
|
|
return false;
|
|
} else {
|
|
return this.deltaY != jigsawJunction.deltaY ? false : this.destProjection == jigsawJunction.destProjection;
|
|
}
|
|
} else {
|
|
return false;
|
|
}
|
|
}
|
|
|
|
public int hashCode() {
|
|
int i = this.sourceX;
|
|
i = 31 * i + this.sourceGroundY;
|
|
i = 31 * i + this.sourceZ;
|
|
i = 31 * i + this.deltaY;
|
|
return 31 * i + this.destProjection.hashCode();
|
|
}
|
|
|
|
public String toString() {
|
|
return "JigsawJunction{sourceX="
|
|
+ this.sourceX
|
|
+ ", sourceGroundY="
|
|
+ this.sourceGroundY
|
|
+ ", sourceZ="
|
|
+ this.sourceZ
|
|
+ ", deltaY="
|
|
+ this.deltaY
|
|
+ ", destProjection="
|
|
+ this.destProjection
|
|
+ "}";
|
|
}
|
|
}
|