aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2009-03-07SCI: More cleanup in the song iterator codebaseMax Horn
svn-id: r39177
2009-03-07SCI: Removed resource_map.o and resource_patch.o from module.mkMax Horn
svn-id: r39176
2009-03-07Added detection of SCI1.1 and SCI32 resource volumesGreg Frieger
svn-id: r39175
2009-03-07Merged scicore/resource_map.cpp and scicore/resource_patch.cpp to ↵Greg Frieger
scicore/resource.cpp because these remaining functions are members of ResourceManager svn-id: r39172
2009-03-07Cleaned / reworked readResourceMapSCI0 and readResourceMapSCI1Greg Frieger
Removed unused functions and #defines svn-id: r39171
2009-03-07Use map/volume versions from detection.cpp if setGreg Frieger
svn-id: r39170
2009-03-07Map/volume loader and version detection functions cleaned and reworked.Greg Frieger
Autodetection still misdetects some SCI1/SCI1.1 games though. svn-id: r39169
2009-03-06LOL: - some opcodes for the first throne room sequenceFlorian Kagerer
svn-id: r39168
2009-03-06SongIterator is a class, not a structFilippos Karapetis
svn-id: r39167
2009-03-06LOL: - doors can now be opened and closedFlorian Kagerer
- some more work on monster walk code svn-id: r39166
2009-03-06SCI: Reduce SFX header dependenciesMax Horn
svn-id: r39159
2009-03-06SCI: Continued C++ification of SongIterator codeMax Horn
svn-id: r39158
2009-03-06SCI: Fixed (I hope) song iterator death listeners; and some cleanupMax Horn
svn-id: r39157
2009-03-06SCI: Started to revamp the song iterator death notification system (which ↵Max Horn
currently is mess :) svn-id: r39156
2009-03-06Cleanup and unification. Merged decryptinit3() inside decrypt3() Filippos Karapetis
svn-id: r39155
2009-03-06SongIterator is a class, not a structFilippos Karapetis
svn-id: r39154
2009-03-06Switch pause key to Pause in AGOS engine, and drop the debug keys.Travis Howell
svn-id: r39153
2009-03-06SCI: C++ifyed SongIterator and its subclassesMax Horn
svn-id: r39152
2009-03-06SCI: Some cleanup to the SongIteratorMessage codeMax Horn
svn-id: r39151
2009-03-06SCI: Converted SongIterator::get_pcm_feed into a virtual methodMax Horn
svn-id: r39150
2009-03-06SCI: Restructured PolledPlayerAudioStream::readBuffer a bitMax Horn
svn-id: r39149
2009-03-06SCI: Renamed lots of classes related to song iterators; allocate song ↵Max Horn
iterators via new/delete instead of malloc/free svn-id: r39148
2009-03-06cleanupJoost Peters
svn-id: r39147
2009-03-05- Change Resource::LRU to use Common::ListGreg Frieger
- Real patch filename stored and used instead of calling patch_sprintf_funct() - some fprintf()s replaced with debug() and warning() svn-id: r39140
2009-03-05Removed Resource.location_dir_nameGreg Frieger
svn-id: r39139
2009-03-05readResourcePatchesSCI0 and readResourcePatchesSCI1 merged. Some clean-upsGreg Frieger
svn-id: r39138
2009-03-05don't crash if sound has been disabled or the backend driver failed to ↵Andre Heider
initialize. svn-id: r39137
2009-03-05Add minor verb code differences in Elvira 1/2.Travis Howell
svn-id: r39136
2009-03-05Fix for bug #2664460: Various SeekableReadStream::seek() implementations (as ↵Max Horn
well as our unit tests, ouch) handled SEEK_END incorrectly (using -offset instead of offset), contrary to what the docs said and what fseek does. Hopefully I found and fixed all affected parts, but still watch out for regressions svn-id: r39135
2009-03-05Added a missing NULLingSven Hesse
svn-id: r39134
2009-03-05Renamed MetaEngine::getCopyright() to getOriginalCopyright() to better match ↵Jordi Vilalta Prat
the meaning of the returned string, as discussed some time ago in scummvm-devel svn-id: r39132
2009-03-04sword1: removed custom checks for thumbnails, using graphics/thumbnail.h ↵Fabio Battaglia
functions instead svn-id: r39130
2009-03-04Ease conditional LoL compiling with build systems not based on the default one.Johannes Schickel
svn-id: r39125
2009-03-04Fixed compilation when ENABLE_LOL is not setFilippos Karapetis
svn-id: r39123
2009-03-04sword1: disable saving/loading through GMM when in game menuFabio Battaglia
svn-id: r39122
2009-03-04sword1: enable thumbnails when saving through GMMFabio Battaglia
svn-id: r39121
2009-03-04SCI: Removed unused FEED_MODE_DEAD, extended FIXME comment for FEED_MODE_RESTARTMax Horn
svn-id: r39119
2009-03-04SCI: Merged polled player & PCMFeedAudioStream -> PolledPlayerAudioStreamMax Horn
svn-id: r39118
2009-03-04SCI: Added FIXME about Opl2 driver hardcoding sample rate. well, we probably ↵Max Horn
should ditch that one and use our fmopl... svn-id: r39117
2009-03-04SCI: Merged sfx/mixer.cpp into sfx/player/polled.cppMax Horn
svn-id: r39116
2009-03-04SCI: Replaced sfx_iterator_make_feed and associated code by ↵Max Horn
Audio::makeLinearInputStream svn-id: r39115
2009-03-04SCI: Use Audio::Timestamp instead of sfx_timestamp_tMax Horn
svn-id: r39113
2009-03-04SCI: mixer cleanupMax Horn
svn-id: r39111
2009-03-04Fixed weirdness in groovie (as reported on scummvm-devel)Max Horn
svn-id: r39109
2009-03-04SCI: Moved script.cpp from scicore/ to engine/ (because its header file is ↵Max Horn
there, and it seems its funcs are only called from stuff in engine/) svn-id: r39108
2009-03-04SCI: Reduce header interdepsMax Horn
svn-id: r39107
2009-03-04SCI: cleanupMax Horn
svn-id: r39106
2009-03-04SCI: Added TODO (rect_t should be replaced by Common::Rect), minor tweaksMax Horn
svn-id: r39105
2009-03-04SCI: Fix warningsMax Horn
svn-id: r39103
2009-03-04- Make Lands of Lore compileable optionally as suggested by _sev. (via ↵Johannes Schickel
ENABLE_LOL define) - Change default build system to support LoL as a subengine of KYRA. LoL is currently disabled by default. (- Minor enum name fixes for Lands of Lore code.) svn-id: r39099