Age | Commit message (Collapse) | Author | |
---|---|---|---|
2012-06-16 | ALL: Let overlay related methods in OSystem take a void * and use a proper ↵ | Johannes Schickel | |
pitch values. This is a first step to get rid of OverlayColor, which is a requirement for proper 4Bpp overlay support. | |||
2011-11-16 | LAUNCHER: Introduce GUIO0() in order to replace GUIO1(GUIO_NONE) | Strangerke | |
2011-10-23 | AD: Switched rest of the engines to new GUIO | Eugene Sandulenko | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-06-30 | ALL: Require DECLARE_SINGLETON to be used in the Common namepsace | Ori Avtalion | |
Silences the clang warning: static data member specialization of '_singleton' must originally be declared in namespace 'Common'; accepted as a C++0x extension [-Wc++0x-extensions] Wrapping "namespace Common {}" around the macro assignment causes clang to complain about a spurious semicolon, and removing the semicolon at the end of the macro causes some editors to misbehave. Changing the requirement of using the macro in one namespace (the global) to another (Common) seems a small price to pay to silence a warning. | |||
2011-06-20 | ALL: Remove trailing whitespaces | Max Horn | |
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//' | |||
2011-06-14 | DETECTOR: Merge ADParams into AdvancedMetaEngine | Max Horn | |
2011-06-10 | TESTBED: Switch to alternate AdvancedMetaEngine, avoid ADParams | Max Horn | |
2011-06-10 | ENGINES: Change incorrect use of 'target' to 'gameid' | Max Horn | |
2011-06-07 | TESTBED: Fix GFXtests::HSVtoRGB() and caller | Julien | |
- update passed values and not local variables when s == 0 - initialize r, g, b values in palette rotation test instead of passing unitialized variables | |||
2011-06-07 | TESTBED: Specialize call to enable() in MidiTestSuite constructor | Julien | |
2011-06-07 | TESTBED: Cleanup boolean use in enable() function for fs and midi tests | Julien | |
2011-06-07 | TESTBED: Update some switch constructs for better control flow handling | Julien | |
2011-06-07 | TESTBED: Rename error variable to err (was hiding error() symbol) | Julien | |
2011-06-07 | TESTBED: Remove dead code, unused arguments and unreferenced symbols | Julien | |
2011-06-07 | TESTBED: Add const modifiers to some parameters/functions | Julien | |
2011-06-04 | COMMON: Rename kFeatureCursorHasPalette -> kFeatureCursorPalette | Max Horn | |
2011-06-03 | TESTBED: Remove another static and a confusing comment | Willem Jan Palenstijn | |
2011-06-03 | TESTBED: Get rid of static local variable | Willem Jan Palenstijn | |
It's not only against our coding guidelines, but also breaks running the mutex test multiple times. It may or may not also be responsible for a MSVC9 build failure reported on IRC. | |||
2011-05-12 | GIT: Clean up: Suppress SVN tags, now useless | strangerke | |
2011-04-28 | JANITORIAL: Reduce header dependencies in shared code | Ori Avtalion | |
Some backends may break as I only compiled SDL | |||
2011-04-18 | COMMON: Rename Error to ErrorCode, introduce new Error class | Max Horn | |
2011-04-14 | ALL: centerd -> centered | Max Horn | |
2011-04-14 | ALL: centre -> center | Max Horn | |
2011-03-23 | AUDIO: Change several fake MidiDrivers to MidiDriver_BASE subclasses | Max Horn | |
Many engines follow the advice in audio/midiparser.h and create a "pseudo-MidiDriver" subclass. But MidiParser really only needs a tiny subset of the MidiDriver capabilities, namely those found in MidiDriver_BASE. So we try to subclass from that whenever possible; this allows us to remove many stub methods, and enables further future simplifications. | |||
2011-03-19 | TESTBED: Changed usage of PI to M_PI (normally defined in math.h) | md5 | |
2011-03-04 | TESTBED: Update rotatePalette() to use an RGB palette | md5 | |
2011-02-20 | TESTBED: Adapt documentation to the palette RGBA->RGB change. | Johannes Schickel | |
2011-02-14 | TESTBED: Adapt to setPalette RGBA->RGB change. | Johannes Schickel | |
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-16 | GUI: Move major widgets to new directory gui/widgets | Max Horn | |
Also renamed the source/header files, now they are more closely aligned to how we rename most other source files svn-id: r54264 | |||
2010-11-16 | COMMON: Simplify DECLARE_SINGLETON macro | Max Horn | |
This makes it possible to write DECLARE_SINGLETON(foo); instead of DECLARE_SINGLETON(foo) without causing a warning about an extra semicolon. The extra semicolon helps some editors at parsing the C++ code. svn-id: r54258 | |||
2010-11-08 | COMMON: Push #include audiocd.h in system.h out to .cpp files | Max Horn | |
svn-id: r54148 | |||
2010-11-08 | BACKENDS: Partial merge of gsoc2010-opengl: Audio CD changes only | Max Horn | |
This commit contains the AudioCDManager changes from the gsoc2010-opengl branch. The other changes in that branch are restricted to the backends directory only (plus configure). The Nintendo DS and Dreamcast ports still need to be ported over to the new Audio CD system, but that should be fairly easy to do. svn-id: r54147 | |||
2010-11-07 | ENGINES: Unify code layout of all ADParams instances | Max Horn | |
svn-id: r54105 | |||
2010-11-01 | COMMON: Rename String::printf() to String::format() | Max Horn | |
This is a first step towards getting rid of all uses of regular printf, fprintf, vprintf, vfprintf, puts, fputs, etc. in our codebase. The name format() reflects the purpose of the function, and parallels String.format() in Java, boost::format, and others. svn-id: r54004 | |||
2010-10-23 | ALL: Fix indention (whitespaces -> tabs) | Max Horn | |
svn-id: r53738 | |||
2010-10-02 | 1. Added ConfigParams Singelton class to eliminate use of configuration ↵ | Neeraj Kumar | |
specific static variables. 2. Modified code to handle the change 3. Updated the previously merged obsolete copy of branch gsoc2010-testbed. svn-id: r52973 | |||
2010-09-18 | TESTBED: Fix warnings | Filippos Karapetis | |
svn-id: r52790 | |||
2010-09-16 | TESTBED: fixed detection | Neeraj Kumar | |
svn-id: r52747 | |||
2010-09-12 | TESTBED: Title capitalization and consistency | Matthew Hoops | |
svn-id: r52686 | |||
2010-09-12 | TESTBED: Fix warnings | Eugene Sandulenko | |
svn-id: r52685 | |||
2010-08-16 | TESTBED: added a README file, some description fixes | Neeraj Kumar | |
svn-id: r52134 | |||
2010-08-16 | TESTBED: disable aspect ratio correction while running scaling tests | Neeraj Kumar | |
svn-id: r52111 | |||
2010-08-14 | TESTBED: modified the Keyboard test Look-up table to include all ↵ | Neeraj Kumar | |
alphanumeric characters svn-id: r52084 | |||
2010-08-14 | TESTBED: formatting fix, deleted spaces/tabs at end of line | Neeraj Kumar | |
svn-id: r52081 | |||
2010-08-14 | TESTBED: some more refinements with handling Quit events in GUI | Neeraj Kumar | |
svn-id: r52078 | |||
2010-08-12 | TESTBED: display appropriate message at begining if game-data files are not ↵ | Neeraj Kumar | |
found svn-id: r52042 |