Age | Commit message (Collapse) | Author | |
---|---|---|---|
2011-01-23 | VIDEO: Move video classes to Video:: namespace | Eugene Sandulenko | |
svn-id: r55479 | |||
2011-01-23 | GRAPHICS: Move graphics/video/ to video/. Step 1/2 | Eugene Sandulenko | |
svn-id: r55473 | |||
2011-01-10 | SOUND: Get rid of unused forward declarations in mixer.h. | Johannes Schickel | |
svn-id: r55197 | |||
2010-12-16 | VIDEO: Make VideoDecoder::decodeNextFrame() return a const Surface pointer | Matthew Hoops | |
svn-id: r54927 | |||
2010-12-07 | DEBUG: Let GUI::Debugger::preEnter and postEnter (un)pause the engine | Max Horn | |
svn-id: r54815 | |||
2010-11-19 | COMMON: Split common/stream.h into several headers | Max Horn | |
svn-id: r54385 | |||
2010-11-08 | TUCKER: Added basic debugging console to engine | David Turner | |
Tucker does not currently use Debug Channels, but this does provide a base for adding them along with any other debugging commands. svn-id: r54141 | |||
2010-11-07 | TUCKER: Add GUIO_NOLAUNCHLOAD to the detection flags. | Johannes Schickel | |
svn-id: r54126 | |||
2010-11-07 | ENGINES: Unify code layout of all ADParams instances | Max Horn | |
svn-id: r54105 | |||
2010-10-15 | ENGINES: Enhance namespace comments a bit | Max Horn | |
svn-id: r53484 | |||
2010-06-15 | AdvancedDetector: Add new parameter directoryGlobs. | Eugene Sandulenko | |
Without this parameter mass detection gave tons of false alarms. Use globbing for narrowing down the depth search. svn-id: r49788 | |||
2010-06-14 | Extended advancedDetector with depth parameter. | Eugene Sandulenko | |
Now AD can search nested directories. By default it is turned off, but there is new parameter to ADParameters struct. Usually value of 2 is good enough for all purposes. svn-id: r49653 | |||
2010-06-06 | add missing decodeNextAnimationFrame in default case for sequence 9 | Gregory Montoir | |
svn-id: r49458 | |||
2010-06-06 | fix sequence frame numbering (decrement if getCurFrame now returns the last ↵ | Gregory Montoir | |
decoded frame number) svn-id: r49455 | |||
2010-06-06 | use palette image during sequence 3 scrolling | Gregory Montoir | |
svn-id: r49452 | |||
2010-05-18 | Committing the rest of the VideoDecoder Rewrite from patch #2963496. | Matthew Hoops | |
svn-id: r49079 | |||
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-25 | fix missing sound effects during introduction with non French versions. | Gregory Montoir | |
svn-id: r48801 | |||
2010-04-12 | AUDIO: Rename Mixer::playInputStream to playStream | Max Horn | |
svn-id: r48637 | |||
2010-03-18 | COMMON: Get rid of Common::StringList | Max Horn | |
svn-id: r48287 | |||
2010-03-18 | COMMON: Move Common::RandomSource to common/random.* | Max Horn | |
svn-id: r48279 | |||
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-03 | - Rename FlacStream to FLACStream. | Johannes Schickel | |
- Rename makeFlacStream to makeFLACStream. svn-id: r47846 | |||
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 | Move raw audio flags from sound/mixer.h to sound/raw.h | Max Horn | |
svn-id: r47395 | |||
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-19 | Move raw audio streams to new header sound/raw.h | Max Horn | |
svn-id: r47368 | |||
2010-01-19 | Rename 'Linear' audio streams to 'raw' | Max Horn | |
svn-id: r47367 | |||
2010-01-16 | Switch most AudioStream factories to use DisposeAfterUse::Flag | Max Horn | |
svn-id: r47334 | |||
2010-01-10 | - Add a SubLoopingAudioStream, which loops a nested part of a stream and ↵ | Johannes Schickel | |
thus features the same looping capabilites as LinearMemoryStream and LinearDiskStream. - Remove custom looping code from LinearMemoryStream and LinearDiskStream. - Adapt various client code to the changes. svn-id: r47226 | |||
2010-01-08 | Since AudioStream looping is no longer handled by the Mixer, drop ↵ | Johannes Schickel | |
Mixer::playAudioStreamLooping. (There's Audio::makeLoopingAudioStream). svn-id: r47160 | |||
2010-01-07 | Cleanup. | Johannes Schickel | |
svn-id: r47133 | |||
2010-01-07 | Do not try to destroy an object on the stack via delete. | Johannes Schickel | |
svn-id: r47131 | |||
2010-01-07 | Adapt TUCKER to use RewindableAudioStream and Mixer::playInputStreamLooping. ↵ | Johannes Schickel | |
(Needs testing, please :-) svn-id: r47130 | |||
2010-01-07 | Make makeWAVStream return a RewindableAudioStream. | Johannes Schickel | |
svn-id: r47129 | |||
2010-01-07 | - Strip custom looping code out of FLAC, Vorbis and MP3 streams | Johannes Schickel | |
- Adapt the legacy make*Stream factories to use the new AudioStream subclasses - Change return value of make*Stream back to AudioStream * svn-id: r47111 | |||
2010-01-05 | - Add a new SeekableAudioStream interface. Soon to be used to replace audio ↵ | Johannes Schickel | |
stream specific looping code by generic code in Mixer... - Adapted some existing AudioStreams to implement that interface (not tested!) svn-id: r47013 | |||
2009-11-24 | Added Doxygen comments for the various engine namespaces (currently mostly ↵ | Max Horn | |
without details; help filling these out is welcome) svn-id: r46128 | |||
2009-10-17 | TUCKER: fix several issues in ending sequences (tracker item #2872355 - ↵ | Gregory Montoir | |
Minor bugs outro) svn-id: r45200 | |||
2009-10-14 | TUCKER: Convert one more loadWAVFromStream instance to makeWAVStream | Max Horn | |
svn-id: r45101 | |||
2009-10-14 | Patch #2834677: Wave/ADPCM Endianness Fixes | Max Horn | |
svn-id: r45095 | |||
2009-10-11 | TUCKER: fix original game glitch (tracker item #2872385 - Fish swims out of ↵ | Gregory Montoir | |
aquarium) svn-id: r44899 | |||
2009-10-11 | TUCKER: ignore selected verb when displaying options (tracker item #2872383 ↵ | Gregory Montoir | |
- Look at options) svn-id: r44898 | |||
2009-09-27 | TUCKER: add clipping for text drawing | Gregory Montoir | |
svn-id: r44393 | |||
2009-09-27 | TUCKER: add missing compressed file close when version doesn't match | Gregory Montoir | |
svn-id: r44392 | |||
2009-08-25 | TUCKER: skip sound file loading if not available in compressed bundle | Gregory Montoir | |
svn-id: r43736 | |||
2009-08-25 | TUCKER: add support for commpressed intro sound effects | Gregory Montoir | |
svn-id: r43733 |