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
|
|
|
|
|
*
|
|
|
|
|
* <EFBFBD> 2015 Ellpeck
|
|
|
|
|
*/
|
|
|
|
|
|
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-10-01 23:20:31 +02:00
|
|
|
|
import ellpeck.actuallyadditions.util.IActAddItemOrBlock;
|
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.Item;
|
|
|
|
|
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-10-01 23:20:31 +02:00
|
|
|
|
public class ItemDrillUpgrade extends Item implements IActAddItemOrBlock{
|
2015-06-15 22:06:07 +02:00
|
|
|
|
|
|
|
|
|
public UpgradeType type;
|
|
|
|
|
public String unlocalizedName;
|
2015-10-03 10:19:40 +02:00
|
|
|
|
|
2015-06-15 22:06:07 +02:00
|
|
|
|
public ItemDrillUpgrade(UpgradeType type, String unlocName){
|
|
|
|
|
this.type = type;
|
|
|
|
|
this.unlocalizedName = unlocName;
|
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-10-02 16:48:01 +02:00
|
|
|
|
this.itemIcon = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getName());
|
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-06-15 22:06:07 +02:00
|
|
|
|
@Override
|
|
|
|
|
public String getName(){
|
|
|
|
|
return this.unlocalizedName;
|
|
|
|
|
}
|
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
|
|
|
|
}
|