Difference between revisions of "Advanced Engine Features"

From ScummVM :: Wiki
Jump to navigation Jump to search
m (→‎RTL ("Return to Launcher") support: Engine::go() was replaced by run() a *long* time ago...)
(→‎Loading/Saving during run time: Update saveGameState prototype. (Was changed with 477d6233c3672d9a60cceea3570bc775df3d9253))
Line 206: Line 206:
<syntax type="C++"> virtual Common::Error loadGameState(int slot);
<syntax type="C++"> virtual Common::Error loadGameState(int slot);
virtual bool canLoadGameStateCurrently();
virtual bool canLoadGameStateCurrently();
virtual Common::Error saveGameState(int slot, const char *desc);
virtual Common::Error saveGameState(int slot, const Common::String &desc);
virtual bool canSaveGameStateCurrently();
virtual bool canSaveGameStateCurrently();



Revision as of 00:38, 21 July 2012

In the following, some of the more advanced features a ScummVM Engine may implement are described. We describe what advantage each feature gives to the engine author respectively to engine users, and sketch how to implement support for it. Features are roughly grouped and sorted by mutual dependency.

Enhanced user interaction

Improved pause support

What is this about?
Sometimes ScummVM needs to pause a currently running engine, for example, to show the GMM ("Global Main Menu"), or maybe on a cellphone to switch it to the background during an incoming call. A simple way for that is not return from OSystem::pollEvent() until the condition ends. But that is problematic because your internal timers, as well as audio, probably keep running (a port can work around this to an extent, but not always perfectly).

Therefore, we added an Engine API that allows pausing and resuming the currently running engine.

How to implement it
You have to overload the Engine::pauseEngineIntern() method. The default method does exactly one thing: It invokes Mixer::pauseAll() to pause/resume the digital audio mixer. But if your engine is e.g. using MIDI, then you might want to pause/resume that as well. You also might wish to record the time the pause started, to be able to adjust any internal timers once the pause ends.

That's all you need to implement, but if your engine needs to keep track of a pause state anyway, you can also use the public API built atop this internal function. It supports recursive pausing (if the engine is paused 5 times, it has to be unpaused 5 times before actually resuming) for free.

Relevant Engine API <syntax type="C++"> virtual void pauseEngineIntern(bool pause); void pauseEngine(bool pause); bool isPaused() const; </syntax>

Already implemented by: AGOS, Draci, Gob, Kyra, Lure, Mohawk, Parallaction, SAGA, SCI, SCUMM, Sword2, Toon

Not implemented by: AGI, Cine, CruisE, Drascula, Groovie, Hugo, Lastexpress, M4, MADE, Queen, Sky, Sword1, Sword25, Tinsel, Touche, Tucker

Support not necessary: TeenAgent

RTL ("Return to Launcher") support

What is this about?
This feature allows the user to return from the current game back to the Launcher, instead of having to first quit ScummVM and then restart it (which on some ScummVM ports amounts to having to reboot).

How to implement it
You can implement this by checking for and honoring the EVENT_RTL event. A much easier way, which also gives you some other advantages (e.g. this also covers EVENT_QUIT), is to regularly poll the return value of Engine::shouldQuit(). If it returns true, you should break out from your main game loop and your Engine::run() method should return to the caller.

Relevant Engine API <syntax type="C++"> void quitGame(); bool shouldQuit() const;

kSupportsRTL feature flag</syntax>

Already implemented by: AGI, AGOS, Cine, CruisE, Draci, Drascula, Gob, Groovie, Hugo, Kyra, Lastexpress, Lure, MADE, Mohawk, Parallaction, Queen, SAGA, SCI, SCUMM, Sky, Sword1, Sword2, Sword25, TeenAgent, Toon, Touche, Tucker

Not implemented by: M4, Tinsel

Global options dialog support

What is this about?
The global options dialog is reachable from the GMM and allows the user to modify various settings; settings which might not otherwise be editable while a game is running (depending on the engine). Right now, it only shows sound and subtitle settings, but more settings will be added in the future.

How to implement it
This comes for free with the GMM (see below). But depending on how your engine works, you may have to resync your internal state with the sound and subtitle settings in the config manager. For this, implement the syncSoundSettings() method.

Relevant Engine API <syntax type="C++"> virtual void syncSoundSettings();</syntax>

Already implemented by: AGOS, CruisE, Draci, Gob, Groovie, Hugo, Kyra, Lure, MADE, Queen, SAGA, SCI, SCUMM, Sword1, Sword2, Touche, Tucker

Not implemented by: Cine, Drascula, Lastexpress, M4, Mohawk, Parallaction, Sky, Sword25

Support not necessary: AGI, TeenAgent, Tinsel, Toon

GMM ("Global Main Menu") support

What is this about?
This is a special dialog built using the ScummVM native GUI, which can be fired up in any Engine ScummVM supports, at virtually any time (to be precise, whenever the engine is polling for events). Right now, the trigger is Ctrl F5 globally.

