Difference between revisions of "AGIWiki/Variable"

From ScummVM :: Wiki
Jump to navigation Jump to search
m
Line 10: Line 10:
* [[AGIWiki/Defines|Defines]]
* [[AGIWiki/Defines|Defines]]
* [[AGIWiki/Mathematical commands|Mathematical commands]]
* [[AGIWiki/Mathematical commands|Mathematical commands]]
* How to use the [[AGIWiki/Inventory-items|inventory-items]] as variables.
* How to use the [[AGIWiki/Inventory items|inventory items]] as variables.


== Sources ==
== Sources ==

Revision as of 00:38, 23 February 2013

AGIWiki


A variable, also known as a var, can contain an integer value from 0 to 255, thus being the AGI equivalent of a byte (or unsigned char in C and C++). Variables are named by combining the prefix v with the number of the variable. There are 256 variables available in AGI, v0 to v255. The variables v0 to v26 have special meaning to the interpreter. You should not attempt to use these 27 variables for your own game data.

It is both possible and recommended to give your variables more meaningful names than a simple letter-number combination. This is possible using defines. The defines.txt file from the AGI Studio Template Game gives define names for the 27 special variables.

See also

Sources

Data types