1
0
Fork 0

(svn r24991) -Doc: Clarify comments regarding settings macros.

release/1.3
matthijs 2013-02-14 11:06:01 +00:00
parent b9b2b019c9
commit 97decad061
1 changed files with 17 additions and 7 deletions

View File

@ -20,14 +20,24 @@ static size_t ConvertLandscape(const char *value);
/** /**
* Settings-macro usage: * Settings-macro usage:
* The list might look daunting at first, but is in general easy to understand. * The list might look daunting at first, but is in general easy to understand.
* We have two types of list: * The macros can be grouped depending on where the config variable is
* stored:
* 1. SDTG_something * 1. SDTG_something
* 2. SDT_something * These are for global variables, so this is the one you will use
* The 'G' stands for global, so this is the one you will use for a * for a #SettingDescGlobVarList section. Here 'var' refers to a
* SettingDescGlobVarList section meaning global variables. The other uses a * global variable.
* Base/Offset and runtime variable selection mechanism, known from the saveload * 2. SDTC_something
* convention (it also has global so it should not be hard). * These are for client-only variables. Here the 'var' refers to an
* Now there are a lot of types. Easy ones are: * entry inside _settings_client.
* 3. SDT_something
* Thse are for members in the struct described by the current
* #SettingDesc list / .ini file. Here, 'base' specifies type of the
* struct while 'var' points out the member of the struct (the actual
* struct to store it in is implicitely defined by the #SettingDesc
* list / .ini file preamble the entry is in).
*
* The something part defines the type of variable to store. There are a
* lot of types. Easy ones are:
* - VAR: any number type, 'type' field specifies what number. eg int8 or uint32 * - VAR: any number type, 'type' field specifies what number. eg int8 or uint32
* - BOOL: a boolean number type * - BOOL: a boolean number type
* - STR: a string or character. 'type' field specifies what string. Normal, string, or quoted * - STR: a string or character. 'type' field specifies what string. Normal, string, or quoted