Difference between revisions of "AGIWiki/call"

From ScummVM :: Wiki
Jump to navigation Jump to search
m
Line 1: Line 1:
__NOTOC__
__NOTOC__
{{AGIWiki}}
{{AGIWiki}}
 
{{AGIWiki/Control Flow Commands}}
The '''call''' command executes a logic script.
The '''call''' command executes a logic script.



Revision as of 21:03, 23 February 2015

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

<syntax type = "C++">

//typical error handler if (error_code > 0) {

 call(98);

}

</syntax>

Technical Information

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

See also

Sources