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

85 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 ("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;
import de.ellpeck.actuallyadditions.mod.util.ItemUtil;
2024-03-02 21:23:08 +01:00
import net.minecraft.world.InteractionHand;
import net.minecraft.world.InteractionResultHolder;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.item.ItemEntity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
import net.minecraft.world.phys.AABB;
2015-07-25 12:11:31 +02:00
2022-06-18 17:53:23 +02:00
import javax.annotation.Nonnull;
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
public ItemMagnetRing() {
super(200000, 1000);
2015-07-25 12:11:31 +02:00
}
@Override
public boolean isFoil(ItemStack stack) {
return !ItemUtil.isEnabled(stack);
}
2015-07-25 12:11:31 +02:00
@Override
2024-03-02 21:23:08 +01:00
public void inventoryTick(@Nonnull ItemStack stack, @Nonnull Level world, @Nonnull Entity entity, int itemSlot, boolean isSelected) {
2024-03-03 01:20:53 +01:00
if (entity instanceof Player player && !world.isClientSide && !ItemUtil.isEnabled(stack)) {
if (player.isCreative() || player.isSpectator()) {
2021-02-26 22:15:48 +01:00
return;
}
if (!entity.isShiftKeyDown()) {
//Get all the Items in the area
int range = 5;
2024-03-02 21:23:08 +01:00
List<ItemEntity> items = world.getEntitiesOfClass(ItemEntity.class, new AABB(entity.getX() - range, entity.getY() - range, entity.getZ() - range, entity.getX() + range, entity.getY() + range, entity.getZ() + range));
2019-05-02 09:10:29 +02:00
if (!items.isEmpty()) {
2021-03-01 21:30:45 +01:00
for (ItemEntity item : items) {
if (item.getPersistentData().getBoolean("PreventRemoteMovement")) {
2021-02-26 22:15:48 +01:00
continue;
}
2023-11-26 23:10:19 +01:00
if (item.isAlive() && !item.hasPickUpDelay()) { // TODO config
2019-05-02 09:10:29 +02:00
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.playerTouch(player);
2021-02-28 15:47:54 +01:00
if (!player.isCreative()) {
if (!item.isAlive() || !ItemStack.matches(item.getItem(), oldItem)) {
this.extractEnergyInternal(stack, energyForItem, false);
}
}
}
}
2015-07-25 12:11:31 +02:00
}
}
}
}
}
2022-06-18 17:53:23 +02:00
@Nonnull
@Override
2024-03-02 21:23:08 +01:00
public InteractionResultHolder<ItemStack> use(Level worldIn, @Nonnull Player player, @Nonnull InteractionHand hand) {
if (!worldIn.isClientSide && player.isShiftKeyDown()) {
ItemUtil.changeEnabled(player, hand);
2024-03-02 21:23:08 +01:00
return InteractionResultHolder.success(player.getItemInHand(hand));
}
return super.use(worldIn, player, hand);
2015-10-03 10:19:40 +02:00
}
2015-07-25 12:11:31 +02:00
}