AGIWiki/Logic syntax

From ScummVM :: Wiki
Jump to navigation Jump to search
AGIWiki


This article describes the logic syntax for the C-like "official" AGI syntax described in the AGI Specs and supported by AGI Studio and WinAGI.

Note: The WinAGI development environment supports an alternate syntax, that is based on Microsoft's Visual Basic language, rather than the C language. At this time, the C-based syntax described in this article is the most widely-supported AGI logic syntax.

Action Commands

Normal action commands are specified by the command name followed by parentheses which contain the arguments, separated by commas. A semicolon is placed after the parentheses. The parentheses are required even if there are no arguments. The arguments given must have the correct prefix for that type of argument as explained later in this document (this is to make sure the programmer does not use a variable, for example, when they think they are using a flag).

<syntax type="C++"> assign.v(v50,0);

program.control(); </syntax>

Multiple commands may be placed on the one line:

<syntax type="C++"> reset(f6); reset(f7); </syntax>

Substitutions for the following action commands are available:

<syntax type="C++"> increment(v30); v30++; decrement(v30); v30--; assignn(v30,4); v30 = 4; assignv(v30,v32); v30 = v32; addn(v30,4); v30 = v30 + 4; or v30 += 4; addv(v30,v32); v30 = v30 + v32; or v30 += v32; subn(v30,4); v30 = v30 - 4; or v30 -= 4; subv(v30,v32); v30 = v30 - v32; or v30 -= v32; mul.n(v30,4); v30 = v30 * 4; or v30 *= 4; mul.v(v30,v32); v30 = v30 * v32; or v30 *= v32; div.n(v30,4); v30 = v30 / 4; or v30 /= 4; div.v(v30,v32); v30 = v30 / v32; or v30 /= v32;

lindirectn(v30,4); *v30 = 4; lindirectv(v30,v32); *v30 = v32; rindirect(v30,v32); v30 = *v32; </syntax>

If structures and test commands

An if structure looks like this:

<syntax type="C++"> if (test commands) {

 action commands

} </syntax>

or like this

<syntax type="C++"> if (test commands) {

 action commands

} else {

 more action commands

} </syntax>

Carriage returns are not necessary:

<syntax type="C++"> if (test commands) { action Commands } else { more action commands } </syntax>


Test commands are coded like action commands except there is no semicolon. They are separated by && or || for AND and OR, respectively:

