NaturesAura/src/main/java/de/ellpeck/naturesaura/api/aura/container/ItemAuraContainer.java

70 lines
1.8 KiB
Java
Raw Normal View History

2018-11-11 13:26:19 +01:00
package de.ellpeck.naturesaura.api.aura.container;
2018-10-20 21:19:08 +02:00
import de.ellpeck.naturesaura.api.aura.type.IAuraType;
2018-10-20 21:19:08 +02:00
import net.minecraft.item.ItemStack;
2019-10-20 22:30:49 +02:00
import net.minecraft.nbt.CompoundNBT;
2018-10-20 21:19:08 +02:00
public class ItemAuraContainer implements IAuraContainer {
protected final ItemStack stack;
protected final IAuraType type;
2018-10-20 21:19:08 +02:00
protected final int maxAura;
public ItemAuraContainer(ItemStack stack, IAuraType type, int maxAura) {
2018-10-20 21:19:08 +02:00
this.stack = stack;
this.type = type;
2018-10-20 21:19:08 +02:00
this.maxAura = maxAura;
}
@Override
public int storeAura(int amountToStore, boolean simulate) {
int aura = this.getStoredAura();
int actual = Math.min(amountToStore, this.getMaxAura() - aura);
if (!simulate) {
this.setAura(aura + actual);
}
return actual;
}
@Override
public int drainAura(int amountToDrain, boolean simulate) {
int aura = this.getStoredAura();
int actual = Math.min(amountToDrain, aura);
if (!simulate) {
this.setAura(aura - actual);
}
return actual;
}
private void setAura(int amount) {
if (!this.stack.hasTagCompound()) {
2019-10-20 22:30:49 +02:00
this.stack.setTagCompound(new CompoundNBT());
2018-10-20 21:19:08 +02:00
}
this.stack.getTagCompound().setInteger("aura", amount);
}
@Override
public int getStoredAura() {
if (this.stack.hasTagCompound()) {
return this.stack.getTagCompound().getInteger("aura");
} else {
return 0;
}
}
@Override
public int getMaxAura() {
return this.maxAura;
}
@Override
public int getAuraColor() {
return 0x42a6bc;
}
@Override
public boolean isAcceptableType(IAuraType type) {
return this.type == null || this.type == type;
}
2018-10-20 21:19:08 +02:00
}