WML for Complete Beginners: Chapter 8

From The Battle for Wesnoth Wiki
Revision as of 16:58, 17 March 2015 by Implementor37 (talk | contribs) (Added link to the next chapter of WML_for_Complete_Beginners (Chapter 9))

Chapter 8: Array, and Container Variables

So far we have only discussed scalar variables, i.e. variables that have only one value at any given time. Believe it or not, there are types of variables than can store more than one value simultaneously, or even other variables.

Array Variables

Container Variables

Container variables are variables that contain other variables within themselves. Returning to the metaphor of boxes, let's say you had three small boxes, labeled "Apples", "Oranges", and "Pears", respectively. Instead of having to carry around three smaller boxes, wouldn't it be much easier if we could just put them all in one large box labeled "fruit"? Well, with container variables, you can!

Container variables are not restricted to containing scalar variables, however. They can also store array variables.

WML for Complete Beginners: Chapter 9