2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemMagnetRing.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-07-25 12:11:31 +02:00
|
|
|
|
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;
|
2015-07-25 12:11:31 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
2021-03-01 21:30:45 +01:00
|
|
|
import net.minecraft.entity.item.ItemEntity;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2015-07-25 12:11:31 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2016-11-27 11:56:22 +01:00
|
|
|
import net.minecraft.util.ActionResult;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.util.Hand;
|
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;
|
|
|
|
|
2021-02-26 22:15:48 +01:00
|
|
|
import java.util.List;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemMagnetRing extends ItemEnergy {
|
2015-07-25 12:11:31 +02:00
|
|
|
|
2021-03-01 21:23:52 +01:00
|
|
|
public ItemMagnetRing() {
|
2021-05-04 19:50:50 +02:00
|
|
|
super(200000, 1000);
|
2015-07-25 12:11:31 +02:00
|
|
|
}
|
|
|
|
|
2016-11-27 11:56:22 +01: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);
|
|
|
|
}
|
|
|
|
|
2015-07-25 12:11:31 +02:00
|
|
|
@Override
|
2021-05-04 19:50:50 +02:00
|
|
|
public void inventoryTick(ItemStack stack, World world, Entity entity, int itemSlot, boolean isSelected) {
|
2021-02-26 22:15:48 +01:00
|
|
|
if (entity instanceof PlayerEntity && !world.isRemote && !ItemUtil.isEnabled(stack)) {
|
|
|
|
PlayerEntity player = (PlayerEntity) entity;
|
|
|
|
if (player.isCreative() || player.isSpectator()) {
|
|
|
|
return;
|
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!entity.isSneaking()) {
|
2016-11-07 18:02:06 +01:00
|
|
|
//Get all the Items in the area
|
|
|
|
int range = 5;
|
2021-05-04 19:50:50 +02:00
|
|
|
List<ItemEntity> items = world.getEntitiesWithinAABB(ItemEntity.class, new AxisAlignedBB(entity.getPosX() - range, entity.getPosY() - range, entity.getPosZ() - range, entity.getPosX() + range, entity.getPosY() + range, entity.getPosZ() + range));
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!items.isEmpty()) {
|
2021-03-01 21:30:45 +01:00
|
|
|
for (ItemEntity item : items) {
|
2021-05-04 19:50:50 +02:00
|
|
|
// TODO: [port] check this data is being saved on the time
|
|
|
|
if (item.getPersistentData().getBoolean("PreventRemoteMovement")) {
|
2021-02-26 22:15:48 +01:00
|
|
|
continue;
|
|
|
|
}
|
2021-05-04 19:50:50 +02:00
|
|
|
if (item.isAlive() && !item.cannotPickup()) {
|
2019-05-02 09:10:29 +02:00
|
|
|
int energyForItem = 50 * item.getItem().getCount();
|
2016-11-07 18:02:06 +01:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (this.getEnergyStored(stack) >= energyForItem) {
|
2018-06-23 01:39:30 +02:00
|
|
|
ItemStack oldItem = item.getItem().copy();
|
2017-01-30 18:44:29 +01:00
|
|
|
|
2016-11-07 18:02:06 +01:00
|
|
|
item.onCollideWithPlayer(player);
|
|
|
|
|
2021-02-28 15:47:54 +01:00
|
|
|
if (!player.isCreative()) {
|
2021-05-04 19:50:50 +02:00
|
|
|
if (!item.isAlive() || !ItemStack.areItemStacksEqual(item.getItem(), oldItem)) {
|
2017-01-30 18:44:29 +01:00
|
|
|
this.extractEnergyInternal(stack, energyForItem, false);
|
|
|
|
}
|
2016-11-07 18:02:06 +01:00
|
|
|
}
|
2016-07-25 14:12:52 +02:00
|
|
|
}
|
2016-01-07 15:54:41 +01:00
|
|
|
}
|
2015-07-25 12:11:31 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2016-11-27 11:56:22 +01:00
|
|
|
@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);
|
2021-05-04 19:50:50 +02:00
|
|
|
return ActionResult.resultSuccess(player.getHeldItem(hand));
|
2016-11-27 11:56:22 +01:00
|
|
|
}
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2021-05-04 19:50:50 +02:00
|
|
|
return super.onItemRightClick(worldIn, player, hand);
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2015-07-25 12:11:31 +02:00
|
|
|
}
|