Applied-Energistics-2-tiler.../util/item/AEItemDef.java

81 lines
1.7 KiB
Java
Raw Normal View History

package appeng.util.item;
import java.util.List;
import net.minecraft.item.Item;
2013-12-28 21:55:31 +01:00
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTBase;
import appeng.util.Platform;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
public class AEItemDef
{
public int myHash;
public int def;
public Item item;
public int damageValue;
public int dspDamage;
public int maxDamage;
2014-01-20 17:41:37 +01:00
public AESharedNBT tagCompound;
@SideOnly(Side.CLIENT)
public String displayName;
@SideOnly(Side.CLIENT)
public List tooltip;
public AEItemDef copy()
{
AEItemDef t = new AEItemDef();
t.def = def;
t.item = item;
t.damageValue = damageValue;
t.dspDamage = dspDamage;
t.maxDamage = maxDamage;
2014-01-06 07:55:16 +01:00
t.tagCompound = tagCompound;
return t;
}
2013-12-28 21:55:31 +01:00
@Override
public boolean equals(Object obj)
{
AEItemDef def = (AEItemDef) obj;
return def.damageValue == damageValue && def.item == item && tagCompound == def.tagCompound;
}
public int getDamageValueHack(ItemStack is)
{
return Item.blazeRod.getDamage( is );
}
public boolean isItem(ItemStack otherStack)
{
// hackery!
int dmg = getDamageValueHack( otherStack );
if ( item == otherStack.getItem() && dmg == damageValue )
{
if ( (tagCompound != null) == otherStack.hasTagCompound() )
return true;
if ( tagCompound != null && otherStack.hasTagCompound() )
return Platform.NBTEqualityTest( (NBTBase) tagCompound, otherStack.getTagCompound() );
return true;
}
return false;
}
2014-01-06 07:55:16 +01:00
public void reHash()
{
def = item.itemID << Platform.DEF_OFFSET | damageValue;
myHash = def ^ (tagCompound == null ? 0 : System.identityHashCode( tagCompound ));
}
}