ActuallyAdditions/src/main/java/de/ellpeck/actuallyadditions/mod/items/ItemDrillUpgrade.java

85 lines
2.4 KiB
Java
Raw Normal View History

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
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
*/
2016-01-05 04:47:35 +01:00
package de.ellpeck.actuallyadditions.mod.items;
2015-06-15 22:06:07 +02:00
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
2016-01-05 04:47:35 +01:00
import de.ellpeck.actuallyadditions.mod.items.base.ItemBase;
import de.ellpeck.actuallyadditions.mod.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;
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){
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){
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
}