summaryrefslogtreecommitdiff
path: root/src/main/java/fyresmodjam/misc/CreativeTabModjamMod.java
blob: 821af0f9f5ccb04389eb4b39024f1fc6735cb3b7 (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
78
79
80
81
package fyresmodjam.misc;

import java.lang.reflect.Field;
import java.util.ArrayList;
import java.util.List;

import fyresmodjam.ModjamMod;
import net.minecraft.block.Block;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Items;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.NonNullList;
import net.minecraftforge.fml.relauncher.Side;
import net.minecraftforge.fml.relauncher.SideOnly;

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 displayAllRelevantItems(
			NonNullList<ItemStack> 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;
					}
					
				} 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 ItemStack getTabIconItem() {
		return new ItemStack(Items.SPAWN_EGG);
	}

}