2015-08-29 14:33:25 +02:00
|
|
|
|
/*
|
|
|
|
|
* This file ("TileEntityItemRepairer.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
2015-04-02 12:06:42 +02:00
|
|
|
|
package ellpeck.actuallyadditions.tile;
|
|
|
|
|
|
2015-05-20 22:39:43 +02:00
|
|
|
|
import cofh.api.energy.EnergyStorage;
|
|
|
|
|
import cofh.api.energy.IEnergyReceiver;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-04-24 19:22:03 +02:00
|
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
2015-07-02 04:21:21 +02:00
|
|
|
|
import ellpeck.actuallyadditions.network.sync.IPacketSyncerToClient;
|
|
|
|
|
import ellpeck.actuallyadditions.network.sync.PacketSyncerToClient;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-05-20 22:39:43 +02:00
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
|
2015-07-02 04:21:21 +02:00
|
|
|
|
public class TileEntityItemRepairer extends TileEntityInventoryBase implements IEnergyReceiver, IPacketSyncerToClient{
|
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-06-12 19:12:06 +02:00
|
|
|
|
public EnergyStorage storage = new EnergyStorage(300000);
|
2015-07-02 04:21:21 +02:00
|
|
|
|
private int lastEnergy;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
|
|
|
|
|
public int nextRepairTick;
|
|
|
|
|
|
|
|
|
|
public TileEntityItemRepairer(){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
super(2, "repairer");
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
|
public void updateEntity(){
|
|
|
|
|
if(!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{
|
2015-08-15 20:41:45 +02:00
|
|
|
|
if(this.storage.getEnergyStored() >= ConfigIntValues.REPAIRER_ENERGY_USED.getValue()){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
this.nextRepairTick++;
|
2015-08-15 20:41:45 +02:00
|
|
|
|
this.storage.extractEnergy(ConfigIntValues.REPAIRER_ENERGY_USED.getValue(), false);
|
|
|
|
|
if(this.nextRepairTick >= ConfigIntValues.REPAIRER_SPEED_SLOWDOWN.getValue()){
|
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;
|
|
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
|
|
|
|
|
if(this.lastEnergy != this.storage.getEnergyStored()){
|
|
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
|
this.sendUpdate();
|
|
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public static boolean canBeRepaired(ItemStack stack){
|
|
|
|
|
return stack != null && stack.getItem().isRepairable();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void writeToNBT(NBTTagCompound compound){
|
|
|
|
|
compound.setInteger("NextRepairTick", this.nextRepairTick);
|
|
|
|
|
super.writeToNBT(compound);
|
2015-05-20 22:39:43 +02:00
|
|
|
|
this.storage.writeToNBT(compound);
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void readFromNBT(NBTTagCompound compound){
|
|
|
|
|
this.nextRepairTick = compound.getInteger("NextRepairTick");
|
|
|
|
|
super.readFromNBT(compound);
|
2015-05-20 22:39:43 +02:00
|
|
|
|
this.storage.readFromNBT(compound);
|
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 isItemValidForSlot(int i, ItemStack stack){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
return i == SLOT_INPUT;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean canInsertItem(int slot, ItemStack stack, int side){
|
|
|
|
|
return this.isItemValidForSlot(slot, stack);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public boolean canExtractItem(int slot, ItemStack stack, int side){
|
2015-05-20 22:39:43 +02:00
|
|
|
|
return slot == SLOT_OUTPUT;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-05-20 22:39:43 +02:00
|
|
|
|
public int receiveEnergy(ForgeDirection from, int maxReceive, boolean simulate){
|
|
|
|
|
return this.storage.receiveEnergy(maxReceive, simulate);
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-05-20 22:39:43 +02:00
|
|
|
|
public int getEnergyStored(ForgeDirection from){
|
|
|
|
|
return this.storage.getEnergyStored();
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-05-20 22:39:43 +02:00
|
|
|
|
public int getMaxEnergyStored(ForgeDirection from){
|
|
|
|
|
return this.storage.getMaxEnergyStored();
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
2015-05-20 22:39:43 +02:00
|
|
|
|
public boolean canConnectEnergy(ForgeDirection from){
|
|
|
|
|
return true;
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|
2015-07-02 04:21:21 +02:00
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public int[] getValues(){
|
|
|
|
|
return new int[]{this.storage.getEnergyStored()};
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void setValues(int[] values){
|
|
|
|
|
this.storage.setEnergyStored(values[0]);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public void sendUpdate(){
|
|
|
|
|
PacketSyncerToClient.sendPacket(this);
|
|
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
|
}
|