aboutsummaryrefslogtreecommitdiff
path: root/engines/sky
AgeCommit message (Collapse)Author
2019-11-17BACKENDS: Remove the Windows CE portCameron Cawley
2019-11-03ENGINES: Change targets to have an 'engine ID'Bastien Bouclet
The engine ID identifies which engine should be used to launch the target. Also remove the 'single ID' system. Different games from engines that used that system now have different game IDs. Also-By: Matthew Hoops <clone2727@gmail.com>
2019-11-03ENGINES: Add an engine ID to all the enginesBastien Bouclet
2019-10-20SKY: Fix Missing Default Switch CasesD G Turner
These are flagged by GCC if -Wswitch-default is enabled.
2019-04-15WINCE: Fix compilationCameron Cawley
2019-02-16SKY: Add defines for delay();Lothar Serra Mari
2019-02-16SKY: Decrease cursor redraw delay in menuLothar Serra Mari
2018-12-10ENGINES: Normalize the getName() result of metaenginesBastien Bouclet
Also-By: Matthew Hoops <clone2727@gmail.com>
2018-07-03SKY: Show full 320x200px in intro where possibleTorbjörn Andersson
This commit adds a workaround to unlock existing fullscreen images in the intro of Beneath a Steel Sky. The original engine clips the whole intro to 320x192 (the common game format) even though some images exist as 320x200 in the game data files. This workaround whitelists all images which actually are 320x200px and displays them as must have originally been intended. Fixes Trac#7559.
2018-05-10ENGINES: Remove usage of C++11 extended initializer listsBastien Bouclet
2018-05-10ENGINES: Merge GameDescriptor and DetectedGameBastien Bouclet
2018-05-10ENGINES: Set the GameDescriptor decription in the constructorBastien Bouclet
2018-05-10ENGINES: Change MetaEngine::listSupportedGames to return plain game descriptorsBastien Bouclet
2018-05-10ENGINES: Change MetaEngine::findGame to return a plain game descriptorBastien Bouclet
2018-05-10ENGINES: Add unknown game variants to the game detector resultsBastien Bouclet
2018-04-29ENGINES: Show the unknown Game dialog only when the detector is launched by ↵Lothar Serra Mari
the Add Game feature
2017-12-08SKY: Fix setSub incorrectly falling through to subsequent casesColin Snover
2017-12-08SKY: Fix unaligned pointer dereferencesColin Snover
Dereferencing an unaligned pointer will cause a memory fault on at least older ARM and SPARC architectures, and is warned about starting in Clang 4.
2017-11-10SKY: Fix use of deallocated stack memoryColin Snover
FSNode::getName returns a String object, not a reference, so the pointer from c_str is valid only until the end of the statement.
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-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.
2016-12-17Merge pull request #866 from BenCastricum/editingEugene Sandulenko
ALL: Unify messages concerning engine data files
2016-12-11Fixed collision detection, now it actually corresponds with the originalRobert Göffringmann
asm code. Certain width attributes of the two objects being checked were flipped. I guess this may render a couple of hacky workarounds not necessary anymore.
2016-12-08ALL: Leave out instructions for engine data issuesBen Castricum
2016-12-06ALL: Change instructions for engine data file issuesBen Castricum
The engine data files should be included in the package, so downloading may not be the best suggestion. Instead refer to the README.
2016-12-05ALL: Unify 'missing engine data' messageBen Castricum
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-08-24ALL: Make simpleSaveNames() a MetaEngineFeatureAlexander Tkachev
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-24ALL: Add MetaEngine::simpleSaveNames()Alexander Tkachev
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-07-21Modified compact implementation to work around buglavosspawn
https://sourceforge.net/p/scummvm/bugs/2687/ when playing Beneath a Steel Sky with our (slightly broken) sky.cpt
2016-07-01SKY: change "savegame" into "saved game"Ben Castricum
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-05-14SKY: Add safety checkEugene Sandulenko
2016-05-12SKY: Safer string manipulationEugene Sandulenko
2016-04-18SKY: Two more adjustments to Russian BASSEugene Sandulenko
2016-04-17SKY: Proper support for Russian BASSEugene Sandulenko
2016-04-16SKY: Added localized quit message for Russian translationEugene Sandulenko
2016-04-14JANITORIAL: Reduce audio header dependenciesOri Avtalion
2016-03-08ENGINES: Make variable names of PlainGameDescriptor conform to our guidelines.Johannes Schickel
gameid -> gameId
2016-02-25SKY: Let listSaves return list sorted on slot numbers.Johannes Schickel
2016-01-26SKY: Only request actual save slots in listSaves.Johannes Schickel
2015-07-07AUDIO: Remove all AudioStream access to OPLMatthew Hoops
2015-07-07SKY: Implement original music volume handlingWalter van Niftrik
2015-07-07SKY: 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
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-22SKY: Improve parameter validation in debug console.D G Turner
This fixes the issues reported in Feature Request #218 - "DEBUGGER: Add parameter validation".
2014-02-18SKY: Make GPL headers consistent in themselves.Johannes Schickel