Commit Graph
13 Commits
Author SHA1 Message Date
Bastien Bouclet 9a4c0ae281 ENGINES: Normalize the getName() result of metaengines
Also-By: Matthew Hoops <clone2727@gmail.com>
2018-12-10 06:47:27 +01:00
Adrian Frühwirth 00e59a3122 ALL: Load savegame thumbnail only when necessary
This commit introduces the following changes:

1. Graphics::loadThumbnail()

   Now returns a boolean and takes a new argument skipThumbnail which
   defaults to false. In case of true, loadThumbnail() reads past the
   thumbnail data in the input stream instead of actually loading the
   thumbnail. This simplifies savegame handling where, up until now,
   many engines always read the whole savegame metadata (including
   the thumbnail) and then threw away the thumbnail when not needed
   (which is in almost all cases, the most common exception being
   MetaEngine::querySaveMetaInfos() which is responsible for loading
   savegame metadata for displaying it in the GUI launcher.

2. readSavegameHeader()

   Engines which already implement such a method (name varies) now take
   a new argument skipThumbnail (default: true) which is passed
   through to loadThumbnail(). This means that the default case for
   readSavegameHeader() is now _not_ loading the thumbnail from a
   savegame and just reading past it. In those cases, e.g.
   querySaveMetaInfos(), where we actually are interested in loading
   the thumbnail readSavegameHeader() needs to explicitely be called
   with skipThumbnail == false.

   Engines whose readSavegameHeader() (name varies) already takes an
   argument loadThumbnail have been adapted to have a similar
   prototype and semantics.
   I.e. readSaveHeader(in, loadThumbnail, header) now is
   readSaveHeader(in, header, skipThumbnail).

3. Error handling

   Engines which previously did not check the return value of
   readSavegameHeader() (name varies) now do so ensuring that possibly
   broken savegames (be it a broken thumbnail or something else) don't
   make it into the GUI launcher list in the first place.
2018-04-07 09:26:20 +02:00
Alexander Tkachev b665fc933d ALL: Make simpleSaveNames() a MetaEngineFeature
Added it into hasFeature() of all engines which returned `true` in
simpleSaveNames() before.

As mentioned in #788, SCI is not always using simple names, so it
doesn't have such feature now.
2016-08-24 16:07:55 +06:00
Alexander Tkachev ab1d160ec8 ALL: Add MetaEngine::simpleSaveNames()
Engines with "simple" savenames would support "Run in background" in
save/load dialog and gradual save slots unlocking. Other engines
save/load feature would be locked until save sync is over.
2016-08-24 16:07:55 +06:00
Hubert Maier 0413b350f1 Fix Voyeur copyright sign 2016-05-29 15:15:26 +03:00
Johannes Schickel 9eed3e15fb VOYEUR: Let listSaves return list sorted on slot numbers. 2016-02-25 21:39:45 +01:00
Johannes Schickel 6b7d0554a4 VOYEUR: Only request actual save slots in listSaves. 2016-01-26 16:35:30 +01:00
Johannes Schickel 36ac801a4d VOYEUR: Make GPL headers consistent in themselves. 2014-02-18 02:43:50 +01:00
Strangerke 4367ade8c7 VOYEUR: Fix maximum number of savegames 2014-02-17 21:29:15 +01:00
Paul Gilbert fe0376dbb0 VOYEUR: Indent register plugin lines to match standard practice 2014-02-16 23:43:15 -05:00
Paul Gilbert 0c1a0a28c2 VOYEUR: Re-enabled and completed implementing title sequence 2014-02-03 22:45:52 -05:00
Paul Gilbert dfe3d8b4ce VOYEUR: Preliminary savegame functionality 2014-01-08 23:31:34 -05:00
Paul Gilbert db519373c1 VOYEUR: Added engine skeleton 2013-05-18 12:40:43 +10:00