Applied-Energistics-2-tiler.../src/main/java/appeng/tile/spatial/TileSpatialPylon.java

239 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>.
*/
package appeng.tile.spatial;
import java.util.EnumSet;
2014-12-29 21:59:05 +01:00
import io.netty.buffer.ByteBuf;
2014-02-09 02:34:52 +01:00
import net.minecraftforge.common.util.ForgeDirection;
2014-12-29 21:59:05 +01:00
import appeng.api.networking.GridFlags;
import appeng.api.networking.events.MENetworkChannelsChanged;
import appeng.api.networking.events.MENetworkEventSubscribe;
import appeng.api.networking.events.MENetworkPowerStatusChange;
import appeng.me.GridAccessException;
import appeng.me.cluster.IAEMultiBlock;
import appeng.me.cluster.implementations.SpatialPylonCalculator;
import appeng.me.cluster.implementations.SpatialPylonCluster;
import appeng.me.helpers.AENetworkProxy;
import appeng.me.helpers.AENetworkProxyMultiblock;
2014-08-28 09:39:52 +02:00
import appeng.tile.TileEvent;
import appeng.tile.events.TileEventType;
import appeng.tile.grid.AENetworkTile;
public class TileSpatialPylon extends AENetworkTile implements IAEMultiBlock
{
public final int DISPLAY_END_MIN = 0x01;
public final int DISPLAY_END_MAX = 0x02;
public final int DISPLAY_MIDDLE = 0x01 + 0x02;
public final int DISPLAY_X = 0x04;
public final int DISPLAY_Y = 0x08;
public final int DISPLAY_Z = 0x04 + 0x08;
public final int MB_STATUS = 0x01 + 0x02 + 0x04 + 0x08;
public final int DISPLAY_ENABLED = 0x10;
public final int DISPLAY_POWERED_ENABLED = 0x20;
public final int NET_STATUS = 0x10 + 0x20;
int displayBits = 0;
SpatialPylonCluster cluster;
final SpatialPylonCalculator calc = new SpatialPylonCalculator( this );
boolean didHaveLight = false;
@Override
protected AENetworkProxy createProxy()
{
2014-12-29 15:13:47 +01:00
return new AENetworkProxyMultiblock( this, "proxy", this.getItemFromTile( this ), true );
}
@Override
public boolean canBeRotated()
{
return false;
}
2014-08-28 09:39:52 +02:00
@TileEvent(TileEventType.NETWORK_READ)
2014-10-04 08:08:28 +02:00
public boolean readFromStream_TileSpatialPylon(ByteBuf data)
{
2014-12-29 15:13:47 +01:00
int old = this.displayBits;
this.displayBits = data.readByte();
return old != this.displayBits;
2014-08-28 09:39:52 +02:00
}
2014-08-28 09:39:52 +02:00
@TileEvent(TileEventType.NETWORK_WRITE)
2014-10-04 08:08:28 +02:00
public void writeToStream_TileSpatialPylon(ByteBuf data)
2014-08-28 09:39:52 +02:00
{
2014-12-29 15:13:47 +01:00
data.writeByte( this.displayBits );
2014-08-28 09:39:52 +02:00
}
public TileSpatialPylon() {
2014-12-29 15:13:47 +01:00
this.gridProxy.setFlags( GridFlags.REQUIRE_CHANNEL, GridFlags.MULTIBLOCK );
this.gridProxy.setIdlePowerUsage( 0.5 );
this.gridProxy.setValidSides( EnumSet.noneOf( ForgeDirection.class ) );
}
@Override
public void onReady()
{
super.onReady();
2014-12-29 15:13:47 +01:00
this.onNeighborBlockChange();
}
@Override
public void markForUpdate()
{
super.markForUpdate();
2014-12-29 15:13:47 +01:00
boolean hasLight = this.getLightValue() > 0;
if ( hasLight != this.didHaveLight )
{
2014-12-29 15:13:47 +01:00
this.didHaveLight = hasLight;
this.worldObj.func_147451_t( this.xCoord, this.yCoord, this.zCoord );
2014-02-09 02:34:52 +01:00
// worldObj.updateAllLightTypes( xCoord, yCoord, zCoord );
}
}
public int getLightValue()
{
2014-12-29 15:13:47 +01:00
if ( (this.displayBits & this.DISPLAY_POWERED_ENABLED) == this.DISPLAY_POWERED_ENABLED )
{
return 8;
}
return 0;
}
@MENetworkEventSubscribe
public void powerRender(MENetworkPowerStatusChange c)
{
2014-12-29 15:13:47 +01:00
this.recalculateDisplay();
}
@MENetworkEventSubscribe
public void activeRender(MENetworkChannelsChanged c)
{
2014-12-29 15:13:47 +01:00
this.recalculateDisplay();
}
@Override
public void invalidate()
{
2014-12-29 15:13:47 +01:00
this.disconnect( false );
super.invalidate();
}
@Override
public void onChunkUnload()
{
2014-12-29 15:13:47 +01:00
this.disconnect( false );
super.onChunkUnload();
}
public void onNeighborBlockChange()
{
2014-12-29 15:13:47 +01:00
this.calc.calculateMultiblock( this.worldObj, this.getLocation() );
}
@Override
public SpatialPylonCluster getCluster()
{
2014-12-29 15:13:47 +01:00
return this.cluster;
}
public void recalculateDisplay()
{
2014-12-29 15:13:47 +01:00
int oldBits = this.displayBits;
2014-12-29 15:13:47 +01:00
this.displayBits = 0;
2014-12-29 15:13:47 +01:00
if ( this.cluster != null )
{
2014-12-29 15:13:47 +01:00
if ( this.cluster.min.equals( this.getLocation() ) )
this.displayBits = this.DISPLAY_END_MIN;
else if ( this.cluster.max.equals( this.getLocation() ) )
this.displayBits = this.DISPLAY_END_MAX;
else
2014-12-29 15:13:47 +01:00
this.displayBits = this.DISPLAY_MIDDLE;
2014-12-29 15:13:47 +01:00
switch (this.cluster.currentAxis)
{
case X:
2014-12-29 15:13:47 +01:00
this.displayBits |= this.DISPLAY_X;
break;
case Y:
2014-12-29 15:13:47 +01:00
this.displayBits |= this.DISPLAY_Y;
break;
case Z:
2014-12-29 15:13:47 +01:00
this.displayBits |= this.DISPLAY_Z;
break;
default:
2014-12-29 15:13:47 +01:00
this.displayBits = 0;
break;
}
try
{
2014-12-29 15:13:47 +01:00
if ( this.gridProxy.getEnergy().isNetworkPowered() )
this.displayBits |= this.DISPLAY_POWERED_ENABLED;
2014-12-29 15:13:47 +01:00
if ( this.cluster.isValid && this.gridProxy.isActive() )
this.displayBits |= this.DISPLAY_ENABLED;
}
catch (GridAccessException e)
{
// nothing?
}
}
2014-12-29 15:13:47 +01:00
if ( oldBits != this.displayBits )
this.markForUpdate();
}
public void updateStatus(SpatialPylonCluster c)
{
2014-12-29 15:13:47 +01:00
this.cluster = c;
this.gridProxy.setValidSides( c == null ? EnumSet.noneOf( ForgeDirection.class ) : EnumSet.allOf( ForgeDirection.class ) );
this.recalculateDisplay();
}
@Override
public void disconnect(boolean b)
{
2014-12-29 15:13:47 +01:00
if ( this.cluster != null )
{
2014-12-29 15:13:47 +01:00
this.cluster.destroy();
this.updateStatus( null );
}
}
@Override
public boolean isValid()
{
return true;
}
public int getDisplayBits()
{
2014-12-29 15:13:47 +01:00
return this.displayBits;
}
}