AGIWiki/call

From ScummVM :: Wiki
< AGIWiki
Revision as of 15:16, 25 October 2018 by Criezy (talk | contribs) (Text replacement - "<source lang=" to "<syntaxhighlight lang=")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.
AGIWiki


Control Flow Commands

The call command executes a logic script.

Syntax

call(byt A);

Remarks

The logic with resource number A is executed one time. If it is not loaded before being called, it is loaded, then executed, then unloaded after returning.

A script entry is not made for logics that are loaded/unloaded in support of the call.v command.

If a logic is likely to be called more than once or twice, it is better to load it using the load.logics command. This avoids having the interpreter continually load and unload the same logic over and over.

Example

//typical error handler
if (error_code > 0) {
  call(98);
}

Technical Information

Required interpreter version Available in all AGI versions
Bytecode value 22 (0x16 hex)

See also

Sources