2014-11-14 12:02:52 +01:00
|
|
|
/*
|
|
|
|
* This file is part of Applied Energistics 2.
|
2015-05-18 00:30:08 +02:00
|
|
|
* Copyright (c) 2013 - 2015, AlgorithmX2, All rights reserved.
|
2014-11-14 12:02:52 +01:00
|
|
|
*
|
|
|
|
* Applied Energistics 2 is free software: you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU Lesser General Public License as published by
|
|
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
|
|
* (at your option) any later version.
|
|
|
|
*
|
|
|
|
* Applied Energistics 2 is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public License
|
|
|
|
* along with Applied Energistics 2. If not, see <http://www.gnu.org/licenses/lgpl>.
|
|
|
|
*/
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
package appeng.block;
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import java.util.ArrayList;
|
|
|
|
import java.util.EnumSet;
|
|
|
|
import java.util.List;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-05-09 13:06:09 +02:00
|
|
|
import com.google.common.base.Optional;
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import net.minecraft.block.Block;
|
|
|
|
import net.minecraft.block.material.Material;
|
|
|
|
import net.minecraft.client.Minecraft;
|
|
|
|
import net.minecraft.client.renderer.texture.IIconRegister;
|
|
|
|
import net.minecraft.client.resources.IResource;
|
2014-10-03 17:05:21 +02:00
|
|
|
import net.minecraft.creativetab.CreativeTabs;
|
2014-09-24 02:26:27 +02:00
|
|
|
import net.minecraft.entity.Entity;
|
|
|
|
import net.minecraft.entity.player.EntityPlayer;
|
2014-10-03 17:05:21 +02:00
|
|
|
import net.minecraft.item.Item;
|
2014-09-24 02:26:27 +02:00
|
|
|
import net.minecraft.item.ItemStack;
|
|
|
|
import net.minecraft.util.AxisAlignedBB;
|
|
|
|
import net.minecraft.util.IIcon;
|
|
|
|
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;
|
|
|
|
import net.minecraftforge.common.util.ForgeDirection;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
|
|
|
import cpw.mods.fml.relauncher.Side;
|
|
|
|
import cpw.mods.fml.relauncher.SideOnly;
|
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.api.util.IOrientable;
|
|
|
|
import appeng.api.util.IOrientableBlock;
|
|
|
|
import appeng.client.render.BaseBlockRender;
|
|
|
|
import appeng.client.render.BlockRenderInfo;
|
|
|
|
import appeng.client.render.WorldRender;
|
2014-11-18 16:47:30 +01:00
|
|
|
import appeng.client.texture.FlippableIcon;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.client.texture.MissingIcon;
|
2014-11-18 16:47:30 +01:00
|
|
|
import appeng.core.features.AEBlockFeatureHandler;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.core.features.AEFeature;
|
2014-11-18 16:47:30 +01:00
|
|
|
import appeng.core.features.FeatureNameExtractor;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.core.features.IAEFeature;
|
2014-11-18 16:47:30 +01:00
|
|
|
import appeng.core.features.IFeatureHandler;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.helpers.AEGlassMaterial;
|
|
|
|
import appeng.helpers.ICustomCollision;
|
2015-09-16 18:03:07 +02:00
|
|
|
import appeng.tile.AEBaseTile;
|
2014-09-24 02:26:27 +02:00
|
|
|
import appeng.util.LookDirection;
|
|
|
|
import appeng.util.Platform;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-05-09 12:18:43 +02:00
|
|
|
public abstract class AEBaseBlock extends Block implements IAEFeature
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-09-29 09:54:34 +02:00
|
|
|
private final String featureFullName;
|
2015-05-09 12:18:43 +02:00
|
|
|
protected final Optional<String> featureSubName;
|
2014-09-24 02:26:27 +02:00
|
|
|
protected boolean isOpaque = true;
|
|
|
|
protected boolean isFullSize = true;
|
|
|
|
protected boolean hasSubtypes = false;
|
|
|
|
protected boolean isInventory = false;
|
2015-05-09 12:18:43 +02:00
|
|
|
private IFeatureHandler handler;
|
2014-11-18 16:47:30 +01:00
|
|
|
@SideOnly( Side.CLIENT )
|
2015-10-08 15:42:42 +02:00
|
|
|
private BlockRenderInfo renderInfo;
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
protected AEBaseBlock( final Material mat )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-04-04 00:42:19 +02:00
|
|
|
this( mat, Optional.<String>absent() );
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setLightOpacity( 255 );
|
|
|
|
this.setLightLevel( 0 );
|
|
|
|
this.setHardness( 2.2F );
|
|
|
|
this.setHarvestLevel( "pickaxe", 0 );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
protected AEBaseBlock( final Material mat, final Optional<String> subName )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
super( mat );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( mat == AEGlassMaterial.INSTANCE || mat == Material.glass )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setStepSound( Block.soundTypeGlass );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-03-29 09:33:06 +02:00
|
|
|
else if( mat == Material.rock )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setStepSound( Block.soundTypeStone );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-03-29 09:33:06 +02:00
|
|
|
else if( mat == Material.wood )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setStepSound( Block.soundTypeWood );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
else
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setStepSound( Block.soundTypeMetal );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-04-04 00:42:19 +02:00
|
|
|
this.featureFullName = new FeatureNameExtractor( this.getClass(), subName ).get();
|
2014-12-29 15:13:47 +01:00
|
|
|
this.featureSubName = subName;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-18 16:47:30 +01:00
|
|
|
public String toString()
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.featureFullName;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
public void registerNoIcons()
|
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final BlockRenderInfo info = this.getRendererInstance();
|
|
|
|
final FlippableIcon i = new FlippableIcon( new MissingIcon( this ) );
|
2014-09-24 02:26:27 +02:00
|
|
|
info.updateIcons( i, i, i, i, i, i );
|
|
|
|
}
|
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
@SideOnly( Side.CLIENT )
|
|
|
|
public BlockRenderInfo getRendererInstance()
|
|
|
|
{
|
|
|
|
if( this.renderInfo != null )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
return this.renderInfo;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-03-29 09:33:06 +02:00
|
|
|
|
2015-09-16 18:03:07 +02:00
|
|
|
final BaseBlockRender<? extends AEBaseBlock, ? extends AEBaseTile> renderer = this.getRenderer();
|
|
|
|
this.renderInfo = new BlockRenderInfo( renderer );
|
2015-03-23 10:14:35 +01:00
|
|
|
|
2015-09-16 18:03:07 +02:00
|
|
|
return this.renderInfo;
|
2015-03-29 09:33:06 +02:00
|
|
|
}
|
|
|
|
|
2015-09-16 18:03:07 +02:00
|
|
|
/**
|
|
|
|
* Factory method to create a new render instance.
|
|
|
|
*
|
|
|
|
* @return the newly created instance.
|
|
|
|
*/
|
2015-03-29 09:33:06 +02:00
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-16 18:03:07 +02:00
|
|
|
protected BaseBlockRender<? extends AEBaseBlock, ? extends AEBaseTile> getRenderer()
|
2015-03-29 09:33:06 +02:00
|
|
|
{
|
2015-09-16 18:03:07 +02:00
|
|
|
return new BaseBlockRender<AEBaseBlock, AEBaseTile>();
|
2015-03-29 09:33:06 +02:00
|
|
|
}
|
|
|
|
|
2015-10-08 15:42:42 +02:00
|
|
|
IIcon unmappedGetIcon( final IBlockAccess w, final int x, final int y, final int z, final int s )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
return super.getIcon( w, x, y, z, s );
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
protected void setFeature( final EnumSet<AEFeature> f )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final AEBlockFeatureHandler featureHandler = new AEBlockFeatureHandler( f, this, this.featureSubName );
|
|
|
|
this.setHandler( featureHandler );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-04-06 00:35:42 +02:00
|
|
|
public final IFeatureHandler handler()
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.handler;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
protected final void setHandler( final IFeatureHandler handler )
|
2015-05-09 12:18:43 +02:00
|
|
|
{
|
|
|
|
this.handler = handler;
|
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
|
|
|
public void postInit()
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
// override!
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
public boolean isOpaque()
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.isOpaque;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
|
|
|
public boolean renderAsNormalBlock()
|
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.isFullSize && this.isOpaque;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-18 16:47:30 +01:00
|
|
|
@SideOnly( Side.CLIENT )
|
|
|
|
public int getRenderType()
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-01-01 22:13:10 +01:00
|
|
|
return WorldRender.INSTANCE.getRenderId();
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public IIcon getIcon( final IBlockAccess w, final int x, final int y, final int z, final int s )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.getIcon( this.mapRotation( w, x, y, z, s ), w.getBlockMetadata( x, y, z ) );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-25 23:10:56 +02:00
|
|
|
public IIcon getIcon( final int direction, final int metadata )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
return this.getRendererInstance().getTexture( ForgeDirection.getOrientation( direction ) );
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
protected ICustomCollision getCustomCollision( final World w, final int x, final int y, final int z )
|
2015-05-09 12:18:43 +02:00
|
|
|
{
|
|
|
|
if( this instanceof ICustomCollision )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
return (ICustomCollision) this;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-05-09 12:18:43 +02:00
|
|
|
return null;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
|
|
|
@SuppressWarnings( "unchecked" )
|
|
|
|
// NOTE: WAS FINAL, changed for Immibis
|
2015-09-25 23:10:56 +02:00
|
|
|
public void addCollisionBoxesToList( final World w, final int x, final int y, final int z, final AxisAlignedBB bb, final List out, final Entity e )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final ICustomCollision collisionHandler = this.getCustomCollision( w, x, y, z );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( collisionHandler != null && bb != null )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-09-25 23:10:56 +02:00
|
|
|
final List<AxisAlignedBB> tmp = new ArrayList<AxisAlignedBB>();
|
2014-11-18 16:47:30 +01:00
|
|
|
collisionHandler.addCollidingBlockToList( w, x, y, z, bb, tmp, e );
|
2015-09-25 23:10:56 +02:00
|
|
|
for( final AxisAlignedBB b : tmp )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
b.minX += x;
|
|
|
|
b.minY += y;
|
|
|
|
b.minZ += z;
|
|
|
|
b.maxX += x;
|
|
|
|
b.maxY += y;
|
|
|
|
b.maxZ += z;
|
2015-03-29 09:33:06 +02:00
|
|
|
if( bb.intersectsWith( b ) )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
out.add( b );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
else
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
super.addCollisionBoxesToList( w, x, y, z, bb, out, e );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-18 16:47:30 +01:00
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-25 23:10:56 +02:00
|
|
|
public final AxisAlignedBB getSelectedBoundingBoxFromPool( final World w, final int x, final int y, final int z )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final ICustomCollision collisionHandler = this.getCustomCollision( w, x, y, z );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( collisionHandler != null )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
if( Platform.isClient() )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final EntityPlayer player = Minecraft.getMinecraft().thePlayer;
|
|
|
|
final LookDirection ld = Platform.getPlayerRay( player, Platform.getEyeOffset( player ) );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-05-09 12:18:43 +02:00
|
|
|
final Iterable<AxisAlignedBB> bbs = collisionHandler.getSelectedBoundingBoxesFromPool( w, x, y, z, Minecraft.getMinecraft().thePlayer, true );
|
2014-11-18 16:47:30 +01:00
|
|
|
AxisAlignedBB br = null;
|
|
|
|
|
|
|
|
double lastDist = 0;
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
for( final AxisAlignedBB bb : bbs )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
this.setBlockBounds( (float) bb.minX, (float) bb.minY, (float) bb.minZ, (float) bb.maxX, (float) bb.maxY, (float) bb.maxZ );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-10-08 15:42:42 +02:00
|
|
|
final MovingObjectPosition r = super.collisionRayTrace( w, x, y, z, ld.getA(), ld.getB() );
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setBlockBounds( 0, 0, 0, 1, 1, 1 );
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( r != null )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-10-08 15:42:42 +02:00
|
|
|
final double xLen = ( ld.getA().xCoord - r.hitVec.xCoord );
|
|
|
|
final double yLen = ( ld.getA().yCoord - r.hitVec.yCoord );
|
|
|
|
final double zLen = ( ld.getA().zCoord - r.hitVec.zCoord );
|
2015-05-09 12:18:43 +02:00
|
|
|
|
|
|
|
final double thisDist = xLen * xLen + yLen * yLen + zLen * zLen;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( br == null || lastDist > thisDist )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
lastDist = thisDist;
|
|
|
|
br = bb;
|
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( br != null )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
br.setBounds( br.minX + x, br.minY + y, br.minZ + z, br.maxX + x, br.maxY + y, br.maxZ + z );
|
|
|
|
return br;
|
|
|
|
}
|
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-05-09 12:18:43 +02:00
|
|
|
final AxisAlignedBB b = AxisAlignedBB.getBoundingBox( 16d, 16d, 16d, 0d, 0d, 0d );
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
for( final AxisAlignedBB bx : collisionHandler.getSelectedBoundingBoxesFromPool( w, x, y, z, null, false ) )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final double minX = Math.min( b.minX, bx.minX );
|
|
|
|
final double minY = Math.min( b.minY, bx.minY );
|
|
|
|
final double minZ = Math.min( b.minZ, bx.minZ );
|
|
|
|
final double maxX = Math.max( b.maxX, bx.maxX );
|
|
|
|
final double maxY = Math.max( b.maxY, bx.maxY );
|
|
|
|
final double maxZ = Math.max( b.maxZ, bx.maxZ );
|
|
|
|
|
|
|
|
b.setBounds( minX, minY, minZ, maxX, maxY, maxZ );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
|
|
|
b.setBounds( b.minX + x, b.minY + y, b.minZ + z, b.maxX + x, b.maxY + y, b.maxZ + z );
|
2015-05-09 12:18:43 +02:00
|
|
|
|
|
|
|
return b;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-05-09 12:18:43 +02:00
|
|
|
return super.getSelectedBoundingBoxFromPool( w, x, y, z );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-04-06 00:35:42 +02:00
|
|
|
public final boolean isOpaqueCube()
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.isOpaque;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public MovingObjectPosition collisionRayTrace( final World w, final int x, final int y, final int z, final Vec3 a, final Vec3 b )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final ICustomCollision collisionHandler = this.getCustomCollision( w, x, y, z );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( collisionHandler != null )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final Iterable<AxisAlignedBB> bbs = collisionHandler.getSelectedBoundingBoxesFromPool( w, x, y, z, null, true );
|
2014-09-24 02:26:27 +02:00
|
|
|
MovingObjectPosition br = null;
|
|
|
|
|
|
|
|
double lastDist = 0;
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
for( final AxisAlignedBB bb : bbs )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
this.setBlockBounds( (float) bb.minX, (float) bb.minY, (float) bb.minZ, (float) bb.maxX, (float) bb.maxY, (float) bb.maxZ );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
final MovingObjectPosition r = super.collisionRayTrace( w, x, y, z, a, b );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setBlockBounds( 0, 0, 0, 1, 1, 1 );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( r != null )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-09-25 23:10:56 +02:00
|
|
|
final double xLen = ( a.xCoord - r.hitVec.xCoord );
|
|
|
|
final double yLen = ( a.yCoord - r.hitVec.yCoord );
|
|
|
|
final double zLen = ( a.zCoord - r.hitVec.zCoord );
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
final double thisDist = xLen * xLen + yLen * yLen + zLen * zLen;
|
2015-03-29 09:33:06 +02:00
|
|
|
if( br == null || lastDist > thisDist )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
lastDist = thisDist;
|
|
|
|
br = r;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( br != null )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
|
|
|
return br;
|
|
|
|
}
|
2015-05-09 12:18:43 +02:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
2014-12-29 15:13:47 +01:00
|
|
|
this.setBlockBounds( 0, 0, 0, 1, 1, 1 );
|
2014-09-24 02:26:27 +02:00
|
|
|
return super.collisionRayTrace( w, x, y, z, a, b );
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
public boolean onActivated( final World w, final int x, final int y, final int z, final EntityPlayer player, final int side, final float hitX, final float hitY, final float hitZ )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return false;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
|
|
|
@SideOnly( Side.CLIENT )
|
|
|
|
@SuppressWarnings( "unchecked" )
|
2015-09-25 23:10:56 +02:00
|
|
|
public final void getSubBlocks( final Item item, final CreativeTabs tabs, final List itemStacks )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
this.getCheckedSubBlocks( item, tabs, itemStacks );
|
|
|
|
}
|
2014-09-24 02:26:27 +02:00
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
|
|
|
public boolean hasComparatorInputOverride()
|
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.isInventory;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public int getComparatorInputOverride( final World w, final int x, final int y, final int z, final int s )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return 0;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2014-11-18 16:47:30 +01:00
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-25 23:10:56 +02:00
|
|
|
public void registerBlockIcons( final IIconRegister iconRegistry )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final BlockRenderInfo info = this.getRendererInstance();
|
2015-09-25 22:52:41 +02:00
|
|
|
final FlippableIcon topIcon = this.optionalIcon( iconRegistry, this.getTextureName(), null );
|
|
|
|
final FlippableIcon bottomIcon = this.optionalIcon( iconRegistry, this.getTextureName() + "Bottom", topIcon );
|
|
|
|
final FlippableIcon sideIcon = this.optionalIcon( iconRegistry, this.getTextureName() + "Side", topIcon );
|
|
|
|
final FlippableIcon eastIcon = this.optionalIcon( iconRegistry, this.getTextureName() + "East", sideIcon );
|
|
|
|
final FlippableIcon westIcon = this.optionalIcon( iconRegistry, this.getTextureName() + "West", sideIcon );
|
|
|
|
final FlippableIcon southIcon = this.optionalIcon( iconRegistry, this.getTextureName() + "Front", sideIcon );
|
|
|
|
final FlippableIcon northIcon = this.optionalIcon( iconRegistry, this.getTextureName() + "Back", sideIcon );
|
|
|
|
|
|
|
|
this.blockIcon = topIcon;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
|
|
|
info.updateIcons( bottomIcon, topIcon, northIcon, southIcon, eastIcon, westIcon );
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public final boolean isNormalCube( final IBlockAccess world, final int x, final int y, final int z )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.isFullSize;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
public IOrientable getOrientable( final IBlockAccess w, final int x, final int y, final int z )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
if( this instanceof IOrientableBlock )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
return ( (IOrientableBlock) this ).getOrientable( w, x, y, z );
|
2014-11-18 16:47:30 +01:00
|
|
|
}
|
2015-05-09 12:18:43 +02:00
|
|
|
return null;
|
|
|
|
}
|
|
|
|
|
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public final boolean rotateBlock( final World w, final int x, final int y, final int z, final ForgeDirection axis )
|
2015-05-09 12:18:43 +02:00
|
|
|
{
|
|
|
|
final IOrientable rotatable = this.getOrientable( w, x, y, z );
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( rotatable != null && rotatable.canBeRotated() )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
if( this.hasCustomRotation() )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
this.customRotateBlock( rotatable, axis );
|
2014-11-18 16:47:30 +01:00
|
|
|
return true;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
ForgeDirection forward = rotatable.getForward();
|
|
|
|
ForgeDirection up = rotatable.getUp();
|
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
for( int rs = 0; rs < 4; rs++ )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
forward = Platform.rotateAround( forward, axis );
|
|
|
|
up = Platform.rotateAround( up, axis );
|
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( this.isValidOrientation( w, x, y, z, forward, up ) )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
rotatable.setOrientation( forward, up );
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return super.rotateBlock( w, x, y, z, axis );
|
|
|
|
}
|
|
|
|
|
|
|
|
protected boolean hasCustomRotation()
|
|
|
|
{
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
protected void customRotateBlock( final IOrientable rotatable, final ForgeDirection axis )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
public boolean isValidOrientation( final World w, final int x, final int y, final int z, final ForgeDirection forward, final ForgeDirection up )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
return true;
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-09-28 20:34:00 +02:00
|
|
|
@Override
|
2015-09-25 23:10:56 +02:00
|
|
|
public ForgeDirection[] getValidRotations( final World w, final int x, final int y, final int z )
|
2014-09-24 02:26:27 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return new ForgeDirection[0];
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|
|
|
|
|
2014-11-18 16:47:30 +01:00
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-25 23:10:56 +02:00
|
|
|
private FlippableIcon optionalIcon( final IIconRegister ir, final String name, IIcon substitute )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
// if the input is an flippable IIcon find the original.
|
2015-03-29 09:33:06 +02:00
|
|
|
while( substitute instanceof FlippableIcon )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
substitute = ( (FlippableIcon) substitute ).getOriginal();
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( substitute != null )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
try
|
|
|
|
{
|
2015-05-08 23:25:19 +02:00
|
|
|
ResourceLocation resLoc = new ResourceLocation( name );
|
2015-03-29 09:33:06 +02:00
|
|
|
resLoc = new ResourceLocation( resLoc.getResourceDomain(), String.format( "%s/%s%s", "textures/blocks", resLoc.getResourcePath(), ".png" ) );
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
final IResource res = Minecraft.getMinecraft().getResourceManager().getResource( resLoc );
|
2015-03-29 09:33:06 +02:00
|
|
|
if( res != null )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2015-05-08 23:25:19 +02:00
|
|
|
return new FlippableIcon( ir.registerIcon( name ) );
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
}
|
2015-09-25 23:10:56 +02:00
|
|
|
catch( final Throwable e )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
return new FlippableIcon( substitute );
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2015-05-08 23:25:19 +02:00
|
|
|
return new FlippableIcon( ir.registerIcon( name ) );
|
2014-11-18 16:47:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-25 23:10:56 +02:00
|
|
|
public void getCheckedSubBlocks( final Item item, final CreativeTabs tabs, final List<ItemStack> itemStacks )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
super.getSubBlocks( item, tabs, itemStacks );
|
|
|
|
}
|
|
|
|
|
2015-10-08 15:42:42 +02:00
|
|
|
private int mapRotation( final IBlockAccess w, final int x, final int y, final int z, final int s )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
2015-05-09 12:18:43 +02:00
|
|
|
final IOrientable ori = this.getOrientable( w, x, y, z );
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( ori != null && ori.canBeRotated() )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.mapRotation( ori, ForgeDirection.getOrientation( s ) ).ordinal();
|
2014-11-18 16:47:30 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
return s;
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
public ForgeDirection mapRotation( final IOrientable ori, final ForgeDirection dir )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
// case DOWN: return bottomIcon;
|
|
|
|
// case UP: return blockIcon;
|
|
|
|
// case NORTH: return northIcon;
|
|
|
|
// case SOUTH: return southIcon;
|
|
|
|
// case WEST: return sideIcon;
|
|
|
|
// case EAST: return sideIcon;
|
|
|
|
|
2015-05-09 12:18:43 +02:00
|
|
|
final ForgeDirection forward = ori.getForward();
|
|
|
|
final ForgeDirection up = ori.getUp();
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( forward == null || up == null )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return dir;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
final int west_x = forward.offsetY * up.offsetZ - forward.offsetZ * up.offsetY;
|
|
|
|
final int west_y = forward.offsetZ * up.offsetX - forward.offsetX * up.offsetZ;
|
|
|
|
final int west_z = forward.offsetX * up.offsetY - forward.offsetY * up.offsetX;
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-09-25 22:52:41 +02:00
|
|
|
ForgeDirection west = ForgeDirection.UNKNOWN;
|
2015-09-25 23:10:56 +02:00
|
|
|
for( final ForgeDirection dx : ForgeDirection.VALID_DIRECTIONS )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dx.offsetX == west_x && dx.offsetY == west_y && dx.offsetZ == west_z )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
west = dx;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dir == forward )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return ForgeDirection.SOUTH;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dir == forward.getOpposite() )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return ForgeDirection.NORTH;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dir == up )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return ForgeDirection.UP;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dir == up.getOpposite() )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return ForgeDirection.DOWN;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dir == west )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return ForgeDirection.WEST;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2015-03-29 09:33:06 +02:00
|
|
|
if( dir == west.getOpposite() )
|
2015-04-29 02:30:53 +02:00
|
|
|
{
|
2014-11-18 16:47:30 +01:00
|
|
|
return ForgeDirection.EAST;
|
2015-04-29 02:30:53 +02:00
|
|
|
}
|
2014-11-18 16:47:30 +01:00
|
|
|
|
|
|
|
return ForgeDirection.UNKNOWN;
|
|
|
|
}
|
|
|
|
|
|
|
|
@SideOnly( Side.CLIENT )
|
2015-09-25 23:10:56 +02:00
|
|
|
public void setRenderStateByMeta( final int itemDamage )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2015-09-25 23:10:56 +02:00
|
|
|
public String getUnlocalizedName( final ItemStack is )
|
2014-10-03 17:05:21 +02:00
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.getUnlocalizedName();
|
2014-11-18 16:47:30 +01:00
|
|
|
}
|
|
|
|
|
2015-10-08 15:42:42 +02:00
|
|
|
void addInformation( final ItemStack is, final EntityPlayer player, final List<String> lines, final boolean advancedItemTooltips )
|
2014-11-18 16:47:30 +01:00
|
|
|
{
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
public Class<? extends AEBaseItemBlock> getItemBlockClass()
|
|
|
|
{
|
|
|
|
return AEBaseItemBlock.class;
|
|
|
|
}
|
|
|
|
|
|
|
|
public boolean hasSubtypes()
|
|
|
|
{
|
2014-12-29 15:13:47 +01:00
|
|
|
return this.hasSubtypes;
|
2014-10-03 17:05:21 +02:00
|
|
|
}
|
2015-05-09 12:18:43 +02:00
|
|
|
|
2014-09-24 02:26:27 +02:00
|
|
|
}
|