equivalent-exchange-3/src/main/java/com/pahimar/ee3/tileentity/TileEntityAlchemyArray.java

78 lines
2.6 KiB
Java
Raw Normal View History

package com.pahimar.ee3.tileentity;
import com.pahimar.ee3.api.AlchemyArray;
import com.pahimar.ee3.api.Glyph;
import com.pahimar.ee3.network.PacketHandler;
import com.pahimar.ee3.network.message.MessageTileEntityAlchemyArray;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.network.Packet;
import net.minecraft.util.AxisAlignedBB;
2014-10-15 03:11:54 +02:00
import net.minecraftforge.common.util.ForgeDirection;
2014-10-15 03:11:54 +02:00
public class TileEntityAlchemyArray extends TileEntityEE {
private AlchemyArray alchemyArray;
2014-10-15 03:11:54 +02:00
private ForgeDirection rotation;
2014-10-15 03:11:54 +02:00
public TileEntityAlchemyArray() {
super();
alchemyArray = new AlchemyArray();
2014-10-15 03:11:54 +02:00
rotation = ForgeDirection.UNKNOWN;
}
2014-10-15 03:11:54 +02:00
public AlchemyArray getAlchemyArray() {
return alchemyArray;
}
2014-10-15 03:11:54 +02:00
public boolean addGlyphToAlchemyArray(Glyph glyph) {
2014-10-14 22:08:12 +02:00
return alchemyArray.addGlyph(glyph);
}
2014-10-15 03:11:54 +02:00
public boolean addGlyphToAlchemyArray(Glyph glyph, int size) {
2014-10-14 22:08:12 +02:00
return addGlyphToAlchemyArray(new Glyph(glyph, size));
}
2014-10-15 03:11:54 +02:00
public ForgeDirection getRotation() {
2014-10-10 20:54:07 +02:00
return rotation;
}
2014-10-15 03:11:54 +02:00
public void setRotation(ForgeDirection rotation) {
2014-10-10 20:54:07 +02:00
this.rotation = rotation;
2014-10-07 22:20:41 +02:00
}
@Override
@SideOnly(Side.CLIENT)
2014-10-15 03:11:54 +02:00
public AxisAlignedBB getRenderBoundingBox() {
2014-10-07 22:20:41 +02:00
// TODO: Make this glyph size and orientation sensitive
return AxisAlignedBB.getBoundingBox(xCoord - alchemyArray.getLargestGlyphSize(), yCoord - alchemyArray.getLargestGlyphSize(), zCoord - alchemyArray.getLargestGlyphSize(), xCoord + alchemyArray.getLargestGlyphSize(), yCoord + alchemyArray.getLargestGlyphSize(), zCoord + alchemyArray.getLargestGlyphSize());
}
@Override
2014-10-15 03:11:54 +02:00
public Packet getDescriptionPacket() {
return PacketHandler.INSTANCE.getPacketFrom(new MessageTileEntityAlchemyArray(this));
}
@Override
2014-10-15 03:11:54 +02:00
public void readFromNBT(NBTTagCompound nbtTagCompound) {
super.readFromNBT(nbtTagCompound);
NBTTagCompound alchemyArrayTagCompound = nbtTagCompound.getCompoundTag("alchemyArray");
alchemyArray = AlchemyArray.readAlchemyArrayFromNBT(alchemyArrayTagCompound);
2014-10-10 20:54:07 +02:00
2014-10-15 03:11:54 +02:00
rotation = ForgeDirection.getOrientation(nbtTagCompound.getInteger("rotation"));
}
@Override
2014-10-15 03:11:54 +02:00
public void writeToNBT(NBTTagCompound nbtTagCompound) {
super.writeToNBT(nbtTagCompound);
NBTTagCompound alchemyArrayTagCompound = new NBTTagCompound();
alchemyArray.writeToNBT(alchemyArrayTagCompound);
2014-10-15 03:11:54 +02:00
nbtTagCompound.setInteger("rotation", rotation.ordinal());
2014-10-10 20:54:07 +02:00
nbtTagCompound.setTag("alchemyArray", alchemyArrayTagCompound);
}
}