Applied-Energistics-2-tiler.../src/main/java/appeng/fmp/FMPPlacementHelper.java

290 lines
6 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>.
*/
package appeng.fmp;
import java.util.EnumSet;
import java.util.Set;
import net.minecraft.entity.player.EntityPlayer;
import net.minecraft.item.ItemStack;
import net.minecraft.tileentity.TileEntity;
import net.minecraft.util.Vec3;
import net.minecraftforge.common.util.ForgeDirection;
2014-12-29 21:59:05 +01:00
import codechicken.lib.vec.BlockCoord;
import codechicken.multipart.TMultiPart;
import codechicken.multipart.TileMultipart;
import appeng.api.parts.IFacadeContainer;
2014-08-27 07:57:37 +02:00
import appeng.api.parts.IFacadePart;
import appeng.api.parts.IPart;
import appeng.api.parts.IPartHost;
import appeng.api.parts.LayerFlags;
import appeng.api.parts.SelectedPart;
import appeng.api.util.AEColor;
import appeng.api.util.DimensionalCoord;
import appeng.facade.FacadeContainer;
2014-08-27 07:57:37 +02:00
import appeng.parts.CableBusStorage;
import appeng.util.Platform;
public class FMPPlacementHelper implements IPartHost
{
final private static CableBusStorage NULL_STORAGE = new NullStorage();
private boolean hasPart = false;
private TileMultipart myMP;
private CableBusPart myPart;
2014-08-27 07:57:37 +02:00
public FMPPlacementHelper( TileMultipart mp )
{
this.myMP = mp;
}
2014-08-27 07:57:37 +02:00
@Override
public IFacadeContainer getFacadeContainer()
{
if( this.myPart == null )
return new FacadeContainer( NULL_STORAGE );
return this.myPart.getFacadeContainer();
}
2014-08-27 07:57:37 +02:00
@Override
public boolean canAddPart( ItemStack part, ForgeDirection side )
{
CableBusPart myPart = this.getPart();
2014-08-27 07:57:37 +02:00
boolean returnValue = this.hasPart && myPart.canAddPart( part, side );
2014-08-27 07:57:37 +02:00
this.removePart();
2014-08-27 07:57:37 +02:00
return returnValue;
}
private CableBusPart getPart()
{
2014-12-29 15:13:47 +01:00
scala.collection.Iterator<TMultiPart> i = this.myMP.partList().iterator();
while( i.hasNext() )
{
TMultiPart p = i.next();
if( p instanceof CableBusPart )
2014-12-29 15:13:47 +01:00
this.myPart = (CableBusPart) p;
}
if( this.myPart == null )
2014-12-29 15:13:47 +01:00
this.myPart = (CableBusPart) PartRegistry.CableBusPart.construct( 0 );
2014-12-29 15:13:47 +01:00
BlockCoord loc = new BlockCoord( this.myMP.xCoord, this.myMP.yCoord, this.myMP.zCoord );
if( this.myMP.canAddPart( this.myPart ) && Platform.isServer() )
{
2014-12-29 15:13:47 +01:00
this.myMP = TileMultipart.addPart( this.myMP.getWorldObj(), loc, this.myPart );
this.hasPart = true;
}
2014-12-29 15:13:47 +01:00
return this.myPart;
}
public void removePart()
{
if( this.myPart.isEmpty() )
{
2014-12-29 15:13:47 +01:00
scala.collection.Iterator<TMultiPart> i = this.myMP.partList().iterator();
while( i.hasNext() )
{
2014-07-26 23:34:26 +02:00
TMultiPart p = i.next();
if( p == this.myPart )
2014-07-26 23:34:26 +02:00
{
2014-12-29 15:13:47 +01:00
this.myMP = this.myMP.remPart( this.myPart );
2014-07-26 23:34:26 +02:00
break;
}
}
2014-12-29 15:13:47 +01:00
this.hasPart = false;
this.myPart = null;
}
}
@Override
public ForgeDirection addPart( ItemStack is, ForgeDirection side, EntityPlayer owner )
{
2014-12-29 15:13:47 +01:00
CableBusPart myPart = this.getPart();
2014-12-29 15:13:47 +01:00
ForgeDirection returnValue = this.hasPart ? myPart.addPart( is, side, owner ) : null;
2014-12-29 15:13:47 +01:00
this.removePart();
return returnValue;
}
@Override
public IPart getPart( ForgeDirection side )
{
if( this.myPart == null )
return null;
2014-12-29 15:13:47 +01:00
return this.myPart.getPart( side );
}
@Override
public void removePart( ForgeDirection side, boolean suppressUpdate )
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.removePart( side, suppressUpdate );
}
@Override
public void markForUpdate()
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.markForUpdate();
}
@Override
public DimensionalCoord getLocation()
{
if( this.myPart == null )
2014-12-29 15:13:47 +01:00
return new DimensionalCoord( this.myMP );
return this.myPart.getLocation();
}
@Override
public TileEntity getTile()
{
2014-12-29 15:13:47 +01:00
return this.myMP;
}
@Override
public AEColor getColor()
{
if( this.myPart == null )
return AEColor.Transparent;
2014-12-29 15:13:47 +01:00
return this.myPart.getColor();
}
@Override
public void clearContainer()
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.clearContainer();
}
@Override
public boolean isBlocked( ForgeDirection side )
{
2014-12-29 15:13:47 +01:00
this.getPart();
2014-12-29 15:13:47 +01:00
boolean returnValue = this.myPart.isBlocked( side );
2014-12-29 15:13:47 +01:00
this.removePart();
return returnValue;
}
@Override
public SelectedPart selectPart( Vec3 pos )
{
if( this.myPart == null )
return new SelectedPart();
2014-12-29 15:13:47 +01:00
return this.myPart.selectPart( pos );
}
@Override
public void markForSave()
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.markForSave();
}
@Override
public void partChanged()
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.partChanged();
}
@Override
public boolean hasRedstone( ForgeDirection side )
{
if( this.myPart == null )
return false;
2014-12-29 15:13:47 +01:00
return this.myPart.hasRedstone( side );
}
@Override
public boolean isEmpty()
{
if( this.myPart == null )
return true;
2014-12-29 15:13:47 +01:00
return this.myPart.isEmpty();
}
@Override
public Set<LayerFlags> getLayerFlags()
{
if( this.myPart == null )
return EnumSet.noneOf( LayerFlags.class );
2014-12-29 15:13:47 +01:00
return this.myPart.getLayerFlags();
}
@Override
public void cleanup()
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.cleanup();
}
@Override
public void notifyNeighbors()
{
if( this.myPart == null )
return;
2014-12-29 15:13:47 +01:00
this.myPart.notifyNeighbors();
}
@Override
public boolean isInWorld()
{
if( this.myPart == null )
2014-12-29 15:13:47 +01:00
return this.myMP.getWorldObj() != null;
return this.myPart.isInWorld();
}
static class NullStorage extends CableBusStorage
{
@Override
public IFacadePart getFacade( int x )
{
return null;
}
@Override
public void setFacade( int x, IFacadePart facade )
{
}
}
}