Examples of refreshRender()


Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

        if(!SimpleServiceLocator.connectionManager.addDirectConnection(getConnectionUUID(), getRouter())) {
          dropFreqCard();
        }
        CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
        if(CRP != null) {
          CRP.refreshRender(true);
        }
        getRouter().update(true, this);
        this.refreshRender(true);
        init = true;
        idbuffer = getConnectionUUID();
View Full Code Here

Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

    if(init && !hasConnectionUUID()) {
      init = false;
      CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
      SimpleServiceLocator.connectionManager.removeDirectConnection(getRouter());
      if(CRP != null) {
        CRP.refreshRender(true);
      }
    }
    if(init && idbuffer != null && !idbuffer.equals(getConnectionUUID())) {
      init = false;
      CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
View Full Code Here

Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

    if(init && idbuffer != null && !idbuffer.equals(getConnectionUUID())) {
      init = false;
      CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
      SimpleServiceLocator.connectionManager.removeDirectConnection(getRouter());
      if(CRP != null) {
        CRP.refreshRender(true);
      }
    }
    if(itemsOnRoute.size() > 0) {
      checkConnectedInvs();
    }
View Full Code Here

Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

  public void onAllowedRemoval() {
    if(!stillNeedReplace) {
      CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
      SimpleServiceLocator.connectionManager.removeDirectConnection(getRouter());
      if(CRP != null) {
        CRP.refreshRender(true);
      }
    }
    dropFreqCard();
  }
 
View Full Code Here

Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

  public void invalidate() {
    if(!stillNeedReplace) {
      CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
      SimpleServiceLocator.connectionManager.removeDirectConnection(getRouter());
      if(CRP != null) {
        CRP.refreshRender(true);
      }
    }
    init = false;
    super.invalidate();
  }
View Full Code Here

Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

  public void onChunkUnload() {
    if(!stillNeedReplace) {
      CoreRoutedPipe CRP = SimpleServiceLocator.connectionManager.getConnectedPipe(getRouter());
      SimpleServiceLocator.connectionManager.removeDirectConnection(getRouter());
      if(CRP != null) {
        CRP.refreshRender(true);
      }
    }
    init = false;
    super.onChunkUnload();
  }
View Full Code Here

Examples of logisticspipes.pipes.basic.CoreRoutedPipe.refreshRender()

    boolean blockNeedsUpdate = recheckAdjacent();
    if(!blockNeedsUpdate) return false;

    CoreRoutedPipe pipe = getPipe();
    if (pipe == null) return true;
    pipe.refreshRender(true);
    return true;
  }

  /**
   * Floodfill LSA increment and clean up the _prevAdjacentRouter list left by floodCheckAdjacent
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.