2015-07-26 02:36:42 +02:00
|
|
|
package ellpeck.actuallyadditions.items;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-08-01 18:26:13 +02:00
|
|
|
import ellpeck.actuallyadditions.config.values.ConfigIntValues;
|
2015-07-26 02:36:42 +02:00
|
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
|
|
import net.minecraft.init.Blocks;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
2015-08-01 19:04:45 +02:00
|
|
|
import net.minecraft.util.MathHelper;
|
2015-07-26 02:36:42 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
|
|
|
public class ItemWaterRemovalRing extends ItemEnergy implements INameableItem{
|
|
|
|
|
2015-08-01 18:26:13 +02:00
|
|
|
private static final int RANGE = ConfigIntValues.WATER_RING_RANGE.getValue();
|
|
|
|
private static final int ENERGY_USED_PER_BLOCK = ConfigIntValues.WATER_RING_ENERGY_USE.getValue();
|
2015-07-26 02:36:42 +02:00
|
|
|
|
|
|
|
public ItemWaterRemovalRing(){
|
2015-08-02 01:52:12 +02:00
|
|
|
super(1000000, 5000, 1);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onUpdate(ItemStack stack, World world, Entity entity, int par4, boolean par5){
|
|
|
|
if(!(entity instanceof EntityPlayer) || world.isRemote) return;
|
|
|
|
|
|
|
|
EntityPlayer player = (EntityPlayer)entity;
|
|
|
|
ItemStack equipped = player.getCurrentEquippedItem();
|
|
|
|
|
|
|
|
if(equipped != null && equipped == stack && this.getEnergyStored(stack) >= ENERGY_USED_PER_BLOCK){
|
|
|
|
|
|
|
|
//Setting everything to air
|
|
|
|
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);
|
2015-07-26 02:36:42 +02:00
|
|
|
if(this.getEnergyStored(stack) >= ENERGY_USED_PER_BLOCK){
|
|
|
|
//Remove Water
|
|
|
|
if(world.getBlock(theX, theY, theZ) == Blocks.water || world.getBlock(theX, theY, theZ) == Blocks.flowing_water){
|
|
|
|
world.setBlockToAir(theX, theY, theZ);
|
|
|
|
|
|
|
|
if(!player.capabilities.isCreativeMode){
|
|
|
|
this.extractEnergy(stack, ENERGY_USED_PER_BLOCK, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
//Remove Lava
|
|
|
|
else if(world.getBlock(theX, theY, theZ) == Blocks.lava || world.getBlock(theX, theY, theZ) == Blocks.flowing_lava){
|
|
|
|
world.setBlockToAir(theX, theY, theZ);
|
|
|
|
|
|
|
|
if(!player.capabilities.isCreativeMode){
|
|
|
|
this.extractEnergy(stack, ENERGY_USED_PER_BLOCK*2, false);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.epic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public IIcon getIcon(ItemStack stack, int pass){
|
|
|
|
return this.itemIcon;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return "itemWaterRemovalRing";
|
|
|
|
}
|
|
|
|
}
|