2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.tile;
|
2014-12-12 15:40:01 +01:00
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.util.Util;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockAir;
|
2014-12-12 15:40:01 +01:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.network.NetworkManager;
|
|
|
|
import net.minecraft.network.Packet;
|
|
|
|
import net.minecraft.network.play.server.S35PacketUpdateTileEntity;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.world.World;
|
2014-12-12 15:40:01 +01:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
public class TileEntityBase extends TileEntity{
|
2014-12-12 15:40:01 +01:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2014-12-12 15:40:01 +01:00
|
|
|
public Packet getDescriptionPacket(){
|
|
|
|
NBTTagCompound compound = new NBTTagCompound();
|
|
|
|
this.writeToNBT(compound);
|
2015-02-17 16:15:16 +01:00
|
|
|
return new S35PacketUpdateTileEntity(this.xCoord, this.yCoord, this.zCoord, this.getBlockMetadata(), compound);
|
2014-12-12 15:40:01 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2014-12-12 15:40:01 +01:00
|
|
|
public void onDataPacket(NetworkManager net, S35PacketUpdateTileEntity packet){
|
|
|
|
super.onDataPacket(net, packet);
|
2015-02-17 16:15:16 +01:00
|
|
|
this.readFromNBT(packet.func_148857_g());
|
|
|
|
}
|
|
|
|
|
2014-12-18 19:24:06 +01:00
|
|
|
public static void init(){
|
2015-02-09 17:25:05 +01:00
|
|
|
Util.logInfo("Registering TileEntities...");
|
2015-02-17 16:15:16 +01:00
|
|
|
GameRegistry.registerTileEntity(TileEntityCompost.class, Util.MOD_ID_LOWER + ":tileEntityCompost");
|
|
|
|
GameRegistry.registerTileEntity(TileEntityFeeder.class, Util.MOD_ID_LOWER + ":tileEntityFeeder");
|
2015-02-20 22:45:33 +01:00
|
|
|
GameRegistry.registerTileEntity(TileEntityGiantChest.class, Util.MOD_ID_LOWER + ":tileEntityGiantChest");
|
2015-03-07 02:23:31 +01:00
|
|
|
GameRegistry.registerTileEntity(TileEntityGrinder.class, Util.MOD_ID_LOWER + ":tileEntityGrinder");
|
|
|
|
GameRegistry.registerTileEntity(TileEntityFurnaceDouble.class, Util.MOD_ID_LOWER + ":tileEntityFurnaceDouble");
|
2015-03-08 14:58:26 +01:00
|
|
|
GameRegistry.registerTileEntity(TileEntityPackager.class, Util.MOD_ID_LOWER + ":tileEntityPackager");
|
2014-12-18 19:24:06 +01:00
|
|
|
}
|
2015-03-07 02:23:31 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean shouldRefresh(Block oldBlock, Block newBlock, int oldMeta, int newMeta, World world, int x, int y, int z){
|
|
|
|
return newBlock == null || newBlock instanceof BlockAir;
|
|
|
|
}
|
|
|
|
}
|