115 lines
No EOL
2.6 KiB
Java
115 lines
No EOL
2.6 KiB
Java
package mekanism.api;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.tileentity.TileEntity;
|
|
import net.minecraft.util.MathHelper;
|
|
import net.minecraft.world.IBlockAccess;
|
|
import net.minecraftforge.common.ForgeDirection;
|
|
|
|
public class Object3D
|
|
{
|
|
public int xCoord;
|
|
public int yCoord;
|
|
public int zCoord;
|
|
|
|
public int dimensionId;
|
|
|
|
public Object3D(int x, int y, int z)
|
|
{
|
|
xCoord = x;
|
|
yCoord = y;
|
|
zCoord = z;
|
|
|
|
dimensionId = 0;
|
|
}
|
|
|
|
public Object3D(int x, int y, int z, int dimension)
|
|
{
|
|
xCoord = x;
|
|
yCoord = y;
|
|
zCoord = z;
|
|
|
|
dimensionId = dimension;
|
|
}
|
|
|
|
public int getMetadata(IBlockAccess world)
|
|
{
|
|
return world.getBlockMetadata(xCoord, yCoord, zCoord);
|
|
}
|
|
|
|
public int getBlockId(IBlockAccess world)
|
|
{
|
|
return world.getBlockId(xCoord, yCoord, zCoord);
|
|
}
|
|
|
|
public TileEntity getTileEntity(IBlockAccess world)
|
|
{
|
|
return world.getBlockTileEntity(xCoord, yCoord, zCoord);
|
|
}
|
|
|
|
public void write(NBTTagCompound nbtTags)
|
|
{
|
|
nbtTags.setInteger("x", xCoord);
|
|
nbtTags.setInteger("y", yCoord);
|
|
nbtTags.setInteger("z", zCoord);
|
|
nbtTags.setInteger("dimensionId", dimensionId);
|
|
}
|
|
|
|
public Object3D translate(int x, int y, int z)
|
|
{
|
|
xCoord += x;
|
|
yCoord += y;
|
|
zCoord += z;
|
|
|
|
return this;
|
|
}
|
|
|
|
public Object3D getFromSide(ForgeDirection side)
|
|
{
|
|
return new Object3D(xCoord+side.offsetX, yCoord+side.offsetY, zCoord+side.offsetZ, dimensionId);
|
|
}
|
|
|
|
public static Object3D get(TileEntity tileEntity)
|
|
{
|
|
return new Object3D(tileEntity.xCoord, tileEntity.yCoord, tileEntity.zCoord, tileEntity.worldObj.provider.dimensionId);
|
|
}
|
|
|
|
public static Object3D read(NBTTagCompound nbtTags)
|
|
{
|
|
return new Object3D(nbtTags.getInteger("x"), nbtTags.getInteger("y"), nbtTags.getInteger("z"), nbtTags.getInteger("dimensionId"));
|
|
}
|
|
|
|
public int distanceTo(Object3D obj)
|
|
{
|
|
int subX = xCoord - obj.xCoord;
|
|
int subY = yCoord - obj.yCoord;
|
|
int subZ = zCoord - obj.zCoord;
|
|
return (int)MathHelper.sqrt_double(subX * subX + subY * subY + subZ * subZ);
|
|
}
|
|
|
|
public boolean sideVisible(ForgeDirection side, IBlockAccess world)
|
|
{
|
|
return world.getBlockId(xCoord+side.offsetX, yCoord+side.offsetY, zCoord+side.offsetZ) == 0;
|
|
}
|
|
|
|
@Override
|
|
public boolean equals(Object obj)
|
|
{
|
|
return obj instanceof Object3D &&
|
|
((Object3D)obj).xCoord == xCoord &&
|
|
((Object3D)obj).yCoord == yCoord &&
|
|
((Object3D)obj).zCoord == zCoord &&
|
|
((Object3D)obj).dimensionId == dimensionId;
|
|
}
|
|
|
|
@Override
|
|
public int hashCode()
|
|
{
|
|
int code = 1;
|
|
code = 31 * code + xCoord;
|
|
code = 31 * code + yCoord;
|
|
code = 31 * code + zCoord;
|
|
code = 31 * code + dimensionId;
|
|
return code;
|
|
}
|
|
} |