89 lines
2.3 KiB
Java
89 lines
2.3 KiB
Java
package mods.tinker.tconstruct.items;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import mods.tinker.tconstruct.TContent;
|
|
import net.minecraft.block.Block;
|
|
import net.minecraft.client.renderer.texture.IconRegister;
|
|
import net.minecraft.creativetab.CreativeTabs;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.util.Icon;
|
|
import net.minecraft.world.World;
|
|
|
|
public class RedstoneBallRepeaterItem extends Item
|
|
{
|
|
public RedstoneBallRepeaterItem(int par1)
|
|
{
|
|
super(par1);
|
|
this.setCreativeTab(CreativeTabs.tabRedstone);
|
|
}
|
|
|
|
/**
|
|
* Callback for item usage. If the item does something special on right clicking, he will have one of those. Return
|
|
* True if something happen and false if it don't. This is for ITEMS, not BLOCKS
|
|
*/
|
|
public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10)
|
|
{
|
|
if (par3World.getBlockId(par4, par5, par6) != Block.snow.blockID)
|
|
{
|
|
if (par7 == 0)
|
|
{
|
|
--par5;
|
|
}
|
|
|
|
if (par7 == 1)
|
|
{
|
|
++par5;
|
|
}
|
|
|
|
if (par7 == 2)
|
|
{
|
|
--par6;
|
|
}
|
|
|
|
if (par7 == 3)
|
|
{
|
|
++par6;
|
|
}
|
|
|
|
if (par7 == 4)
|
|
{
|
|
--par4;
|
|
}
|
|
|
|
if (par7 == 5)
|
|
{
|
|
++par4;
|
|
}
|
|
|
|
if (!par3World.isAirBlock(par4, par5, par6))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
if (!par2EntityPlayer.canPlayerEdit(par4, par5, par6, par7, par1ItemStack))
|
|
{
|
|
return false;
|
|
}
|
|
else
|
|
{
|
|
if (Block.redstoneWire.canPlaceBlockAt(par3World, par4, par5, par6))
|
|
{
|
|
--par1ItemStack.stackSize;
|
|
par3World.setBlock(par4, par5, par6, TContent.redstoneBallRepeater.blockID);
|
|
}
|
|
|
|
return true;
|
|
}
|
|
}
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
public void updateIcons(IconRegister iconRegister)
|
|
{
|
|
this.itemIcon = iconRegister.registerIcon("tinker:redstoneball");
|
|
}
|
|
}
|