ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemBattery.java

86 lines
3.3 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemBattery.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.items;
2015-06-21 02:28:49 +02:00
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
2017-06-17 00:48:49 +02:00
import net.minecraft.client.util.ITooltipFlag;
import net.minecraft.entity.Entity;
2021-02-26 22:15:48 +01:00
import net.minecraft.entity.player.PlayerEntity;
2015-06-21 02:28:49 +02:00
import net.minecraft.item.ItemStack;
import net.minecraft.util.ActionResult;
2021-02-26 22:15:48 +01:00
import net.minecraft.util.Hand;
2021-04-19 21:20:23 +02:00
import net.minecraft.util.text.ITextComponent;
import net.minecraft.util.text.TranslationTextComponent;
import net.minecraft.world.World;
2021-12-30 18:30:01 +01:00
import net.minecraftforge.api.distmarker.Dist;
import net.minecraftforge.api.distmarker.OnlyIn;
2022-06-18 17:53:23 +02:00
import net.minecraftforge.common.util.LazyOptional;
import net.minecraftforge.energy.CapabilityEnergy;
2022-06-18 17:53:23 +02:00
import net.minecraftforge.energy.IEnergyStorage;
2022-06-18 17:53:23 +02:00
import javax.annotation.Nonnull;
2021-04-19 21:20:23 +02:00
import javax.annotation.Nullable;
2021-02-26 22:15:48 +01:00
import java.util.List;
2019-05-02 09:10:29 +02:00
public class ItemBattery extends ItemEnergy {
2015-06-21 02:28:49 +02:00
public ItemBattery(int capacity, int transfer) {
super(capacity, transfer);
2015-10-03 10:19:40 +02:00
}
@Override
public boolean isFoil(ItemStack stack) {
return ItemUtil.isEnabled(stack);
}
@Override
2022-06-18 17:53:23 +02:00
public void inventoryTick(@Nonnull ItemStack stack, World world, @Nonnull Entity entity, int itemSlot, boolean isSelected) {
if (!world.isClientSide && entity instanceof PlayerEntity && ItemUtil.isEnabled(stack) && !isSelected) {
2021-02-26 22:15:48 +01:00
PlayerEntity player = (PlayerEntity) entity;
for (int i = 0; i < player.inventory.getContainerSize(); i++) {
ItemStack slot = player.inventory.getItem(i);
2022-06-18 17:53:23 +02:00
if (!slot.isEmpty() && slot.getCount() == 1) {
LazyOptional<IEnergyStorage> energy = slot.getCapability(CapabilityEnergy.ENERGY);
energy.ifPresent(cap -> {
int extractable = this.extractEnergy(stack, Integer.MAX_VALUE, true);
int received = cap.receiveEnergy(extractable, false);
2022-06-18 17:53:23 +02:00
if (received > 0) {
this.extractEnergy(stack, received, false);
}
});
}
}
}
}
2022-06-18 17:53:23 +02:00
@Nonnull
@Override
2022-06-18 17:53:23 +02:00
public ActionResult<ItemStack> use(World worldIn, @Nonnull PlayerEntity player, @Nonnull Hand hand) {
if (!worldIn.isClientSide && player.isShiftKeyDown()) {
ItemUtil.changeEnabled(player, hand);
return ActionResult.success(player.getItemInHand(hand));
}
return super.use(worldIn, player, hand);
}
2021-12-30 18:30:01 +01:00
@OnlyIn(Dist.CLIENT)
@Override
public void appendHoverText(ItemStack stack, @Nullable World playerIn, List<ITextComponent> list, ITooltipFlag advanced) {
super.appendHoverText(stack, playerIn, list, advanced);
2022-06-18 17:53:23 +02:00
list.add(new TranslationTextComponent("tooltip.actuallyadditions.battery." + (ItemUtil.isEnabled(stack)
2021-02-26 22:15:48 +01:00
? "discharge"
: "noDischarge")));
2022-06-18 17:53:23 +02:00
list.add(new TranslationTextComponent("tooltip.actuallyadditions.battery.changeMode"));
}
2015-06-21 02:28:49 +02:00
}