public class create_agent extends DefaultInternalAction
Internal action: .create_agent
.
Description: creates another agent using the referred AgentSpeak source code.
Parameters:
Examples:
.create_agent(bob,"/tmp/x.asl")
: creates an agent named "bob"
from the source file in "/tmp/x.asl"..create_agent(Bob,"/tmp/x.asl")
: creates an agent named "bob" (or "bob_1", "bob_2", ...)
and unifies variable Bob with the given name..create_agent(bob,"x.asl", [agentClass("myp.MyAgent")])
:
creates the agent with customised agent class
myp.MyAgent
..create_agent(bob,"x.asl", [agentArchClass("myp.MyArch")])
:
creates the agent with customised architecture class
myp.MyArch
.
.create_agent(bob,"x.asl", [beliefBaseClass("jason.bb.TextPersistentBB")])
:
creates the agent with customised belief base
jason.bb.TextPersistentBB
.
.create_agent(bob,"x.asl", [agentClass("myp.MyAgent"),
agentArchClass("myp.MyArch"),
beliefBaseClass("jason.bb.TextPersistentBB")])
: creates the
agent with agent, architecture and belief base customised.
kill_agent
,
stopMAS
,
RuntimeServicesInfraTier
,
Serialized FormConstructor and Description |
---|
create_agent() |
Modifier and Type | Method and Description |
---|---|
protected void |
checkArguments(Term[] args) |
java.lang.Object |
execute(TransitionSystem ts,
Unifier un,
Term[] args)
Executes the internal action.
|
int |
getMaxArgs() |
int |
getMinArgs() |
canBeUsedInContext, destroy, prepareArguments, suspendIntention
public int getMinArgs()
getMinArgs
in class DefaultInternalAction
public int getMaxArgs()
getMaxArgs
in class DefaultInternalAction
protected void checkArguments(Term[] args) throws JasonException
checkArguments
in class DefaultInternalAction
JasonException
public java.lang.Object execute(TransitionSystem ts, Unifier un, Term[] args) throws java.lang.Exception
InternalAction
execute
in interface InternalAction
execute
in class DefaultInternalAction
java.lang.Exception