2013-12-21 07:23:59 +01:00
|
|
|
package resonantinduction.wire.part;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.Collections;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockColored;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemShears;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.util.MovingObjectPosition;
|
|
|
|
import resonantinduction.wire.EnumWireMaterial;
|
|
|
|
import resonantinduction.wire.IBlockableConnection;
|
|
|
|
import resonantinduction.wire.IInsulatedMaterial;
|
|
|
|
import resonantinduction.wire.IInsulation;
|
|
|
|
import resonantinduction.wire.IWireMaterial;
|
|
|
|
import universalelectricity.api.energy.IConductor;
|
2013-12-21 09:38:34 +01:00
|
|
|
import codechicken.lib.data.MCDataInput;
|
|
|
|
import codechicken.lib.data.MCDataOutput;
|
2013-12-21 07:23:59 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @author Calclavia
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
public abstract class PartWireBase extends PartConductor implements IInsulatedMaterial, IBlockableConnection
|
|
|
|
{
|
|
|
|
public static final int DEFAULT_COLOR = 16;
|
|
|
|
public int dyeID = DEFAULT_COLOR;
|
|
|
|
public EnumWireMaterial material = EnumWireMaterial.COPPER;
|
|
|
|
public boolean isInsulated = false;
|
|
|
|
|
|
|
|
public boolean canConnectToType(IConductor wire)
|
|
|
|
{
|
|
|
|
if (wire instanceof IWireMaterial)
|
|
|
|
{
|
|
|
|
IWireMaterial wireTile = (IWireMaterial) wire;
|
|
|
|
|
|
|
|
if (wireTile.getMaterial() != getMaterial())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (isInsulated() && wire instanceof IInsulation)
|
|
|
|
{
|
|
|
|
IInsulation insulatedTile = (IInsulation) wire;
|
|
|
|
|
|
|
|
if ((insulatedTile.isInsulated() && insulatedTile.getInsulationColor() != getInsulationColor() && getInsulationColor() != DEFAULT_COLOR && insulatedTile.getInsulationColor() != DEFAULT_COLOR))
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumWireMaterial getMaterial()
|
|
|
|
{
|
|
|
|
return material;
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setMaterialFromID(int id)
|
|
|
|
{
|
|
|
|
material = EnumWireMaterial.values()[id];
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getMaterialID()
|
|
|
|
{
|
|
|
|
return material.ordinal();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isInsulated()
|
|
|
|
{
|
|
|
|
return isInsulated;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getInsulationColor()
|
|
|
|
{
|
|
|
|
return isInsulated ? dyeID : -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setInsulationColor(int dye)
|
|
|
|
{
|
|
|
|
dyeID = dye;
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
world().markBlockForUpdate(x(), y(), z());
|
|
|
|
tile().notifyPartChange(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setInsulated(boolean insulated)
|
|
|
|
{
|
|
|
|
isInsulated = insulated;
|
|
|
|
dyeID = DEFAULT_COLOR;
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
world().markBlockForUpdate(x(), y(), z());
|
|
|
|
tile().notifyPartChange(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInsulated(int dyeColour)
|
|
|
|
{
|
|
|
|
isInsulated = true;
|
|
|
|
dyeID = dyeColour;
|
|
|
|
|
|
|
|
refresh();
|
|
|
|
world().markBlockForUpdate(x(), y(), z());
|
|
|
|
tile().notifyPartChange(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setInsulated()
|
|
|
|
{
|
|
|
|
setInsulated(true);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void setDye(int dye)
|
|
|
|
{
|
|
|
|
dyeID = dye;
|
|
|
|
refresh();
|
|
|
|
world().markBlockForUpdate(x(), y(), z());
|
|
|
|
tile().notifyPartChange(this);
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Changes the wire's color.
|
|
|
|
*/
|
|
|
|
@Override
|
|
|
|
public boolean activate(EntityPlayer player, MovingObjectPosition part, ItemStack item)
|
|
|
|
{
|
|
|
|
if (item != null)
|
|
|
|
{
|
|
|
|
if (item.itemID == Item.dyePowder.itemID && isInsulated())
|
|
|
|
{
|
|
|
|
setDye(item.getItemDamage());
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if (item.itemID == Block.cloth.blockID)
|
|
|
|
{
|
|
|
|
if (isInsulated() && !world().isRemote)
|
|
|
|
{
|
|
|
|
tile().dropItems(Collections.singletonList(new ItemStack(Block.cloth, 1, BlockColored.getBlockFromDye(dyeID))));
|
|
|
|
}
|
|
|
|
|
|
|
|
setInsulated(BlockColored.getDyeFromBlock(item.getItemDamage()));
|
|
|
|
player.inventory.decrStackSize(player.inventory.currentItem, 1);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else if ((item.itemID == Item.shears.itemID || item.getItem() instanceof ItemShears) && isInsulated())
|
|
|
|
{
|
|
|
|
if (!world().isRemote)
|
|
|
|
{
|
|
|
|
tile().dropItems(Collections.singletonList(new ItemStack(Block.cloth, 1, BlockColored.getBlockFromDye(dyeID))));
|
|
|
|
}
|
|
|
|
|
|
|
|
setInsulated(false);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
protected ItemStack getItem()
|
|
|
|
{
|
|
|
|
return EnumWireMaterial.values()[getMaterialID()].getWire();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Iterable<ItemStack> getDrops()
|
|
|
|
{
|
|
|
|
List<ItemStack> drops = new ArrayList<ItemStack>();
|
|
|
|
drops.add(getItem());
|
|
|
|
|
|
|
|
if (this.isInsulated)
|
|
|
|
{
|
|
|
|
drops.add(new ItemStack(Block.cloth, 1, BlockColored.getBlockFromDye(dyeID)));
|
|
|
|
}
|
|
|
|
|
|
|
|
return drops;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack pickItem(MovingObjectPosition hit)
|
|
|
|
{
|
|
|
|
return getItem();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readDesc(MCDataInput packet)
|
|
|
|
{
|
|
|
|
this.setMaterialFromID(packet.readByte());
|
|
|
|
this.dyeID = packet.readByte();
|
|
|
|
this.isInsulated = packet.readBoolean();
|
|
|
|
this.currentWireConnections = packet.readByte();
|
|
|
|
this.currentAcceptorConnections = packet.readByte();
|
2013-12-21 09:38:34 +01:00
|
|
|
|
2013-12-21 07:23:59 +01:00
|
|
|
if (tile() != null)
|
|
|
|
{
|
|
|
|
tile().markRender();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeDesc(MCDataOutput packet)
|
|
|
|
{
|
|
|
|
packet.writeByte((byte) this.getMaterialID());
|
|
|
|
packet.writeByte((byte) this.dyeID);
|
|
|
|
packet.writeBoolean(this.isInsulated);
|
|
|
|
packet.writeByte(this.currentWireConnections);
|
|
|
|
packet.writeByte(this.currentAcceptorConnections);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void save(NBTTagCompound nbt)
|
|
|
|
{
|
|
|
|
super.save(nbt);
|
|
|
|
nbt.setInteger("typeID", getMaterialID());
|
|
|
|
nbt.setBoolean("isInsulated", isInsulated);
|
|
|
|
nbt.setInteger("dyeID", dyeID);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void load(NBTTagCompound nbt)
|
|
|
|
{
|
|
|
|
super.load(nbt);
|
|
|
|
setMaterialFromID(nbt.getInteger("typeID"));
|
|
|
|
dyeID = nbt.getInteger("dyeID");
|
|
|
|
isInsulated = nbt.getBoolean("isInsulated");
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|