2015-04-14 01:12:24 +02:00
|
|
|
package techreborn.tiles;
|
|
|
|
|
|
|
|
import ic2.api.energy.prefab.BasicSink;
|
2015-05-08 20:42:52 +02:00
|
|
|
import ic2.api.energy.tile.IEnergyTile;
|
2015-04-14 13:57:43 +02:00
|
|
|
import ic2.api.tile.IWrenchable;
|
2015-04-15 17:23:12 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-04-15 18:27:05 +02:00
|
|
|
import net.minecraft.inventory.Container;
|
2015-06-07 10:38:12 +02:00
|
|
|
import net.minecraft.inventory.IInventory;
|
2015-04-15 18:27:05 +02:00
|
|
|
import net.minecraft.inventory.InventoryCrafting;
|
2015-04-15 17:23:12 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-04-15 18:27:05 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import techreborn.api.RollingMachineRecipe;
|
2015-04-14 20:23:16 +02:00
|
|
|
import techreborn.init.ModBlocks;
|
2015-04-14 01:12:24 +02:00
|
|
|
import techreborn.util.Inventory;
|
2015-04-15 18:27:05 +02:00
|
|
|
import techreborn.util.ItemUtils;
|
2015-04-14 01:12:24 +02:00
|
|
|
|
2015-04-15 18:27:05 +02:00
|
|
|
//TODO add tick and power bars.
|
2015-06-07 10:38:12 +02:00
|
|
|
public class TileRollingMachine extends TileMachineBase implements IWrenchable, IEnergyTile, IInventory {
|
2015-04-15 17:23:12 +02:00
|
|
|
|
2015-04-24 15:20:09 +02:00
|
|
|
public BasicSink energy;
|
|
|
|
public Inventory inventory = new Inventory(2, "TileRollingMachine", 64);
|
|
|
|
public final InventoryCrafting craftMatrix = new InventoryCrafting(
|
|
|
|
new RollingTileContainer(), 3, 3);
|
|
|
|
|
|
|
|
public boolean isRunning;
|
|
|
|
public int tickTime;
|
|
|
|
public int runTime = 250;
|
|
|
|
public ItemStack currentRecipe;
|
|
|
|
|
|
|
|
public int euTick = 5;
|
|
|
|
|
|
|
|
private static class RollingTileContainer extends Container {
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean canInteractWith(EntityPlayer entityplayer)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public TileRollingMachine()
|
|
|
|
{
|
|
|
|
energy = new BasicSink(this, 100000, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void updateEntity()
|
|
|
|
{
|
|
|
|
super.updateEntity();
|
|
|
|
energy.updateEntity();
|
|
|
|
if (!worldObj.isRemote)
|
|
|
|
{
|
|
|
|
currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(
|
|
|
|
craftMatrix, worldObj);
|
|
|
|
if (currentRecipe != null && canMake())
|
|
|
|
{
|
|
|
|
if (tickTime >= runTime)
|
|
|
|
{
|
|
|
|
currentRecipe = RollingMachineRecipe.instance
|
|
|
|
.findMatchingRecipe(craftMatrix, worldObj);
|
|
|
|
if (currentRecipe != null)
|
|
|
|
{
|
|
|
|
boolean hasCrafted = false;
|
|
|
|
if (inventory.getStackInSlot(0) == null)
|
|
|
|
{
|
|
|
|
inventory
|
|
|
|
.setInventorySlotContents(0, currentRecipe);
|
|
|
|
tickTime = 0;
|
|
|
|
hasCrafted = true;
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
if (inventory.getStackInSlot(0).stackSize
|
|
|
|
+ currentRecipe.stackSize <= currentRecipe
|
|
|
|
.getMaxStackSize())
|
|
|
|
{
|
|
|
|
ItemStack stack = inventory.getStackInSlot(0);
|
|
|
|
stack.stackSize = stack.stackSize
|
|
|
|
+ currentRecipe.stackSize;
|
|
|
|
inventory.setInventorySlotContents(0, stack);
|
|
|
|
tickTime = 0;
|
|
|
|
hasCrafted = true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (hasCrafted)
|
|
|
|
{
|
|
|
|
for (int i = 0; i < craftMatrix.getSizeInventory(); i++)
|
|
|
|
{
|
|
|
|
craftMatrix.decrStackSize(i, 1);
|
|
|
|
}
|
|
|
|
currentRecipe = null;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (currentRecipe != null)
|
|
|
|
{
|
|
|
|
if (energy.canUseEnergy(euTick) && tickTime < runTime)
|
|
|
|
{
|
|
|
|
tickTime++;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (currentRecipe == null)
|
|
|
|
{
|
|
|
|
tickTime = 0;
|
|
|
|
}
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(
|
|
|
|
craftMatrix, worldObj);
|
|
|
|
if (currentRecipe != null)
|
|
|
|
{
|
|
|
|
inventory.setInventorySlotContents(1, currentRecipe);
|
|
|
|
} else
|
|
|
|
{
|
|
|
|
inventory.setInventorySlotContents(1, null);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean canMake()
|
|
|
|
{
|
|
|
|
if (RollingMachineRecipe.instance.findMatchingRecipe(craftMatrix,
|
|
|
|
worldObj) == null)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, int side)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public short getFacing()
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setFacing(short facing)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean wrenchCanRemove(EntityPlayer entityPlayer)
|
|
|
|
{
|
2015-05-10 18:06:08 +02:00
|
|
|
if (entityPlayer.isSneaking())
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
2015-04-24 15:20:09 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public float getWrenchDropRate()
|
|
|
|
{
|
|
|
|
return 1.0F;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getWrenchDrop(EntityPlayer entityPlayer)
|
|
|
|
{
|
|
|
|
return new ItemStack(ModBlocks.RollingMachine, 1);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void readFromNBT(NBTTagCompound tagCompound)
|
|
|
|
{
|
|
|
|
super.readFromNBT(tagCompound);
|
|
|
|
inventory.readFromNBT(tagCompound);
|
2015-05-08 19:42:12 +02:00
|
|
|
energy.readFromNBT(tagCompound);
|
2015-04-24 15:20:09 +02:00
|
|
|
ItemUtils.readInvFromNBT(craftMatrix, "Crafting", tagCompound);
|
|
|
|
isRunning = tagCompound.getBoolean("isRunning");
|
|
|
|
tickTime = tagCompound.getInteger("tickTime");
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void writeToNBT(NBTTagCompound tagCompound)
|
|
|
|
{
|
|
|
|
super.writeToNBT(tagCompound);
|
|
|
|
inventory.writeToNBT(tagCompound);
|
2015-05-08 19:42:12 +02:00
|
|
|
energy.writeToNBT(tagCompound);
|
2015-04-24 15:20:09 +02:00
|
|
|
ItemUtils.writeInvToNBT(craftMatrix, "Crafting", tagCompound);
|
|
|
|
writeUpdateToNBT(tagCompound);
|
|
|
|
}
|
|
|
|
|
|
|
|
public void writeUpdateToNBT(NBTTagCompound tagCompound)
|
|
|
|
{
|
|
|
|
tagCompound.setBoolean("isRunning", isRunning);
|
|
|
|
tagCompound.setInteger("tickTime", tickTime);
|
|
|
|
}
|
2015-06-06 22:41:41 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public void invalidate()
|
|
|
|
{
|
|
|
|
energy.invalidate();
|
|
|
|
super.invalidate();
|
|
|
|
}
|
|
|
|
@Override
|
|
|
|
public void onChunkUnload()
|
|
|
|
{
|
|
|
|
energy.onChunkUnload();
|
|
|
|
super.onChunkUnload();
|
|
|
|
}
|
2015-06-07 10:38:12 +02:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getSizeInventory() {
|
|
|
|
return inventory.getSizeInventory();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getStackInSlot(int slot) {
|
|
|
|
return inventory.getStackInSlot(slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack decrStackSize(int slot, int amount) {
|
|
|
|
return inventory.decrStackSize(slot, amount);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public ItemStack getStackInSlotOnClosing(int slot) {
|
|
|
|
return inventory.getStackInSlotOnClosing(slot);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void setInventorySlotContents(int slot, ItemStack stack) {
|
|
|
|
inventory.setInventorySlotContents(slot, stack);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getInventoryName() {
|
|
|
|
return inventory.getInventoryName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean hasCustomInventoryName() {
|
|
|
|
return inventory.hasCustomInventoryName();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getInventoryStackLimit() {
|
|
|
|
return inventory.getInventoryStackLimit();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isUseableByPlayer(EntityPlayer player) {
|
|
|
|
return inventory.isUseableByPlayer(player);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void openInventory() {
|
|
|
|
inventory.openInventory();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void closeInventory() {
|
|
|
|
inventory.closeInventory();
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean isItemValidForSlot(int slot, ItemStack stack) {
|
|
|
|
return inventory.isItemValidForSlot(slot, stack);
|
|
|
|
}
|
2015-04-14 01:12:24 +02:00
|
|
|
}
|