Applied-Energistics-2-tiler.../block/solids/BlockSkyStone.java

114 lines
2.8 KiB
Java
Raw Normal View History

2014-02-28 09:12:00 +01:00
package appeng.block.solids;
import java.util.EnumSet;
2014-02-28 20:13:43 +01:00
import java.util.List;
2014-02-28 09:12:00 +01:00
import net.minecraft.block.material.Material;
2014-02-28 20:13:43 +01:00
import net.minecraft.client.renderer.texture.IIconRegister;
import net.minecraft.creativetab.CreativeTabs;
import net.minecraft.item.Item;
import net.minecraft.item.ItemStack;
import net.minecraft.util.IIcon;
import net.minecraft.util.MovingObjectPosition;
2014-02-28 09:12:00 +01:00
import net.minecraft.world.IBlockAccess;
import net.minecraft.world.World;
2014-02-28 09:12:00 +01:00
import appeng.api.util.IOrientable;
import appeng.api.util.IOrientableBlock;
import appeng.block.AEBaseBlock;
import appeng.core.features.AEFeature;
import appeng.helpers.LocationRotation;
import cpw.mods.fml.relauncher.Side;
import cpw.mods.fml.relauncher.SideOnly;
2014-02-28 09:12:00 +01:00
2014-02-28 16:27:04 +01:00
public class BlockSkyStone extends AEBaseBlock implements IOrientableBlock
2014-02-28 09:12:00 +01:00
{
2014-02-28 20:13:43 +01:00
@SideOnly(Side.CLIENT)
IIcon Block;
@SideOnly(Side.CLIENT)
IIcon Brick;
@SideOnly(Side.CLIENT)
IIcon SmallBrick;
2014-02-28 16:27:04 +01:00
public BlockSkyStone() {
super( BlockSkyStone.class, Material.rock );
2014-02-28 09:12:00 +01:00
setfeature( EnumSet.of( AEFeature.Core ) );
setHardness( 50 );
hasSubtypes = true;
2014-02-28 09:12:00 +01:00
blockResistance = 150.0f;
}
2014-02-28 20:13:43 +01:00
@Override
public String getUnlocalizedName(ItemStack is)
{
2014-02-28 20:13:43 +01:00
if ( is.getItemDamage() == 1 )
return getUnlocalizedName() + ".Block";
if ( is.getItemDamage() == 2 )
return getUnlocalizedName() + ".Brick";
if ( is.getItemDamage() == 3 )
return getUnlocalizedName() + ".SmallBrick";
2014-02-28 20:13:43 +01:00
return getUnlocalizedName();
}
2014-02-28 09:12:00 +01:00
@Override
public IOrientable getOrientable(final IBlockAccess w, final int x, final int y, final int z)
{
if ( w.getBlockMetadata( x, y, z ) == 0 )
2014-02-28 20:13:43 +01:00
return new LocationRotation( w, x, y, z );
return null;
2014-02-28 09:12:00 +01:00
}
2014-02-28 20:13:43 +01:00
@Override
@SideOnly(Side.CLIENT)
public void registerBlockIcons(IIconRegister ir)
{
super.registerBlockIcons( ir );
Block = ir.registerIcon( getTextureName() + ".Block" );
Brick = ir.registerIcon( getTextureName() + ".Brick" );
SmallBrick = ir.registerIcon( getTextureName() + ".SmallBrick" );
2014-02-28 20:13:43 +01:00
}
2014-02-28 20:13:43 +01:00
@Override
@SideOnly(Side.CLIENT)
public IIcon getIcon(int direction, int metadata)
{
2014-02-28 20:13:43 +01:00
if ( metadata == 1 )
return Block;
if ( metadata == 2 )
return Brick;
if ( metadata == 3 )
return SmallBrick;
return super.getIcon( direction, metadata );
2014-02-28 20:13:43 +01:00
}
@Override
public void setRenderStateByMeta(int metadata)
{
getRendererInstance().setTemporaryRenderIcon( getIcon( 0, metadata ) );
}
@Override
public ItemStack getPickBlock(MovingObjectPosition target, World world, int x, int y, int z)
{
ItemStack is = super.getPickBlock( target, world, x, y, z );
is.setItemDamage( world.getBlockMetadata( x, y, z ) );
return is;
}
2014-02-28 20:13:43 +01:00
@Override
@SideOnly(Side.CLIENT)
public void getSubBlocks(Item i, CreativeTabs ct, List l)
{
super.getSubBlocks( i, ct, l );
2014-02-28 20:13:43 +01:00
l.add( new ItemStack( i, 1, 1 ) );
l.add( new ItemStack( i, 1, 2 ) );
l.add( new ItemStack( i, 1, 3 ) );
2014-02-28 20:13:43 +01:00
}
2014-02-28 09:12:00 +01:00
}