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

76 lines
3 KiB
Java
Raw Normal View History

2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-07-25 12:11:31 +02:00
import java.util.List;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
2015-07-25 12:11:31 +02:00
import net.minecraft.entity.Entity;
import net.minecraft.entity.item.EntityItem;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
import net.minecraft.util.ActionResult;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.EnumHand;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.math.AxisAlignedBB;
2015-07-25 12:11:31 +02:00
import net.minecraft.world.World;
2019-05-02 09:10:29 +02:00
public class ItemMagnetRing extends ItemEnergy {
2015-07-25 12:11:31 +02:00
2019-05-02 09:10:29 +02:00
public ItemMagnetRing(String name) {
2016-11-21 13:38:43 +01:00
super(200000, 1000, name);
2015-07-25 12:11:31 +02:00
}
@Override
2019-05-02 09:10:29 +02:00
public boolean hasEffect(ItemStack stack) {
return !ItemUtil.isEnabled(stack);
}
2015-07-25 12:11:31 +02:00
@Override
2019-05-02 09:10:29 +02:00
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5) {
if (entity instanceof EntityPlayer && !world.isRemote && !ItemUtil.isEnabled(stack)) {
EntityPlayer player = (EntityPlayer) entity;
if (player.isCreative() || player.isSpectator()) return;
if (!entity.isSneaking()) {
//Get all the Items in the area
int range = 5;
2019-05-02 09:10:29 +02:00
List<EntityItem> items = world.getEntitiesWithinAABB(EntityItem.class, new AxisAlignedBB(entity.posX - range, entity.posY - range, entity.posZ - range, entity.posX + range, entity.posY + range, entity.posZ + range));
if (!items.isEmpty()) {
for (EntityItem item : items) {
if (item.getEntityData().getBoolean("PreventRemoteMovement")) continue;
if (!item.isDead && !item.cannotPickup()) {
int energyForItem = 50 * item.getItem().getCount();
2019-05-02 09:10:29 +02:00
if (this.getEnergyStored(stack) >= energyForItem) {
ItemStack oldItem = item.getItem().copy();
item.onCollideWithPlayer(player);
2019-05-02 09:10:29 +02:00
if (!player.capabilities.isCreativeMode) {
if (item.isDead || !ItemStack.areItemStacksEqual(item.getItem(), oldItem)) {
this.extractEnergyInternal(stack, energyForItem, false);
}
}
}
}
2015-07-25 12:11:31 +02:00
}
}
}
}
}
@Override
2019-05-02 09:10:29 +02:00
public ActionResult<ItemStack> onItemRightClick(World worldIn, EntityPlayer player, EnumHand hand) {
if (!worldIn.isRemote && player.isSneaking()) {
ItemUtil.changeEnabled(player, hand);
2019-02-27 19:53:05 +01:00
return new ActionResult<>(EnumActionResult.SUCCESS, player.getHeldItem(hand));
}
return super.onItemRightClick(worldIn, player, hand);
}
2015-07-25 12:11:31 +02:00
@Override
2019-05-02 09:10:29 +02:00
public EnumRarity getRarity(ItemStack stack) {
return EnumRarity.EPIC;
2015-10-03 10:19:40 +02:00
}
2015-07-25 12:11:31 +02:00
}