blob: 718e9e541b628bd13d2b6315bb8f8015d1ff7374 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
|
package fyresmodjam.misc;
import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import fyresmodjam.ModjamMod;
import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
public class CreativeTabModjamMod extends CreativeTabs {
public CreativeTabModjamMod(int par1, String par2Str) {
super(par1, par2Str);
}
@Override
@SideOnly(Side.CLIENT)
public ItemStack getIconItemStack() {
return new ItemStack(ModjamMod.itemTrap, 1, 0);
}
@Override
public String getTranslatedTabLabel() {
return "The \"You Will Die\" Mod";
}
@Override
public void displayAllReleventItems(List par1List) {
try {
ArrayList<ItemStack> list = new ArrayList<ItemStack>();
for (Field f : ModjamMod.class.getFields()) {
if (f.getType() == Item.class) {
Item item = (Item) f.get(
ModjamMod.instance);
if (item == null || item
.getCreativeTab() == null) {
continue;
}
item.getSubItems(item, this, list);
} else if (f.getType() == Block.class) {
Block block = (Block) f.get(
ModjamMod.instance);
if (block == null || block
.getCreativeTabToDisplayOn() == null) {
continue;
}
block.getSubBlocks(block.getItem(
null, 0, 0, 0),
this, list);
}
}
for (ItemStack i : list) {
if (i == null || i.getItem() == null) {
continue;
}
if (i.getItem().getIconIndex(i) != null) {
par1List.add(i);
}
}
} catch (Exception e) {
e.printStackTrace();
}
}
@Override
public Item getTabIconItem() {
return ModjamMod.itemTrap;
}
}
|