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

61 lines
1.8 KiB
Java
Raw Normal View History

2020-09-09 16:49:01 +02:00
package de.ellpeck.actuallyadditions.common.items;
2015-06-15 22:06:07 +02:00
2020-09-09 16:49:01 +02:00
import de.ellpeck.actuallyadditions.common.items.base.ItemBase;
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;
2016-03-18 23:47:22 +01:00
import net.minecraft.util.ActionResult;
import net.minecraft.util.EnumActionResult;
import net.minecraft.util.EnumHand;
2015-06-21 02:28:49 +02:00
import net.minecraft.world.World;
2019-05-02 09:10:29 +02:00
public class ItemDrillUpgrade extends ItemBase {
2015-06-15 22:06:07 +02:00
2016-05-19 20:05:12 +02:00
public final UpgradeType type;
2015-10-03 10:19:40 +02:00
2019-05-02 09:10:29 +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);
}
2019-05-02 09:10:29 +02:00
public static int getSlotToPlaceFrom(ItemStack stack) {
2015-10-03 10:16:18 +02:00
NBTTagCompound compound = stack.getTagCompound();
2019-05-02 09:10:29 +02:00
if (compound != null) { return compound.getInteger("SlotToPlaceFrom") - 1; }
2015-10-03 10:16:18 +02:00
return -1;
}
2015-06-21 02:28:49 +02:00
@Override
2019-05-02 09:10:29 +02:00
public ActionResult<ItemStack> onItemRightClick(World world, EntityPlayer player, EnumHand hand) {
2016-11-19 21:11:17 +01:00
ItemStack stack = player.getHeldItem(hand);
2019-05-02 09:10:29 +02:00
if (!world.isRemote && this.type == UpgradeType.PLACER) {
2015-06-21 02:28:49 +02:00
this.setSlotToPlaceFrom(stack, player.inventory.currentItem);
2019-02-27 19:53:05 +01:00
return new ActionResult<>(EnumActionResult.SUCCESS, stack);
2015-06-21 02:28:49 +02:00
}
2019-02-27 19:53:05 +01:00
return new ActionResult<>(EnumActionResult.FAIL, stack);
2015-06-21 02:28:49 +02:00
}
2019-05-02 09:10:29 +02:00
public void setSlotToPlaceFrom(ItemStack stack, int slot) {
2015-06-21 02:28:49 +02:00
NBTTagCompound compound = stack.getTagCompound();
2019-05-02 09:10:29 +02:00
if (compound == null) {
2015-10-03 10:16:18 +02:00
compound = new NBTTagCompound();
}
2015-06-21 02:28:49 +02:00
2019-05-02 09:10:29 +02:00
compound.setInteger("SlotToPlaceFrom", slot + 1);
2015-06-21 02:28:49 +02:00
stack.setTagCompound(compound);
}
2019-05-02 09:10:29 +02:00
public enum UpgradeType {
2015-10-03 10:16:18 +02:00
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
}