buildcraft/common/buildcraft/core/ChunkIndex.java
2017-11-10 19:30:36 +01:00

68 lines
1.2 KiB
Java
Executable file

/**
* Copyright (c) 2011-2017, SpaceToad and the BuildCraft Team
* http://www.mod-buildcraft.com
* <p/>
* BuildCraft is distributed under the terms of the Minecraft Mod Public
* License 1.0, or MMPL. Please check the contents of the license located in
* http://www.mod-buildcraft.com/MMPL-1.0.txt
*/
package buildcraft.core;
import io.netty.buffer.ByteBuf;
import net.minecraft.nbt.NBTTagCompound;
import buildcraft.api.core.ISerializable;
public class ChunkIndex implements ISerializable {
public int x, z;
public ChunkIndex() {
}
public ChunkIndex(int iX, int iZ) {
x = iX;
z = iZ;
}
@Override
public boolean equals(Object obj) {
if (obj instanceof ChunkIndex) {
ChunkIndex c = (ChunkIndex) obj;
return c.x == x && c.z == z;
}
return super.equals(obj);
}
@Override
public int hashCode() {
return x * 37 + z;
}
public void writeToNBT(NBTTagCompound nbt) {
nbt.setInteger("x", x);
nbt.setInteger("z", z);
}
public void readFromNBT(NBTTagCompound nbt) {
x = nbt.getInteger("x");
z = nbt.getInteger("z");
}
@Override
public void readData(ByteBuf stream) {
x = stream.readInt();
z = stream.readInt();
}
@Override
public void writeData(ByteBuf stream) {
stream.writeInt(x);
stream.writeInt(z);
}
}