2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("ItemMisc.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
2016-01-03 16:05:51 +01:00
|
|
|
* http://ellpeck.de/actaddlicense/
|
2015-08-29 14:33:25 +02:00
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2016-01-03 16:05:51 +01:00
|
|
|
* © 2016 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2016-01-05 04:47:35 +01:00
|
|
|
package de.ellpeck.actuallyadditions.mod.items;
|
2014-11-10 16:47:04 +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.ItemBase;
|
|
|
|
import de.ellpeck.actuallyadditions.mod.items.metalists.TheMiscItems;
|
2016-01-10 01:17:17 +01:00
|
|
|
import de.ellpeck.actuallyadditions.mod.util.ModUtil;
|
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;
|
2014-11-10 16:47:04 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2014-11-10 16:47:04 +01:00
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2016-01-10 01:17:17 +01:00
|
|
|
import net.minecraft.util.ResourceLocation;
|
2016-01-07 18:20:59 +01:00
|
|
|
import net.minecraftforge.fml.relauncher.Side;
|
|
|
|
import net.minecraftforge.fml.relauncher.SideOnly;
|
2014-11-10 16:47:04 +01:00
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class ItemMisc extends ItemBase{
|
2014-11-10 16:47:04 +01:00
|
|
|
|
2015-02-09 17:25:05 +01:00
|
|
|
public static final TheMiscItems[] allMiscItems = TheMiscItems.values();
|
2015-01-29 20:23:19 +01:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public ItemMisc(String name){
|
|
|
|
super(name);
|
2015-01-30 20:16:32 +01:00
|
|
|
this.setHasSubtypes(true);
|
2014-11-10 16:47:04 +01:00
|
|
|
}
|
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public int getMetadata(int damage){
|
|
|
|
return damage;
|
2015-03-07 02:23:31 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-10-03 10:19:40 +02:00
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-11-23 19:06:07 +01:00
|
|
|
return stack.getItemDamage() >= allMiscItems.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+allMiscItems[stack.getItemDamage()].name;
|
2015-10-03 10:19:40 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
2016-01-07 23:42:42 +01:00
|
|
|
return stack.getItemDamage() >= allMiscItems.length ? EnumRarity.COMMON : allMiscItems[stack.getItemDamage()].rarity;
|
2014-11-10 16:47:04 +01:00
|
|
|
}
|
|
|
|
|
2015-01-30 20:16:32 +01:00
|
|
|
@SuppressWarnings("all")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubItems(Item item, CreativeTabs tab, List list){
|
2015-02-09 17:25:05 +01:00
|
|
|
for(int j = 0; j < allMiscItems.length; j++){
|
2015-01-30 20:16:32 +01:00
|
|
|
list.add(new ItemStack(this, 1, j));
|
2014-11-10 16:47:04 +01:00
|
|
|
}
|
|
|
|
}
|
2016-01-10 01:17:17 +01:00
|
|
|
|
|
|
|
@Override
|
|
|
|
protected void registerRendering(){
|
|
|
|
ResourceLocation[] resLocs = new ResourceLocation[allMiscItems.length];
|
|
|
|
for(int i = 0; i < allMiscItems.length; i++){
|
2016-05-03 18:29:02 +02:00
|
|
|
String name = this.getRegistryName()+allMiscItems[i].name;
|
2016-04-20 21:39:03 +02:00
|
|
|
resLocs[i] = new ResourceLocation(ModUtil.MOD_ID, name);
|
2016-05-03 18:29:02 +02:00
|
|
|
ActuallyAdditions.proxy.addRenderRegister(new ItemStack(this, 1, i), new ModelResourceLocation(name, "inventory"));
|
2016-01-10 01:17:17 +01:00
|
|
|
}
|
|
|
|
ActuallyAdditions.proxy.addRenderVariant(this, resLocs);
|
|
|
|
}
|
2015-01-29 20:23:19 +01:00
|
|
|
}
|