aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/gregtech/common/blocks/GregtechMetaCasingBlocks5.java
blob: fe247e24a45b32453015d7d00d5d88131954db98 (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
82
83
84
85
86
87
88
89
90
91
92
package gtPlusPlus.xmod.gregtech.common.blocks;

import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
import gregtech.api.enums.TAE;
import gregtech.api.enums.Textures;
import gregtech.api.objects.GT_CopiedBlockTexture;
import gregtech.api.util.GT_LanguageManager;
import gregtech.common.blocks.GT_Material_Casings;
import gtPlusPlus.xmod.gregtech.api.enums.GregtechItemList;
import gtPlusPlus.xmod.gregtech.common.blocks.textures.TexturesGrinderMultiblock;
import gtPlusPlus.xmod.gregtech.common.blocks.textures.TexturesGtBlock;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import net.minecraft.world.IBlockAccess;


public class GregtechMetaCasingBlocks5
extends GregtechMetaCasingBlocksAbstract {

	// Free Indexes within TAE: 91, 92, 94, 100, 101, 102, 103, 104, 114, 116, 117, 118, 119, 120, 121, 124, 125, 126, 127
	// 19 Free Indexes
	private static final TexturesGrinderMultiblock mGrinderOverlayHandler = new TexturesGrinderMultiblock();
	
	public GregtechMetaCasingBlocks5() {
		super(GregtechMetaCasingItems.class, "gtplusplus.blockcasings.5", GT_Material_Casings.INSTANCE);		
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".0.name", "IsaMill Exterior Casing"); // IsaMill Casing
		TAE.registerTexture(0, 2, new GT_CopiedBlockTexture(this, 6, 0));
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".1.name", "IsaMill Piping"); // IsaMill Pipe
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".2.name", "IsaMill Gearbox"); // IsaMill Gearbox
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".3.name", "Elemental Confinement Shell"); // Duplicator Casing
		TAE.registerTexture(0, 3, new GT_CopiedBlockTexture(this, 6, 3));
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".4.name", "Sparge Tower Exterior Casing"); // Sparge Tower Casing
		TAE.registerTexture(0, 4, new GT_CopiedBlockTexture(this, 6, 4));
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".5.name", "Sturdy Printer Casing"); // Unused
		TAE.registerTexture(1, 10, new GT_CopiedBlockTexture(this, 6, 5));
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".6.name", "Forge Casing"); // Forge Hammer Casing
		TAE.registerTexture(1, 11, new GT_CopiedBlockTexture(this, 6, 6));
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".7.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".8.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".9.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".10.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".11.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".12.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".13.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".14.name", ""); // Unused
		GT_LanguageManager.addStringLocalization(this.getUnlocalizedName() + ".15.name", ""); // Unused
		
		GregtechItemList.Casing_IsaMill_Casing.set(new ItemStack(this, 1, 0));
		GregtechItemList.Casing_IsaMill_Pipe.set(new ItemStack(this, 1, 1));
		GregtechItemList.Casing_IsaMill_Gearbox.set(new ItemStack(this, 1, 2));
		GregtechItemList.Casing_ElementalDuplicator.set(new ItemStack(this, 1, 3));
		GregtechItemList.Casing_Sparge_Tower_Exterior.set(new ItemStack(this, 1, 4));
		GregtechItemList.Casing_IndustrialAutoChisel.set(new ItemStack(this, 1, 5));
		GregtechItemList.Casing_IndustrialForgeHammer.set(new ItemStack(this, 1, 6));
	}
	
	@Override
	public IIcon getIcon(final int aSide, final int aMeta) {
		return getStaticIcon(aSide, aMeta);
	}
	

	public static IIcon getStaticIcon(final int aSide, final int aMeta) {
		if ((aMeta >= 0) && (aMeta < 16)) {
			switch (aMeta) {
				case 0:
					return TexturesGtBlock.TEXTURE_PIPE_GRINDING_MILL.getIcon();
				case 1:
					return TexturesGtBlock.TEXTURE_CASING_GRINDING_MILL.getIcon();
				case 2:
					return TexturesGtBlock.TEXTURE_GEARBOX_GRINDING_MILL.getIcon();
				case 3:
					return TexturesGtBlock.TEXTURE_TECH_PANEL_D.getIcon();
				case 4:
					return TexturesGtBlock.Casing_Machine_Metal_Sheet_H.getIcon();
				case 5:
					return TexturesGtBlock.Casing_Machine_Metal_Sheet_I.getIcon();
				case 6:
					return TexturesGtBlock.TEXTURE_TECH_PANEL_H.getIcon();
			}
		}
		return Textures.BlockIcons.RENDERING_ERROR.getIcon();		
	}

	@Override
	@SideOnly(Side.CLIENT)
	public IIcon getIcon(final IBlockAccess aWorld, final int xCoord, final int yCoord, final int zCoord, final int aSide) {
		final GregtechMetaCasingBlocks5 i = this;
		return mGrinderOverlayHandler.handleCasingsGT(aWorld, xCoord, yCoord, zCoord, aSide, i);
	}
}