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;
|
2015-07-25 11:06:10 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.List;
|
|
|
|
|
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;
|
2015-07-25 11:06:10 +02:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockGrass;
|
|
|
|
import net.minecraft.block.IGrowable;
|
2016-07-04 20:15:41 +02:00
|
|
|
import net.minecraft.block.state.IBlockState;
|
2015-07-25 11:06:10 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
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-25 11:06:10 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.common.IPlantable;
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public class ItemGrowthRing extends ItemEnergy {
|
2015-07-25 11:06:10 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
public ItemGrowthRing(String name) {
|
2016-11-21 13:38:43 +01:00
|
|
|
super(1000000, 2000, name);
|
2015-07-25 11:06:10 +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 || entity.isSneaking()) { return; }
|
2015-07-25 12:11:31 +02:00
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
EntityPlayer player = (EntityPlayer) entity;
|
2016-05-02 07:50:13 +02:00
|
|
|
ItemStack equipped = player.getHeldItemMainhand();
|
2015-07-25 11:06:10 +02:00
|
|
|
|
2016-01-07 16:03:07 +01:00
|
|
|
int energyUse = 300;
|
2019-05-02 09:10:29 +02:00
|
|
|
if (StackUtil.isValid(equipped) && equipped == stack && this.getEnergyStored(stack) >= energyUse) {
|
2019-02-27 19:53:05 +01:00
|
|
|
List<BlockPos> blocks = new ArrayList<>();
|
2015-07-25 11:06:10 +02:00
|
|
|
|
|
|
|
//Adding all possible Blocks
|
2019-05-02 09:10:29 +02:00
|
|
|
if (player.world.getTotalWorldTime() % 30 == 0) {
|
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++) {
|
|
|
|
int theX = MathHelper.floor(player.posX + x);
|
|
|
|
int theY = MathHelper.floor(player.posY + y);
|
|
|
|
int theZ = MathHelper.floor(player.posZ + 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();
|
2019-05-02 09:10:29 +02:00
|
|
|
if ((theBlock instanceof IGrowable || theBlock instanceof IPlantable) && !(theBlock instanceof BlockGrass)) {
|
2016-01-08 13:31:58 +01:00
|
|
|
blocks.add(posInQuestion);
|
2015-07-25 11:06:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//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) {
|
2016-11-02 19:36:32 +01:00
|
|
|
BlockPos pos = blocks.get(world.rand.nextInt(blocks.size()));
|
2015-07-25 11:06:10 +02:00
|
|
|
|
2016-07-04 20:15:41 +02:00
|
|
|
IBlockState state = world.getBlockState(pos);
|
|
|
|
Block block = state.getBlock();
|
|
|
|
int metaBefore = block.getMetaFromState(state);
|
2016-11-02 19:36:32 +01:00
|
|
|
block.updateTick(world, pos, world.getBlockState(pos), world.rand);
|
2015-07-25 11:06:10 +02:00
|
|
|
|
2016-01-07 15:56:57 +01:00
|
|
|
//Show Particles if Metadata changed
|
2016-07-04 20:15:41 +02:00
|
|
|
IBlockState newState = world.getBlockState(pos);
|
2019-05-02 09:10:29 +02:00
|
|
|
if (newState.getBlock().getMetaFromState(newState) != metaBefore) {
|
2016-06-03 21:05:49 +02:00
|
|
|
world.playEvent(2005, pos, 0);
|
2016-01-07 15:56:57 +01:00
|
|
|
}
|
|
|
|
|
2019-05-02 09:10:29 +02:00
|
|
|
if (!player.capabilities.isCreativeMode) {
|
2016-11-23 18:10:55 +01:00
|
|
|
this.extractEnergyInternal(stack, energyUse, false);
|
2016-01-07 15:56:57 +01:00
|
|
|
}
|
2019-05-02 09:10:29 +02:00
|
|
|
} else {
|
2016-01-07 15:56:57 +01:00
|
|
|
break;
|
2015-07-25 11:06:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2015-10-02 16:48:01 +02:00
|
|
|
}
|
2015-07-25 11:06:10 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2019-05-02 09:10:29 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2016-01-07 18:20:59 +01:00
|
|
|
return EnumRarity.EPIC;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
2015-07-25 11:06:10 +02:00
|
|
|
}
|