2015-08-29 14:33:25 +02:00
|
|
|
/*
|
|
|
|
* This file ("BlockMisc.java") is part of the Actually Additions Mod for Minecraft.
|
|
|
|
* It is created and owned by Ellpeck and distributed
|
|
|
|
* under the Actually Additions License to be found at
|
|
|
|
* http://github.com/Ellpeck/ActuallyAdditions/blob/master/README.md
|
|
|
|
* View the source code at https://github.com/Ellpeck/ActuallyAdditions
|
|
|
|
*
|
2015-11-02 20:55:19 +01:00
|
|
|
* © 2015 Ellpeck
|
2015-08-29 14:33:25 +02:00
|
|
|
*/
|
|
|
|
|
2015-03-07 12:51:28 +01:00
|
|
|
package ellpeck.actuallyadditions.blocks;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2015-12-03 20:15:07 +01:00
|
|
|
import ellpeck.actuallyadditions.blocks.base.BlockBase;
|
|
|
|
import ellpeck.actuallyadditions.blocks.base.ItemBlockBase;
|
2015-03-07 12:51:28 +01:00
|
|
|
import ellpeck.actuallyadditions.blocks.metalists.TheMiscBlocks;
|
2015-10-18 19:56:18 +02:00
|
|
|
import ellpeck.actuallyadditions.proxy.ClientProxy;
|
2015-04-06 15:51:59 +02:00
|
|
|
import ellpeck.actuallyadditions.util.ModUtil;
|
2015-11-23 19:06:07 +01:00
|
|
|
import ellpeck.actuallyadditions.util.StringUtil;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2015-03-07 02:23:31 +01:00
|
|
|
import net.minecraft.item.EnumRarity;
|
2015-02-17 16:15:16 +01:00
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
|
|
|
|
import java.util.List;
|
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public class BlockMisc extends BlockBase{
|
2015-02-17 16:15:16 +01:00
|
|
|
|
|
|
|
public static final TheMiscBlocks[] allMiscBlocks = TheMiscBlocks.values();
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IIcon[] textures;
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-12-26 23:48:49 +01:00
|
|
|
private IIcon ironCasingSeasonalTop;
|
2015-10-29 20:54:10 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
private IIcon ironCasingSeasonal;
|
2015-10-18 19:56:18 +02:00
|
|
|
|
2015-12-03 20:15:07 +01:00
|
|
|
public BlockMisc(String name){
|
|
|
|
super(Material.rock, name);
|
2015-04-06 15:51:59 +02:00
|
|
|
this.setHardness(1.5F);
|
2015-07-07 01:13:39 +02:00
|
|
|
this.setResistance(10.0F);
|
2015-04-06 15:51:59 +02:00
|
|
|
this.setHarvestLevel("pickaxe", 1);
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@Override
|
2015-10-28 14:46:04 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2015-10-03 10:19:40 +02:00
|
|
|
public IIcon getIcon(int side, int metadata){
|
2015-10-29 20:54:10 +01:00
|
|
|
if(ClientProxy.jingleAllTheWay && side != 0){
|
2015-12-26 23:48:49 +01:00
|
|
|
if(metadata == TheMiscBlocks.IRON_CASING.ordinal()){
|
|
|
|
return side == 1 ? this.ironCasingSeasonalTop : this.ironCasingSeasonal;
|
2015-10-29 20:54:10 +01:00
|
|
|
}
|
2015-10-18 19:56:18 +02:00
|
|
|
}
|
2015-10-03 10:19:40 +02:00
|
|
|
return metadata >= textures.length ? null : textures[metadata];
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public int damageDropped(int meta){
|
2015-03-07 12:51:28 +01:00
|
|
|
return meta;
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
|
2015-10-03 10:19:40 +02:00
|
|
|
@SuppressWarnings("all")
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubBlocks(Item item, CreativeTabs tab, List list){
|
|
|
|
for(int j = 0; j < allMiscBlocks.length; j++){
|
|
|
|
list.add(new ItemStack(item, 1, j));
|
|
|
|
}
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void registerBlockIcons(IIconRegister iconReg){
|
2015-10-28 14:46:04 +01:00
|
|
|
this.textures = new IIcon[allMiscBlocks.length];
|
2015-02-17 16:15:16 +01:00
|
|
|
for(int i = 0; i < textures.length; i++){
|
2015-12-03 20:15:07 +01:00
|
|
|
textures[i] = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":"+this.getBaseName()+allMiscBlocks[i].name);
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
2015-10-18 19:56:18 +02:00
|
|
|
|
2015-12-26 23:48:49 +01:00
|
|
|
this.ironCasingSeasonalTop = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":blockMiscIronCasingSnowTop");
|
2015-10-29 20:54:10 +01:00
|
|
|
this.ironCasingSeasonal = iconReg.registerIcon(ModUtil.MOD_ID_LOWER+":blockMiscIronCasingSnow");
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-12-19 10:30:39 +01:00
|
|
|
public Class<? extends ItemBlockBase> getItemBlock(){
|
|
|
|
return TheItemBlock.class;
|
2015-02-20 22:45:33 +01:00
|
|
|
}
|
|
|
|
|
2015-10-23 16:48:56 +02:00
|
|
|
@Override
|
2015-12-19 10:30:39 +01:00
|
|
|
public EnumRarity getRarity(ItemStack stack){
|
|
|
|
return stack.getItemDamage() >= allMiscBlocks.length ? EnumRarity.common : allMiscBlocks[stack.getItemDamage()].rarity;
|
2015-10-23 16:48:56 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public static class TheItemBlock extends ItemBlockBase{
|
2015-02-17 16:15:16 +01:00
|
|
|
|
2015-03-07 02:23:31 +01:00
|
|
|
public TheItemBlock(Block block){
|
2015-02-17 16:15:16 +01:00
|
|
|
super(block);
|
|
|
|
this.setHasSubtypes(true);
|
|
|
|
this.setMaxDamage(0);
|
|
|
|
}
|
|
|
|
|
2015-02-20 22:45:33 +01:00
|
|
|
@Override
|
2015-02-17 16:15:16 +01:00
|
|
|
public String getUnlocalizedName(ItemStack stack){
|
2015-11-23 19:06:07 +01:00
|
|
|
return stack.getItemDamage() >= allMiscBlocks.length ? StringUtil.BUGGED_ITEM_NAME : this.getUnlocalizedName()+allMiscBlocks[stack.getItemDamage()].name;
|
2015-02-17 16:15:16 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|