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

125 lines
4.4 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
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
*
2015-11-02 20:55:19 +01:00
* © 2015 Ellpeck
2015-08-29 14:33:25 +02:00
*/
package ellpeck.actuallyadditions.items;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import ellpeck.actuallyadditions.util.ModUtil;
2015-11-22 18:58:23 +01:00
import ellpeck.actuallyadditions.util.Util;
import ellpeck.actuallyadditions.util.WorldPos;
import net.minecraft.block.Block;
import net.minecraft.block.BlockGrass;
import net.minecraft.block.IGrowable;
import net.minecraft.client.renderer.texture.IIconRegister;
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;
import net.minecraft.util.IIcon;
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(){
super(1000000, 5000);
}
@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 = 550;
if(equipped != null && equipped == stack && this.getEnergyStored(stack) >= energyUse){
ArrayList<WorldPos> blocks = new ArrayList<WorldPos>();
2015-10-03 10:16:18 +02:00
if(stack.stackTagCompound == null){
stack.setTagCompound(new NBTTagCompound());
}
int waitTime = stack.stackTagCompound.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);
Block theBlock = world.getBlock(theX, theY, theZ);
if((theBlock instanceof IGrowable || theBlock instanceof IPlantable) && !(theBlock instanceof BlockGrass)){
blocks.add(new WorldPos(world, theX, theY, theZ));
}
}
}
}
//Fertilizing the Blocks
if(!blocks.isEmpty()){
for(int i = 0; i < 45; i++){
2015-11-22 18:58:23 +01:00
WorldPos pos = blocks.get(Util.RANDOM.nextInt(blocks.size()));
int metaBefore = pos.getMetadata();
2015-11-22 18:58:23 +01:00
pos.getBlock().updateTick(world, pos.getX(), pos.getY(), pos.getZ(), Util.RANDOM);
//Show Particles if Metadata changed
if(pos.getMetadata() != metaBefore){
pos.getWorld().playAuxSFX(2005, pos.getX(), pos.getY(), pos.getZ(), 0);
}
}
}
stack.stackTagCompound.setInteger("WaitTime", 0);
}
2015-10-02 16:48:01 +02:00
else{
stack.stackTagCompound.setInteger("WaitTime", waitTime+1);
}
//Use Energy every tick
2015-07-25 15:16:15 +02:00
if(!player.capabilities.isCreativeMode){
this.extractEnergy(stack, energyUse, false);
2015-07-25 15:16:15 +02:00
}
}
}
@Override
public EnumRarity getRarity(ItemStack stack){
return EnumRarity.epic;
}
@Override
@SideOnly(Side.CLIENT)
public void registerIcons(IIconRegister iconReg){
2015-10-02 16:48:01 +02:00
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
}
2015-10-03 10:19:40 +02:00
@Override
2015-10-28 14:46:04 +01:00
@SideOnly(Side.CLIENT)
2015-10-03 10:19:40 +02:00
public IIcon getIcon(ItemStack stack, int pass){
return this.itemIcon;
}
@Override
public String getName(){
return "itemGrowthRing";
}
}