2013-12-27 23:59:59 +01:00
|
|
|
package appeng.block;
|
|
|
|
|
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import java.util.List;
|
|
|
|
|
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.BlockContainer;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.Minecraft;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.client.resources.IResource;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.entity.Entity;
|
2014-03-15 07:58:21 +01:00
|
|
|
import net.minecraft.entity.EntityLivingBase;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2014-03-05 05:31:50 +01:00
|
|
|
import net.minecraft.inventory.Container;
|
|
|
|
import net.minecraft.inventory.IInventory;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.nbt.NBTTagCompound;
|
|
|
|
import net.minecraft.tileentity.TileEntity;
|
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraft.util.IIcon;
|
2013-12-27 23:59:59 +01:00
|
|
|
import net.minecraft.util.MovingObjectPosition;
|
|
|
|
import net.minecraft.util.ResourceLocation;
|
|
|
|
import net.minecraft.util.Vec3;
|
|
|
|
import net.minecraft.world.IBlockAccess;
|
|
|
|
import net.minecraft.world.World;
|
2014-02-09 02:34:52 +01:00
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-01-23 20:02:48 +01:00
|
|
|
import appeng.api.implementations.items.IMemoryCard;
|
|
|
|
import appeng.api.implementations.items.MemoryCardMessages;
|
2014-07-17 06:44:02 +02:00
|
|
|
import appeng.api.implementations.tiles.IColorableTile;
|
|
|
|
import appeng.api.util.AEColor;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.api.util.IOrientable;
|
|
|
|
import appeng.api.util.IOrientableBlock;
|
2014-01-20 17:41:37 +01:00
|
|
|
import appeng.block.networking.BlockCableBus;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.BlockRenderInfo;
|
|
|
|
import appeng.client.render.WorldRender;
|
|
|
|
import appeng.client.texture.FlipableIcon;
|
2014-02-23 21:06:07 +01:00
|
|
|
import appeng.client.texture.MissingIcon;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.core.features.AEFeature;
|
|
|
|
import appeng.core.features.AEFeatureHandler;
|
|
|
|
import appeng.core.features.IAEFeature;
|
2014-02-09 08:55:44 +01:00
|
|
|
import appeng.core.features.ItemStackSrc;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.helpers.ICustomCollision;
|
|
|
|
import appeng.tile.AEBaseTile;
|
|
|
|
import appeng.tile.networking.TileCableBus;
|
2014-03-28 01:33:14 +01:00
|
|
|
import appeng.tile.storage.TileSkyChest;
|
2013-12-27 23:59:59 +01:00
|
|
|
import appeng.util.LookDirection;
|
|
|
|
import appeng.util.Platform;
|
|
|
|
import appeng.util.SettingsFrom;
|
|
|
|
import cpw.mods.fml.common.registry.GameRegistry;
|
2014-04-04 06:12:35 +02:00
|
|
|
import cpw.mods.fml.relauncher.ReflectionHelper;
|
2013-12-27 23:59:59 +01:00
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
|
|
|
public class AEBaseBlock extends BlockContainer implements IAEFeature
|
|
|
|
{
|
|
|
|
|
|
|
|
private String FeatureFullname;
|
|
|
|
private String FeatureSubname;
|
|
|
|
private AEFeatureHandler feature;
|
|
|
|
|
|
|
|
private Class<? extends TileEntity> tileEntityType = null;
|
|
|
|
protected boolean isOpaque = true;
|
|
|
|
protected boolean isFullSize = true;
|
2014-03-01 04:45:30 +01:00
|
|
|
protected boolean hasSubtypes = false;
|
2014-03-05 05:31:50 +01:00
|
|
|
protected boolean isInventory = false;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2014-02-09 02:34:52 +01:00
|
|
|
public IIcon renderIcon;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
BlockRenderInfo renderInfo;
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public String toString()
|
|
|
|
{
|
|
|
|
return FeatureFullname;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
protected Class<? extends BaseBlockRender> getRenderer()
|
|
|
|
{
|
|
|
|
return BaseBlockRender.class;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public int getRenderType()
|
|
|
|
{
|
|
|
|
return WorldRender.instance.getRenderId();
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly(Side.CLIENT)
|
2014-02-09 02:34:52 +01:00
|
|
|
private FlipableIcon optionaIcon(IIconRegister ir, String Name, IIcon substitute)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
// if the input is an flippable IIcon find the original.
|
2013-12-27 23:59:59 +01:00
|
|
|
while (substitute instanceof FlipableIcon)
|
|
|
|
substitute = ((FlipableIcon) substitute).getOriginal();
|
|
|
|
|
|
|
|
if ( substitute != null )
|
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
|
|
|
ResourceLocation resLoc = new ResourceLocation( Name );
|
2014-02-09 02:34:52 +01:00
|
|
|
resLoc = new ResourceLocation( resLoc.getResourceDomain(), String.format( "%s/%s%s", new Object[] { "textures/blocks",
|
|
|
|
resLoc.getResourcePath(), ".png" } ) );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
IResource res = Minecraft.getMinecraft().getResourceManager().getResource( resLoc );
|
2013-12-27 23:59:59 +01:00
|
|
|
if ( res != null )
|
|
|
|
return new FlipableIcon( ir.registerIcon( Name ) );
|
|
|
|
}
|
|
|
|
catch (Throwable e)
|
|
|
|
{
|
|
|
|
return new FlipableIcon( substitute );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new FlipableIcon( ir.registerIcon( Name ) );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
2014-02-09 02:34:52 +01:00
|
|
|
public void registerBlockIcons(IIconRegister iconRegistry)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
BlockRenderInfo info = getRendererInstance();
|
|
|
|
FlipableIcon topIcon;
|
|
|
|
FlipableIcon bottomIcon;
|
|
|
|
FlipableIcon sideIcon;
|
|
|
|
FlipableIcon eastIcon;
|
|
|
|
FlipableIcon westIcon;
|
|
|
|
FlipableIcon southIcon;
|
|
|
|
FlipableIcon northIcon;
|
|
|
|
|
|
|
|
this.blockIcon = topIcon = optionaIcon( iconRegistry, this.getTextureName(), null );
|
|
|
|
bottomIcon = optionaIcon( iconRegistry, this.getTextureName() + "Bottom", topIcon );
|
|
|
|
sideIcon = optionaIcon( iconRegistry, this.getTextureName() + "Side", topIcon );
|
|
|
|
eastIcon = optionaIcon( iconRegistry, this.getTextureName() + "East", sideIcon );
|
|
|
|
westIcon = optionaIcon( iconRegistry, this.getTextureName() + "West", sideIcon );
|
|
|
|
southIcon = optionaIcon( iconRegistry, this.getTextureName() + "Front", sideIcon );
|
|
|
|
northIcon = optionaIcon( iconRegistry, this.getTextureName() + "Back", sideIcon );
|
|
|
|
|
|
|
|
info.updateIcons( bottomIcon, topIcon, northIcon, southIcon, eastIcon, westIcon );
|
|
|
|
}
|
|
|
|
|
2014-02-23 21:06:07 +01:00
|
|
|
public void registerNoIcons()
|
|
|
|
{
|
|
|
|
BlockRenderInfo info = getRendererInstance();
|
2014-03-09 04:35:53 +01:00
|
|
|
FlipableIcon i = new FlipableIcon( new MissingIcon( this ) );
|
2014-02-23 21:06:07 +01:00
|
|
|
info.updateIcons( i, i, i, i, i, i );
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
@SideOnly(Side.CLIENT)
|
2014-02-09 02:34:52 +01:00
|
|
|
public IIcon getIcon(int direction, int metadata)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
if ( renderIcon != null )
|
|
|
|
return renderIcon;
|
|
|
|
|
|
|
|
return getRendererInstance().getTexture( ForgeDirection.getOrientation( direction ) );
|
|
|
|
}
|
|
|
|
|
2014-04-04 06:12:35 +02:00
|
|
|
public IIcon unmappedGetIcon(IBlockAccess w, int x, int y, int z, int s)
|
|
|
|
{
|
|
|
|
return super.getIcon( w, x, y, z, s );
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public IIcon getIcon(IBlockAccess w, int x, int y, int z, int s)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-03-01 04:45:30 +01:00
|
|
|
return getIcon( mapRotation( w, x, y, z, s ), w.getBlockMetadata( x, y, z ) );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void setTileEntiy(Class<? extends TileEntity> c)
|
|
|
|
{
|
2014-02-09 08:55:44 +01:00
|
|
|
AEBaseTile.registerTileItem( c, new ItemStackSrc( this, 0 ) );
|
2013-12-27 23:59:59 +01:00
|
|
|
GameRegistry.registerTileEntity( tileEntityType = c, FeatureFullname );
|
2014-03-05 05:31:50 +01:00
|
|
|
isInventory = IInventory.class.isAssignableFrom( c );
|
2014-04-04 06:12:35 +02:00
|
|
|
setTileProvider( hasBlockTileEntity() );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected void setfeature(EnumSet<AEFeature> f)
|
|
|
|
{
|
|
|
|
feature = new AEFeatureHandler( f, this, FeatureSubname );
|
|
|
|
}
|
|
|
|
|
|
|
|
protected AEBaseBlock(Class<?> c, Material mat) {
|
|
|
|
this( c, mat, null );
|
2014-07-12 03:26:47 +02:00
|
|
|
setLightOpacity( 255 );
|
2014-02-09 02:34:52 +01:00
|
|
|
setLightLevel( 0 );
|
2014-06-08 03:20:23 +02:00
|
|
|
setHardness( 2.2F );
|
2014-04-04 06:12:35 +02:00
|
|
|
setTileProvider( false );
|
2014-06-08 03:20:23 +02:00
|
|
|
setHarvestLevel( "pickaxe", 0 );
|
2014-04-04 06:12:35 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
// update Block value.
|
|
|
|
private void setTileProvider(boolean b)
|
|
|
|
{
|
|
|
|
ReflectionHelper.setPrivateValue( Block.class, this, b, "isTileProvider" );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
protected AEBaseBlock(Class<?> c, Material mat, String subname) {
|
2014-02-09 02:34:52 +01:00
|
|
|
super( mat );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
if ( mat == Material.glass )
|
2014-02-09 02:34:52 +01:00
|
|
|
setStepSound( Block.soundTypeGlass );
|
2013-12-27 23:59:59 +01:00
|
|
|
else if ( mat == Material.rock )
|
2014-02-09 02:34:52 +01:00
|
|
|
setStepSound( Block.soundTypeStone );
|
2013-12-27 23:59:59 +01:00
|
|
|
else
|
2014-02-09 02:34:52 +01:00
|
|
|
setStepSound( Block.soundTypeMetal );
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
FeatureFullname = AEFeatureHandler.getName( c, subname );
|
|
|
|
FeatureSubname = subname;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final public AEFeatureHandler feature()
|
|
|
|
{
|
|
|
|
return feature;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isOpaque()
|
|
|
|
{
|
|
|
|
return isOpaque;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final public boolean isOpaqueCube()
|
|
|
|
{
|
|
|
|
return isOpaque;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean renderAsNormalBlock()
|
|
|
|
{
|
|
|
|
return isFullSize && isOpaque;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
final public boolean isNormalCube(IBlockAccess world, int x, int y, int z)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
return isFullSize;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasBlockTileEntity()
|
|
|
|
{
|
|
|
|
return tileEntityType != null;
|
|
|
|
}
|
|
|
|
|
|
|
|
public Class<? extends TileEntity> getTileEntityClass()
|
|
|
|
{
|
|
|
|
return tileEntityType;
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:45:30 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public void setRenderStateByMeta(int itemDamage)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
|
|
|
public BlockRenderInfo getRendererInstance()
|
|
|
|
{
|
|
|
|
if ( renderInfo != null )
|
|
|
|
return renderInfo;
|
|
|
|
|
|
|
|
try
|
|
|
|
{
|
|
|
|
return renderInfo = new BlockRenderInfo( getRenderer().newInstance() );
|
|
|
|
}
|
|
|
|
catch (Throwable t)
|
|
|
|
{
|
|
|
|
throw new RuntimeException( t );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
final public TileEntity createNewTileEntity(World var1, int var2)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
if ( hasBlockTileEntity() )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
try
|
|
|
|
{
|
|
|
|
return tileEntityType.newInstance();
|
|
|
|
}
|
|
|
|
catch (Throwable e)
|
|
|
|
{
|
|
|
|
throw new RuntimeException( e );
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
2014-04-04 06:12:35 +02:00
|
|
|
return null;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
2014-05-05 02:51:05 +02:00
|
|
|
public <T extends TileEntity> T getTileEntity(IBlockAccess w, int x, int y, int z)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
if ( !hasBlockTileEntity() )
|
|
|
|
return null;
|
|
|
|
|
2014-02-09 02:34:52 +01:00
|
|
|
TileEntity te = w.getTileEntity( x, y, z );
|
2013-12-27 23:59:59 +01:00
|
|
|
if ( tileEntityType.isInstance( te ) )
|
|
|
|
return (T) te;
|
|
|
|
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-03-20 04:28:53 +01:00
|
|
|
protected boolean hasCustomRotation()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-04-04 06:12:35 +02:00
|
|
|
protected void customRotateBlock(IOrientable rotatable, ForgeDirection axis)
|
2014-03-20 04:28:53 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
@Override
|
|
|
|
final public boolean rotateBlock(World w, int x, int y, int z, ForgeDirection axis)
|
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
IOrientable rotatable = null;
|
2013-12-27 23:59:59 +01:00
|
|
|
|
|
|
|
if ( hasBlockTileEntity() )
|
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
rotatable = (AEBaseTile) getTileEntity( w, x, y, z );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
else if ( this instanceof IOrientableBlock )
|
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
rotatable = ((IOrientableBlock) this).getOrientable( w, x, y, z );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
2014-04-04 06:12:35 +02:00
|
|
|
if ( rotatable != null && rotatable.canBeRotated() )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-03-20 04:28:53 +01:00
|
|
|
if ( hasCustomRotation() )
|
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
customRotateBlock( rotatable, axis );
|
2014-03-20 04:28:53 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
ForgeDirection forward = rotatable.getForward();
|
|
|
|
ForgeDirection up = rotatable.getUp();
|
2013-12-27 23:59:59 +01:00
|
|
|
|
2014-03-20 04:28:53 +01:00
|
|
|
for (int rs = 0; rs < 4; rs++)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
2014-03-20 04:28:53 +01:00
|
|
|
forward = Platform.rotateAround( forward, axis );
|
|
|
|
up = Platform.rotateAround( up, axis );
|
|
|
|
|
|
|
|
if ( this.isValidOrientation( w, x, y, z, forward, up ) )
|
|
|
|
{
|
2014-04-04 06:12:35 +02:00
|
|
|
rotatable.setOrientation( forward, up );
|
2014-03-20 04:28:53 +01:00
|
|
|
return true;
|
|
|
|
}
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-04-04 06:12:35 +02:00
|
|
|
return super.rotateBlock( w, x, y, z, axis );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
public ForgeDirection mapRotation(IOrientable ori, ForgeDirection dir)
|
|
|
|
{
|
|
|
|
// case DOWN: return bottomIcon;
|
|
|
|
// case UP: return blockIcon;
|
|
|
|
// case NORTH: return northIcon;
|
|
|
|
// case SOUTH: return southIcon;
|
|
|
|
// case WEST: return sideIcon;
|
|
|
|
// case EAST: return sideIcon;
|
|
|
|
|
|
|
|
ForgeDirection forward = ori.getForward();
|
|
|
|
ForgeDirection up = ori.getUp();
|
|
|
|
ForgeDirection west = ForgeDirection.UNKNOWN;
|
|
|
|
|
|
|
|
if ( forward == null || up == null )
|
|
|
|
return dir;
|
|
|
|
|
|
|
|
int west_x = forward.offsetY * up.offsetZ - forward.offsetZ * up.offsetY;
|
|
|
|
int west_y = forward.offsetZ * up.offsetX - forward.offsetX * up.offsetZ;
|
|
|
|
int west_z = forward.offsetX * up.offsetY - forward.offsetY * up.offsetX;
|
|
|
|
|
|
|
|
for (ForgeDirection dx : ForgeDirection.VALID_DIRECTIONS)
|
|
|
|
if ( dx.offsetX == west_x && dx.offsetY == west_y && dx.offsetZ == west_z )
|
|
|
|
west = dx;
|
|
|
|
|
|
|
|
if ( dir.equals( forward ) )
|
|
|
|
return ForgeDirection.SOUTH;
|
|
|
|
if ( dir.equals( forward.getOpposite() ) )
|
|
|
|
return ForgeDirection.NORTH;
|
|
|
|
|
|
|
|
if ( dir.equals( up ) )
|
|
|
|
return ForgeDirection.UP;
|
|
|
|
if ( dir.equals( up.getOpposite() ) )
|
|
|
|
return ForgeDirection.DOWN;
|
|
|
|
|
|
|
|
if ( dir.equals( west ) )
|
|
|
|
return ForgeDirection.WEST;
|
|
|
|
if ( dir.equals( west.getOpposite() ) )
|
|
|
|
return ForgeDirection.EAST;
|
|
|
|
|
|
|
|
return ForgeDirection.UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
int mapRotation(IBlockAccess w, int x, int y, int z, int s)
|
|
|
|
{
|
|
|
|
IOrientable ori = null;
|
|
|
|
|
|
|
|
if ( hasBlockTileEntity() )
|
|
|
|
{
|
|
|
|
ori = (AEBaseTile) getTileEntity( w, x, y, z );
|
|
|
|
}
|
|
|
|
else if ( this instanceof IOrientableBlock )
|
|
|
|
{
|
|
|
|
ori = ((IOrientableBlock) this).getOrientable( w, x, y, z );
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( ori != null && ori.canBeRotated() )
|
|
|
|
{
|
|
|
|
return mapRotation( ori, ForgeDirection.getOrientation( s ) ).ordinal();
|
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final public ForgeDirection[] getValidRotations(World w, int x, int y, int z)
|
|
|
|
{
|
|
|
|
if ( hasBlockTileEntity() )
|
|
|
|
{
|
|
|
|
AEBaseTile obj = getTileEntity( w, x, y, z );
|
|
|
|
if ( obj != null && obj.canBeRotated() )
|
|
|
|
{
|
|
|
|
return ForgeDirection.VALID_DIRECTIONS;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return new ForgeDirection[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-02-09 02:34:52 +01:00
|
|
|
public void breakBlock(World w, int x, int y, int z, Block a, int b)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
AEBaseTile te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te != null )
|
|
|
|
{
|
|
|
|
if ( te.dropItems )
|
|
|
|
{
|
|
|
|
ArrayList<ItemStack> drops = new ArrayList<ItemStack>();
|
|
|
|
te.getDrops( w, x, y, z, drops );
|
|
|
|
|
|
|
|
// Cry ;_; ...
|
|
|
|
Platform.spawnDrops( w, x, y, z, drops );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
super.breakBlock( w, x, y, z, a, b );
|
|
|
|
if ( te != null )
|
2014-02-09 02:34:52 +01:00
|
|
|
w.setTileEntity( x, y, z, null );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public MovingObjectPosition collisionRayTrace(World w, int x, int y, int z, Vec3 a, Vec3 b)
|
|
|
|
{
|
|
|
|
ICustomCollision collisionHandler = null;
|
|
|
|
|
|
|
|
if ( this instanceof ICustomCollision )
|
|
|
|
collisionHandler = (ICustomCollision) this;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AEBaseTile te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te instanceof ICustomCollision )
|
|
|
|
collisionHandler = (ICustomCollision) te;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( collisionHandler != null )
|
|
|
|
{
|
2014-01-31 18:11:50 +01:00
|
|
|
Iterable<AxisAlignedBB> bbs = collisionHandler.getSelectedBoundingBoxsFromPool( w, x, y, z, null, true );
|
2013-12-27 23:59:59 +01:00
|
|
|
MovingObjectPosition br = null;
|
|
|
|
|
|
|
|
double lastDist = 0;
|
|
|
|
|
|
|
|
for (AxisAlignedBB bb : bbs)
|
|
|
|
{
|
|
|
|
setBlockBounds( (float) bb.minX, (float) bb.minY, (float) bb.minZ, (float) bb.maxX, (float) bb.maxY, (float) bb.maxZ );
|
|
|
|
|
|
|
|
MovingObjectPosition r = super.collisionRayTrace( w, x, y, z, a, b );
|
|
|
|
|
|
|
|
setBlockBounds( 0, 0, 0, 1, 1, 1 );
|
|
|
|
|
|
|
|
if ( r != null )
|
|
|
|
{
|
|
|
|
double xLen = (a.xCoord - r.hitVec.xCoord);
|
|
|
|
double yLen = (a.yCoord - r.hitVec.yCoord);
|
|
|
|
double zLen = (a.zCoord - r.hitVec.zCoord);
|
|
|
|
|
|
|
|
double thisDist = xLen * xLen + yLen * yLen + zLen * zLen;
|
|
|
|
if ( br == null || lastDist > thisDist )
|
|
|
|
{
|
|
|
|
lastDist = thisDist;
|
|
|
|
br = r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( br != null )
|
|
|
|
{
|
|
|
|
return br;
|
|
|
|
}
|
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
setBlockBounds( 0, 0, 0, 1, 1, 1 );
|
|
|
|
return super.collisionRayTrace( w, x, y, z, a, b );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-01-28 20:27:22 +01:00
|
|
|
@SideOnly(Side.CLIENT)
|
2013-12-27 23:59:59 +01:00
|
|
|
final public AxisAlignedBB getSelectedBoundingBoxFromPool(World w, int x, int y, int z)
|
|
|
|
{
|
|
|
|
ICustomCollision collisionHandler = null;
|
|
|
|
AxisAlignedBB b = null;
|
|
|
|
|
|
|
|
if ( this instanceof ICustomCollision )
|
|
|
|
collisionHandler = (ICustomCollision) this;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AEBaseTile te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te instanceof ICustomCollision )
|
|
|
|
collisionHandler = (ICustomCollision) te;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( collisionHandler != null )
|
|
|
|
{
|
|
|
|
if ( Platform.isClient() )
|
|
|
|
{
|
|
|
|
LookDirection ld = Platform.getPlayerRay( Minecraft.getMinecraft().thePlayer );
|
|
|
|
|
2014-01-31 18:11:50 +01:00
|
|
|
Iterable<AxisAlignedBB> bbs = collisionHandler.getSelectedBoundingBoxsFromPool( w, x, y, z, Minecraft.getMinecraft().thePlayer, true );
|
2013-12-27 23:59:59 +01:00
|
|
|
AxisAlignedBB br = null;
|
|
|
|
|
|
|
|
double lastDist = 0;
|
|
|
|
|
|
|
|
for (AxisAlignedBB bb : bbs)
|
|
|
|
{
|
|
|
|
setBlockBounds( (float) bb.minX, (float) bb.minY, (float) bb.minZ, (float) bb.maxX, (float) bb.maxY, (float) bb.maxZ );
|
|
|
|
|
|
|
|
MovingObjectPosition r = super.collisionRayTrace( w, x, y, z, ld.a, ld.b );
|
|
|
|
|
|
|
|
setBlockBounds( 0, 0, 0, 1, 1, 1 );
|
|
|
|
|
|
|
|
if ( r != null )
|
|
|
|
{
|
|
|
|
double xLen = (ld.a.xCoord - r.hitVec.xCoord);
|
|
|
|
double yLen = (ld.a.yCoord - r.hitVec.yCoord);
|
|
|
|
double zLen = (ld.a.zCoord - r.hitVec.zCoord);
|
|
|
|
|
|
|
|
double thisDist = xLen * xLen + yLen * yLen + zLen * zLen;
|
|
|
|
if ( br == null || lastDist > thisDist )
|
|
|
|
{
|
|
|
|
lastDist = thisDist;
|
|
|
|
br = bb;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( br != null )
|
|
|
|
{
|
|
|
|
br.setBounds( br.minX + x, br.minY + y, br.minZ + z, br.maxX + x, br.maxY + y, br.maxZ + z );
|
|
|
|
return br;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-01-31 18:11:50 +01:00
|
|
|
for (AxisAlignedBB bx : collisionHandler.getSelectedBoundingBoxsFromPool( w, x, y, z, null, false ))
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
if ( b == null )
|
|
|
|
b = bx;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
double minX = Math.min( b.minX, bx.minX );
|
|
|
|
double minY = Math.min( b.minY, bx.minY );
|
|
|
|
double minZ = Math.min( b.minZ, bx.minZ );
|
|
|
|
double maxX = Math.max( b.maxX, bx.maxX );
|
|
|
|
double maxY = Math.max( b.maxY, bx.maxY );
|
|
|
|
double maxZ = Math.max( b.maxZ, bx.maxZ );
|
|
|
|
b.setBounds( minX, minY, minZ, maxX, maxY, maxZ );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
b.setBounds( b.minX + x, b.minY + y, b.minZ + z, b.maxX + x, b.maxY + y, b.maxZ + z );
|
|
|
|
}
|
|
|
|
else
|
|
|
|
b = super.getSelectedBoundingBoxFromPool( w, x, y, z );
|
|
|
|
|
|
|
|
return b;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-03-22 22:51:37 +01:00
|
|
|
// NOTE: WAS FINAL, changed for Immibis
|
|
|
|
public void addCollisionBoxesToList(World w, int x, int y, int z, AxisAlignedBB bb, List out, Entity e)
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
ICustomCollision collisionHandler = null;
|
|
|
|
|
|
|
|
if ( this instanceof ICustomCollision )
|
|
|
|
collisionHandler = (ICustomCollision) this;
|
|
|
|
else
|
|
|
|
{
|
|
|
|
AEBaseTile te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te instanceof ICustomCollision )
|
|
|
|
collisionHandler = (ICustomCollision) te;
|
|
|
|
}
|
|
|
|
|
|
|
|
if ( collisionHandler != null && bb != null )
|
|
|
|
{
|
|
|
|
List<AxisAlignedBB> tmp = new ArrayList<AxisAlignedBB>();
|
|
|
|
collisionHandler.addCollidingBlockToList( w, x, y, z, bb, tmp, e );
|
|
|
|
for (AxisAlignedBB b : tmp)
|
|
|
|
{
|
|
|
|
b.minX += x;
|
|
|
|
b.minY += y;
|
|
|
|
b.minZ += z;
|
|
|
|
b.maxX += x;
|
|
|
|
b.maxY += y;
|
|
|
|
b.maxZ += z;
|
|
|
|
if ( bb.intersectsWith( b ) )
|
|
|
|
out.add( b );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
super.addCollisionBoxesToList( w, x, y, z, bb, out, e );
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public void onBlockDestroyedByPlayer(World par1World, int par2, int par3, int par4, int par5)
|
|
|
|
{
|
|
|
|
super.onBlockDestroyedByPlayer( par1World, par2, par3, par4, par5 );
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean onActivated(World w, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ)
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
final public boolean onBlockActivated(World w, int x, int y, int z, EntityPlayer player, int side, float hitX, float hitY, float hitZ)
|
|
|
|
{
|
|
|
|
if ( player != null )
|
|
|
|
{
|
|
|
|
ItemStack is = player.inventory.getCurrentItem();
|
|
|
|
if ( is != null )
|
|
|
|
{
|
|
|
|
if ( Platform.isWrench( player, is, x, y, z ) && player.isSneaking() )
|
|
|
|
{
|
2014-02-09 02:34:52 +01:00
|
|
|
Block id = w.getBlock( x, y, z );
|
|
|
|
if ( id != null )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
AEBaseTile tile = getTileEntity( w, x, y, z );
|
|
|
|
ItemStack[] drops = Platform.getBlockDrops( w, x, y, z );
|
|
|
|
|
|
|
|
if ( tile == null )
|
|
|
|
return false;
|
|
|
|
|
2014-03-28 01:33:14 +01:00
|
|
|
if ( tile instanceof TileCableBus || tile instanceof TileSkyChest )
|
2013-12-27 23:59:59 +01:00
|
|
|
return false;
|
|
|
|
|
|
|
|
ItemStack op = new ItemStack( this );
|
|
|
|
for (ItemStack ol : drops)
|
|
|
|
{
|
|
|
|
if ( Platform.isSameItemType( ol, op ) )
|
|
|
|
{
|
|
|
|
NBTTagCompound tag = tile.downloadSettings( SettingsFrom.DISMANTLE_ITEM );
|
|
|
|
if ( tag != null )
|
|
|
|
ol.setTagCompound( tag );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-06-29 00:32:20 +02:00
|
|
|
if ( id.removedByPlayer( w, player, x, y, z, false ) )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
List<ItemStack> l = new ArrayList<ItemStack>();
|
|
|
|
for (ItemStack iss : drops)
|
|
|
|
l.add( iss );
|
|
|
|
Platform.spawnDrops( w, x, y, z, l );
|
|
|
|
w.setBlockToAir( x, y, z );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2014-01-20 17:41:37 +01:00
|
|
|
if ( is.getItem() instanceof IMemoryCard && !(this instanceof BlockCableBus) )
|
2013-12-27 23:59:59 +01:00
|
|
|
{
|
|
|
|
IMemoryCard memc = (IMemoryCard) is.getItem();
|
|
|
|
if ( player.isSneaking() )
|
|
|
|
{
|
|
|
|
AEBaseTile t = getTileEntity( w, x, y, z );
|
|
|
|
if ( t != null )
|
|
|
|
{
|
|
|
|
String name = getUnlocalizedName();
|
|
|
|
NBTTagCompound data = t.downloadSettings( SettingsFrom.MEMORY_CARD );
|
|
|
|
if ( data != null )
|
|
|
|
{
|
|
|
|
memc.setMemoryCardContents( is, name, data );
|
2014-01-31 01:48:30 +01:00
|
|
|
memc.notifyUser( player, MemoryCardMessages.SETTINGS_SAVED );
|
2014-05-26 01:32:16 +02:00
|
|
|
return true;
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
String name = memc.getSettingsName( is );
|
|
|
|
NBTTagCompound data = memc.getData( is );
|
|
|
|
if ( getUnlocalizedName().equals( name ) )
|
|
|
|
{
|
|
|
|
AEBaseTile t = getTileEntity( w, x, y, z );
|
|
|
|
t.uploadSettings( SettingsFrom.MEMORY_CARD, data );
|
2014-01-31 01:48:30 +01:00
|
|
|
memc.notifyUser( player, MemoryCardMessages.SETTINGS_LOADED );
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|
|
|
|
else
|
2014-01-31 01:48:30 +01:00
|
|
|
memc.notifyUser( player, MemoryCardMessages.INVALID_MACHINE );
|
2013-12-27 23:59:59 +01:00
|
|
|
return false;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return onActivated( w, x, y, z, player, side, hitX, hitY, hitZ );
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean isValidOrientation(World w, int x, int y, int z, ForgeDirection forward, ForgeDirection up)
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:45:30 +01:00
|
|
|
public String getUnlocalizedName(ItemStack is)
|
|
|
|
{
|
|
|
|
return getUnlocalizedName();
|
|
|
|
}
|
2014-02-28 20:13:43 +01:00
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
public void addInformation(ItemStack is, EntityPlayer player, List<?> lines, boolean advancedItemTooltips)
|
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public Class<AEBaseItemBlock> getItemBlockClass()
|
|
|
|
{
|
|
|
|
return AEBaseItemBlock.class;
|
|
|
|
}
|
|
|
|
|
2014-01-30 03:47:55 +01:00
|
|
|
@Override
|
|
|
|
public void postInit()
|
|
|
|
{
|
|
|
|
// override!
|
|
|
|
}
|
|
|
|
|
2014-03-01 04:45:30 +01:00
|
|
|
public boolean hasSubtypes()
|
|
|
|
{
|
|
|
|
return hasSubtypes;
|
|
|
|
}
|
|
|
|
|
2014-03-05 05:31:50 +01:00
|
|
|
public boolean hasComparatorInputOverride()
|
|
|
|
{
|
|
|
|
return isInventory;
|
|
|
|
}
|
|
|
|
|
|
|
|
public int getComparatorInputOverride(World w, int x, int y, int z, int s)
|
|
|
|
{
|
|
|
|
TileEntity te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te instanceof IInventory )
|
|
|
|
return Container.calcRedstoneFromInventory( (IInventory) te );
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2014-07-17 06:44:02 +02:00
|
|
|
@Override
|
|
|
|
public boolean recolourBlock(World world, int x, int y, int z, ForgeDirection side, int colour)
|
|
|
|
{
|
|
|
|
TileEntity te = getTileEntity( world, x, y, z );
|
|
|
|
|
|
|
|
if ( te instanceof IColorableTile )
|
|
|
|
{
|
|
|
|
IColorableTile ct = (IColorableTile) te;
|
|
|
|
AEColor c = ct.getColor();
|
|
|
|
AEColor newColor = AEColor.values()[colour];
|
|
|
|
|
|
|
|
if ( c != newColor )
|
|
|
|
{
|
|
|
|
ct.setColor( newColor );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.recolourBlock( world, x, y, z, side, colour );
|
|
|
|
}
|
|
|
|
|
2014-03-15 07:58:21 +01:00
|
|
|
@Override
|
|
|
|
public void onBlockPlacedBy(World w, int x, int y, int z, EntityLivingBase player, ItemStack is)
|
|
|
|
{
|
|
|
|
if ( is.hasDisplayName() )
|
|
|
|
{
|
|
|
|
TileEntity te = getTileEntity( w, x, y, z );
|
|
|
|
if ( te instanceof AEBaseTile )
|
|
|
|
((AEBaseTile) w.getTileEntity( x, y, z )).setName( is.getDisplayName() );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2013-12-27 23:59:59 +01:00
|
|
|
}
|