2014-02-28 09:12:00 +01:00
|
|
|
package appeng.block.storage;
|
|
|
|
|
|
|
|
import java.util.Arrays;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
2014-03-01 04:45:30 +01:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2014-02-28 09:12:00 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2014-03-01 04:45:30 +01:00
|
|
|
import net.minecraft.item.Item;
|
|
|
|
import net.minecraft.item.ItemStack;
|
2014-02-28 09:12:00 +01:00
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
import net.minecraft.util.IIcon;
|
2014-03-01 04:45:30 +01:00
|
|
|
import net.minecraft.util.MovingObjectPosition;
|
2014-02-28 09:12:00 +01:00
|
|
|
import net.minecraft.world.World;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
|
|
|
import appeng.api.AEApi;
|
|
|
|
import appeng.block.AEBaseBlock;
|
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.blocks.RenderBlockSkyChest;
|
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.core.sync.GuiBridge;
|
|
|
|
import appeng.helpers.ICustomCollision;
|
|
|
|
import appeng.tile.storage.TileSkyChest;
|
|
|
|
import appeng.util.Platform;
|
2014-03-01 04:45:30 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
2014-02-28 09:12:00 +01:00
|
|
|
|
|
|
|
public class BlockSkyChest extends AEBaseBlock implements ICustomCollision
|
|
|
|
{
|
|
|
|
|
|
|
|
public BlockSkyChest() {
|
|
|
|
super( BlockSkyChest.class, Material.rock );
|
2014-03-09 04:35:53 +01:00
|
|
|
setfeature( EnumSet.of( AEFeature.Core, AEFeature.SkyStoneChests ) );
|
2014-02-28 09:12:00 +01:00
|
|
|
setTileEntiy( TileSkyChest.class );
|
|
|
|
isOpaque = isFullSize = false;
|
|
|
|
lightOpacity = 0;
|
2014-03-01 04:45:30 +01:00
|
|
|
hasSubtypes = true;
|
2014-02-28 09:12:00 +01:00
|
|
|
setHardness( 50 );
|
|
|
|
blockResistance = 150.0f;
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:45:30 +01:00
|
|
|
@Override
|
|
|
|
public String getUnlocalizedName(ItemStack is)
|
|
|
|
{
|
|
|
|
if ( is.getItemDamage() == 1 )
|
|
|
|
return getUnlocalizedName() + ".Block";
|
|
|
|
|
|
|
|
return getUnlocalizedName();
|
|
|
|
}
|
|
|
|
|
2014-03-26 17:09:36 +01:00
|
|
|
@Override
|
|
|
|
public int damageDropped(int metadata) {
|
|
|
|
return metadata;
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:45:30 +01:00
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public IIcon getIcon(int direction, int metadata)
|
|
|
|
{
|
|
|
|
if ( metadata == 1 )
|
|
|
|
return AEApi.instance().blocks().blockSkyStone.block().getIcon( direction, 1 );
|
|
|
|
return AEApi.instance().blocks().blockSkyStone.block().getIcon( direction, 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;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void getSubBlocks(Item i, CreativeTabs ct, List l)
|
|
|
|
{
|
|
|
|
super.getSubBlocks( i, ct, l );
|
|
|
|
l.add( new ItemStack( i, 1, 1 ) );
|
|
|
|
}
|
|
|
|
|
2014-02-28 09:12:00 +01:00
|
|
|
@Override
|
|
|
|
public boolean onActivated(World w, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ)
|
|
|
|
{
|
|
|
|
if ( Platform.isServer() )
|
|
|
|
Platform.openGUI( player, getTileEntity( w, x, y, z ), ForgeDirection.getOrientation( side ), GuiBridge.GUI_SKYCHEST );
|
|
|
|
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
|
|
{
|
|
|
|
return RenderBlockSkyChest.class;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public Iterable<AxisAlignedBB> getSelectedBoundingBoxsFromPool(World w, int x, int y, int z, Entity e, boolean isVisual)
|
|
|
|
{
|
2014-03-27 04:57:38 +01:00
|
|
|
TileSkyChest sk = getTileEntity( w, x, y, z );
|
|
|
|
double sc = 0.06;
|
|
|
|
ForgeDirection o = ForgeDirection.UNKNOWN;
|
|
|
|
|
|
|
|
if ( sk != null )
|
|
|
|
o = sk.getUp();
|
|
|
|
|
|
|
|
double X = o.offsetX == 0 ? 0.06 : 0.0;
|
|
|
|
double Y = o.offsetY == 0 ? 0.06 : 0.0;
|
|
|
|
double Z = o.offsetZ == 0 ? 0.06 : 0.0;
|
|
|
|
|
|
|
|
return Arrays.asList( new AxisAlignedBB[] { AxisAlignedBB.getBoundingBox( Math.max( 0.0, X - o.offsetX * sc ), Math.max( 0.0, Y - o.offsetY * sc ),
|
|
|
|
Math.max( 0.0, Z - o.offsetZ * sc ), Math.min( 1.0, (1.0 - X) - o.offsetX * sc ), Math.min( 1.0, (1.0 - Y) - o.offsetY * sc ),
|
|
|
|
Math.min( 1.0, (1.0 - Z) - o.offsetZ * sc ) ) } );
|
2014-02-28 09:12:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void addCollidingBlockToList(World w, int x, int y, int z, AxisAlignedBB bb, List out, Entity e)
|
|
|
|
{
|
2014-06-05 05:59:56 +02:00
|
|
|
out.add( AxisAlignedBB.getBoundingBox( 0.05, 0.05, 0.05, 0.95, 0.95, 0.95 ) );
|
2014-02-28 09:12:00 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void registerBlockIcons(IIconRegister iconRegistry)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
}
|