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

110 lines
4.2 KiB
Java
Raw Normal View History

2015-08-29 14:33:25 +02:00
/*
* This file ("ItemGrowthRing.java") is part of the Actually Additions Mod for Minecraft.
* It is created and owned by Ellpeck and distributed
* under the Actually Additions License to be found at
2016-01-03 16:05:51 +01:00
* http://ellpeck.de/actaddlicense/
2015-08-29 14:33:25 +02:00
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2016-01-03 16:05:51 +01:00
* © 2016 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;
2016-01-08 13:31:58 +01:00
import de.ellpeck.actuallyadditions.mod.util.PosUtil;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.util.Util;
import net.minecraft.block.Block;
import net.minecraft.block.BlockGrass;
import net.minecraft.block.IGrowable;
import net.minecraft.entity.Entity;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.EnumRarity;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
2016-01-08 13:31:58 +01:00
import net.minecraft.util.BlockPos;
2015-08-01 19:04:45 +02:00
import net.minecraft.util.MathHelper;
import net.minecraft.world.World;
import net.minecraftforge.common.IPlantable;
import java.util.ArrayList;
public class ItemGrowthRing extends ItemEnergy{
public ItemGrowthRing(String name){
super(1000000, 5000, name);
}
@Override
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
2015-11-18 22:33:12 +01:00
if(!(entity instanceof EntityPlayer) || world.isRemote || entity.isSneaking()){
2015-10-03 10:16:18 +02:00
return;
}
2015-07-25 12:11:31 +02:00
EntityPlayer player = (EntityPlayer)entity;
ItemStack equipped = player.getCurrentEquippedItem();
int energyUse = 300;
if(equipped != null && equipped == stack && this.getEnergyStored(stack) >= energyUse){
2016-01-08 13:31:58 +01:00
ArrayList<BlockPos> blocks = new ArrayList<BlockPos>();
2016-01-07 18:20:59 +01:00
if(stack.getTagCompound() == null){
2015-10-03 10:16:18 +02:00
stack.setTagCompound(new NBTTagCompound());
}
2016-01-07 18:20:59 +01:00
int waitTime = stack.getTagCompound().getInteger("WaitTime");
//Adding all possible Blocks
if(waitTime >= 30){
int range = 3;
for(int x = -range; x < range+1; x++){
for(int z = -range; z < range+1; z++){
for(int y = -range; y < range+1; y++){
2015-08-01 19:04:45 +02:00
int theX = MathHelper.floor_double(player.posX+x);
int theY = MathHelper.floor_double(player.posY+y);
int theZ = MathHelper.floor_double(player.posZ+z);
2016-01-08 13:31:58 +01:00
BlockPos posInQuestion = new BlockPos(theX, theY, theZ);
Block theBlock = PosUtil.getBlock(posInQuestion, world);
if((theBlock instanceof IGrowable || theBlock instanceof IPlantable) && !(theBlock instanceof BlockGrass)){
2016-01-08 13:31:58 +01:00
blocks.add(posInQuestion);
}
}
}
}
//Fertilizing the Blocks
if(!blocks.isEmpty()){
for(int i = 0; i < 45; i++){
if(this.getEnergyStored(stack) >= energyUse){
2016-01-08 13:31:58 +01:00
BlockPos pos = blocks.get(Util.RANDOM.nextInt(blocks.size()));
2016-01-08 13:31:58 +01:00
int metaBefore = PosUtil.getMetadata(pos, world);
PosUtil.getBlock(pos, world).updateTick(world, pos, world.getBlockState(pos), Util.RANDOM);
//Show Particles if Metadata changed
2016-01-08 13:31:58 +01:00
if(PosUtil.getMetadata(pos, world) != metaBefore){
world.playAuxSFX(2005, pos, 0);
}
if(!player.capabilities.isCreativeMode){
this.extractEnergy(stack, energyUse, false);
}
}
else{
break;
}
}
}
2016-01-07 18:20:59 +01:00
stack.getTagCompound().setInteger("WaitTime", 0);
}
2015-10-02 16:48:01 +02:00
else{
2016-01-07 18:20:59 +01:00
stack.getTagCompound().setInteger("WaitTime", waitTime+1);
2015-10-02 16:48:01 +02:00
}
}
}
@Override
public EnumRarity getRarity(ItemStack stack){
2016-01-07 18:20:59 +01:00
return EnumRarity.EPIC;
2015-10-03 10:19:40 +02:00
}
}