Code/net/minecraft/world/level/levelgen/structure/pools/JigsawJunction.java

104 lines
3.5 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 p_210247_, int p_210248_, int p_210249_, int p_210250_, StructureTemplatePool.Projection p_210251_) {
this.sourceX = p_210247_;
this.sourceGroundY = p_210248_;
this.sourceZ = p_210249_;
this.deltaY = p_210250_;
this.destProjection = p_210251_;
}
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> p_210256_) {
Builder<T, T> builder = ImmutableMap.builder();
builder.put(p_210256_.createString("source_x"), p_210256_.createInt(this.sourceX))
.put(p_210256_.createString("source_ground_y"), p_210256_.createInt(this.sourceGroundY))
.put(p_210256_.createString("source_z"), p_210256_.createInt(this.sourceZ))
.put(p_210256_.createString("delta_y"), p_210256_.createInt(this.deltaY))
.put(p_210256_.createString("dest_proj"), p_210256_.createString(this.destProjection.getName()));
return new Dynamic<>(p_210256_, p_210256_.createMap(builder.build()));
}
public static <T> JigsawJunction deserialize(Dynamic<T> p_210254_) {
return new JigsawJunction(
p_210254_.get("source_x").asInt(0),
p_210254_.get("source_ground_y").asInt(0),
p_210254_.get("source_z").asInt(0),
p_210254_.get("delta_y").asInt(0),
StructureTemplatePool.Projection.byName(p_210254_.get("dest_proj").asString(""))
);
}
@Override
public boolean equals(Object p_210262_) {
if (this == p_210262_) {
return true;
} else if (p_210262_ != null && this.getClass() == p_210262_.getClass()) {
JigsawJunction jigsawjunction = (JigsawJunction)p_210262_;
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;
}
}
@Override
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();
}
@Override
public String toString() {
return "JigsawJunction{sourceX="
+ this.sourceX
+ ", sourceGroundY="
+ this.sourceGroundY
+ ", sourceZ="
+ this.sourceZ
+ ", deltaY="
+ this.deltaY
+ ", destProjection="
+ this.destProjection
+ "}";
}
}