Examples of PartP2PTunnel


Examples of appeng.parts.p2p.PartP2PTunnel

      {
        if ( !node.hasFlag( GridFlags.REQUIRE_CHANNEL ) )
          return;
      }

      PartP2PTunnel t = (PartP2PTunnel) machine;
      // AELog.info( "add-" + (t.output ? "output: " : "input: ") + t.freq
      // );

      if ( t.output )
        outputs.put( t.freq, t );
View Full Code Here

Examples of appeng.parts.p2p.PartP2PTunnel

      {
        if ( !node.hasFlag( GridFlags.REQUIRE_CHANNEL ) )
          return;
      }

      PartP2PTunnel t = (PartP2PTunnel) machine;
      // AELog.info( "rmv-" + (t.output ? "output: " : "input: ") + t.freq
      // );

      if ( t.output )
        outputs.remove( t.freq, t );
View Full Code Here

Examples of appeng.parts.p2p.PartP2PTunnel

      if ( configChange )
        p.onTunnelConfigChange();
      p.onTunnelNetworkChange();
    }

    PartP2PTunnel in = inputs.get( freq );
    if ( in != null )
    {
      if ( configChange )
        in.onTunnelConfigChange();
      in.onTunnelNetworkChange();
    }
  }
View Full Code Here

Examples of appeng.parts.p2p.PartP2PTunnel

    }
  }

  public TunnelCollection<PartP2PTunnel> getOutputs(long freq, Class<? extends PartP2PTunnel> c)
  {
    PartP2PTunnel in = inputs.get( freq );
    if ( in == null )
      return NullColl;

    TunnelCollection<PartP2PTunnel> out = inputs.get( freq ).getCollection( outputs.get( freq ), c );
    if ( out == null )
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.