2015-06-23 22:29:05 +00:00
|
|
|
package gregtech.common.blocks;
|
|
|
|
|
|
|
|
import com.google.common.io.ByteArrayDataInput;
|
|
|
|
import com.google.common.io.ByteArrayDataOutput;
|
|
|
|
import com.google.common.io.ByteStreams;
|
|
|
|
import gregtech.api.net.GT_Packet;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class GT_Packet_Ores
|
|
|
|
extends GT_Packet
|
|
|
|
{
|
|
|
|
private int mX;
|
|
|
|
private int mZ;
|
|
|
|
private short mY;
|
|
|
|
private short mMetaData;
|
|
|
|
|
|
|
|
public GT_Packet_Ores()
|
|
|
|
{
|
|
|
|
super(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public GT_Packet_Ores(int aX, short aY, int aZ, short aMetaData)
|
|
|
|
{
|
|
|
|
super(false);
|
|
|
|
this.mX = aX;
|
|
|
|
this.mY = aY;
|
|
|
|
this.mZ = aZ;
|
|
|
|
this.mMetaData = aMetaData;
|
|
|
|
}
|
|
|
|
|
|
|
|
public byte[] encode()
|
|
|
|
{
|
|
|
|
ByteArrayDataOutput tOut = ByteStreams.newDataOutput(12);
|
|
|
|
|
|
|
|
tOut.writeInt(this.mX);
|
|
|
|
tOut.writeShort(this.mY);
|
|
|
|
tOut.writeInt(this.mZ);
|
|
|
|
tOut.writeShort(this.mMetaData);
|
|
|
|
|
|
|
|
return tOut.toByteArray();
|
|
|
|
}
|
|
|
|
|
|
|
|
public GT_Packet decode(ByteArrayDataInput aData)
|
|
|
|
{
|
|
|
|
return new GT_Packet_Ores(aData.readInt(), aData.readShort(), aData.readInt(), aData.readShort());
|
|
|
|
}
|
|
|
|
|
|
|
|
public void process(IBlockAccess aWorld)
|
|
|
|
{
|
|
|
|
if (aWorld != null)
|
|
|
|
{
|
|
|
|
TileEntity tTileEntity = aWorld.getTileEntity(this.mX, this.mY, this.mZ);
|
|
|
|
if ((tTileEntity instanceof GT_TileEntity_Ores)) {
|
|
|
|
((GT_TileEntity_Ores)tTileEntity).mMetaData = this.mMetaData;
|
|
|
|
}
|
|
|
|
if (((aWorld instanceof World)) && (((World)aWorld).isRemote)) {
|
|
|
|
((World)aWorld).markBlockForUpdate(this.mX, this.mY, this.mZ);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public byte getPacketID()
|
|
|
|
{
|
|
|
|
return 3;
|
|
|
|
}
|
|
|
|
}
|
2015-04-23 16:14:22 +00:00
|
|
|
|
|
|
|
|
|
|
|
/* Location: F:\Torrent\minecraft\jd-gui-0.3.6.windows\gregtech_1.7.10-5.07.07-dev.jar
|
|
|
|
* Qualified Name: gregtech.common.blocks.GT_Packet_Ores
|
|
|
|
* JD-Core Version: 0.7.0.1
|
|
|
|
*/
|