2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("ItemWaterRemovalRing.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
|
|
|
*/
|
|
|
|
|
2015-12-30 22:02:15 +01:00
|
|
|
package de.ellpeck.actuallyadditions.items;
|
2015-07-26 02:36:42 +02:00
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-12-30 22:02:15 +01:00
|
|
|
import de.ellpeck.actuallyadditions.items.base.ItemEnergy;
|
|
|
|
import de.ellpeck.actuallyadditions.util.ModUtil;
|
2015-07-26 02:36:42 +02:00
|
|
|
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;
|
|
|
|
|
2015-10-01 23:20:31 +02:00
|
|
|
public class ItemWaterRemovalRing extends ItemEnergy{
|
2015-07-26 02:36:42 +02:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemWaterRemovalRing(String name){
|
|
|
|
super(1000000, 5000, name);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@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-26 02:36:42 +02:00
|
|
|
|
|
|
|
EntityPlayer player = (EntityPlayer)entity;
|
|
|
|
ItemStack equipped = player.getCurrentEquippedItem();
|
|
|
|
|
2015-11-28 19:02:01 +01:00
|
|
|
int energyUse = 30;
|
|
|
|
if(equipped != null && equipped == stack && this.getEnergyStored(stack) >= energyUse){
|
2015-07-26 02:36:42 +02:00
|
|
|
|
|
|
|
//Setting everything to air
|
2015-11-28 19:02:01 +01:00
|
|
|
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);
|
2015-11-28 19:02:01 +01:00
|
|
|
if(this.getEnergyStored(stack) >= energyUse){
|
2015-07-26 02:36:42 +02:00
|
|
|
//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){
|
2015-11-28 19:02:01 +01:00
|
|
|
this.extractEnergy(stack, energyUse, false);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
//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){
|
2015-11-28 19:02:01 +01:00
|
|
|
this.extractEnergy(stack, energyUse*2, false);
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return EnumRarity.epic;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
2015-12-03 20:15:07 +01:00
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName());
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|
|
|
|
|
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;
|
|
|
|
}
|
2015-07-26 02:36:42 +02:00
|
|
|
}
|