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
|
|
|
|
2018-05-10 11:38:58 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
|
2016-11-27 11:56:22 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-07-25 02:07:16 +02:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2017-06-17 00:48:49 +02:00
|
|
|
import net.minecraft.client.util.ITooltipFlag;
|
2016-07-25 02:07:16 +02:00
|
|
|
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.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-07-25 02:07:16 +02:00
|
|
|
import net.minecraft.util.ActionResult;
|
|
|
|
import net.minecraft.util.EnumActionResult;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
2016-07-25 02:07:16 +02:00
|
|
|
import net.minecraft.world.World;
|
2016-11-26 19:00:02 +01:00
|
|
|
import net.minecraftforge.energy.CapabilityEnergy;
|
|
|
|
import net.minecraftforge.energy.IEnergyStorage;
|
2016-07-25 02:07:16 +02:00
|
|
|
|
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
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemBattery(String name, int capacity, int transfer) {
|
2015-12-03 20:15:07 +01:00
|
|
|
super(capacity, transfer, name);
|
2015-06-21 02:28:49 +02:00
|
|
|
this.setMaxStackSize(1);
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-01-07 21:41:28 +01:00
|
|
|
return EnumRarity.RARE;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2016-07-25 02:07:16 +02:00
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public boolean hasEffect(ItemStack stack) {
|
2016-11-27 11:56:22 +01:00
|
|
|
return ItemUtil.isEnabled(stack);
|
2016-07-25 02:07:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void onUpdate(ItemStack stack, World world, Entity entity, int itemSlot, boolean isSelected) {
|
2021-02-26 22:15:48 +01:00
|
|
|
if (!world.isRemote && entity instanceof PlayerEntity && ItemUtil.isEnabled(stack) && !isSelected) {
|
|
|
|
PlayerEntity player = (PlayerEntity) entity;
|
2019-05-02 09:10:29 +02:00
|
|
|
for (int i = 0; i < player.inventory.getSizeInventory(); i++) {
|
2016-07-25 02:07:16 +02:00
|
|
|
ItemStack slot = player.inventory.getStackInSlot(i);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(slot) && slot.getCount() == 1) {
|
2016-11-26 19:00:02 +01:00
|
|
|
int extractable = this.extractEnergy(stack, Integer.MAX_VALUE, true);
|
2016-07-25 02:07:16 +02:00
|
|
|
int received = 0;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (slot.hasCapability(CapabilityEnergy.ENERGY, null)) {
|
2016-11-26 19:00:02 +01:00
|
|
|
IEnergyStorage cap = slot.getCapability(CapabilityEnergy.ENERGY, null);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (cap != null) {
|
2016-11-26 19:00:02 +01:00
|
|
|
received = cap.receiveEnergy(extractable, false);
|
|
|
|
}
|
2016-07-25 02:07:16 +02:00
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (received > 0) {
|
2016-07-25 02:07:16 +02:00
|
|
|
this.extractEnergy(stack, received, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-02-26 22:15:48 +01:00
|
|
|
public ActionResult<ItemStack> onItemRightClick(World worldIn, PlayerEntity player, Hand hand) {
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!worldIn.isRemote && player.isSneaking()) {
|
2016-11-27 11:56:22 +01:00
|
|
|
ItemUtil.changeEnabled(player, hand);
|
2019-02-27 19:53:05 +01:00
|
|
|
return new ActionResult<>(EnumActionResult.SUCCESS, player.getHeldItem(hand));
|
2016-07-25 02:07:16 +02:00
|
|
|
}
|
2016-11-19 21:11:17 +01:00
|
|
|
return super.onItemRightClick(worldIn, player, hand);
|
2016-07-25 02:07:16 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public void addInformation(ItemStack stack, World playerIn, List<String> list, ITooltipFlag advanced) {
|
2017-06-17 00:48:49 +02:00
|
|
|
super.addInformation(stack, playerIn, list, advanced);
|
2021-02-26 22:15:48 +01:00
|
|
|
list.add(StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".battery." + (ItemUtil.isEnabled(stack)
|
|
|
|
? "discharge"
|
|
|
|
: "noDischarge")));
|
2019-05-02 09:10:29 +02:00
|
|
|
list.add(StringUtil.localize("tooltip." + ActuallyAdditions.MODID + ".battery.changeMode"));
|
2016-07-25 02:07:16 +02:00
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
}
|