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

178 lines
6.7 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
*
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
2019-05-02 09:54:52 +02:00
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
import de.ellpeck.actuallyadditions.mod.config.values.ConfigStringListValues;
2018-08-10 05:04:07 +02:00
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IAcceptor;
import de.ellpeck.actuallyadditions.mod.util.ItemStackHandlerAA.IRemover;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import net.minecraft.item.Item;
2015-04-02 12:06:42 +02:00
import net.minecraft.item.ItemStack;
2021-02-26 22:15:48 +01:00
import net.minecraft.nbt.CompoundNBT;
import net.minecraft.util.Direction;
2019-05-02 09:54:52 +02:00
import net.minecraft.util.ResourceLocation;
2021-02-27 16:33:00 +01:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
import net.minecraftforge.common.util.LazyOptional;
2016-11-26 08:58:42 +01:00
import net.minecraftforge.energy.IEnergyStorage;
2021-02-27 16:33:00 +01:00
import net.minecraftforge.registries.ForgeRegistries;
2021-02-26 22:15:48 +01:00
import org.apache.commons.lang3.tuple.Pair;
import java.util.ArrayList;
import java.util.List;
2015-04-02 12:06:42 +02:00
2018-08-10 05:04:07 +02: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;
public static final int ENERGY_USE = 2500;
2016-11-26 20:43:50 +01:00
public final CustomEnergyStorage storage = new CustomEnergyStorage(300000, 6000, 0);
2021-02-27 16:33:00 +01:00
public final LazyOptional<IEnergyStorage> lazyEnergy = LazyOptional.of(() -> this.storage);
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
2018-08-10 05:04:07 +02:00
public TileEntityItemRepairer() {
2021-02-27 16:33:00 +01:00
super(ActuallyTiles.ITEMREPAIRER_TILE.get(), 2);
2015-04-02 12:06:42 +02:00
}
2018-08-10 05:04:07 +02:00
public static boolean canBeRepaired(ItemStack stack) {
if (StackUtil.isValid(stack)) {
Item item = stack.getItem();
2018-08-10 05:04:07 +02:00
if (item != null) {
2021-02-27 16:33:00 +01:00
if (item.isRepairable(stack) && item.getMaxDamage(stack) > 0) {
return true;
2018-08-10 05:04:07 +02:00
} else {
String reg = item.getRegistryName().toString();
2018-08-10 05:04:07 +02:00
if (reg != null) {
for (String strg : ConfigStringListValues.REPAIRER_EXTRA_WHITELIST.getValue()) {
2021-02-26 22:15:48 +01:00
if (reg.equals(strg)) {
return true;
}
}
}
}
}
}
return false;
2016-02-01 20:39:11 +01:00
}
@Override
2021-02-26 22:15:48 +01:00
public void writeSyncableNBT(CompoundNBT compound, NBTType type) {
2018-08-10 05:04:07 +02:00
if (type != NBTType.SAVE_BLOCK) {
2021-02-27 16:33:00 +01:00
compound.putInt("NextRepairTick", this.nextRepairTick);
}
super.writeSyncableNBT(compound, type);
this.storage.writeToNBT(compound);
}
@Override
2021-02-26 22:15:48 +01:00
public void readSyncableNBT(CompoundNBT compound, NBTType type) {
2018-08-10 05:04:07 +02:00
if (type != NBTType.SAVE_BLOCK) {
2021-02-27 16:33:00 +01:00
this.nextRepairTick = compound.getInt("NextRepairTick");
}
super.readSyncableNBT(compound, type);
this.storage.readFromNBT(compound);
}
2015-04-02 12:06:42 +02:00
@Override
2018-08-10 05:04:07 +02:00
public void updateEntity() {
super.updateEntity();
2018-08-10 05:04:07 +02:00
if (!this.world.isRemote) {
ItemStack input = this.inv.getStackInSlot(SLOT_INPUT);
2018-08-10 05:04:07 +02:00
if (!StackUtil.isValid(this.inv.getStackInSlot(SLOT_OUTPUT)) && canBeRepaired(input)) {
2021-02-27 16:33:00 +01:00
if (input.getDamage() <= 0) {
this.inv.setStackInSlot(SLOT_OUTPUT, input.copy());
this.inv.setStackInSlot(SLOT_INPUT, StackUtil.getEmpty());
2015-05-20 22:39:43 +02:00
this.nextRepairTick = 0;
2018-08-10 05:04:07 +02:00
} else {
if (this.storage.getEnergyStored() >= ENERGY_USE) {
2015-05-20 22:39:43 +02:00
this.nextRepairTick++;
this.storage.extractEnergyInternal(ENERGY_USE, false);
2018-08-10 05:04:07 +02:00
if (this.nextRepairTick >= 4) {
2015-05-20 22:39:43 +02:00
this.nextRepairTick = 0;
2021-02-27 16:33:00 +01:00
input.setDamage(input.getDamage() - 1);
2021-02-27 16:33:00 +01:00
// TODO: [port] validate this is still needed
if (input.hasTag()) {
//TiCon un-break tools
2018-08-10 05:04:07 +02:00
if ("tconstruct".equalsIgnoreCase(input.getItem().getRegistryName().getNamespace())) {
2021-02-27 16:33:00 +01:00
CompoundNBT stats = input.getOrCreateTag().getCompound("Stats");
stats.remove("Broken");
}
}
2015-04-02 12:06:42 +02:00
}
}
}
2018-08-10 05:04:07 +02:00
} else {
2015-10-02 16:48:01 +02:00
this.nextRepairTick = 0;
}
2018-08-10 05:04:07 +02:00
if (this.lastEnergy != this.storage.getEnergyStored() && this.sendUpdateWithInterval()) {
this.lastEnergy = this.storage.getEnergyStored();
}
2015-04-02 12:06:42 +02:00
}
}
2021-02-26 22:15:48 +01:00
@OnlyIn(Dist.CLIENT)
2018-08-10 05:04:07 +02:00
public int getEnergyScaled(int i) {
return this.storage.getEnergyStored() * i / this.storage.getMaxEnergyStored();
2015-04-02 12:06:42 +02:00
}
2018-08-10 05:04:07 +02:00
public int getItemDamageToScale(int i) {
2021-02-26 22:15:48 +01:00
if (StackUtil.isValid(this.inv.getStackInSlot(SLOT_INPUT))) {
2021-02-27 16:33:00 +01:00
return (this.inv.getStackInSlot(SLOT_INPUT).getMaxDamage() - this.inv.getStackInSlot(SLOT_INPUT).getDamage()) * i / this.inv.getStackInSlot(SLOT_INPUT).getMaxDamage();
2021-02-26 22:15:48 +01:00
}
2015-04-02 12:06:42 +02:00
return 0;
}
2019-05-02 09:54:52 +02:00
@Override
2021-02-27 16:33:00 +01:00
public LazyOptional<IEnergyStorage> getEnergyStorage(Direction facing) {
return this.lazyEnergy;
2019-05-02 09:54:52 +02:00
}
@Override
public IAcceptor getAcceptor() {
return (slot, stack, automation) -> !isBlacklisted(stack) && (!automation || slot == SLOT_INPUT);
}
2015-04-02 12:06:42 +02:00
@Override
2018-08-10 05:04:07 +02:00
public IRemover getRemover() {
return (slot, automation) -> !automation || slot == SLOT_OUTPUT;
2015-04-02 12:06:42 +02:00
}
2019-05-02 09:54:52 +02:00
private static final List<Pair<Item, Integer>> BLACKLIST = new ArrayList<>();
private static boolean runOnce = false;
2021-02-27 16:33:00 +01:00
// TODO: [port] fix this.
2019-05-02 09:54:52 +02:00
public static boolean isBlacklisted(ItemStack stack) {
if (!runOnce) {
runOnce = true;
for (String s : ConfigStringListValues.REPAIR_BLACKLIST.getValue()) {
String[] split = s.split("@");
Item item = ForgeRegistries.ITEMS.getValue(new ResourceLocation(split[0]));
if (item == null) {
ActuallyAdditions.LOGGER.error("Invalid item in repair blacklist: " + s);
continue;
}
2021-02-26 22:15:48 +01:00
if (split.length == 1) {
BLACKLIST.add(Pair.of(item, 0));
} else if (split.length == 2) {
2019-05-02 09:54:52 +02:00
BLACKLIST.add(Pair.of(item, Integer.parseInt(split[1])));
}
}
}
2021-02-27 16:33:00 +01:00
return false; //BLACKLIST.contains(stack.getItem());
2016-11-26 08:58:42 +01:00
}
2015-04-02 12:06:42 +02:00
}