2015-08-29 14:33:25 +02:00
|
|
|
/*
|
2016-05-16 22:52:27 +02:00
|
|
|
* This file ("ItemFoods.java") is part of the Actually Additions mod for Minecraft.
|
2015-08-29 14:33:25 +02:00
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-05-16 22:52:27 +02:00
|
|
|
* http://ellpeck.de/actaddlicense
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-05-16 22:54:42 +02:00
|
|
|
* © 2015-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-01-29 20:23:19 +01:00
|
|
|
|
2016-01-10 01:17:17 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.ActuallyAdditions;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.items.base.ItemFoodBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheFoods;
|
2016-11-16 20:31:16 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StackUtil;
|
2016-01-05 04:47:35 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.StringUtil;
|
2016-05-03 18:29:02 +02:00
|
|
|
import net.minecraft.client.renderer.block.model.ModelResourceLocation;
|
2015-01-29 20:23:19 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2016-03-18 23:47:22 +01:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
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-12-03 20:15:07 +01:00
|
|
|
import net.minecraft.item.EnumAction;
|
|
|
|
import net.minecraft.item.EnumRarity;
|
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-11-19 21:11:17 +01:00
|
|
|
import net.minecraft.util.NonNullList;
|
2015-01-30 20:16:32 +01:00
|
|
|
import net.minecraft.world.World;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemFoods extends ItemFoodBase{
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2016-06-17 23:50:38 +02:00
|
|
|
public static final TheFoods[] ALL_FOODS = TheFoods.values();
|
2016-01-04 17:25:03 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemFoods(String name){
|
|
|
|
super(0, 0.0F, false, name);
|
2015-01-29 20:23:19 +01:00
|
|
|
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-03-07 02:23:31 +01:00
|
|
|
@Override
|
2016-05-29 23:49:35 +02:00
|
|
|
public ItemStack onItemUseFinish(ItemStack stack, World world, EntityLivingBase player){
|
2016-01-07 21:41:28 +01:00
|
|
|
ItemStack stackToReturn = super.onItemUseFinish(stack, world, player);
|
2016-06-17 23:50:38 +02:00
|
|
|
ItemStack returnItem = stack.getItemDamage() >= ALL_FOODS.length ? null : ALL_FOODS[stack.getItemDamage()].returnItem;
|
2016-11-16 20:31:16 +01:00
|
|
|
if(StackUtil.isValid(returnItem) && player instanceof EntityPlayer){
|
2016-03-18 23:47:22 +01:00
|
|
|
if(!((EntityPlayer)player).inventory.addItemStackToInventory(returnItem.copy())){
|
2015-10-03 10:19:40 +02:00
|
|
|
if(!world.isRemote){
|
2016-11-26 21:32:27 +01:00
|
|
|
EntityItem entityItem = new EntityItem(player.world, player.posX, player.posY, player.posZ, returnItem.copy());
|
2016-01-07 21:41:28 +01:00
|
|
|
entityItem.setPickupDelay(0);
|
2016-11-26 21:32:27 +01:00
|
|
|
player.world.spawnEntity(entityItem);
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return stackToReturn;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public int getMaxItemUseDuration(ItemStack stack){
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= ALL_FOODS.length ? 0 : ALL_FOODS[stack.getItemDamage()].useDuration;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumAction getItemUseAction(ItemStack stack){
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= ALL_FOODS.length ? EnumAction.EAT : (ALL_FOODS[stack.getItemDamage()].getsDrunken ? EnumAction.DRINK : EnumAction.EAT);
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public int getHealAmount(ItemStack stack){
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= ALL_FOODS.length ? 0 : ALL_FOODS[stack.getItemDamage()].healAmount;
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2016-01-07 21:41:28 +01:00
|
|
|
public float getSaturationModifier(ItemStack stack){
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= ALL_FOODS.length ? 0 : ALL_FOODS[stack.getItemDamage()].saturation;
|
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;
|
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-01-29 20:23:19 +01:00
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2016-11-19 23:12:22 +01:00
|
|
|
return stack.getItemDamage() >= ALL_FOODS.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+"_"+ALL_FOODS[stack.getItemDamage()].name;
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|
|
|
|
|
2016-05-29 23:49:35 +02:00
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-06-17 23:50:38 +02:00
|
|
|
return stack.getItemDamage() >= ALL_FOODS.length ? EnumRarity.COMMON : ALL_FOODS[stack.getItemDamage()].rarity;
|
2015-01-30 20:16:32 +01:00
|
|
|
}
|
|
|
|
|
2016-06-10 21:52:37 +02:00
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
@SideOnly(Side.CLIENT)
|
2016-11-19 21:11:17 +01:00
|
|
|
public void getSubItems(Item item, CreativeTabs tab, NonNullList list){
|
2016-06-17 23:50:38 +02:00
|
|
|
for(int j = 0; j < ALL_FOODS.length; j++){
|
2015-10-03 10:19:40 +02:00
|
|
|
list.add(new ItemStack(this, 1, j));
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2016-01-04 17:25:03 +01:00
|
|
|
@Override
|
2016-01-10 01:17:17 +01:00
|
|
|
protected void registerRendering(){
|
2016-06-17 23:50:38 +02:00
|
|
|
for(int i = 0; i < ALL_FOODS.length; i++){
|
2016-11-19 23:12:22 +01:00
|
|
|
String name = this.getRegistryName()+"_"+ALL_FOODS[i].name;
|
2016-06-01 00:37:28 +02:00
|
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this, 1, i), new ModelResourceLocation(name), "inventory");
|
2016-01-04 17:25:03 +01:00
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|