2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemWaterRemovalRing.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-26 02:36:42 +02:00
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-07 23:42:42 +01:00
|
|
|
import net.minecraft.block.Block;
|
2021-04-19 21:20:23 +02:00
|
|
|
import net.minecraft.block.Blocks;
|
2015-07-26 02:36:42 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
2021-02-26 22:15:48 +01:00
|
|
|
import net.minecraft.entity.player.PlayerEntity;
|
2015-07-26 02:36:42 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.util.math.BlockPos;
|
|
|
|
import net.minecraft.util.math.MathHelper;
|
2015-07-26 02:36:42 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemWaterRemovalRing extends ItemEnergy {
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2021-03-01 21:23:52 +01:00
|
|
|
public ItemWaterRemovalRing() {
|
2021-04-19 21:20:23 +02:00
|
|
|
super(800000, 1000);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2021-04-19 21:20:23 +02:00
|
|
|
public void inventoryTick(ItemStack stack, World world, Entity player, int itemSlot, boolean isSelected) {
|
2021-08-22 17:09:06 +02:00
|
|
|
if (!(player instanceof PlayerEntity) || player.level.isClientSide || player.isShiftKeyDown()) {
|
2021-02-27 16:33:00 +01:00
|
|
|
return;
|
|
|
|
}
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2021-08-22 17:09:06 +02:00
|
|
|
ItemStack equipped = ((PlayerEntity) player).getMainHandItem();
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2016-11-21 13:38:43 +01:00
|
|
|
int energyUse = 150;
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(equipped) && equipped == stack && this.getEnergyStored(stack) >= energyUse) {
|
2015-07-26 02:36:42 +02:00
|
|
|
|
|
|
|
//Setting everything to air
|
2015-11-28 19:02:01 +01:00
|
|
|
int range = 3;
|
2019-05-02 09:10:29 +02:00
|
|
|
for (int x = -range; x < range + 1; x++) {
|
|
|
|
for (int z = -range; z < range + 1; z++) {
|
|
|
|
for (int y = -range; y < range + 1; y++) {
|
2021-08-22 17:09:06 +02:00
|
|
|
int theX = MathHelper.floor(player.getX() + x);
|
|
|
|
int theY = MathHelper.floor(player.getY() + y);
|
|
|
|
int theZ = MathHelper.floor(player.getZ() + z);
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2016-01-10 19:32:21 +01:00
|
|
|
//Remove Water
|
|
|
|
BlockPos pos = new BlockPos(theX, theY, theZ);
|
2016-07-04 20:15:41 +02:00
|
|
|
Block block = world.getBlockState(pos).getBlock();
|
2021-04-19 21:20:23 +02:00
|
|
|
// TODO: Ensure water check is correct
|
|
|
|
if ((block == Blocks.WATER) && this.getEnergyStored(stack) >= energyUse) {
|
2021-08-22 17:09:06 +02:00
|
|
|
world.setBlockAndUpdate(pos, Blocks.AIR.defaultBlockState());
|
2016-01-10 19:32:21 +01:00
|
|
|
|
2021-04-19 21:20:23 +02:00
|
|
|
if (!((PlayerEntity) player).isCreative()) {
|
2016-11-23 18:10:55 +01:00
|
|
|
this.extractEnergyInternal(stack, energyUse, false);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
2016-01-10 19:32:21 +01:00
|
|
|
}
|
|
|
|
//Remove Lava
|
2021-04-19 21:20:23 +02:00
|
|
|
// TODO: Ensure lava check is correct
|
|
|
|
else if ((block == Blocks.LAVA) && this.getEnergyStored(stack) >= energyUse * 2) {
|
2021-08-22 17:09:06 +02:00
|
|
|
world.setBlockAndUpdate(pos, Blocks.AIR.defaultBlockState());
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2021-04-19 21:20:23 +02:00
|
|
|
if (!((PlayerEntity) player).isCreative()) {
|
2019-05-02 09:10:29 +02:00
|
|
|
this.extractEnergyInternal(stack, energyUse * 2, false);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|