ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/lens/LensDisenchanting.java
2022-07-06 12:14:19 -05:00

121 lines
5.1 KiB
Java

/*
* This file ("LensDisenchanting.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://ellpeck.de/actaddlicense
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
* © 2015-2017 Ellpeck
*/
package de.ellpeck.actuallyadditions.mod.items.lens;
import de.ellpeck.actuallyadditions.api.internal.IAtomicReconstructor;
import de.ellpeck.actuallyadditions.api.lens.Lens;
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
import net.minecraft.block.BlockState;
import net.minecraft.enchantment.Enchantment;
import net.minecraft.enchantment.EnchantmentData;
import net.minecraft.enchantment.EnchantmentHelper;
import net.minecraft.entity.item.ItemEntity;
import net.minecraft.item.EnchantedBookItem;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.item.Items;
import net.minecraft.util.Direction;
import net.minecraft.util.math.AxisAlignedBB;
import net.minecraft.util.math.BlockPos;
import java.util.List;
import java.util.Map;
public class LensDisenchanting extends Lens {
public static final int ENERGY_USE = 250000;
@Override
public boolean invoke(BlockState hitState, BlockPos hitBlock, IAtomicReconstructor tile) {
if (tile.getEnergy() >= ENERGY_USE) {
List<ItemEntity> items = tile.getWorldObject().getEntitiesOfClass(ItemEntity.class, new AxisAlignedBB(hitBlock.getX(), hitBlock.getY(), hitBlock.getZ(), hitBlock.getX() + 1, hitBlock.getY() + 1, hitBlock.getZ() + 1));
if (items != null && !items.isEmpty()) {
ItemEntity book = null;
ItemEntity toDisenchant = null;
for (ItemEntity item : items) {
if (item != null && item.isAlive()) {
ItemStack stack = item.getItem();
if (StackUtil.isValid(stack) && stack.getCount() == 1) {
Item stackItem = stack.getItem();
if (stackItem == Items.BOOK || stackItem == Items.ENCHANTED_BOOK) {
if (book == null) {
book = item;
} else {
return false;
}
} else {
Map<Enchantment, Integer> enchants = EnchantmentHelper.getEnchantments(stack);
if (enchants != null && !enchants.isEmpty()) {
if (toDisenchant == null) {
toDisenchant = item;
} else {
return false;
}
}
}
}
}
}
if (book != null && toDisenchant != null) {
ItemStack disenchantStack = toDisenchant.getItem();
ItemStack bookStack = book.getItem();
Map<Enchantment, Integer> enchants = EnchantmentHelper.getEnchantments(disenchantStack);
if (!enchants.isEmpty()) {
Enchantment enchant = enchants.keySet().iterator().next();
int level = enchants.get(enchant);
ItemStack newDisenchantStack = disenchantStack.copy();
ItemStack newBookStack;
if (bookStack.getItem() == Items.BOOK) {
newBookStack = new ItemStack(Items.ENCHANTED_BOOK);
} else {
newBookStack = bookStack.copy();
}
ItemUtil.removeEnchantment(newDisenchantStack, enchant);
EnchantedBookItem.addEnchantment(newBookStack, new EnchantmentData(enchant, level));
ItemEntity disenchanted = new ItemEntity(toDisenchant.getCommandSenderWorld(), toDisenchant.getX(), toDisenchant.getY(), toDisenchant.getZ(), newDisenchantStack);
ItemEntity newBook = new ItemEntity(book.getCommandSenderWorld(), book.getX(), book.getY(), book.getZ(), newBookStack);
toDisenchant.remove();
book.remove();
tile.getWorldObject().addFreshEntity(newBook);
tile.getWorldObject().addFreshEntity(disenchanted);
tile.extractEnergy(ENERGY_USE);
return true;
}
}
}
}
return false;
}
@Override
public int getColor() {
return 0xEBADFF;
}
@Override
public int getDistance() {
return 5;
}
@Override
public boolean canInvoke(IAtomicReconstructor tile, Direction sideToShootTo, int energyUsePerShot) {
return tile.getEnergy() - energyUsePerShot >= ENERGY_USE;
}
}