aboutsummaryrefslogtreecommitdiff
path: root/src/main/java/gtPlusPlus/xmod/bop/blocks/base/LogBase.java
blob: 8e8ca0ed0a4e24edbae10a81619f6871c4d6ba50 (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
package gtPlusPlus.xmod.bop.blocks.base;

import java.util.List;

import cpw.mods.fml.common.registry.GameRegistry;
import cpw.mods.fml.common.registry.LanguageRegistry;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;

import net.minecraft.block.BlockLog;
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.init.Blocks;
import net.minecraft.item.Item;
import net.minecraft.item.ItemBlock;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;

import gtPlusPlus.core.creative.AddToCreativeTab;
import gtPlusPlus.core.lib.CORE;
import gtPlusPlus.core.util.Utils;
import gtPlusPlus.core.util.minecraft.ItemUtils;

public abstract class LogBase extends BlockLog
{
	public String[] treeType = new String[] {};
	protected IIcon[] textureSide;
	protected IIcon[] textureTop;

	@SuppressWarnings("deprecation")
	public LogBase(String blockNameLocalized, String blockNameUnlocalized, String[] treeTypes){
		this.treeType = treeTypes;
		String blockName = "block"+Utils.sanitizeString(blockNameLocalized)+"Log";
		GameRegistry.registerBlock(this, ItemBlock.class, blockName);
		this.setBlockName(blockName);
		ItemUtils.addItemToOreDictionary(ItemUtils.getSimpleStack(this), "log"+Utils.sanitizeString(blockNameLocalized), true);
		ItemUtils.addItemToOreDictionary(ItemUtils.getSimpleStack(this), "logWood", true);
		this.setCreativeTab(AddToCreativeTab.tabBOP);
		LanguageRegistry.addName(this, blockNameLocalized);
		Blocks.fire.setFireInfo(this, 20, 100);
	}

	private final void setVanillaVariable(Object toSet, Object value){
		toSet = value;
	}

	/**
	 * returns a list of blocks with the same ID, but different meta (eg: wood returns 4 blocks)
	 */
	@Override
	@SideOnly(Side.CLIENT)
	public void getSubBlocks(Item item, CreativeTabs tab, List metaList){
		for (int i = 0; i < this.textureSide.length; ++i){
			metaList.add(new ItemStack(item, 1, i));
		}
	}

	@Override
	@SideOnly(Side.CLIENT)
	protected IIcon getTopIcon(int meta){
		return this.textureTop[meta % this.textureTop.length];
	}

	@Override
	@SideOnly(Side.CLIENT)
	protected IIcon getSideIcon(int metaID){
		return this.textureSide[metaID % this.textureSide.length];
	}

	@Override
	@SideOnly(Side.CLIENT)
	public void registerBlockIcons(IIconRegister iIcon)
	{
		this.textureSide = new IIcon[treeType.length];
		this.textureTop = new IIcon[treeType.length];

		for (int i = 0; i < this.textureSide.length; ++i){
			this.textureSide[i] = iIcon.registerIcon(CORE.MODID + ":" + "trees/" + "logs/" + "log_" + treeType[i]);
			this.textureTop[i] = iIcon.registerIcon(CORE.MODID + ":" + "trees/" + "logs/" + "log_" + treeType[i] + "_top");
		}

		setVanillaVariable(this.field_150167_a, this.textureSide);
		setVanillaVariable(this.field_150166_b, this.textureTop);
	}

}