Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-08-27 | Merge pull request #79 from clone2727/agos_cab | Eugene Sandulenko | |
AGOS: Add support for loading data from Windows (InstallShield) installer archives | |||
2011-08-21 | BADA: Remove BADA defined check. Was a temp fix for simulator build | Chris Warren-Smith | |
2011-08-21 | BADA: Initial BADA port implementation | Chris Warren-Smith | |
2011-08-20 | COMMON: Add wrapper for inflating headerless zlib data | Matthew Hoops | |
2011-08-20 | SCUMM: Fix compilation when translation support is disabled. | Johannes Schickel | |
For this I added a convenience version of getLanguageYesNo, which works on the currently setup GUI translation language. All other code which requires this acan also use it instead of having to worry about the USE_TRANSLATION and thus having two code paths. | |||
2011-08-20 | I18N: Added comments to some of obscure translatable strings | Eugene Sandulenko | |
2011-08-20 | COMMON: Implemented functions for determining localized Y/N equivalent | Eugene Sandulenko | |
2011-08-20 | COMMON: Restore locale <-> Common::Language conversion utils | Eugene Sandulenko | |
This reverts commit 284b49aabc54590e1444f06561a815c2a3c5de7e. | |||
2011-08-19 | COMMON: intLog2 uses _BitScanReverse on MSVC | Bertrand Augereau | |
2011-08-18 | COMMON: Slight formatting fix. | Johannes Schickel | |
2011-08-14 | RECORDER: Lower I/O in recorder | Eugene Sandulenko | |
2011-08-09 | RECORDER: Defer mutex deletion to destructor. | Johannes Schickel | |
Since we now call deinit after a game has been run, otherwise RTL would be broken. See bug report #3388982 "valgrind errors when doing multiple RTL". | |||
2011-08-09 | RECORDER: Implement time compensation for playback | Eugene Sandulenko | |
2011-08-08 | RECORDER: Give name to recoder priority. Added middle button storing. | Eugene Sandulenko | |
2011-08-08 | RECORDER: Restore event recorder functionality. | Eugene Sandulenko | |
It was badly broken after refactoring into EventObserver. Fitst, deinit() method was never called which lead to bad record files. Then, the concept of counting pollEvent() calls was ignored. Introduced dispatchPoll() method of EventObserver which is implemented in EventRecorder. It counts calls so is able to inject events at more proper time. Additionally now event times are recorded. | |||
2011-08-08 | RECORDER: Add some debug output | Eugene Sandulenko | |
2011-08-07 | COMMON: Replace x + ARRAYSIZE(x) by the simpler ARRAYEND(x). | Christoph Mallon | |
2011-08-07 | COMMON: Add DisposablePtr<T>, which replaces many repeated implementations ↵ | Christoph Mallon | |
of a dispose flag. | |||
2011-08-07 | COMMON: Remove implicit conversion from ScopedPtr<T> to T*. | Christoph Mallon | |
2011-08-07 | COMMON: Make constants actually const. | Christoph Mallon | |
2011-08-07 | COMMON: Correct error message. | Christoph Mallon | |
The message displays bytes, but capacity is the count of objects, so multiply by their size. | |||
2011-08-07 | COMMON: Use correct format specifier. | Christoph Mallon | |
2011-08-07 | COMMON: Remove superfluous Common:: qualifiers. | Christoph Mallon | |
2011-08-07 | COMMON: Use ScopedPtr<> to simplify resource management. | Christoph Mallon | |
2011-08-07 | COMMON: Simplify initialization of z_stream struct. | Christoph Mallon | |
2011-08-07 | JANITORIAL: Remove trailing empty lines. | Christoph Mallon | |
2011-08-06 | COMMON: Add notifyError() and clearError() to the TaskbarManager, used to ↵ | Littleboy | |
notify the user that an error happened through the taskbar icon | |||
2011-08-06 | OSYSTEM: Mention that our OSystem graphics API is not thread safe. | Johannes Schickel | |
Based on f621f6a5059ec619ae9ea1045548e62a27e99ab4 and the fact that our OpenGL based backends do not (and sometimes cannot easily) implement it in a thread safe manner. | |||
2011-08-06 | COMMON: Change param type of processDelayMillis to fix build. | Alyssa Milburn | |
2011-08-06 | COMMON: Corrected Previous Commit. | D G Turner | |
Common::String class is in common/str.h, not string.h... | |||
2011-08-06 | COMMON: Fix Missing Dependency In Timer Header. | D G Turner | |
This should fix the PSP build. | |||
2011-08-06 | RECORDER: Added stub for delayMillis() processing | Eugene Sandulenko | |
2011-08-06 | JANITORIAL: Remove SVN keywords | Eugene Sandulenko | |
2011-08-06 | OSYSTEM: extended installTimerProc() with timer ID parameter | Eugene Sandulenko | |
2011-08-04 | COMMON: Initialize more z_stream fields before calling inflateInit2. | Alyssa Milburn | |
The zlib documentation and examples claim this is needed, as spotted by LordHoto. | |||
2011-08-02 | Merge pull request #52 from CeRiAl/macosx-sparkle | Oystein Eftevaag | |
MACOSX: Add Sparkle support | |||
2011-07-24 | COMMON: Limited gcc specific intLog2 to gcc 3.4 or newer. | Johannes Schickel | |
Older gcc versions did not include __builtin_clz, which made the PS2 port fail to compile, since it uses 3.2.2. | |||
2011-07-24 | COMMON: Add an optimized intLog2 implementation for gcc using __builtin_clz. | Johannes Schickel | |
This is done as discussed here: https://github.com/scummvm/scummvm/commit/54f25aa84373715001c56155673fb59cfe44b573 | |||
2011-07-24 | COMMON: Let intLog2 return an int instead of uint32, since it should return ↵ | Johannes Schickel | |
-1 for 0. | |||
2011-07-19 | MACOSX/UPDATES: Streamline UpdateManager | CeRiAl | |
Moved UpdateManager related code from backends/modular-backend.* to common/system.*. Added switch --enable/disable-updates to be able to disable updates support generally. | |||
2011-07-19 | MACOSX: Add Sparkle support | CeRiAl | |
2011-07-19 | JANITORIAL: Fix MSVC warnings | Littleboy | |
- Conversion from double to float - Unary minus operator applied to unsigned type - ARRAYSIZE redefinition | |||
2011-07-19 | COMMON: Fix some formatting | Matthew Hoops | |
2011-07-19 | COMMON: Move cosine/sine tables out of header files | Matthew Hoops | |
Access is now restricted to using the getSineTable()/getCosineTable() helper functions. | |||
2011-07-19 | COMMON: Renamed Integer Log2 function from log2 to intLog2. | D G Turner | |
This avoids naming collisions with system libraries on some platforms i.e. DS, DC where the log2 is realised by macro. | |||
2011-07-19 | COMMON: Document the BitStream a bit more | Sven Hesse | |
2011-07-18 | Merge pull request #50 from clone2727/bink | clone2727 | |
Add support for Bink video to SCUMM HE | |||
2011-07-18 | COMMON: Fix comment | Matthew Hoops | |
2011-07-18 | COMMON: Update code from eos | Matthew Hoops | |
2011-07-18 | COMMON: Update class documentation to say they're now used by SCUMM | Matthew Hoops | |