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
|
|
|
|
*
|
2017-01-01 16:23:26 +01:00
|
|
|
* © 2015-2017 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
|
|
|
|
2016-06-05 12:15:02 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.config.values.ConfigStringListValues;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-05-05 10:01:15 +02:00
|
|
|
import net.minecraft.item.Item;
|
2015-04-02 12:06:42 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2016-01-07 19:04:29 +01:00
|
|
|
import net.minecraft.util.EnumFacing;
|
2016-11-26 08:58:42 +01:00
|
|
|
import net.minecraftforge.energy.IEnergyStorage;
|
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
|
|
|
|
2016-11-26 20:43:50 +01:00
|
|
|
public class TileEntityItemRepairer extends TileEntityInventoryBase{
|
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;
|
2016-11-21 20:25:32 +01:00
|
|
|
public static final int ENERGY_USE = 2500;
|
2016-11-26 20:43:50 +01:00
|
|
|
public final CustomEnergyStorage storage = new CustomEnergyStorage(300000, 6000, 0);
|
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){
|
2016-11-16 20:31:16 +01:00
|
|
|
if(StackUtil.isValid(stack)){
|
2016-05-05 10:01:15 +02:00
|
|
|
Item item = stack.getItem();
|
|
|
|
if(item != null){
|
2016-11-27 10:46:48 +01:00
|
|
|
if(item.isRepairable() && item.getMaxDamage(stack) > 0){
|
2016-05-05 10:01:15 +02:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else{
|
|
|
|
String reg = item.getRegistryName().toString();
|
|
|
|
if(reg != null){
|
2016-06-05 12:15:02 +02:00
|
|
|
for(String strg : ConfigStringListValues.REPAIRER_EXTRA_WHITELIST.getValue()){
|
2016-05-05 10:01:15 +02:00
|
|
|
if(reg.equals(strg)){
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
2016-02-01 20:39:11 +01:00
|
|
|
}
|
|
|
|
|
2016-02-01 20:32:49 +01:00
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void writeSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
compound.setInteger("NextRepairTick", this.nextRepairTick);
|
|
|
|
}
|
|
|
|
super.writeSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.writeToNBT(compound);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-07-02 15:01:46 +02:00
|
|
|
public void readSyncableNBT(NBTTagCompound compound, NBTType type){
|
|
|
|
if(type != NBTType.SAVE_BLOCK){
|
|
|
|
this.nextRepairTick = compound.getInteger("NextRepairTick");
|
|
|
|
}
|
|
|
|
super.readSyncableNBT(compound, type);
|
2016-02-01 20:32:49 +01:00
|
|
|
this.storage.readFromNBT(compound);
|
|
|
|
}
|
|
|
|
|
2015-04-02 12:06:42 +02:00
|
|
|
@Override
|
|
|
|
public void updateEntity(){
|
2015-11-18 23:11:24 +01:00
|
|
|
super.updateEntity();
|
2016-11-26 21:32:27 +01:00
|
|
|
if(!this.world.isRemote){
|
2016-12-04 00:10:52 +01:00
|
|
|
ItemStack input = this.slots.getStackInSlot(SLOT_INPUT);
|
|
|
|
if(!StackUtil.isValid(this.slots.getStackInSlot(SLOT_OUTPUT)) && canBeRepaired(input)){
|
2016-07-08 14:29:12 +02:00
|
|
|
if(input.getItemDamage() <= 0){
|
2016-12-04 00:10:52 +01:00
|
|
|
this.slots.setStackInSlot(SLOT_OUTPUT, input.copy());
|
|
|
|
this.slots.setStackInSlot(SLOT_INPUT, StackUtil.getNull());
|
2015-05-20 22:39:43 +02:00
|
|
|
this.nextRepairTick = 0;
|
|
|
|
}
|
|
|
|
else{
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.storage.getEnergyStored() >= ENERGY_USE){
|
2015-05-20 22:39:43 +02:00
|
|
|
this.nextRepairTick++;
|
2016-11-23 18:10:55 +01:00
|
|
|
this.storage.extractEnergyInternal(ENERGY_USE, false);
|
2016-11-03 22:43:40 +01:00
|
|
|
if(this.nextRepairTick >= 4){
|
2015-05-20 22:39:43 +02:00
|
|
|
this.nextRepairTick = 0;
|
2016-07-08 14:29:12 +02:00
|
|
|
input.setItemDamage(input.getItemDamage()-1);
|
|
|
|
|
|
|
|
if(input.hasTagCompound()){
|
|
|
|
//TiCon un-break tools
|
|
|
|
if("tconstruct".equalsIgnoreCase(input.getItem().getRegistryName().getResourceDomain())){
|
|
|
|
NBTTagCompound stats = input.getTagCompound().getCompoundTag("Stats");
|
|
|
|
stats.removeTag("Broken");
|
|
|
|
}
|
|
|
|
}
|
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
|
|
|
|
2015-12-01 17:28:50 +01:00
|
|
|
if(this.lastEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()){
|
2015-07-02 04:21:21 +02:00
|
|
|
this.lastEnergy = this.storage.getEnergyStored();
|
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-02-01 17:49:55 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
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){
|
2016-12-04 00:10:52 +01:00
|
|
|
if(StackUtil.isValid(this.slots.getStackInSlot(SLOT_INPUT))){
|
|
|
|
return (this.slots.getStackInSlot(SLOT_INPUT).getMaxDamage()-this.slots.getStackInSlot(SLOT_INPUT).getItemDamage())*i/this.slots.getStackInSlot(SLOT_INPUT).getMaxDamage();
|
2015-04-02 12:06:42 +02:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2016-12-04 00:10:52 +01:00
|
|
|
public boolean canExtractItem(int slot, ItemStack stack){
|
2015-05-20 22:39:43 +02:00
|
|
|
return slot == SLOT_OUTPUT;
|
2015-04-02 12:06:42 +02:00
|
|
|
}
|
|
|
|
|
2016-11-26 08:58:42 +01:00
|
|
|
@Override
|
|
|
|
public IEnergyStorage getEnergyStorage(EnumFacing facing){
|
|
|
|
return this.storage;
|
|
|
|
}
|
2015-04-02 12:06:42 +02:00
|
|
|
}
|