Applied-Energistics-2-tiler.../src/main/java/appeng/debug/ToolReplicatorCard.java

184 lines
5.7 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
* Copyright (c) 2013 - 2014, AlgorithmX2, All rights reserved.
*
* 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-01-01 09:58:31 +01:00
package appeng.debug;
2014-01-01 09:58:31 +01:00
import net.minecraft.block.Block;
2015-06-16 02:44:59 +02:00
import net.minecraft.block.state.IBlockState;
import net.minecraft.command.ICommandSender;
2014-01-01 09:58:31 +01:00
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.nbt.NBTTagCompound;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.EnumActionResult;
2015-06-16 02:44:59 +02:00
import net.minecraft.util.EnumFacing;
import net.minecraft.util.EnumHand;
import net.minecraft.util.math.BlockPos;
import net.minecraft.util.text.TextComponentString;
2014-01-01 09:58:31 +01:00
import net.minecraft.world.World;
import net.minecraftforge.common.DimensionManager;
2015-12-24 02:07:03 +01:00
2014-01-01 09:58:31 +01:00
import appeng.api.networking.IGrid;
import appeng.api.networking.IGridHost;
import appeng.api.networking.IGridNode;
import appeng.api.networking.spatial.ISpatialCache;
2015-06-16 02:44:59 +02:00
import appeng.api.util.AEPartLocation;
2014-01-01 09:58:31 +01:00
import appeng.api.util.DimensionalCoord;
import appeng.items.AEBaseItem;
import appeng.util.Platform;
2014-01-01 09:58:31 +01:00
public class ToolReplicatorCard extends AEBaseItem
{
@Override
public EnumActionResult onItemUseFirst( final ItemStack heldItem, final EntityPlayer player, final World world, final BlockPos pos, final EnumFacing side, final float hitX, final float hitY, final float hitZ, final EnumHand hand )
2014-01-01 09:58:31 +01:00
{
if( Platform.isClient() )
2015-04-29 02:30:53 +02:00
{
return EnumActionResult.PASS;
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
2015-06-16 02:44:59 +02:00
int x = pos.getX();
int y = pos.getY();
int z = pos.getZ();
2015-12-24 02:03:16 +01:00
if( player.isSneaking() )
2014-01-01 09:58:31 +01:00
{
2015-06-16 02:44:59 +02:00
if( world.getTileEntity( pos ) instanceof IGridHost )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final NBTTagCompound tag = new NBTTagCompound();
2014-01-01 09:58:31 +01:00
tag.setInteger( "x", x );
tag.setInteger( "y", y );
tag.setInteger( "z", z );
2015-06-16 02:44:59 +02:00
tag.setInteger( "side", side.ordinal() );
tag.setInteger( "dimid", world.provider.getDimension() );
heldItem.setTagCompound( tag );
2014-01-01 09:58:31 +01:00
}
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.outputMsg( player, "This is not a Grid Tile." );
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
}
else
{
final NBTTagCompound ish = heldItem.getTagCompound();
if( ish != null )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final int src_x = ish.getInteger( "x" );
final int src_y = ish.getInteger( "y" );
final int src_z = ish.getInteger( "z" );
final int src_side = ish.getInteger( "side" );
final int dimid = ish.getInteger( "dimid" );
final World src_w = DimensionManager.getWorld( dimid );
2014-01-01 09:58:31 +01:00
2015-09-30 14:24:40 +02:00
final TileEntity te = src_w.getTileEntity( new BlockPos( src_x, src_y, src_z ) );
if( te instanceof IGridHost )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final IGridHost gh = (IGridHost) te;
final EnumFacing sideOff = EnumFacing.VALUES[src_side];
final EnumFacing currentSideOff = side;
final IGridNode n = gh.getGridNode( AEPartLocation.fromFacing( sideOff ) );
if( n != null )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final IGrid g = n.getGrid();
if( g != null )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final ISpatialCache sc = g.getCache( ISpatialCache.class );
if( sc.isValidRegion() )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final DimensionalCoord min = sc.getMin();
final DimensionalCoord max = sc.getMax();
2014-01-01 09:58:31 +01:00
2015-06-16 02:44:59 +02:00
x += currentSideOff.getFrontOffsetX();
y += currentSideOff.getFrontOffsetY();
z += currentSideOff.getFrontOffsetZ();
2014-01-01 09:58:31 +01:00
2015-09-30 14:24:40 +02:00
final int min_x = min.x;
final int min_y = min.y;
final int min_z = min.z;
2014-01-01 09:58:31 +01:00
2015-09-30 14:24:40 +02:00
final int rel_x = min.x - src_x + x;
final int rel_y = min.y - src_y + y;
final int rel_z = min.z - src_z + z;
2014-01-01 09:58:31 +01:00
2015-09-30 14:24:40 +02:00
final int scale_x = max.x - min.x;
final int scale_y = max.y - min.y;
final int scale_z = max.z - min.z;
2014-01-01 09:58:31 +01:00
for( int i = 1; i < scale_x; i++ )
2015-04-29 02:30:53 +02:00
{
for( int j = 1; j < scale_y; j++ )
2015-04-29 02:30:53 +02:00
{
for( int k = 1; k < scale_z; k++ )
2014-01-01 09:58:31 +01:00
{
2015-12-24 02:03:16 +01:00
final BlockPos p = new BlockPos( min_x + i, min_y + j, min_z + k );
2015-09-30 14:24:40 +02:00
final BlockPos d = new BlockPos( i + rel_x, j + rel_y, k + rel_z );
final IBlockState state = src_w.getBlockState( p );
final Block blk = state.getBlock();
final IBlockState prev = world.getBlockState( d );
2015-12-24 02:03:16 +01:00
2015-06-16 02:44:59 +02:00
world.setBlockState( d, state );
if( blk != null && blk.hasTileEntity( state ) )
2014-01-01 09:58:31 +01:00
{
2015-09-30 14:24:40 +02:00
final TileEntity ote = src_w.getTileEntity( p );
final TileEntity nte = blk.createTileEntity( world, state );
final NBTTagCompound data = new NBTTagCompound();
2014-01-01 09:58:31 +01:00
ote.writeToNBT( data );
2014-01-20 17:41:37 +01:00
nte.readFromNBT( (NBTTagCompound) data.copy() );
2015-06-16 02:44:59 +02:00
world.setTileEntity( d, nte );
2014-01-01 09:58:31 +01:00
}
world.notifyBlockUpdate( d, prev, state, 3 );
2014-01-01 09:58:31 +01:00
}
2015-04-29 02:30:53 +02:00
}
}
2014-01-01 09:58:31 +01:00
}
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.outputMsg( player, "requires valid spatial pylon setup." );
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
}
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.outputMsg( player, "no grid?" );
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
}
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.outputMsg( player, "No grid node?" );
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
}
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.outputMsg( player, "Src is no longer a grid block?" );
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
}
else
2015-04-29 02:30:53 +02:00
{
2014-12-29 15:13:47 +01:00
this.outputMsg( player, "No Source Defined" );
2015-04-29 02:30:53 +02:00
}
2014-01-01 09:58:31 +01:00
}
return EnumActionResult.SUCCESS;
2014-01-01 09:58:31 +01:00
}
2015-09-30 14:24:40 +02:00
private void outputMsg( final ICommandSender player, final String string )
2014-01-01 09:58:31 +01:00
{
player.addChatMessage( new TextComponentString( string ) );
2014-01-01 09:58:31 +01:00
}
}