Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-10-07 | ENGINES: Remove default1x scaler flag | Colin 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-06 | JANITORIAL: Silence more GCC 7 warnings | Torbjörn Andersson | |
There were all flagged as intentional fall throughs. I simply changed the comments to something GCC would recognize. | |||
2017-07-30 | fix music in "Draci Historie" (use MIDI channel 16) | kmar | |
2016-07-28 | DRACI: Remove generic comment | Eugene Sandulenko | |
2016-05-17 | ALL: Change main engine header guard defines to <directory>_<engine>_H | Eugene 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-14 | JANITORIAL: Reduce audio header dependencies | Ori Avtalion | |
2016-03-08 | ENGINES: Make variable names of AdvancedMetaEngine conform to our guidelines. | Johannes Schickel | |
_singleid -> _singleId _gameids -> _gameIds _guioptions -> _guiOptions | |||
2016-02-25 | DRACI: Let listSaves return list sorted on slot numbers. | Johannes Schickel | |
2016-01-26 | DRACI: Only request actual save slots in listSaves. | Johannes Schickel | |
2014-05-25 | DRACI: Initialize a variable, some rework on the initialization of pointers ↵ | Strangerke | |
and booleans | |||
2014-05-20 | DRACI: Add missing _isPositionLoaded initialization. | D G Turner | |
Fixes CID 1003405. | |||
2014-05-03 | DRACI: Silence warning | Matthew Hoops | |
2014-04-28 | DRACI: Inventory opening after finished callback. | lukaslw | |
2014-04-28 | DRACI: Opening inventory during movements and actions. | lukaslw | |
2014-03-11 | DRACI: Hero postion in first new room after loading. | lukaslw | |
2014-03-08 | DRACI: Fading out improvements. | lukaslw | |
2014-03-08 | DRACI: Saving improvements (item in hand and hero position). | lukaslw | |
2014-02-18 | DRACI: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-16 | DRACI: Janitorial - Remove trailing spaces | Strangerke | |
2013-11-26 | Merge pull request #375 from digitall/engineAutoPlug | Johannes Schickel | |
RFC: Pluggable Engines #2 (No Python, just evolution of current configure shell and make code) | |||
2013-11-24 | DRACI: Rework formatting of gplCommands | Strangerke | |
2013-11-24 | DRACI: Janitorial - Fix spacing errors | Strangerke | |
2013-11-24 | BUILD: Remove need for engine.mk in each engine directory. | D G Turner | |
Each engine now only has to provide a single configure.engine file adding the engine into the configure script, which then produces the required other files automatically. | |||
2013-11-24 | BUILD: Remove need for engine-plugin.h in engines. | D G Turner | |
This is now generated automatically by the configure script from the engine directory names. | |||
2013-11-24 | BUILD: Split engines/plugins_table header down to a file per engine. | D G Turner | |
This is the third and final commit enabling fully pluggable engines. Now providing an engine folder contains a configure.engine, engine.mk and engine-plugin.h file, it will be picked up automatically by the configure script. | |||
2013-11-24 | BUILD: Split engines.mk down to a single file per engine. | D G Turner | |
This is the second part of allowing engines to be added dynamically. Each folder in engines/ which must contain a file named "engine.mk" containing the make definitions for that engine. | |||
2013-11-24 | BUILD: Split configure.engines down to a single file per engine. | D G Turner | |
This is the first part of allowing engines to be added dynamically. They are placed into a folder in engines/ which must contain a file named "configure.engine" to add the engine, which is pulled into the top level configure script automatically. | |||
2013-10-18 | DRACI: Initialized class variables. CID 1003405 | Eugene Sandulenko | |
2013-10-18 | DRACI: Fix negative array index read. CID 1003548 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix potential sign extention. CID 1003514 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix potential sign extention. CID 1003513 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix uninitialized variabled. CID 1003404 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix uninitalized variables. CID 1003406 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix uninitalized variables. CID 1003405 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix potential negative array index read. CID 1003548 | Eugene Sandulenko | |
2013-10-17 | DRACI: Fix potential division by zero. CID 1003841 | Eugene Sandulenko | |
2013-08-03 | DRACI: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-05-02 | COMMON: Change kPlatformPC to kPlatformDOS | Matthew Hoops | |
"PC" was very ambiguous and now it matches what we show in the GUI. This also corrects sword2's platform to Windows. | |||
2013-04-18 | ENGINES: Silence clang warning about unused private member _vm | Max Horn | |
This affects the Console / debugger classes of multiple engines. An alternative solution would have been to remove the unused _vm member vars. However, it seems likely that in the future, the _vm member could be useful for methods added to the console. So instead, we add a simple assert(_vm) to silence the clang warning. | |||
2012-09-26 | JANITORIAL: Remove trailing whitespaces. | Johannes Schickel | |
Powered by: git ls-files "*.cpp" "*.h" "*.m" "*.mm" | xargs sed -i -e 's/[ \t]*$//' | |||
2012-07-03 | DRACI: Slight cleanup in querySaveMetaInfos. | Johannes Schickel | |
2012-02-15 | JANITORIAL: Fix whitespace in pointer template arg | Tarek Soliman | |
2012-01-15 | DRACI: Move readByte() and readUint32LE() out of assert() | Torbjörn Andersson | |
2011-12-08 | DRACI: Replace usage of 'goto'. | D G Turner | |
2011-11-16 | LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE) | Strangerke | |
2011-11-16 | DRACI: Update comment regarding SharedPtr/ScopedPtr. | Johannes Schickel | |
2011-11-02 | DRACI: Fix warning | Eugene Sandulenko | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-10-01 | COMMON: Fix multiple engines asserting in querySaveMetaInfos for empty save ↵ | Paul Gilbert | |
slots | |||
2011-09-08 | DRACI: Made some static data const. | Johannes Schickel | |