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

247 lines
7.4 KiB
Java
Raw Normal View History

/*
* This file is part of TechReborn, licensed under the MIT License (MIT).
*
* Copyright (c) 2017 TechReborn
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in all
* copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
* SOFTWARE.
*/
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;
2017-01-08 14:00:19 +01:00
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;
2017-01-08 14:00:19 +01:00
2015-04-15 18:27:05 +02:00
import techreborn.api.RollingMachineRecipe;
import techreborn.client.container.IContainerProvider;
import techreborn.client.container.builder.BuiltContainer;
import techreborn.client.container.builder.ContainerBuilder;
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.
public class TileRollingMachine extends TilePowerAcceptor
implements IWrenchable, IInventoryProvider, IContainerProvider {
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 10000;
}
@Override
2017-01-08 14:00:19 +01:00
public boolean canAcceptEnergy(final EnumFacing direction) {
return true;
}
2016-03-25 10:47:34 +01:00
@Override
2017-01-08 14:00:19 +01:00
public boolean canProvideEnergy(final 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();
2017-01-08 14:00:19 +01:00
this.charge(2);
if (!this.world.isRemote) {
this.currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(this.craftMatrix, this.world);
if (this.currentRecipe != null && this.canMake()) {
if (this.tickTime >= this.runTime) {
this.currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(this.craftMatrix, this.world);
if (this.currentRecipe != null) {
2016-03-25 10:47:34 +01:00
boolean hasCrafted = false;
2017-01-08 14:00:19 +01:00
if (this.inventory.getStackInSlot(0) == ItemStack.EMPTY) {
this.inventory.setInventorySlotContents(0, this.currentRecipe);
this.tickTime = -1;
2016-03-25 10:47:34 +01:00
hasCrafted = true;
2016-10-08 21:46:16 +02:00
} else {
2017-01-08 14:00:19 +01:00
if (this.inventory.getStackInSlot(0).getCount() + this.currentRecipe.getCount() <= this.currentRecipe
.getMaxStackSize()) {
final ItemStack stack = this.inventory.getStackInSlot(0);
stack.setCount(stack.getCount() + this.currentRecipe.getCount());
this.inventory.setInventorySlotContents(0, stack);
this.tickTime = -1;
2016-03-25 10:47:34 +01:00
hasCrafted = true;
}
}
2016-10-08 21:46:16 +02:00
if (hasCrafted) {
2017-01-08 14:00:19 +01:00
for (int i = 0; i < this.craftMatrix.getSizeInventory(); i++) {
this.craftMatrix.decrStackSize(i, 1);
2016-03-25 10:47:34 +01:00
}
2017-01-08 14:00:19 +01:00
this.currentRecipe = null;
2016-03-25 10:47:34 +01:00
}
}
}
}
2017-01-08 14:00:19 +01:00
if (this.currentRecipe != null) {
if (this.canUseEnergy(this.euTick) && this.tickTime < this.runTime) {
this.useEnergy(this.euTick);
this.tickTime++;
2016-03-25 10:47:34 +01:00
}
}
2017-01-08 14:00:19 +01:00
if (this.currentRecipe == null) {
this.tickTime = -1;
2016-03-25 10:47:34 +01:00
}
2016-10-08 21:46:16 +02:00
} else {
2017-01-08 14:00:19 +01:00
this.currentRecipe = RollingMachineRecipe.instance.findMatchingRecipe(this.craftMatrix, this.world);
if (this.currentRecipe != null) {
this.inventory.setInventorySlotContents(1, this.currentRecipe);
2016-10-08 21:46:16 +02:00
} else {
2017-01-08 14:00:19 +01:00
this.inventory.setInventorySlotContents(1, ItemStack.EMPTY);
2016-03-25 10:47:34 +01:00
}
}
}
2016-10-08 21:46:16 +02:00
public boolean canMake() {
2017-01-08 14:00:19 +01:00
return RollingMachineRecipe.instance.findMatchingRecipe(this.craftMatrix, this.world) != null;
2016-03-25 10:47:34 +01:00
}
@Override
2017-01-08 14:00:19 +01:00
public boolean wrenchCanSetFacing(final EntityPlayer entityPlayer, final EnumFacing side) {
2016-03-25 10:47:34 +01:00
return false;
}
@Override
2016-10-08 21:46:16 +02:00
public EnumFacing getFacing() {
2017-01-08 14:00:19 +01:00
return this.getFacingEnum();
2016-03-25 10:47:34 +01:00
}
@Override
2017-01-08 14:00:19 +01:00
public boolean wrenchCanRemove(final 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
2017-01-08 14:00:19 +01:00
public ItemStack getWrenchDrop(final EntityPlayer entityPlayer) {
return new ItemStack(ModBlocks.ROLLING_MACHINE, 1);
2016-03-25 10:47:34 +01:00
}
@Override
2017-01-08 14:00:19 +01:00
public void readFromNBT(final NBTTagCompound tagCompound) {
2016-03-25 10:47:34 +01:00
super.readFromNBT(tagCompound);
2017-01-08 14:00:19 +01:00
ItemUtils.readInvFromNBT(this.craftMatrix, "Crafting", tagCompound);
this.isRunning = tagCompound.getBoolean("isRunning");
this.tickTime = tagCompound.getInteger("tickTime");
2016-03-25 10:47:34 +01:00
}
@Override
2017-01-08 14:00:19 +01:00
public NBTTagCompound writeToNBT(final NBTTagCompound tagCompound) {
2016-03-25 10:47:34 +01:00
super.writeToNBT(tagCompound);
2017-01-08 14:00:19 +01:00
ItemUtils.writeInvToNBT(this.craftMatrix, "Crafting", tagCompound);
this.writeUpdateToNBT(tagCompound);
2016-05-18 17:53:54 +02:00
return tagCompound;
2016-03-25 10:47:34 +01:00
}
2017-01-08 14:00:19 +01:00
public void writeUpdateToNBT(final NBTTagCompound tagCompound) {
tagCompound.setBoolean("isRunning", this.isRunning);
tagCompound.setInteger("tickTime", this.tickTime);
2016-03-25 10:47:34 +01:00
}
@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() {
2017-01-08 14:00:19 +01:00
return this.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
2017-01-08 14:00:19 +01:00
public boolean canInteractWith(final EntityPlayer entityplayer) {
2016-03-25 10:47:34 +01:00
return true;
}
}
2017-01-08 14:00:19 +01:00
public int getBurnTime() {
return this.tickTime;
}
public void setBurnTime(final int burnTime) {
this.tickTime = burnTime;
}
public int getBurnTimeRemainingScaled(final int scale) {
if (this.tickTime == 0 || this.runTime == 0) {
return 0;
}
return this.tickTime * scale / this.runTime;
}
@Override
public BuiltContainer createContainer(final EntityPlayer player) {
return new ContainerBuilder("rollingmachine").player(player.inventory).inventory(8, 84).hotbar(8, 142)
.addInventory().tile(this.craftMatrix).slot(0, 30, 17).slot(1, 48, 17).slot(2, 66, 17).slot(3, 30, 35)
.slot(4, 48, 35).slot(5, 66, 35).slot(6, 30, 53).slot(7, 48, 53).slot(8, 66, 53)
.onCraft(inv -> this.inventory.setInventorySlotContents(1,
RollingMachineRecipe.instance.findMatchingRecipe(inv, this.world)))
.addInventory().tile(this).outputSlot(0, 124, 35).energySlot(2, 8, 51).syncEnergyValue()
.syncIntegerValue(this::getBurnTime, this::setBurnTime).addInventory().create();
}
2015-04-14 01:12:24 +02:00
}