Package appeng.tile.networking

Examples of appeng.tile.networking.TileController


  }

  @Override
  public void onNeighborBlockChange(World w, int x, int y, int z, Block id_junk)
  {
    TileController tc = getTileEntity( w, x, y, z );
    if ( tc != null )
      tc.onNeighborChange( false );
  }
View Full Code Here


  public boolean visitNode(IGridNode n)
  {
    IGridHost host = n.getMachine();
    if ( isValid && host instanceof TileController )
    {
      TileController c = (TileController) host;

      minX = Math.min( c.xCoord, minX );
      maxX = Math.max( c.xCoord, maxX );
      minY = Math.min( c.yCoord, minY );
      maxY = Math.max( c.yCoord, maxY );
View Full Code Here

        if ( controllerState == ControllerState.CONTROLLER_ONLINE )
        {
          final Iterator<TileController> controllerIterator = this.controllers.iterator();
          if (controllerIterator.hasNext())
          {
            final TileController controller = controllerIterator.next();
            controller.getGridNode( ForgeDirection.UNKNOWN ).beginVisit( new ControllerChannelUpdater() );
          }
        }

        // check for achievements
        achievementPost();
View Full Code Here

TOP

Related Classes of appeng.tile.networking.TileController

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.