Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-10-23 | TEENAGENT: Improve code formatting. | Johannes Schickel | |
I used astyle and fixed some incorrect changes from it manually. | |||
2011-08-07 | TEENAGENT: Pass streams as references. | Christoph Mallon | |
2011-06-23 | TEENAGENT: Allocate large buffers on the heap instead of the stack | Julien | |
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-02 | ENGINES: Change 2nd param of Engine::saveGameState to Common::String | Max Horn | |
2011-05-17 | TEEN: Use only one RandomSource and give that one a name. | Max Horn | |
This change ensures that only RandomSource is used which also is registered with the event recorder. Moreover, it gets rid of a static RandomSource instance inside Actor::renderIdle. | |||
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-02-14 | TEENAGENT: Adapt to setPalette RGBA->RGB change. | Johannes Schickel | |
This change has not been tested. | |||
2011-02-09 | AUDIO: Rename sound/ dir to audio/ | Max Horn | |
svn-id: r55850 | |||
2011-02-07 | ALL: Fix whitespaces / indention | Max Horn | |
svn-id: r55818 | |||
2011-02-07 | COMMON: OSystem now has a PaletteManager | Max Horn | |
svn-id: r55806 | |||
2011-01-31 | TEENAGENT: Fix Memory Leaks. | David Turner | |
svn-id: r55672 | |||
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-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-07-30 | Merged from trunk, from Rev 50841 to HEAD | Alejandro Marzini | |
svn-id: r51495 | |||
2010-07-17 | DEBUGGER: Simplify how our console debugger works / is used | Max Horn | |
* Remove _isAttached member var and isAttached method * Engines now always call the onFrame method; whether it does something is decided by the debugger class resp. its subclasses * Make detach() protected instead of private, so that subclasses can invoke it * Remove _detach_now member var (call detach() instead). * Rename _frame_countdown to _frameCountdown and properly document it. * Add more doxygen comments * Cleanup svn-id: r50963 | |||
2010-06-15 | Renamed getAudioCD to getAudioCDManager. | Alejandro Marzini | |
svn-id: r49678 | |||
2010-06-09 | - Revised abstract AudioCDManager. | Alejandro Marzini | |
- Removed AudioCDManager Singleton, and changed code for using AudioCDManager in OSystem. - Added initialization code for new AudioCDManager in BaseBackend and OSystem_SDL. svn-id: r49548 | |||
2010-05-07 | added voices pack/cd music support | Vladimir Menshakov | |
svn-id: r48962 | |||
2010-05-04 | Move initGraphics and initCommonGFX from to new header. | Max Horn | |
These functions are only used internally be Engine subclasses, and by moving them to a separate header we can reduce indirect header dependencies. svn-id: r48934 | |||
2010-04-28 | added cd-version detection and cdlogo.res support | Vladimir Menshakov | |
svn-id: r48831 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-04-07 | fixed crash during time challenges (rclick without object) | Vladimir Menshakov | |
svn-id: r48581 | |||
2010-03-24 | validate path before examining object | Vladimir Menshakov | |
svn-id: r48383 | |||
2010-03-21 | preload inventory graphics on load | Vladimir Menshakov | |
svn-id: r48350 | |||
2010-03-21 | -added overlay rendering flag | Vladimir Menshakov | |
-fixed music played too late on some scenes svn-id: r48349 | |||
2010-03-20 | ported all code to ScopedPtr | Vladimir Menshakov | |
svn-id: r48340 | |||
2010-03-20 | fixed another stream leak | Vladimir Menshakov | |
svn-id: r48327 | |||
2010-03-20 | flush inventory items on savegame load, fixing invalid item tiles after ↵ | Vladimir Menshakov | |
multiple loads. svn-id: r48325 | |||
2010-03-20 | fixed stream leaks | Vladimir Menshakov | |
svn-id: r48321 | |||
2010-03-20 | restored subtitle feature | Vladimir Menshakov | |
svn-id: r48320 | |||
2010-03-20 | removed 'subtitle' option, added missing finalize | Vladimir Menshakov | |
svn-id: r48316 | |||
2010-03-18 | code convention fixes mentioned by Max Horn | Vladimir Menshakov | |
svn-id: r48296 | |||
2010-03-18 | removed 'varia.res' from the resident pack files | Vladimir Menshakov | |
svn-id: r48295 | |||
2010-03-18 | added abstract Pack class, moved code into FilePack and MemoryPack | Vladimir Menshakov | |
svn-id: r48292 | |||
2010-02-26 | added async getFlag(addr) | Vladimir Menshakov | |
svn-id: r48131 | |||
2010-02-25 | reset intro flag after savegame loading | Vladimir Menshakov | |
svn-id: r48128 | |||
2010-02-25 | hide mouse while playing cutscenes | Vladimir Menshakov | |
svn-id: r48126 | |||
2010-02-21 | Patch for bug 2943361 by littleboy, adding full kb modifier support to all ↵ | Yotam Barnoy | |
engines + GUI and proper keypad handling svn-id: r48101 | |||
2010-02-07 | added setFlag, fixed non-mark's messages | Vladimir Menshakov | |
svn-id: r47969 | |||
2010-02-02 | added kWait event type | Vladimir Menshakov | |
svn-id: r47808 | |||
2010-01-30 | Replace use of Audio::makeRawMemoryStream by Audio::makeRawStream. | Johannes Schickel | |
svn-id: r47716 | |||
2010-01-26 | Moved audio stream implementations (for MP3, FLAC, etc.) to new dir ↵ | Max Horn | |
sound/decoders/ svn-id: r47579 | |||
2010-01-25 | Strip trailing spaces/tabs. | Johannes Schickel | |
svn-id: r47541 | |||
2010-01-23 | Reorder params to Audio::makeRawMemoryStream | Max Horn | |
svn-id: r47492 | |||
2010-01-19 | Convert more engines from Mixer::playRaw to Mixer::playInputStream | Max Horn | |
svn-id: r47377 | |||
2010-01-19 | Get rid of Mixer::FLAG_AUTOFREE. | Max Horn | |
Also fix several recently introduced new/delete vs. malloc/free mismatches. svn-id: r47369 | |||
2010-01-13 | fix comparison for platforms where char is unsigned | Joost Peters | |
svn-id: r47291 |