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

94 lines
3.7 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
2016-05-16 22:52:27 +02:00
* This file ("ItemGrowthRing.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;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemEnergy;
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
2024-03-02 21:23:08 +01:00
import net.minecraft.core.BlockPos;
import net.minecraft.server.level.ServerLevel;
import net.minecraft.util.Mth;
import net.minecraft.world.entity.Entity;
import net.minecraft.world.entity.player.Player;
import net.minecraft.world.item.ItemStack;
import net.minecraft.world.level.Level;
import net.minecraft.world.level.block.Block;
import net.minecraft.world.level.block.BonemealableBlock;
import net.minecraft.world.level.block.GrassBlock;
import net.minecraft.world.level.block.state.BlockState;
2024-03-04 20:21:48 +01:00
import net.neoforged.neoforge.common.IPlantable;
2021-02-27 16:33:00 +01:00
import java.util.ArrayList;
import java.util.List;
2019-05-02 09:10:29 +02:00
public class ItemGrowthRing extends ItemEnergy {
public ItemGrowthRing() {
super(1000000, 2000);
}
@Override
2024-03-02 21:23:08 +01:00
public void inventoryTick(ItemStack stack, Level world, Entity entity, int itemSlot, boolean isSelected) {
2024-03-03 01:20:53 +01:00
if (!(entity instanceof Player player) || world.isClientSide || entity.isShiftKeyDown()) {
2021-02-27 16:33:00 +01:00
return;
}
2015-07-25 12:11:31 +02:00
2024-03-03 01:20:53 +01:00
ItemStack equipped = player.getMainHandItem();
int energyUse = 300;
2024-03-14 00:29:10 +01:00
if (!equipped.isEmpty() && equipped == stack && this.getEnergyStored(stack) >= energyUse) {
2019-02-27 19:53:05 +01:00
List<BlockPos> blocks = new ArrayList<>();
//Adding all possible Blocks
2024-03-03 01:20:53 +01:00
if (player.level().getGameTime() % 30 == 0) {
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++) {
2024-03-02 21:23:08 +01:00
int theX = Mth.floor(player.getX() + x);
int theY = Mth.floor(player.getY() + y);
int theZ = Mth.floor(player.getZ() + z);
2016-01-08 13:31:58 +01:00
BlockPos posInQuestion = new BlockPos(theX, theY, theZ);
2016-07-04 20:15:41 +02:00
Block theBlock = world.getBlockState(posInQuestion).getBlock();
2024-03-02 21:23:08 +01:00
if ((theBlock instanceof BonemealableBlock || theBlock instanceof IPlantable) && !(theBlock instanceof GrassBlock)) {
2016-01-08 13:31:58 +01:00
blocks.add(posInQuestion);
}
}
}
}
//Fertilizing the Blocks
2019-05-02 09:10:29 +02:00
if (!blocks.isEmpty()) {
for (int i = 0; i < 45; i++) {
if (this.getEnergyStored(stack) >= energyUse) {
BlockPos pos = blocks.get(world.random.nextInt(blocks.size()));
2021-02-26 22:15:48 +01:00
BlockState state = world.getBlockState(pos);
2024-03-02 21:23:08 +01:00
state.randomTick((ServerLevel) world, pos, world.random);
//Show Particles if Metadata changed
2021-02-26 22:15:48 +01:00
BlockState newState = world.getBlockState(pos);
if (newState != state) {
world.levelEvent(2005, pos, 0);
}
2021-02-28 15:47:54 +01:00
if (!player.isCreative()) {
this.extractEnergyInternal(stack, energyUse, false);
}
2019-05-02 09:10:29 +02:00
} else {
break;
}
}
}
2015-10-02 16:48:01 +02:00
}
}
}
}