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

66 lines
1.6 KiB
Java
Raw Normal View History

2014-11-14 12:02:52 +01:00
/*
* This file is part of Applied Energistics 2.
2015-05-18 00:08:05 +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-08-23 08:23:30 +02:00
package appeng.debug;
2014-08-23 08:23:30 +02:00
import java.util.EnumSet;
import net.minecraftforge.common.util.ForgeDirection;
2014-12-29 21:59:05 +01:00
2014-08-23 08:23:30 +02:00
import appeng.api.networking.IGridNode;
import appeng.me.helpers.AENetworkProxy;
import appeng.tile.grid.AENetworkTile;
2014-08-23 08:23:30 +02:00
public class TilePhantomNode extends AENetworkTile
{
2014-11-04 12:32:33 +01:00
protected AENetworkProxy proxy = null;
2014-08-23 08:23:30 +02:00
boolean crashMode = false;
@Override
public IGridNode getGridNode( ForgeDirection dir )
{
if( !this.crashMode )
2015-04-29 02:30:53 +02:00
{
return super.getGridNode( dir );
2015-04-29 02:30:53 +02:00
}
return this.proxy.getNode();
}
2014-08-23 08:23:30 +02:00
@Override
public void onReady()
{
super.onReady();
2014-12-29 15:13:47 +01:00
this.proxy = this.createProxy();
this.proxy.onReady();
this.crashMode = true;
2014-08-23 08:23:30 +02:00
}
2015-05-18 00:08:05 +02:00
public void triggerCrashMode()
2014-08-23 08:23:30 +02:00
{
if( this.proxy != null )
2014-08-23 08:23:30 +02:00
{
2014-12-29 15:13:47 +01:00
this.crashMode = true;
this.proxy.setValidSides( EnumSet.allOf( ForgeDirection.class ) );
2014-08-23 08:23:30 +02:00
}
}
}