2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.items;
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2015-02-17 16:15:16 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.items.metalists.TheFoods;
|
2015-04-06 15:51:59 +02:00
|
|
|
import ellpeck.actuallyadditions.util.INameableItem;
|
|
|
|
import ellpeck.actuallyadditions.util.ItemUtil;
|
|
|
|
import ellpeck.actuallyadditions.util.KeyUtil;
|
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2015-01-30 20:16:32 +01:00
|
|
|
import net.minecraft.entity.item.EntityItem;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.*;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.util.IIcon;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.util.StatCollector;
|
2015-01-30 20:16:32 +01:00
|
|
|
import net.minecraft.world.World;
|
2015-01-29 20:23:19 +01:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-04-04 05:20:19 +02:00
|
|
|
public class ItemFoods extends ItemFood implements INameableItem{
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2015-02-09 17:25:05 +01:00
|
|
|
public static final TheFoods[] allFoods = TheFoods.values();
|
2015-02-17 16:15:16 +01:00
|
|
|
public IIcon[] textures = new IIcon[allFoods.length];
|
2015-01-29 20:23:19 +01:00
|
|
|
|
|
|
|
public ItemFoods(){
|
|
|
|
super(0, 0.0F, false);
|
|
|
|
this.setHasSubtypes(true);
|
2015-02-09 17:25:05 +01:00
|
|
|
this.setMaxDamage(0);
|
|
|
|
TheFoods.setReturnItems();
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-04-04 05:20:19 +02:00
|
|
|
@Override
|
|
|
|
public String getOredictName(){
|
|
|
|
return "";
|
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
return stack.getItemDamage() >= allFoods.length ? EnumRarity.common : allFoods[stack.getItemDamage()].rarity;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public int func_150905_g(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
return stack.getItemDamage() >= allFoods.length ? 0 : allFoods[stack.getItemDamage()].healAmount;
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public float func_150906_h(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
return stack.getItemDamage() >= allFoods.length ? 0 : allFoods[stack.getItemDamage()].saturation;
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-01-29 20:23:19 +01:00
|
|
|
public EnumAction getItemUseAction(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
return stack.getItemDamage() >= allFoods.length ? EnumAction.eat : (allFoods[stack.getItemDamage()].getsDrunken ? EnumAction.drink : EnumAction.eat);
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-01-29 20:23:19 +01:00
|
|
|
public int getMaxItemUseDuration(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
return stack.getItemDamage() >= allFoods.length ? 0 : allFoods[stack.getItemDamage()].useDuration;
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-09 17:25:05 +01:00
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
|
|
|
}
|
|
|
|
|
2015-01-29 20:23:19 +01:00
|
|
|
@SuppressWarnings("all")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
|
|
|
for (int j = 0; j < allFoods.length; j++){
|
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-01-29 20:23:19 +01:00
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-06-12 19:12:06 +02:00
|
|
|
return this.getUnlocalizedName() + (stack.getItemDamage() >= allFoods.length ? " ERROR!" : allFoods[stack.getItemDamage()].getName());
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public ItemStack onEaten(ItemStack stack, World world, EntityPlayer player){
|
|
|
|
ItemStack stackToReturn = super.onEaten(stack, world, player);
|
2015-06-12 19:12:06 +02:00
|
|
|
ItemStack returnItem = stack.getItemDamage() >= allFoods.length ? null : allFoods[stack.getItemDamage()].returnItem;
|
|
|
|
if(returnItem != null){
|
2015-01-30 20:16:32 +01:00
|
|
|
if(!player.inventory.addItemStackToInventory(returnItem.copy())){
|
|
|
|
if(!world.isRemote){
|
|
|
|
EntityItem entityItem = new EntityItem(player.worldObj, player.posX, player.posY, player.posZ, returnItem.copy());
|
2015-02-17 16:15:16 +01:00
|
|
|
entityItem.delayBeforeCanPickup = 0;
|
2015-01-30 20:16:32 +01:00
|
|
|
player.worldObj.spawnEntityInWorld(entityItem);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return stackToReturn;
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-01-29 20:23:19 +01:00
|
|
|
@SuppressWarnings("unchecked")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void addInformation(ItemStack stack, EntityPlayer player, List list, boolean isHeld){
|
2015-06-12 19:12:06 +02:00
|
|
|
if(stack.getItemDamage() < allFoods.length){
|
|
|
|
if(KeyUtil.isShiftPressed()){
|
|
|
|
list.add(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+"."+this.getName()+allFoods[stack.getItemDamage()].getName()+".desc"));
|
|
|
|
list.add(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".hunger.desc")+": "+allFoods[stack.getItemDamage()].healAmount);
|
|
|
|
list.add(StatCollector.translateToLocal("tooltip."+ModUtil.MOD_ID_LOWER+".saturation.desc")+": "+allFoods[stack.getItemDamage()].saturation);
|
|
|
|
}
|
|
|
|
else list.add(ItemUtil.shiftForInfo());
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public IIcon getIconFromDamage(int par1){
|
2015-06-12 19:12:06 +02:00
|
|
|
return par1 >= textures.length ? null : textures[par1];
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerIcons(IIconRegister iconReg){
|
|
|
|
for(int i = 0; i < textures.length; i++){
|
2015-03-29 15:29:05 +02:00
|
|
|
textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER + ":" + this.getName() + allFoods[i].getName());
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
}
|
2015-02-20 22:45:33 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
public String getName(){
|
|
|
|
return "itemFood";
|
|
|
|
}
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|