<syntax type="C++"> if (isset(f5) &&

   greatern(v5,6)) { ......

</syntax>

Again, carriage returns are not necessary within the if statement:

<syntax type="C++"> if (lessn(v5,6) && (greatern(v5,2)) { .......

if (isset(f90) && equalv(v32,v34) &&

   greatern(v34,20)) { .......

</syntax>

A ! placed in front of a command signifies a NOT.

<syntax type="C++"> if (!isset(f7)) {

 ......

</syntax>

Boolean expressions are not necessarily simplified so they must follow the rules set down by the file format. If test commands are to be ORred together, they must be placed in brackets.

<syntax type="C++"> if ((isset(f1) || isset(f2)) {

 ......

if (isset(f1) && (isset(f2) || isset(f3))) {

 ......

if (isset(1) || (isset(2) && isset(3))) { is NOT legal </syntax>

Depending on the compiler, simplification of boolean expressions may be supported, so the above may not apply in all cases (although if these are rules are followed then the logic will work with all compilers).

Substitutions for the following test commands are available:

<syntax type="C++"> equaln(v30,4) v30 == 4 equalv(v30,v32) v30 == v32 greatern(v30,4) v30 4 greaterv(v30,v32) v30 v32 lessn(v30,4) v30 4 lessv(v30,v32) v30 v32 !equaln(v30,4) v30 != 4 !equalv(v30,v32) v30 != v32 !greatern(v30,4) v30 = 4 !greaterv(v30,v32) v30 = v32 !lessn(v30,4) v30 = 4 !lessv(v30,v32) v30 = v32 </syntax>

Also, flags can be tested for by just using the name of the flag:

<syntax type="C++"> if (f6) { .....

if (v7 > 0 && !f6) { ..... </syntax>

which is equivalent to:

<syntax type="C++"> if (isset(f6)) { .....

if (v7 > 0 && !isset(f6)) { ..... </syntax>

Argument types

There are 9 different types of arguments that commands use:

Type Prefix
Number (no prefix)

Variable

v

Flag

f

Message

m

Object

o

Inventory item

i

String

s

Word

w

Controller

c

The said test command uses its own special arguments which will be described later.

Each of these types of arguments is given by the prefix and then a number from 0-255, e.g. v5, f6, m27, o2.

The word type represents words that the player has typed in (as opposed to words that are stored in the WORDS.TOK file). Strings are the temporary string variables stored in memory, not to be confused with messages (that are stored in the logic resources). Controllers are menu items and keys.

Compilers can enforce type checking, so that the programmer must use the correct prefix for an argument so that they know they are using the right type. Decoders should display arguments with the right type.

<syntax type="C++"> move.obj(o4, 80, 120, 2, f66);

if (obj.in.box(o2, 30, 60, 120, 40)) { ..... </syntax>

For a complete list of the commands and their argument types, see Logic commands by name.

Messages and inventory items may be given in either numerical or text format:

<syntax type="C++"> print("He's not here.");

print(m12);

if (has("Jetpack")) { .....

if (has(i9)) { .....

</syntax> Messages can also be split over multiple lines:

<syntax type="C++"> print("This message is split "

     "over multiple lines.");

</syntax>

Quote marks must be used around messages and inventory item names. This is important because some messages or inventory item names may contain parentheses or commas, which could confuse the compiler. This is also the case for the said command which will be described shortly.

<syntax type="C++"> if (has("Buckazoid(s)")) { ..... // no ambiguity here about where

                                  // the argument ends

</syntax>

If quote marks are part of the message or inventory object, a \ should be placed in front of these. To use a \, \\ should be used. \n can also be used for a new line.

The said test command uses different parameters to all the other commands. Where as the others use 8 bit arguments (0-255), said takes 16 bit arguments (0-65535). Also, the number of arguments in a said command can vary. The numbers given in the arguments are the word group numbers from the WORDS.TOK file.

<syntax type="C++"> if (said(4, 80)) { ..... </syntax>

Words can also be given in place of the numbers:

<syntax type="C++"> if (said("look")) { .....

if (said("open","door")) { ..... </syntax>

Quote marks must also be used around the words.

Labels and the goto command

Labels are given like this:

<syntax type="C++"> Label1: </syntax>

The label name can contain letters, numbers, and the characters '_' and '.'. No spaces are allowed.

The Goto command takes on parameter, the name of a label:

<syntax type="C++"> goto(Label1); </syntax>

Comments

There are three ways that comments can be used.

<syntax type="C++"> // - rest of line is ignored

[ - rest of line is ignored

/* Text between these are ignored */ </syntax>

The /*...*/ can be nested:

<syntax type="C++"> /* comment start

 print("Hello");    // won't be run
 /*                 // a new comment start (will be ignored!)
   v32 = 15;        // won't be run
 */                 // uncomments the most inner comment
 print("Hey!");     // won't be run, still inside comments
  • / // uncomments

</syntax>

Note: the fact that these comments can be nested is very different from almost every other language that uses these types of comments, including C, C , and Java.

Defines

See Defines.

Including files

See Includes.

More on messages

In some cases you may want to assign a specific number to a message so you can refer to it in other places. This is done by using the #message command, followed by the number of the message then the message itself:

<syntax type="C++">

  1. message 4 "You can't do that now."

</syntax>

Then you can give the message number as the parameter in commands:

<syntax type="C++"> print(m4); </syntax>

Or embed the message in commands as normal and the number you assigned to it before will be used:

<syntax type="C++"> print("You can't do that now."); </syntax>

#message can be used anywhere in the file, so you do not have to set the message before you use it.

For more details, see Message.

The return command

The return command is just a normal action command (command number 0), with no arguments. This must be the last command in every logic resource.

See also

Sources