The idea is to give the user a uniform way to access certain functionality everywhere: In particular, access to a small global options dialog; the ability to quit and/or return to the launcher; the about dialog and version information; and to load/save the gamestate.

How to implement it
You do not really have to do anything for the GMM to show up in your engine. But for an optimal user experience, you should implement several other features, including pause support, RTL support, Global options dialog support, and support for runtime loading/saving.

Relevant Engine API
None.

Already implemented by: not applicable

Not implemented by: not applicable

Enhanced load/save support

In this section, we present various MetaEngine and Engine APIs which greatly experience the user experience with regards to savestates.


Listing savestates via command line or Launcher

What is this about?
With this feature, it is possible to build a list of available save slots for a given game target. This can be used by the user to list all saveslots from the command line, as the following example illustrates: <syntax type="Bash">$ ./scummvm --list-saves=monkey2 Saves for target 'monkey2':

 Slot Description                                           
 ---- ------------------------------------------------------
 0    Autosave 0
 1    Start
 2    Quicksave 2

$</syntax> Furthermore, this is used by the load/save dialogs in the Launcher and the GMM to build the list of savestates they show visually to the user.

How to implement it
You have to implement MetaEngine::listSaves(), which takes a parameter indicating the target for which the list of savestates is requested. From this, you can (using the config manager) determine the path to the game data, if necessary, or just directly compute all available savestates. Details necessarily depend on your Engine, but looking at existing implementations should give you a fairly good idea how to tackle this.

Another requirement is MetaEngine::getMaximumSaveSlot, which returns the maximum save slot number supported by your engine. This is for example used by the GUI to show up empty slots correctly.

It returns a list of SaveStateDescriptor objects, describing each available savestate. As a minimum, it has to contain a human readable description, and a unique save slot number of the savestate (how this is defined is up to your engine -- you need to decide on one numbering scheme you use in all save/load related (Meta)Engine features, though).

Oh, and of course, your MetaEngine::hasFeature() method has to return true for kSupportsListSaves.

Relevant MetaEngine API <syntax type="C++"> virtual SaveStateList listSaves(const char *target) const; virtual int getMaximumSaveSlot() const;

kSupportsListSaves feature flag</syntax>

Already implemented by: AGI, AGOS, Cine, Draci, Groovie, Hugo, Kyra, Lure, Mohawk, Parallaction, Queen, SAGA, SCI, SCUMM, Sky, Sword1, Sword2, Sword25, TeenAgent, Tinsel, Toon, Touche, Tucker

Not implemented by: CruisE, Drascula, Gob, Lastexpress, M4, MADE

Loading savestates via command line or Launcher

What is this about?
With this feature, the user can load specific savestates directly from the command line, via the "-x SLOT" option . It is also the foundation for the "Load" button in the Launcher.

How to implement it
They way this works is quite simple: Each savestate has a unique slot number (as explained in the previous section on listing savestates). This number is passed to the engine during instantiation time in the "save_slot" ConfigMan setting. So, all you have to do is to check during startup of your engine whether that config variable is present, and if it is, use its value to decide which savestate to load. In addition, you should specify the kSupportsLoadingDuringStartup MetaEngine feature flag.

Relevant MetaEngine API <syntax type="C++"> save_slot ConfigMan setting

kSupportsLoadingDuringStartup feature flag</syntax>

Already implemented by: AGI, Cine, Draci, Groovie, Hugo, Kyra, Lure, Mohawk, Parallaction, Queen, SAGA, SCI, SCUMM, Sky, Sword1, Sword2, TeenAgent, Tinsel, Toon, Touche

Not implemented by: AGOS, CruisE, Drascula, Gob, Lastexpress, M4, MADE, Sword25, Tucker

Deleting savestates via the Launcher and GMM

What is this about?
This feature allows the user to delete existing savestates from the Launcher's load dialog, and also from the GMM's load dialog.

How to implement it
First off, your engine must overload Engine::hasFeature() to return true when kSupportsDeleteSave is passed in. Furthermore, it has to implement MetaEngine::removeSaveState(): This should delete the savestate for the specified via SaveFileManager::removeSavefile(). In addition, if your engine keeps an index of all existing saves (something which we strongly discourage, as it makes it more difficult for the user to transfer savestates from one device to another), then you have to remove references to savestate from that index.

Because of the way it is exposed, the user can only use this feature if you also implement listing savestates.

Relevant MetaEngine API <syntax type="C++"> void removeSaveState(const char *target, int slot) const;

kSupportsDeleteSave feature flag</syntax>

Already implemented by: AGI, Cine, Draci, Groovie, Hugo, Kyra, Lure, Mohawk, Parallaction, Queen, SAGA, SCI, SCUMM, Sky, Sword2, TeenAgent, Tinsel, Toon, Touche, Tucker

