Package org.nlogo.prim.hubnet

Source Code of org.nlogo.prim.hubnet._hubnetsendfollow

// (C) Uri Wilensky. https://github.com/NetLogo/NetLogo

package org.nlogo.prim.hubnet;

import org.nlogo.agent.Agent;
import org.nlogo.api.LogoException;
import org.nlogo.api.PerspectiveJ;
import org.nlogo.api.Syntax;
import org.nlogo.nvm.Context;

public strictfp class _hubnetsendfollow
    extends org.nlogo.nvm.Command {
  @Override
  public Syntax syntax() {
    return Syntax.commandSyntax
        (new int[]
            {Syntax.StringType(), Syntax.AgentType(), Syntax.NumberType()},
            "OTPL", false);
  }

  @Override
  public void perform(final Context context) throws LogoException {
    final String client = argEvalString(context, 0);
    final Agent agent = argEvalAgent(context, 1);
    final double radius = argEvalDoubleValue(context, 2);

    workspace.waitFor
        (new org.nlogo.api.CommandRunnable() {
          public void run() {
            workspace.getHubNetManager().sendAgentPerspective
                (client,
                    PerspectiveJ.FOLLOW().export(),
                    agent.getAgentClass(), agent.id, radius, false);
          }
        });
    context.ip = next;
  }
}
TOP

Related Classes of org.nlogo.prim.hubnet._hubnetsendfollow

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.