ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/tile/TileEntityItemRepairer.java

162 lines
5.1 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("TileEntityItemRepairer.java") is part of the Actually Additions mod for Minecraft.
2015-08-29 14:33:25 +02:00
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-05-16 22:52:27 +02:00
* http://ellpeck.de/actaddlicense
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-05-16 22:54:42 +02:00
* © 2015-2016 Ellpeck
2015-08-29 14:33:25 +02:00
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.tile;
2015-04-02 12:06:42 +02:00
2015-05-20 22:39:43 +02:00
import cofh.api.energy.EnergyStorage;
import cofh.api.energy.IEnergyReceiver;
import de.ellpeck.actuallyadditions.mod.config.ConfigValues;
import net.minecraft.item.Item;
2015-04-02 12:06:42 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.util.EnumFacing;
2016-01-07 18:20:59 +01:00
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;
2015-04-02 12:06:42 +02:00
public class TileEntityItemRepairer extends TileEntityInventoryBase implements IEnergyReceiver, IEnergySaver{
2015-04-02 12:06:42 +02:00
2015-05-20 22:39:43 +02:00
public static final int SLOT_INPUT = 0;
public static final int SLOT_OUTPUT = 1;
2015-12-01 19:48:09 +01:00
public static final int ENERGY_USE = 1500;
2016-05-19 20:05:12 +02:00
public final EnergyStorage storage = new EnergyStorage(300000);
2015-04-02 12:06:42 +02:00
public int nextRepairTick;
2015-10-03 10:16:18 +02:00
private int lastEnergy;
2015-04-02 12:06:42 +02:00
public TileEntityItemRepairer(){
2015-05-20 22:39:43 +02:00
super(2, "repairer");
2015-04-02 12:06:42 +02:00
}
2016-02-01 20:39:11 +01:00
public static boolean canBeRepaired(ItemStack stack){
if(stack != null){
Item item = stack.getItem();
if(item != null){
if(item.isRepairable()){
return true;
}
else{
String reg = item.getRegistryName().toString();
if(reg != null){
for(String strg : ConfigValues.repairerExtraWhitelist){
if(reg.equals(strg)){
return true;
}
}
}
}
}
}
return false;
2016-02-01 20:39:11 +01:00
}
@Override
public void writeSyncableNBT(NBTTagCompound compound, boolean sync){
compound.setInteger("NextRepairTick", this.nextRepairTick);
super.writeSyncableNBT(compound, sync);
this.storage.writeToNBT(compound);
}
@Override
public void readSyncableNBT(NBTTagCompound compound, boolean sync){
this.nextRepairTick = compound.getInteger("NextRepairTick");
super.readSyncableNBT(compound, sync);
this.storage.readFromNBT(compound);
}
2015-04-02 12:06:42 +02:00
@Override
@SuppressWarnings("unchecked")
public void updateEntity(){
super.updateEntity();
2016-05-02 17:46:53 +02:00
if(!this.worldObj.isRemote){
2015-05-20 22:39:43 +02:00
if(this.slots[SLOT_OUTPUT] == null && canBeRepaired(this.slots[SLOT_INPUT])){
if(this.slots[SLOT_INPUT].getItemDamage() <= 0){
this.slots[SLOT_OUTPUT] = this.slots[SLOT_INPUT].copy();
this.slots[SLOT_INPUT] = null;
this.nextRepairTick = 0;
}
else{
if(this.storage.getEnergyStored() >= ENERGY_USE){
2015-05-20 22:39:43 +02:00
this.nextRepairTick++;
this.storage.extractEnergy(ENERGY_USE, false);
if(this.nextRepairTick >= 2){
2015-05-20 22:39:43 +02:00
this.nextRepairTick = 0;
2015-10-02 16:48:01 +02:00
this.slots[SLOT_INPUT].setItemDamage(this.slots[SLOT_INPUT].getItemDamage()-1);
2015-04-02 12:06:42 +02:00
}
}
}
}
2015-10-02 16:48:01 +02:00
else{
this.nextRepairTick = 0;
}
if(this.lastEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()){
this.lastEnergy = this.storage.getEnergyStored();
}
2015-04-02 12:06:42 +02:00
}
}
2016-02-01 17:49:55 +01:00
@Override
public boolean isItemValidForSlot(int i, ItemStack stack){
2016-02-01 17:49:55 +01:00
return i == SLOT_INPUT;
}
2015-04-02 12:06:42 +02:00
@SideOnly(Side.CLIENT)
2015-05-20 22:39:43 +02:00
public int getEnergyScaled(int i){
2015-10-02 16:48:01 +02:00
return this.storage.getEnergyStored()*i/this.storage.getMaxEnergyStored();
2015-04-02 12:06:42 +02:00
}
@SideOnly(Side.CLIENT)
public int getItemDamageToScale(int i){
if(this.slots[SLOT_INPUT] != null){
2015-10-02 16:48:01 +02:00
return (this.slots[SLOT_INPUT].getMaxDamage()-this.slots[SLOT_INPUT].getItemDamage())*i/this.slots[SLOT_INPUT].getMaxDamage();
2015-04-02 12:06:42 +02:00
}
return 0;
}
@Override
public boolean canInsertItem(int slot, ItemStack stack, EnumFacing side){
2015-04-02 12:06:42 +02:00
return this.isItemValidForSlot(slot, stack);
}
@Override
public boolean canExtractItem(int slot, ItemStack stack, EnumFacing side){
2015-05-20 22:39:43 +02:00
return slot == SLOT_OUTPUT;
2015-04-02 12:06:42 +02:00
}
@Override
public int receiveEnergy(EnumFacing from, int maxReceive, boolean simulate){
2015-05-20 22:39:43 +02:00
return this.storage.receiveEnergy(maxReceive, simulate);
2015-04-02 12:06:42 +02:00
}
@Override
public int getEnergyStored(EnumFacing from){
2015-05-20 22:39:43 +02:00
return this.storage.getEnergyStored();
2015-04-02 12:06:42 +02:00
}
@Override
public int getMaxEnergyStored(EnumFacing from){
2015-05-20 22:39:43 +02:00
return this.storage.getMaxEnergyStored();
2015-04-02 12:06:42 +02:00
}
@Override
public boolean canConnectEnergy(EnumFacing from){
2015-05-20 22:39:43 +02:00
return true;
2015-04-02 12:06:42 +02:00
}
@Override
public int getEnergy(){
return this.storage.getEnergyStored();
}
@Override
public void setEnergy(int energy){
this.storage.setEnergyStored(energy);
}
2015-04-02 12:06:42 +02:00
}