Public Member Functions | |
const char * | getName () const override |
Common::Error | createInstance (OSystem *syst, Engine **engine, const Twp::TwpGameDescription *desc) const override |
bool | hasFeature (MetaEngineFeature f) const override |
int | getMaximumSaveSlot () const override |
SaveStateDescriptor | querySaveMetaInfos (const char *target, int slot) const override |
void | registerDefaultSettings (const Common::String &) const override |
Common::AchievementsPlatform | getAchievementsPlatform (const Common::String &target) const override |
const Common::AchievementDescriptionList * | getAchievementDescriptionList () const override |
GUI::OptionsContainerWidget * | buildEngineOptionsWidget (GUI::GuiObject *boss, const Common::String &name, const Common::String &target) const override |
Common::Array< Common::Keymap * > | initKeymaps (const char *target) const override |
void | getSavegameThumbnail (Graphics::Surface &thumb) override |
Public Member Functions inherited from AdvancedMetaEngineBase | |
Common::Error | createInstance (OSystem *syst, Engine **engine, const DetectedGame &gameDescriptor, const void *metaEngineDescriptor) override |
virtual ADDetectedGame | fallbackDetectExtern (uint md5Bytes, const FileMap &allFiles, const Common::FSList &fslist, ADDetectedGameExtraInfo **extra=nullptr) const |
bool | getFilePropertiesExtern (uint md5Bytes, const FileMap &allFiles, MD5Properties md5prop, const Common::Path &fname, FileProperties &fileProps) const |
Public Member Functions inherited from MetaEngine | |
virtual SaveStateList | listSaves (const char *target) const |
SaveStateList | listSaves (const char *target, bool saveMode) const |
virtual int | getAutosaveSlot () const |
virtual bool | removeSaveState (const char *target, int slot) const |
virtual Common::String | getSavegameFile (int saveGameIdx, const char *target=nullptr) const |
Common::String | getSavegameFilePattern (const char *target=nullptr) const |
virtual const Common::AchievementsInfo | getAchievementsInfo (const Common::String &target) const |
void | appendExtendedSave (Common::OutSaveFile *saveFile, uint32 playtime, Common::String desc, bool isAutosave) |
void | appendExtendedSaveToStream (Common::WriteStream *saveFile, uint32 playtime, Common::String desc, bool isAutosave, uint32 offset=0) |
bool | copySaveFileToFreeSlot (const char *target, int slot) |
|
overridevirtual |
Return the name of the engine plugin based on the engineID.
The engineID must match the one from MetaEngine.
Implements AdvancedMetaEngineBase.
|
overridevirtual |
Determine whether the engine supports the specified MetaEngine feature.
Used by e.g. the launcher to determine whether to enable the Load button.
Reimplemented from MetaEngine.
|
overridevirtual |
Return the maximum number of save slots that the engine supports.
The default implementation limits the save slots to zero (0).
Reimplemented from MetaEngine.
|
overridevirtual |
Return meta information from the specified save state.
Depending on the MetaEngineFeatures set, this can include thumbnails, save date and time, play time.
target | Name of a config manager target. |
slot | Slot number of the save state. |
Reimplemented from MetaEngine.
|
overridevirtual |
Register the default values for the settings that the engine uses into the configuration manager.
target | Name of a config manager target. |
Reimplemented from MetaEngine.
|
overridevirtual |
Return the achievements platform to use for the specified target.
target | Name of a config manager target. |
Reimplemented from MetaEngine.
|
overridevirtual |
Return the achievement descriptions.
nullptr
Reimplemented from MetaEngine.
|
overridevirtual |
Return a GUI widget container for configuring the specified target options.
Engines can build custom option dialogs from here.
Engines that don't have an Engine tab in the Edit Game dialog, or that use ExtraGuiOptions in MetaEngineDetection can return nullptr.
boss | The widget or dialog that the returned widget is a child of. |
name | The name that the returned widget must use. |
target | Name of a config manager target. |
Reimplemented from MetaEngine.
|
overridevirtual |
Return the keymap used by the target.
Reimplemented from MetaEngine.
|
overridevirtual |
Convert the current screen contents to a thumbnail. Can be overriden by individual engine meta engines to provide their own thumb, such as hiding any on-screen save dialog so that it won't appear in the thumbnail.
Reimplemented from MetaEngine.