2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("ItemDrillUpgrade.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
|
|
|
*/
|
|
|
|
|
2015-06-15 22:06:07 +02:00
|
|
|
package ellpeck.actuallyadditions.items;
|
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-12-03 20:15:07 +01:00
|
|
|
import ellpeck.actuallyadditions.items.base.ItemBase;
|
2015-08-28 22:18:46 +02:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-06-15 22:06:07 +02:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2015-06-21 02:28:49 +02:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-06-15 22:06:07 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
2015-06-21 02:28:49 +02:00
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
2015-06-15 22:06:07 +02:00
|
|
|
import net.minecraft.util.IIcon;
|
2015-06-21 02:28:49 +02:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemDrillUpgrade extends ItemBase{
|
2015-06-15 22:06:07 +02:00
|
|
|
|
|
|
|
public UpgradeType type;
|
2015-10-03 10:19:40 +02:00
|
|
|
|
2015-06-15 22:06:07 +02:00
|
|
|
public ItemDrillUpgrade(UpgradeType type, String unlocName){
|
2015-12-03 20:15:07 +01:00
|
|
|
super(unlocName);
|
2015-06-15 22:06:07 +02:00
|
|
|
this.type = type;
|
2015-06-21 02:28:49 +02:00
|
|
|
this.setMaxStackSize(1);
|
|
|
|
}
|
|
|
|
|
2015-10-03 10:16:18 +02:00
|
|
|
public static int getSlotToPlaceFrom(ItemStack stack){
|
|
|
|
NBTTagCompound compound = stack.getTagCompound();
|
|
|
|
if(compound != null){
|
|
|
|
return compound.getInteger("SlotToPlaceFrom")-1;
|
|
|
|
}
|
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
2015-06-21 02:28:49 +02:00
|
|
|
@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();
|
2015-10-03 10:16:18 +02:00
|
|
|
if(compound == null){
|
|
|
|
compound = new NBTTagCompound();
|
|
|
|
}
|
2015-06-21 02:28:49 +02:00
|
|
|
|
|
|
|
compound.setInteger("SlotToPlaceFrom", slot+1);
|
|
|
|
|
|
|
|
stack.setTagCompound(compound);
|
|
|
|
}
|
|
|
|
|
2015-06-15 22:06:07 +02:00
|
|
|
@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-06-15 22:06:07 +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-10-03 10:16:18 +02:00
|
|
|
public enum UpgradeType{
|
|
|
|
SPEED,
|
|
|
|
SPEED_II,
|
|
|
|
SPEED_III,
|
|
|
|
SILK_TOUCH,
|
|
|
|
FORTUNE,
|
|
|
|
FORTUNE_II,
|
|
|
|
THREE_BY_THREE,
|
|
|
|
FIVE_BY_FIVE,
|
|
|
|
PLACER
|
|
|
|
}
|
2015-06-15 22:06:07 +02:00
|
|
|
}
|