Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-05-27 | ALL: Rename Debugger::DCmd_Register to Debugger::registerCmd. | Johannes Schickel | |
2014-05-27 | ALL: Rename Debugger::DebugPrintf to Debugger::debugPrintf. | Johannes Schickel | |
2014-02-28 | IMAGE: Move all ImageDecoders to image/ | Matthew Hoops | |
2014-02-18 | HUGO: Make GPL headers consistent in themselves. | Johannes Schickel | |
2014-02-17 | HUGO: Indent REGISTER_PLUGIN_* for consistency. | Johannes Schickel | |
2014-02-09 | HUGO: Remove a useless variable assignation | Strangerke | |
2014-02-09 | HUGO: Reduce the scope of some variables | 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-11-01 | HUFO: Fix CID 1002880, 1002881. Use nullptr where possible instead of 0 | Strangerke | |
2013-10-31 | HUGO: Fix CID 1003560, 1002882 | Strangerke | |
2013-10-31 | HUGO: Fix CID 1003199-1003200, better fix of CID 1003197-1003198 | Strangerke | |
2013-10-31 | HUGO: Fix CID 1063173, 1002888, 1002886 | Strangerke | |
2013-08-03 | HUGO: Do not set Surface::pixels directly anymore. | Johannes Schickel | |
2013-08-03 | HUGO: Take advantage of Surface::getPixels. | Johannes Schickel | |
2013-08-03 | HUGO: Prefer getBasePtr over direct Surface::pixels access. | Johannes Schickel | |
2013-07-14 | JANITORIAL: Remove trailing whitespace | Sven Hesse | |
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-26 | HUGO: Fix some uninitialized variables. CID 1002887 | Strangerke | |
2013-04-21 | HUGO: Add missing initializations in intro constructors. CID 1002884 and 1002885 | Strangerke | |
2013-04-19 | HUGO: Initialize variables in Hugo engine constructor. CID 1002886 | Strangerke | |
2013-04-17 | HUGO: Fix Uninitialized scalar variables | Strangerke | |
2012-12-13 | COMMON: Add wrapper for isprint. | Johannes Schickel | |
This is done in the spirit of 658080deeda79d20ea40643569fbcb072573e7cf. | |||
2012-09-14 | HUGO: Use surface width instead of its pitch when copying to raw memory blobs | Filippos Karapetis | |
This is according to wjp's suggestion - the pitch didn't make sense there | |||
2012-09-13 | HUGO: Switch to the common PCX decoder | Filippos Karapetis | |
2012-07-03 | HUGO: Slight cleanup in querySaveMetaInfos. | Johannes Schickel | |
2012-06-18 | HUGO: Remove F9 key handling | Strangerke | |
2012-06-18 | HUGO: Missing file in previous commit | Strangerke | |
2012-06-18 | HUGO: Remove dead code | Strangerke | |
2012-06-13 | HUGO: Rename pointers | Strangerke | |
2012-06-13 | HUGO: Rename structs and enums | Strangerke | |
2012-06-13 | HUGO: More renaming | Strangerke | |
2012-06-13 | HUGO: Use Common::Point in pathfinding | Strangerke | |
2012-06-13 | HUGO: Some more renaming | Strangerke | |
2012-06-13 | HUGO: Some more renaming | Strangerke | |
2012-06-13 | HUGO: Apply coding convention (in progress) | Strangerke | |
2012-06-10 | GUI: Add helper to SaveLoadChooser, which uses the currently active target. | Johannes Schickel | |
This reduces the code duplication in all client code, which formerly duplicated the querying of the plugin, game id etc. and now simply calls the newly added method runModalWithCurrentTarget() on a SaveLoadChooser object. | |||
2012-06-10 | GUI: Get rid of SaveLoadChooser::setSaveMode. | Johannes Schickel | |
We already pass the title and process button name to the constructor of SaveLoadChooser and then do not offer any way of changing it, thus changing the edit mode of the chooser is kind of pointless and was never actually used. Instead we pass the mode on SaveLoadChooser construction now. | |||
2012-03-20 | GRAPHICS: Rewrite ImageDecoder to have an improved API | Matthew Hoops | |
The new bitmap decoder class is based off the Mohawk one, and now has 8bpp decoding capability. | |||
2012-02-21 | Merge pull request #182 from fingolfin/forbid-ctype | Willem Jan Palenstijn | |
ALL: Avoid using is* macros from ctype.h | |||
2012-02-20 | COMMON: Move isFoo functions to namespace Common, add doxygen comments | Max Horn | |
2012-02-15 | JANITORIAL: Fix missing whitespace in pointer cast | Tarek Soliman | |
find -name '*.h' -or -name '*.cpp' | xargs sed -r -i 's@\(([A-Za-z0-9]+)\*\)@(\1 *)@g' This seems to have caught some params as well which is not undesirable IMO. It also caught some strings containing this which is undesirable so I excluded them manually. (engines/sci/engine/kernel_tables.h) | |||
2012-02-15 | ALL: Avoid using is* macros from ctype.h | Max Horn | |
On some systems, passing signed chars to macros like isspace() etc. lead to a runtime error. Hence, mark these macros as forbidden by default, and introduce otherwise equivalent alternatives for them. | |||
2012-02-10 | JANITORIAL: Fix template definition whitespace | Tarek Soliman | |
2012-02-02 | HUGO: Fix keyHandler (noticed by Strangerke). | Alyssa Milburn | |
2011-12-12 | HUGO: Fix warning about hidden pause() method from parent class | Max Horn | |
2011-11-30 | HUGO: Remove obsolete todo | Strangerke | |