TechReborn/src/main/java/techreborn/tiles/TileRollingMachine.java

191 lines
4.7 KiB
Java
Raw Normal View History

2015-04-14 01:12:24 +02:00
package techreborn.tiles;
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;
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;
2015-11-23 15:45:16 +01:00
import net.minecraft.util.EnumFacing;
import reborncore.api.power.EnumPowerTier;
import reborncore.api.tile.IInventoryProvider;
2016-10-08 21:46:16 +02:00
import reborncore.common.IWrenchable;
import reborncore.common.powerSystem.TilePowerAcceptor;
2015-11-08 13:15:45 +01:00
import reborncore.common.util.Inventory;
import reborncore.common.util.ItemUtils;
2015-04-15 18:27:05 +02:00
import techreborn.api.RollingMachineRecipe;
2015-04-14 20:23:16 +02:00
import techreborn.init.ModBlocks;
2015-04-14 01:12:24 +02:00
2015-04-15 18:27:05 +02:00
//TODO add tick and power bars.
2016-10-08 21:46:16 +02:00
public class TileRollingMachine extends TilePowerAcceptor implements IWrenchable, IInventoryProvider {
2016-03-25 10:47:34 +01:00
public final InventoryCrafting craftMatrix = new InventoryCrafting(new RollingTileContainer(), 3, 3);
public Inventory inventory = new Inventory(3, "TileRollingMachine", 64, this);
public boolean isRunning;
public int tickTime;
public int runTime = 250;
public ItemStack currentRecipe;
public int euTick = 5;
2016-10-08 21:46:16 +02:00
public TileRollingMachine() {
super(1);
}
@Override
2016-10-08 21:46:16 +02:00
public double getMaxPower() {
return 100000;
}
@Override
2016-10-08 21:46:16 +02:00
public boolean canAcceptEnergy(EnumFacing direction) {
return true;
}
2016-03-25 10:47:34 +01:00
@Override
2016-10-08 21:46:16 +02:00
public boolean canProvideEnergy(EnumFacing direction) {
return false;
}
@Override
2016-10-08 21:46:16 +02:00
public double getMaxOutput() {
return 0;
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public double getMaxInput() {
return 64;
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public EnumPowerTier getTier() {
return EnumPowerTier.LOW;
}
@Override
2016-10-08 21:46:16 +02:00
public void updateEntity() {
super.updateEntity();
charge(2);
2016-11-19 13:50:08 +01:00
if (!world.isRemote) {
currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(craftMatrix, world);
2016-10-08 21:46:16 +02:00
if (currentRecipe != null && canMake()) {
if (tickTime >= runTime) {
2016-11-19 13:50:08 +01:00
currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(craftMatrix, world);
2016-10-08 21:46:16 +02:00
if (currentRecipe != null) {
2016-03-25 10:47:34 +01:00
boolean hasCrafted = false;
2016-10-08 21:46:16 +02:00
if (inventory.getStackInSlot(0) == null) {
2016-03-25 10:47:34 +01:00
inventory.setInventorySlotContents(0, currentRecipe);
tickTime = -1;
hasCrafted = true;
2016-10-08 21:46:16 +02:00
} else {
2016-11-19 13:50:08 +01:00
if (inventory.getStackInSlot(0).getCount() + currentRecipe.getCount() <= currentRecipe
2016-10-08 21:46:16 +02:00
.getMaxStackSize()) {
2016-03-25 10:47:34 +01:00
ItemStack stack = inventory.getStackInSlot(0);
2016-11-19 13:50:08 +01:00
stack.getCount() = stack.getCount() + currentRecipe.getCount();
2016-03-25 10:47:34 +01:00
inventory.setInventorySlotContents(0, stack);
tickTime = -1;
hasCrafted = true;
}
}
2016-10-08 21:46:16 +02:00
if (hasCrafted) {
for (int i = 0; i < craftMatrix.getSizeInventory(); i++) {
2016-03-25 10:47:34 +01:00
craftMatrix.decrStackSize(i, 1);
}
currentRecipe = null;
}
}
}
}
2016-10-08 21:46:16 +02:00
if (currentRecipe != null) {
if (canUseEnergy(euTick) && tickTime < runTime) {
2016-03-25 10:47:34 +01:00
useEnergy(euTick);
tickTime++;
}
}
2016-10-08 21:46:16 +02:00
if (currentRecipe == null) {
2016-03-25 10:47:34 +01:00
tickTime = -1;
}
2016-10-08 21:46:16 +02:00
} else {
2016-11-19 13:50:08 +01:00
currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(craftMatrix, world);
2016-10-08 21:46:16 +02:00
if (currentRecipe != null) {
2016-03-25 10:47:34 +01:00
inventory.setInventorySlotContents(1, currentRecipe);
2016-10-08 21:46:16 +02:00
} else {
2016-03-25 10:47:34 +01:00
inventory.setInventorySlotContents(1, null);
}
}
}
2016-10-08 21:46:16 +02:00
public boolean canMake() {
2016-11-19 13:50:08 +01:00
return RollingMachineRecipe.instance.findMatchingRecipe(craftMatrix, world) != null;
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public boolean wrenchCanSetFacing(EntityPlayer entityPlayer, EnumFacing side) {
2016-03-25 10:47:34 +01:00
return false;
}
@Override
2016-10-08 21:46:16 +02:00
public EnumFacing getFacing() {
2016-03-25 10:47:34 +01:00
return getFacingEnum();
}
@Override
2016-10-08 21:46:16 +02:00
public boolean wrenchCanRemove(EntityPlayer entityPlayer) {
return entityPlayer.isSneaking();
2016-03-25 10:47:34 +01:00
}
@Override
2016-10-08 21:46:16 +02:00
public float getWrenchDropRate() {
2016-03-25 10:47:34 +01:00
return 1.0F;
}
@Override
2016-10-08 21:46:16 +02:00
public ItemStack getWrenchDrop(EntityPlayer entityPlayer) {
2016-03-25 10:47:34 +01:00
return new ItemStack(ModBlocks.RollingMachine, 1);
}
@Override
2016-10-08 21:46:16 +02:00
public void readFromNBT(NBTTagCompound tagCompound) {
2016-03-25 10:47:34 +01:00
super.readFromNBT(tagCompound);
ItemUtils.readInvFromNBT(craftMatrix, "Crafting", tagCompound);
isRunning = tagCompound.getBoolean("isRunning");
tickTime = tagCompound.getInteger("tickTime");
}
@Override
2016-10-08 21:46:16 +02:00
public NBTTagCompound writeToNBT(NBTTagCompound tagCompound) {
2016-03-25 10:47:34 +01:00
super.writeToNBT(tagCompound);
ItemUtils.writeInvToNBT(craftMatrix, "Crafting", tagCompound);
writeUpdateToNBT(tagCompound);
2016-05-18 17:53:54 +02:00
return tagCompound;
2016-03-25 10:47:34 +01:00
}
2016-10-08 21:46:16 +02:00
public void writeUpdateToNBT(NBTTagCompound tagCompound) {
2016-03-25 10:47:34 +01:00
tagCompound.setBoolean("isRunning", isRunning);
tagCompound.setInteger("tickTime", tickTime);
}
@Override
2016-10-08 21:46:16 +02:00
public void invalidate() {
2016-03-25 10:47:34 +01:00
super.invalidate();
}
@Override
2016-10-08 21:46:16 +02:00
public void onChunkUnload() {
2016-03-25 10:47:34 +01:00
super.onChunkUnload();
}
@Override
public Inventory getInventory() {
return inventory;
2016-03-25 10:47:34 +01:00
}
2016-10-08 21:46:16 +02:00
private static class RollingTileContainer extends Container {
2016-03-25 10:47:34 +01:00
@Override
2016-10-08 21:46:16 +02:00
public boolean canInteractWith(EntityPlayer entityplayer) {
2016-03-25 10:47:34 +01:00
return true;
}
}
2015-04-14 01:12:24 +02:00
}