OSDN Git Service

e9112e7fbee99364120e137e0d74be32254d854d
[chemicraft/chemicraft.git] / common / chemicraft / item / ItemCompounds.java
1 package chemicraft.item;
2
3 import java.util.List;
4
5 import net.minecraft.src.CreativeTabs;
6 import net.minecraft.src.Entity;
7 import net.minecraft.src.EntityPlayer;
8 import net.minecraft.src.Item;
9 import net.minecraft.src.ItemStack;
10 import net.minecraft.src.World;
11 import chemicraft.ChemiCraft;
12 import chemicraft.ChemiCraftAPI;
13 import cpw.mods.fml.common.Side;
14 import cpw.mods.fml.common.asm.SideOnly;
15
16 public class ItemCompounds extends Item {
17
18         public ItemCompounds(int par1){
19                 super(par1);
20                 this.maxStackSize = 1;
21                 this.setHasSubtypes(true);
22                 this.setMaxDamage(0);
23                 this.setCreativeTab(ChemiCraft.instance.creativeTab);
24         }
25
26         @Override
27         public boolean onItemUse(ItemStack par1ItemStack, EntityPlayer par2EntityPlayer, World par3World, int par4, int par5, int par6, int par7, float par8, float par9, float par10) {
28                 for(int i=0;i < ChemiCraftAPI.instance.getCompoundHandlerItemName().size();i++){
29                         if(ChemiCraftAPI.instance.getCompoundsName().get(par1ItemStack.getItemDamage()).equals(ChemiCraftAPI.instance.getCompoundHandlerItemName().get(i))){
30                                 return ChemiCraftAPI.instance.getCompoundHandler().get(i).onItemUseHandler(par1ItemStack, par2EntityPlayer, par3World, par4, par5, par6, par7, par8, par9, par10);
31                         }
32                 }
33                 return false;
34         }
35
36
37         @Override
38         public ItemStack onItemRightClick(ItemStack par1ItemStack, World par2World, EntityPlayer par3EntityPlayer)
39         {
40                 for(int i=0;i < ChemiCraftAPI.instance.getCompoundHandlerItemName().size();i++){
41                         if(ChemiCraftAPI.instance.getCompoundsName().get(par1ItemStack.getItemDamage()).equals(ChemiCraftAPI.instance.getCompoundHandlerItemName().get(i))){
42                                 ChemiCraftAPI.instance.getCompoundHandler().get(i).onItemRightClickHandler(par1ItemStack, par2World, par3EntityPlayer);
43                         }
44                 }
45                 return par1ItemStack;
46         }
47
48
49
50         @Override
51         public void onUpdate(ItemStack par1ItemStack, World par2World, Entity par3Entity, int par4, boolean par5){
52                 for(int i=0;i < ChemiCraftAPI.instance.getCompoundHandlerItemName().size();i++){
53                         if(ChemiCraftAPI.instance.getCompoundsName().get(par1ItemStack.getItemDamage()).equals(ChemiCraftAPI.instance.getCompoundHandlerItemName().get(i))){
54                                 ChemiCraftAPI.instance.getCompoundHandler().get(i).onUpdateHandler(par1ItemStack, par2World, par3Entity, par4, par5);
55                         }
56                 }
57         }
58
59
60
61         @SideOnly(Side.CLIENT)
62         @Override
63         public void getSubItems(int par1, CreativeTabs par2CreativeTabs, List par3List){
64                 for(int type = 0; type < ChemiCraftAPI.instance.getCompoundsName().toArray().length; type++)
65                 {
66                         par3List.add(new ItemStack(par1, 1, type));
67                         this.setIconIndex(type);
68                 }
69         }
70
71
72
73         @Override
74         public String getItemNameIS(ItemStack par1ItemStack){
75                 return super.getItemName() + "." + ChemiCraftAPI.instance.getCompoundsName().toArray()[par1ItemStack.getItemDamage()];
76         }
77
78
79
80         @Override
81         public String getTextureFile(){
82                 return ChemiCraft.instance.itemCompoundsTexture;
83         }
84
85
86
87         @SideOnly(Side.CLIENT)
88         @Override
89         public int getIconFromDamage(int par1){
90                 for(int i=0;i < ChemiCraftAPI.instance.getCompoundHandlerItemName().size();i++){
91                         if(ChemiCraftAPI.instance.getCompoundsName().get(par1).equals(ChemiCraftAPI.instance.getCompoundHandlerItemName().get(i))){
92                                 return ChemiCraftAPI.instance.getCompoundHandler().get(i).getIconIndexHandler();
93                         }
94                 }
95                 return 0;
96         }
97
98 }