mirror of
https://github.com/Ellpeck/ActuallyAdditions.git
synced 2024-11-04 16:19:10 +01:00
99 lines
3 KiB
Java
99 lines
3 KiB
Java
package ellpeck.actuallyadditions.items;
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
import ellpeck.actuallyadditions.util.ItemUtil;
|
|
import ellpeck.actuallyadditions.util.KeyUtil;
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
import net.minecraft.entity.player.EntityPlayer;
|
|
import net.minecraft.item.Item;
|
|
import net.minecraft.item.ItemStack;
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
import net.minecraft.util.IIcon;
|
|
import net.minecraft.util.StatCollector;
|
|
import net.minecraft.world.World;
|
|
|
|
import java.util.List;
|
|
|
|
public class ItemDrillUpgrade extends Item implements INameableItem{
|
|
|
|
public enum UpgradeType{
|
|
SPEED,
|
|
SPEED_II,
|
|
SPEED_III,
|
|
SILK_TOUCH,
|
|
FORTUNE,
|
|
FORTUNE_II,
|
|
THREE_BY_THREE,
|
|
FIVE_BY_FIVE,
|
|
PLACER
|
|
}
|
|
|
|
public UpgradeType type;
|
|
public String unlocalizedName;
|
|
|
|
public ItemDrillUpgrade(UpgradeType type, String unlocName){
|
|
this.type = type;
|
|
this.unlocalizedName = unlocName;
|
|
this.setMaxStackSize(1);
|
|
}
|
|
|
|
@Override
|
|
public ItemStack onItemRightClick(ItemStack stack, World world, EntityPlayer player){
|
|
if(!world.isRemote && this.type == UpgradeType.PLACER){
|
|
this.setSlotToPlaceFrom(stack, player.inventory.currentItem);
|
|
}
|
|
return stack;
|
|
}
|
|
|
|
public void setSlotToPlaceFrom(ItemStack stack, int slot){
|
|
NBTTagCompound compound = stack.getTagCompound();
|
|
if(compound == null) compound = new NBTTagCompound();
|
|
|
|
compound.setInteger("SlotToPlaceFrom", slot+1);
|
|
|
|
stack.setTagCompound(compound);
|
|
}
|
|
|
|
public static int getSlotToPlaceFrom(ItemStack stack){
|
|
NBTTagCompound compound = stack.getTagCompound();
|
|
if(compound != null){
|
|
return compound.getInteger("SlotToPlaceFrom")-1;
|
|
}
|
|
return -1;
|
|
}
|
|
|
|
@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 this.unlocalizedName;
|
|
}
|
|
|
|
@Override
|
|
@SuppressWarnings("unchecked")
|
|
@SideOnly(Side.CLIENT)
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
|
ItemUtil.addInformation(this, list, this.type == UpgradeType.PLACER ? 3 : 1, "");
|
|
if(KeyUtil.isShiftPressed()){
|
|
list.add(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".itemDrillUpgrade.desc"));
|
|
if(this.type == UpgradeType.PLACER){
|
|
int slot = getSlotToPlaceFrom(stack);
|
|
if(slot >= 0){
|
|
list.add(StatCollector.translateToLocal("info."+ModUtil.MOD_ID_LOWER+".gui.slot")+": "+(slot+1));
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|