/* * 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. */ package techreborn.tiles.teir1; import net.minecraft.entity.player.EntityPlayer; import net.minecraft.item.ItemStack; import net.minecraft.nbt.NBTTagCompound; import net.minecraft.util.EnumFacing; import reborncore.api.power.EnumPowerTier; import reborncore.api.recipe.IRecipeCrafterProvider; import reborncore.api.tile.IInventoryProvider; import reborncore.common.IWrenchable; import reborncore.common.powerSystem.TilePowerAcceptor; import reborncore.common.recipes.RecipeCrafter; import reborncore.common.util.Inventory; import techreborn.api.Reference; import techreborn.client.container.IContainerProvider; import techreborn.client.container.builder.BuiltContainer; import techreborn.client.container.builder.ContainerBuilder; import techreborn.init.ModBlocks; import techreborn.utils.upgrade.UpgradeHandler; public class TileGrinder extends TilePowerAcceptor implements IWrenchable, IInventoryProvider, IRecipeCrafterProvider, IContainerProvider { public Inventory inventory = new Inventory(6, "TileGrinder", 64, this); public UpgradeHandler upgradeHandler; public RecipeCrafter crafter; public int capacity = 1000; public TileGrinder() { super(1); final int[] inputs = new int[1]; inputs[0] = 0; final int[] outputs = new int[1]; outputs[0] = 1; this.crafter = new RecipeCrafter(Reference.grinderRecipe, this, 2, 1, this.inventory, inputs, outputs); this.upgradeHandler = new UpgradeHandler(this.crafter, this.inventory, 2, 3, 4, 5); } @Override public void update() { if (!this.world.isRemote) { super.update(); this.upgradeHandler.tick(); //charge(3); TODO this.charge(3); } } @Override public boolean wrenchCanSetFacing(final EntityPlayer entityPlayer, final EnumFacing side) { return false; } @Override public EnumFacing getFacing() { return this.getFacingEnum(); } @Override public boolean wrenchCanRemove(final EntityPlayer entityPlayer) { return entityPlayer.isSneaking(); } @Override public float getWrenchDropRate() { return 1.0F; } @Override public ItemStack getWrenchDrop(final EntityPlayer entityPlayer) { return new ItemStack(ModBlocks.GRINDER, 1); } public boolean isComplete() { return false; } @Override public void readFromNBT(final NBTTagCompound tagCompound) { super.readFromNBT(tagCompound); this.inventory.readFromNBT(tagCompound); this.crafter.readFromNBT(tagCompound); } @Override public NBTTagCompound writeToNBT(final NBTTagCompound tagCompound) { super.writeToNBT(tagCompound); this.crafter.writeToNBT(tagCompound); return tagCompound; } public int getProgressScaled(final int scale) { if (this.crafter.currentTickTime != 0 && this.crafter.currentNeededTicks != 0) { return this.crafter.currentTickTime * scale / this.crafter.currentNeededTicks; } return 0; } @Override public double getMaxPower() { return this.capacity; } @Override public boolean canAcceptEnergy(final EnumFacing direction) { return true; } @Override public boolean canProvideEnergy(final EnumFacing direction) { return false; } @Override public double getMaxOutput() { return 0; } @Override public double getMaxInput() { return 32; } @Override public EnumPowerTier getTier() { return EnumPowerTier.LOW; } @Override public Inventory getInventory() { return this.inventory; } @Override public RecipeCrafter getRecipeCrafter() { return this.crafter; } @Override public int[] getSlotsForFace(final EnumFacing side) { if (side.equals(EnumFacing.UP)) return new int[] { 0 }; else if (side.equals(EnumFacing.DOWN)) return new int[] { 1 }; return new int[0]; } @Override public boolean canInsertItem(final int index, final ItemStack itemStackIn, final EnumFacing direction) { return index == 0; } @Override public boolean canExtractItem(final int index, final ItemStack stack, final EnumFacing direction) { return index == 1; } @Override public BuiltContainer createContainer(final EntityPlayer player) { return new ContainerBuilder("grinder").player(player.inventory).inventory().hotbar().addInventory() .tile(this).slot(0, 55, 45).outputSlot(1, 101, 45).syncEnergyValue().syncCrafterValue().addInventory() .create(); } }