Not implemented by: AGOS, CruisE, Drascula, Gob, Lastexpress, M4, MADE, Sword1, Sword25

Savestate metadata support

What is this about?
The load dialog provided by the Launcher and the GMM supports displaying a thumbnail of an in-game screenshot of a savestate to the user, as well as some other metadata (currently, besides the thumbnail it can display the date the savestate was created, and how long the user already was playing). For this, it needs to query the MetaEngine for this metadata.

How to implement it
Implemented MetaEngine::querySaveMetaInfos() to return a SaveStateDescriptor similar to the one returned by listSaves(). The main differences are that only a single descriptor is returned, and that this descriptor can be extended by additional attributes. Class SaveStateDescriptor provides several methods for this purpose.

The user can only use this feature if you also implement listing savestates.

Relevant MetaEngine API <syntax type="C++"> virtual SaveStateDescriptor querySaveMetaInfos(const char *target, int slot) const;

kSavesSupportMetaInfo feature flag kSavesSupportThumbnail feature flag kSavesSupportCreationDate feature flag kSavesSupportPlayTime feature flag</syntax>

Already implemented by: AGI, Draci, Hugo, Kyra, SAGA, SCI, SCUMM, TeenAgent, Toon

Not implemented by: AGOS, Cine, CruisE, Drascula, Gob, Groovie, Lastexpress, Lure, Mohawk, M4, MADE, Parallaction, Queen, Sky, Sword1, Sword2, Sword25, Touche, Tinsel, Tucker

Loading/Saving during run time

What is this about?
The GMM optionally can display two buttons "Load" and "Save" which permit the user to load/save gamestates at any time the Engine chooses to allow so. This is in addition to whatever other GUI the engine offers for loading/saving. The main purpose is to provide a uniform way to the user to load/save in all games.

In the future, this could also be used to implement generic auto-saving support; or generic quick-save / quick-load support.

How to implement it
Unlike the other features presented above, this is an ability of your Engine subclass, not of MetaEngine. First thing, you have to advertise the abilities of your engines with the appropriate engine feature flags. You can implement only loading, or only saving, or both.

Next, for each of the two, you have to implement two Engine methods (so up to four). We focus on adding loading support here: For that, first implement Engine::canLoadGameStateCurrently(). This method should only return true if loading a savestate is possible right now. If this is always possible, just always return true. But if loading is not possible at some points, say while a cutscene is playing, make it return false at these times. Next, the Engine::loadGameState() is used to request the loading of a specific saveslot. The GMM will invoke this method with a valid save slot, then hide itself. If there is an immediate error, you can indicate so with its return value (for details, refer to the doxygen comments), in which case the GMM will show an appropriate error dialog. You may delay the actual loading (that's what the SCUMM engine does, for example), but then you have to handle any occurring errors yourself (in particular, show an informative error dialog to the user).

Relevant Engine API <syntax type="C++"> virtual Common::Error loadGameState(int slot); virtual bool canLoadGameStateCurrently(); virtual Common::Error saveGameState(int slot, const Common::String &desc); virtual bool canSaveGameStateCurrently();

kSupportsLoadingDuringRuntime feature flag kSupportsSavingDuringRuntime feature flag</syntax>

Already implemented by: AGI, Cine, Draci, Hugo, Kyra, Mohawk, SAGA, SCI, SCUMM, Sky, Sword1, Tinsel (loading only), TeenAgent, Toon, Touche, Tucker

Not implemented by: AGOS, CruisE, Drascula, Gob, Groovie, Lastexpress, Lure, M4, MADE, Parallaction, Queen, Sword2, Sword25, Touche, Tinsel (saving)

Misc

Enhanced debug/error messages

What is this about?
Providing more detailed error and debug messages to the engine developer, and to people bug testing an engine, respectively wanting to report a bug.

How to implement it
By implementing the Engine::errorString() method, your engine can add extra info whenever ScummVM is about to print an error message triggered by the error() function. This could be used to print out additional data describing the context, such as the ID of the active script when the error occurred, values of special flags, etc. -- anything that might help debug an error.

If your engine implements a debug console (which is very easy to do using just subclass GUI::Debugger, and then implement your custom debugger commands and variables), overload Engine::getDebugger() to return a pointer to it. If you do so, when error() is called, it will open that debug console instead of immediately exiting. This can be useful to perform some additional post-mortem analysis.

Relevant Engine API <syntax type="C++"> virtual void errorString(const char *buf_input, char *buf_output, int buf_output_size); virtual GUI::Debugger *getDebugger();</syntax>

Already implemented by: AGI, AGOS, Cine, CruisE, Draci, Gob, Groovie (implementing both methods), Hugo, Kyra, Lastexpress, Lure, MADE, Mohawk, Parallaction, Queen, SAGA, SCI, SCUMM (implementing both methods), Sky, Sword1, Sword2, Sword25, Toon, Touche, Tucker

Not implemented by: Drascula, M4, TeenAgent, Tinsel