Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-07-18 | COMMON: Remove USE_BINK checks from header files | Matthew Hoops | |
2011-07-13 | BUILD: Allow for disabling Bink support | Matthew Hoops | |
2011-07-06 | COMMON: Update documentation comment for TaskbarManager slot | Littleboy | |
2011-07-03 | COMMON: Remove unused vector2orientation function | Matthew Hoops | |
2011-07-02 | COMMON: Cleanup BitStream | Matthew Hoops | |
Fix mismatched new[]/free and restored a missing statement | |||
2011-07-03 | COMMON: Fix compilation when USE_HASHMAP_MEMORY_POOL is not defined. | Johannes Schickel | |
2011-07-02 | VIDEO: Add Bink video decoder | Matthew Hoops | |
Based on eos' code which is in turn based on FFmpeg's code | |||
2011-07-02 | COMMON: Add DCT math code | Matthew Hoops | |
Based on eos' code which is based on FFmpeg's code | |||
2011-07-02 | COMMON: Add RDFT math code | Matthew Hoops | |
Based on eos' code which is based on FFmpeg's code | |||
2011-07-02 | COMMON: Add an FFT math handler | Matthew Hoops | |
Based on eos' code which is based on FFmpeg's code | |||
2011-07-02 | COMMON: Add a Huffman bitstream decoder | Matthew Hoops | |
Based on eos' code | |||
2011-07-02 | COMMON: Add some simple math utilities | Matthew Hoops | |
Based on eos' code | |||
2011-07-02 | COMMON: Add a BitStream class | Matthew Hoops | |
Based on eos' BitStream | |||
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-24 | COMMON: Look for translations.dat in Theme path before using SearchMan | Thierry Crozat | |
2011-06-23 | ANALYSIS: Add static casts to is* functions | Littleboy | |
This fixes a potential problem with passing char values that would be sign-extended and yield unexpected results. See http://msdn.microsoft.com/en-us/library/ms245348.aspx | |||
2011-06-23 | COMMON: Add abort() to the list of forbidden symbols | Julien | |
2011-06-22 | COMMON: Improve loading of translations data file | Thierry Crozat | |
Now if the header of the file is not correct it continues to look for a valid file, while before if the first file found was obsolete or corrupted translation was disabled even if a valid file was present in the search path. | |||
2011-06-22 | Merge pull request #26 from Littleboy/taskbar | Eugene Sandulenko | |
Taskbar integration | |||
2011-06-21 | COMMON: Move HerculesDimensions enum to SCUMM. | Johannes Schickel | |
The enum is only used inside the SCUMM engine so it is rather pointless to keep it in common/util.h right now. Also if we really want it in some common place it should probably be better in graphics/ too. | |||
2011-06-20 | COMMON: Fix conflicting comment | Willem Jan Palenstijn | |
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-18 | COMMON: Replace some vsnprintf/STRINGBUFLEN uses by vformat | Max Horn | |
2011-06-18 | COMMON: Add vformat() function (Common::String analog to vsprintf) | Max Horn | |
2011-06-17 | COMMON: Remove default implementation of OSystem::logMessage | Max Horn | |
2011-06-17 | Merge pull request #30 from tsoliman/configure-enhancement-warning-clean | Eugene Sandulenko | |
Configure enhancement warning clean | |||
2011-06-17 | COMMON: Make use of Common::parseBool | Max Horn | |
2011-06-16 | ENGINES: Warn user about games marked with ADGF_UNSTABLE flags | Tarek Soliman | |
ADGF_UNSTABLE is always warned about. ADGF_TESTING is only warned about when running configure with --enable-relase. Both warnings are subject to the enable_wip_game_warning config option. | |||
2011-06-16 | COMMON: Change TaskbarManager to the new module slot interface | Julien | |
2011-06-16 | BACKENDS/COMMON/GUI: Remove complete support for TaskbarManager when taskbar ↵ | Littleboy | |
integration is not enabled | |||
2011-06-16 | COMMON: Update TaskbarManager header with better documentation and examples ↵ | Littleboy | |
of use | |||
2011-06-16 | COMMON: Add overall documentation to TaskbarManager interface | Littleboy | |
2011-06-16 | BACKENDS: Add support for count status to TaskbarManager | Littleboy | |
- Show the number of found games when using the massadd dialog | |||
2011-06-16 | BACKENDS: Add engine-level accessor for TaskbarManager | Littleboy | |
2011-06-16 | BACKENDS: Implement Win32 taskbar progress state and recent list | Littleboy | |
2011-06-16 | BACKENDS: Add generic TaskbarManager class to handle taskbar integration | Littleboy | |
2011-06-15 | COMMON: Fix code formatting, rename stuff for consistency | Max Horn | |
2011-06-15 | COMMON: fixed resize | Vladimir | |
2011-06-15 | COMMON: added assign(T*, T*) | Vladimir | |
2011-06-14 | COMMON: Fix crash in TranslationManager when reading long strings | Thierry Crozat | |
It was writing data beyond the end of a buffer. This change makes sure this does not happen. It only changes reading of the messages since the language codes, charset names and contexts are always much smaller than the buffer. | |||
2011-06-10 | COMMON: Do not try to read from res forks of non-existant files | Max Horn | |
2011-06-08 | COMMON: Fix OSystem docs | Max Horn | |
2011-06-08 | BACKENDS: Shuffle backends class hierarchy and module initialization | Max Horn | |
2011-06-08 | BACKENDS: Add OSystem::resetGraphicsScale() default implementation | Max Horn | |
2011-06-08 | COMMON: Add headers needed for delete calls. | Alyssa Milburn | |
2011-06-07 | BACKENDS: All backends use _savefileManager now, adapt OSystem accordingly | Max Horn | |
2011-06-07 | BACKENDS: All backends use _timerManager now, adapt OSystem accordingly | Max Horn | |
2011-06-07 | BACKENDS: Move more 'manager slots' from ModularBackend to OSystem | Max Horn | |
2011-06-06 | OSYSTEM: displayMessageOnOSD() now accepts non-ASCII strings | Thierry Crozat | |
It should now accept strings encoded using the current TranslationManaged charset (e.g. translated text). | |||
2011-06-06 | COMMON: Clarify & correct OSystem::displayLogFile() docs | Max Horn | |