aboutsummaryrefslogtreecommitdiff
path: root/engines/queen
AgeCommit message (Collapse)Author
2019-12-08QUEEN: fix bellboy dialogue - bug #11272BLooperZ
2019-11-19GRAPHICS: Add interface for horizontal shakesluicebox
2019-11-15QUEEN: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-11-03ENGINES: Stop using 'single id'Bastien Bouclet
2019-11-03ENGINES: Add an engine ID to all the enginesBastien Bouclet
2019-09-22QUEEN: Prevent hang when closing core during dialogCameron Cawley
Co-authored-by: jdgleaver <jdgleaver@users.noreply.github.com>
2019-09-22QUEEN: Disable load/save until game is properly initialisedCameron Cawley
Co-authored-by: jdgleaver <jdgleaver@users.noreply.github.com>
2019-07-30QUEEN: Skip talk on right clickNiv Baehr
2019-07-11QUEEN: Remove a bad detection entryaviloria
2019-05-07QUEEN: Fix GCC Compiler WarningsD G Turner
These are further warnings of the use of memset to clear a non-trivial structure / class. Since it is trivial to add a default constructor to these to initialise them instead, the memset calls can be removed.
2018-12-10ENGINES: Normalize the getName() result of metaenginesBastien Bouclet
Also-By: Matthew Hoops <clone2727@gmail.com>
2018-07-05QUEEN: Added detection for Russian interview demoEugene Sandulenko
2018-07-03QUEEN: Added detection for Russian versionEugene Sandulenko
2018-05-28Merge pull request #1187 from bgK/detection-refactor-unknownBastien Bouclet
ENGINES: Return unknown game variants with the list of detected games
2018-05-22QUEEN: Add detection entry for Italian GoG.com releaselotharsm
2018-05-22QUEEN: Add detection entry for French GoG.com releaselotharsm
2018-05-22QUEEN: Add detection entry for German GoG.com releaselotharsm
2018-05-10ENGINES: Add unknown game variants to the game detector resultsBastien Bouclet
2018-05-05ALL: Use CLIP to clip volumesAdrian Frühwirth
2017-10-07ENGINES: Remove default1x scaler flagColin Snover
This flag is removed for a few reasons: * Engines universally set this flag to true for widths > 320, which made it redundant everywhere; * This flag functioned primarily as a "force 1x scaler" flag, since its behaviour was almost completely undocumented and users would need to figure out that they'd need an explicit non-default scaler set to get a scaler to operate at widths > 320; * (Most importantly) engines should not be in the business of deciding how the backend may choose to render its virtual screen. The choice of rendering behaviour belongs to the user, and the backend, in that order. A nearby future commit restores the default1x scaler behaviour in the SDL backend code for the moment, but in the future it is my hope that there will be a better configuration UI to allow users to specify how they want scaling to work for high resolutions.
2017-08-06QUEEN: Silence GCC 7 warnings about potential buffer overflowTorbjörn Andersson
Use snprintf() instead of sprintf() to limit how much is written to the buffer. Note that there are other places where it looks like it could overflow, but they did not trigger warnings and I'm guessing that it doesn't overflow in reality.
2017-08-06JANITORIAL: Silence more GCC 7 warningsTorbjörn Andersson
All these fall through were marked as deliberate, so again I've only changed the comment to silence GCC.
2017-07-30COMMON: Migrate Various Endian Functions to Common from Engine Code.D G Turner
Thanks to N.E.C <beholdnec@gmail.com> for this.
2016-12-11QUEEN: Improved Russian fontsEugene Sandulenko
2016-05-17ALL: Change main engine header guard defines to <directory>_<engine>_HEugene Sandulenko
Recently we started to use this as new semantics, although in the past we used simly <engine>_H. Now these guard defines are consistent with rest of the files which are used in the engines.
2016-04-14JANITORIAL: Reduce audio header dependenciesOri Avtalion
2016-03-28QUEEN: Added some md5s. Bug #6946Eugene Sandulenko
2016-03-08ENGINES: Make variable names of ADGameDescription conform to our guidelines.Johannes Schickel
gameid -> gameId guioptions -> guiOptions
2016-03-08ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines.Johannes Schickel
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions
2016-02-25QUEEN: Let listSaves return list sorted on slot numbers.Johannes Schickel
2016-02-20QUEEN: Added detection for Russian FloppyEugene Sandulenko
2016-01-26QUEEN: Only request actual save slots in listSaves.Johannes Schickel
2015-07-07AUDIO: Remove all AudioStream access to OPLMatthew Hoops
2015-07-07QUEEN: Implement original music volume handlingWalter van Niftrik
2015-07-07QUEEN: Use the built-in OPL timerMatthew Hoops
2015-07-07AUDIO: Remove the sample rate configuration from the OPL codeMatthew Hoops
2015-07-07AUDIO: Remove the legacy OPL APIMatthew Hoops
2015-05-12QUEEN: Immediately stop actor movement when the game is exitingFilippos Karapetis
This allows the engine to quit immediately while actors are moving, e.g. while Joe is walking towards Lola's bedroom
2014-10-27QUEEN: Allow the engine to quit while dialog options are shownFilippos Karapetis
2014-10-27QUEEN: Fix bug #6700 - "FOTAQ: Weird Response Glitches"Filippos Karapetis
Pending mouse clicks and keypresses are now cleared before and after the game options screen or dialog options are shown
2014-10-04QUEEN: Update list of files that contain translatable stringsThierry Crozat
2014-05-27ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd.Johannes Schickel
2014-05-27ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf.Johannes Schickel
2014-04-22QUEEN: Improve parameter validation in debug console.D G Turner
This fixes the issues reported in Feature Request #218 - "DEBUGGER: Add parameter validation".
2014-02-28IMAGE: Move all ImageDecoders to image/Matthew Hoops
2014-02-18QUEEN: Make GPL headers consistent in themselves.Johannes Schickel
2014-02-16QUEEN: Silent some CppCheck warnings by reducing some variable scopesStrangerke
2014-02-15QUEEN: Fix previous commitStrangerke
2014-02-15QUEEN: Add detection of French versions reported in bug #6534Strangerke
2014-02-10Merge pull request #407 from digitall/advancedDetector_queenDavid Turner
Migration of Queen Engine to Advanced Detector