The Controller, the class each GS should extend.
It creates the GS, makes sure the logic kicks in correctly, and that GetTick() has a valid value.
When starting a new game, or when loading a game, OpenTTD tries to match a script that matches to the specified version as close as possible. It tries (from first to last, stopping as soon as the attempt succeeds)
- load the latest version of the same script that supports loading data from the saved version (the version of saved data must be equal or greater than GSInfo::MinVersionToLoad),
- load the latest version of the same script (ignoring version requirements),
- (for AIs) load a random AI, and finally
- (for AIs) load the dummy AI.
After determining the script to use, starting it is done as follows
- An instance is constructed of the class derived from GSController (class name is retrieved from GSInfo::CreateInstance).
- If there is script data available in the loaded game and if the data is loadable according to GSInfo::MinVersionToLoad, Load is called with the data from the loaded game.
- Finally, Start is called to start execution of the script.
See also https://wiki.openttd.org/en/Development/GS/Save%20and%20Load for more details.
static int GSController::GetVersion |
( |
| ) |
|
|
static |
Get the OpenTTD version of this executable.
The version is formatted with the bits having the following meaning: 24-31 major version + 16. 20-23 minor version. 19 1 if it is a release, 0 if it is not. 0-18 revision number; 0 when the revision is unknown. You have to subtract 16 from the major version to get the correct value.
Prior to OpenTTD 12, the bits have the following meaning: 28-31 major version. 24-27 minor version. 20-23 build. 19 1 if it is a release, 0 if it is not. 0-18 revision number; 0 when the revision is unknown.
- Returns
- The version in newgrf format.
table GSController::Save |
( |
| ) |
|
Save the state of the script.
By implementing this function, you can store some data inside the savegame. The function should return a table with the information you want to store. You can only store:
- integers,
- strings,
- arrays (max. 25 levels deep),
- tables (max. 25 levels deep),
- booleans, and
- nulls.
In particular, instances of classes can't be saved with the exception of GSList.
The function is called as soon as the user saves the game, independently of other activities of the script. The script is not notified of the call. To avoid race-conditions between Save and the other script code, change variables directly after a Sleep, it is very unlikely, to get interrupted at that point in the execution. See also https://wiki.openttd.org/en/Development/GS/Save%20and%20Load for more details.
- Note
- No other information is saved than the table returned by Save. For example all pending events are lost as soon as the game is loaded.
- Returns
- Data of the script that should be stored in the save game.