2012-08-25 08:07:59 +02:00
|
|
|
package ee3.common.item;
|
|
|
|
|
2012-10-29 04:16:32 +01:00
|
|
|
import cpw.mods.fml.client.FMLClientHandler;
|
2012-08-25 08:07:59 +02:00
|
|
|
import cpw.mods.fml.common.Side;
|
|
|
|
import cpw.mods.fml.common.asm.SideOnly;
|
2012-08-25 08:46:51 +02:00
|
|
|
import ee3.common.EquivalentExchange3;
|
2012-10-29 04:16:32 +01:00
|
|
|
import ee3.common.core.helper.NBTHelper;
|
|
|
|
import ee3.common.core.helper.TransmutationHelper;
|
2012-12-05 20:33:03 +01:00
|
|
|
import ee3.common.lib.ConfigurationSettings;
|
2012-08-25 08:46:51 +02:00
|
|
|
import ee3.common.lib.CustomItemRarity;
|
2012-10-29 04:16:32 +01:00
|
|
|
import ee3.common.lib.GuiIds;
|
2012-11-30 16:47:18 +01:00
|
|
|
import ee3.common.lib.Reference;
|
2012-11-30 20:03:36 +01:00
|
|
|
import ee3.common.lib.Sounds;
|
2012-11-06 21:49:43 +01:00
|
|
|
import ee3.common.lib.Strings;
|
2012-12-06 22:04:20 +01:00
|
|
|
import ee3.common.lib.WorldEvents;
|
2012-10-29 04:16:32 +01:00
|
|
|
import ee3.common.network.PacketKeyPressed;
|
|
|
|
import ee3.common.network.PacketTypeHandler;
|
2012-12-06 22:04:20 +01:00
|
|
|
import ee3.common.network.PacketWorldEvent;
|
2012-10-29 04:16:32 +01:00
|
|
|
import net.minecraft.src.EntityPlayer;
|
2012-08-25 08:07:59 +02:00
|
|
|
import net.minecraft.src.EnumRarity;
|
|
|
|
import net.minecraft.src.ItemStack;
|
2012-10-29 04:16:32 +01:00
|
|
|
import net.minecraft.src.World;
|
2012-08-25 08:07:59 +02:00
|
|
|
|
2012-08-25 08:46:51 +02:00
|
|
|
/**
|
|
|
|
* ItemPhilosopherStone
|
|
|
|
*
|
|
|
|
* The Philosophers Stone
|
|
|
|
*
|
|
|
|
* @author pahimar
|
|
|
|
* @license Lesser GNU Public License v3 (http://www.gnu.org/licenses/lgpl.html)
|
|
|
|
*
|
|
|
|
*/
|
2012-11-30 21:45:32 +01:00
|
|
|
public class ItemPhilosopherStone extends ItemEE
|
|
|
|
implements ITransmutationStone, IChargeable, IKeyBound {
|
2012-08-25 08:07:59 +02:00
|
|
|
|
2012-10-29 04:16:32 +01:00
|
|
|
private int maxChargeLevel;
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-08-25 08:46:51 +02:00
|
|
|
public ItemPhilosopherStone(int id) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-08-25 08:46:51 +02:00
|
|
|
super(id);
|
2012-11-20 01:49:39 +01:00
|
|
|
this.setIconCoord(2, 0);
|
2012-11-06 21:49:43 +01:00
|
|
|
this.setItemName(Strings.PHILOSOPHER_STONE_NAME);
|
|
|
|
this.setCreativeTab(EquivalentExchange3.tabsEE3);
|
2012-12-05 20:33:03 +01:00
|
|
|
this.setMaxDamage(ConfigurationSettings.PHILOSOPHERS_STONE_MAX_DURABILITY - 1);
|
2012-11-30 20:03:36 +01:00
|
|
|
this.maxChargeLevel = 3;
|
2012-08-25 08:46:51 +02:00
|
|
|
}
|
2012-08-25 08:07:59 +02:00
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public boolean hasEffect(ItemStack stack) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-08-25 08:07:59 +02:00
|
|
|
return true;
|
|
|
|
}
|
2012-08-25 08:46:51 +02:00
|
|
|
|
2012-08-25 08:07:59 +02:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public EnumRarity getRarity(ItemStack stack) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-08-25 08:46:51 +02:00
|
|
|
return EquivalentExchange3.proxy.getCustomRarityType(CustomItemRarity.RARE);
|
2012-08-25 08:07:59 +02:00
|
|
|
}
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-09-24 21:58:15 +02:00
|
|
|
@Override
|
|
|
|
public boolean doesContainerItemLeaveCraftingGrid(ItemStack itemStack) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
|
|
|
return false;
|
2012-09-24 21:58:15 +02:00
|
|
|
}
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-09-24 21:58:15 +02:00
|
|
|
@Override
|
|
|
|
public boolean getShareTag() {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
|
|
|
return true;
|
2012-09-24 21:58:15 +02:00
|
|
|
}
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-12-05 20:33:03 +01:00
|
|
|
@Override
|
|
|
|
public ItemStack getContainerItemStack(ItemStack itemStack) {
|
|
|
|
|
|
|
|
itemStack.setItemDamage(itemStack.getItemDamage() + 1);
|
|
|
|
|
|
|
|
return itemStack;
|
|
|
|
}
|
|
|
|
|
2012-10-29 04:16:32 +01:00
|
|
|
@Override
|
2012-12-06 22:04:20 +01:00
|
|
|
public boolean onItemUse(ItemStack itemStack, EntityPlayer entityPlayer, World world, int x, int y, int z, int sideHit, float hitVecX, float hitVecY, float hitVecZ) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-12-07 03:06:16 +01:00
|
|
|
//boolean result = TransmutationHelper.transmuteInWorld(world, entityPlayer, itemStack, x, y, z);
|
|
|
|
boolean result = true;
|
|
|
|
if (!world.isRemote) {
|
|
|
|
EquivalentExchange3.proxy.sendWorldEventPacket(WorldEvents.TRANSMUTATION, x, y, z, (byte)sideHit, (byte)getCharge(itemStack), (byte)getCharge(itemStack), (byte)getCharge(itemStack), "50:0");
|
|
|
|
}
|
|
|
|
/*
|
2012-12-05 20:33:03 +01:00
|
|
|
if (result) {
|
|
|
|
itemStack.damageItem(1, entityPlayer);
|
|
|
|
}
|
2012-12-07 03:06:16 +01:00
|
|
|
*/
|
2012-12-05 20:33:03 +01:00
|
|
|
return result;
|
2012-10-29 04:16:32 +01:00
|
|
|
}
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-10-29 04:16:32 +01:00
|
|
|
@Override
|
2012-11-30 16:47:18 +01:00
|
|
|
public void openPortableCrafting(EntityPlayer thePlayer) {
|
|
|
|
|
|
|
|
thePlayer.openGui(EquivalentExchange3.instance, GuiIds.PORTABLE_CRAFTING, thePlayer.worldObj, (int) thePlayer.posX, (int) thePlayer.posY, (int) thePlayer.posZ);
|
2012-10-29 04:16:32 +01:00
|
|
|
}
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-11-26 03:11:12 +01:00
|
|
|
@Override
|
|
|
|
public short getCharge(ItemStack stack) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-12-05 20:33:03 +01:00
|
|
|
return NBTHelper.getShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY);
|
2012-11-26 03:11:12 +01:00
|
|
|
}
|
2012-10-29 04:16:32 +01:00
|
|
|
|
|
|
|
@Override
|
2012-11-26 03:11:12 +01:00
|
|
|
public void setCharge(ItemStack stack, short charge) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-10-29 04:16:32 +01:00
|
|
|
if (charge <= maxChargeLevel) {
|
2012-12-05 20:33:03 +01:00
|
|
|
NBTHelper.setShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY, charge);
|
2012-10-29 04:16:32 +01:00
|
|
|
}
|
|
|
|
}
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-10-29 04:16:32 +01:00
|
|
|
@Override
|
2012-11-26 03:11:12 +01:00
|
|
|
public void increaseCharge(ItemStack stack) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-12-05 20:33:03 +01:00
|
|
|
if (NBTHelper.getShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY) < maxChargeLevel) {
|
|
|
|
NBTHelper.setShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY, (short) (NBTHelper.getShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY) + 1));
|
2012-10-29 04:16:32 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2012-11-26 03:11:12 +01:00
|
|
|
public void decreaseCharge(ItemStack stack) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-12-05 20:33:03 +01:00
|
|
|
if (NBTHelper.getShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY) > 0) {
|
|
|
|
NBTHelper.setShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY, (short) (NBTHelper.getShort(stack, Strings.NBT_ITEM_CHARGE_LEVEL_KEY) - 1));
|
2012-10-29 04:16:32 +01:00
|
|
|
}
|
|
|
|
}
|
2012-08-25 08:46:51 +02:00
|
|
|
|
2012-11-30 16:47:18 +01:00
|
|
|
@Override
|
2012-11-30 20:03:36 +01:00
|
|
|
public void doKeyBindingAction(EntityPlayer thePlayer, ItemStack itemStack, String keyBinding) {
|
2012-11-30 16:47:18 +01:00
|
|
|
|
2012-12-05 20:33:03 +01:00
|
|
|
if (keyBinding.equals(ConfigurationSettings.KEYBINDING_EXTRA)) {
|
2012-11-30 16:47:18 +01:00
|
|
|
openPortableCrafting(thePlayer);
|
|
|
|
}
|
2012-12-05 20:33:03 +01:00
|
|
|
else if (keyBinding.equals(ConfigurationSettings.KEYBINDING_CHARGE)) {
|
2012-11-30 20:03:36 +01:00
|
|
|
if (!thePlayer.isSneaking()) {
|
|
|
|
increaseCharge(itemStack);
|
|
|
|
thePlayer.worldObj.playSoundAtEntity(thePlayer, Sounds.CHARGE_UP, 0.5F, 0.5F + (0.5F * (getCharge(itemStack) * 1.0F / maxChargeLevel)));
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
decreaseCharge(itemStack);
|
|
|
|
thePlayer.worldObj.playSoundAtEntity(thePlayer, Sounds.CHARGE_DOWN, 0.5F, 1.0F - (0.5F - (0.5F * (getCharge(itemStack) * 1.0F / maxChargeLevel))));
|
|
|
|
}
|
|
|
|
}
|
2012-11-30 21:45:32 +01:00
|
|
|
|
2012-11-30 16:47:18 +01:00
|
|
|
}
|
|
|
|
|
2012-08-25 08:07:59 +02:00
|
|
|
}
|