Package | Description |
---|---|
desmoj.extensions.visualization2d.engine.command |
Read and write animation command (cmds) files.
|
Modifier and Type | Method and Description |
---|---|
void |
Parameter.addValueCat(java.lang.String[] v)
add a value with value-component to a parameter
|
static java.lang.String |
Parameter.cat(java.lang.String[] v)
Parameter-value-components v are connected with a value-separator to one string
|
void |
Command.execute(Model model)
This method describes for every command-type, how it's modeled in animation.model.Model.
|
static Command |
Command.getCommandInit(java.lang.String cmd,
long initTime)
Get a clone of command-template with name cmd
for init-phase
|
static Command |
Command.getCommandTime(java.lang.String cmd,
long time)
Get a clone of command-template with name cmd
for run-phase time-value
|
long |
CommandSequence.readInit(java.io.BufferedReader f)
Reads all commands in init-phase from reader f
and execute them (Command.execute)
|
long |
CommandSequence.readUntilTime(java.io.BufferedReader f,
long time)
Reads the next commands in reader f until time-value > time
and execute them (Command.execute)
|