aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2008-07-07Implemented Common::EventManager::pushEvent() to insert fake events into the ↵Christopher Page
event queue. Quit and RTL events have been added, and are now tracked by the DefaultEventManager using shouldQuit() and shouldRTL(). AGOS is working with this new implementation, other engines to follow. svn-id: r32952
2008-07-07Changed the name of the Scumm menu dialog class MainMenuDialog to ↵Christopher Page
ScummMenuDialog, to avoid confusion and conflict with the Global Main Menu class svn-id: r32937
2008-07-07Sound settings for AGI are now configurable through the GMMChristopher Page
svn-id: r32936
2008-07-07SCUMM: syncSoundSettings() now updates kPlainSoundTypeChristopher Page
svn-id: r32935
2008-07-07LURE: Made sure to lock _soundMutex in syncSounds()Christopher Page
svn-id: r32934
2008-07-06QUEEN: Made it possible to quit during the intro cutawaysChristopher Page
svn-id: r32933
2008-07-05Queen sound settings are now configurable through the GMMChristopher Page
svn-id: r32922
2008-07-02Changes to implementation of the GMMChristopher Page
svn-id: r32872
2008-07-01Sound settings for TOUCHE can be configured through the GMMChristopher Page
svn-id: r32864
2008-07-01Sound settings for Saga can be configured from the GMMChristopher Page
svn-id: r32863
2008-06-30Fixed some warningsChristopher Page
svn-id: r32857
2008-06-30Sound settings for Lure can be modified through the GMMChristopher Page
svn-id: r32855
2008-06-30Scumm sound settings can now be changed from the gmmChristopher Page
svn-id: r32851
2008-06-26Added syncSoundSettings() to Engine, sound settings can now be modified from ↵Christopher Page
the global main menu for most engines svn-id: r32815
2008-06-26Quit or RTL from the main menu now triggers an EVENT_QUIT in ↵Christopher Page
DefaultEventManager::pollEvent() svn-id: r32813
2008-06-26flag 611 can be set from the scripts, set _quit when that happens.Gregory Montoir
svn-id: r32796
2008-06-26Touche now uses the new _quit flagChristopher Page
svn-id: r32795
2008-06-26Sword2 now uses the new _quit flagChristopher Page
svn-id: r32794
2008-06-26Fixed quitting from BASS intro, cleaned up comments in agosChristopher Page
svn-id: r32793
2008-06-25Scumm and sky now use the new _quit flagChristopher Page
svn-id: r32775
2008-06-25Queen and Saga now use the new _quit flagChristopher Page
svn-id: r32774
2008-06-25Parallaction now uses the new _quit flagChristopher Page
svn-id: r32773
2008-06-25Kyra and Lure are now using the new _quit flagChristopher Page
svn-id: r32772
2008-06-24Added main menu dialog files. Gob is now using the new _quit flagChristopher Page
svn-id: r32771
2008-06-24Created Global Main Menu Dialog. Made a uniform _quit flag for engines. So ↵Christopher Page
far agi, agos, and cine are now using the new _quit flag. svn-id: r32770
2008-06-20Merged revisions 32727-32728,32730-32733,32737-32738 via svnmerge from Christopher Page
https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r32740
2008-06-19Fixed a palette issue in Lost in TimeSven Hesse
svn-id: r32738
2008-06-19Only try playing object videos when the game version supports that (only ↵Sven Hesse
Woodruff, for now) svn-id: r32737
2008-06-18Renamed M4Surface::empty() to clear() (two reason: empty is not a verb, and ↵Max Horn
in class String it is used for a bool property) svn-id: r32733
2008-06-18- Fixed sprite drawing in Rodney's FunscreenBenjamin Haisch
- Handle mouse button up events and event number fixes in MadeEngine::handleEvents() - Use milliseconds -> game ticks calculation based on Windows version of the original engine - "Rodney's Fun Screen" -> "Rodney's Funscreen" svn-id: r32731
2008-06-18Fixed a small discrepancy in Delphine unpacker's command 00b's documentation ↵Kari Salminen
(Parameter range is 1..8, not 1..9). svn-id: r32730
2008-06-17Possible fix for bug #1979086 - "DRASCULA: Wrong language detection(?) and ↵Filippos Karapetis
crash" svn-id: r32728
2008-06-17Removed duplicate codeFilippos Karapetis
svn-id: r32727
2008-06-16Cleaned up some unnecessary commentsChristopher Page
svn-id: r32721
2008-06-16Merged revisions 32668-32669,32676,32687-32689,32693,32695,32698-32701,32705 ↵Christopher Page
via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r32720
2008-06-16AGOS: Found a system->quit(), changed to _quit=trueChristopher Page
svn-id: r32718
2008-06-14Revert last commit.Travis Howell
svn-id: r32700
2008-06-14Disable drawObject type 0x41, which is currently causing frequent crashes.Travis Howell
svn-id: r32699
2008-06-13Small cleanup (uint16 -> uint where still applicable).Kari Salminen
svn-id: r32689
2008-06-13More documentation for CineUnpacker-class (Practically done documenting ↵Kari Salminen
now). Also changed parameter and return value types to a more uniform style (uint16 -> uint, int -> uint where applicable etc). svn-id: r32688
2008-06-13Made CineUnpacker::unpack more robust & secure. It shouldn't crash now with ↵Kari Salminen
any input (Before making reading or writing operations they are checked to be in bounds). Also updated some comments and added some error message(s). svn-id: r32687
2008-06-12SCUMM: Fixed a memory leak in the SCUMM engineChristopher Page
svn-id: r32680
2008-06-12AGOS: Fixed a memory leak in the AGOS engineChristopher Page
svn-id: r32679
2008-06-12CINE: Fixed memory leaks in the CINE engineChristopher Page
svn-id: r32677
2008-06-12Fixing compilationSven Hesse
svn-id: r32676
2008-06-12LURE: Fixed memory leaks in the LURE engineChristopher Page
svn-id: r32675
2008-06-12SAGA: Fixed memory leaks in the SAGA engineChristopher Page
svn-id: r32673
2008-06-12- Added support for Rodney's Fun ScreenBenjamin Haisch
- Added audio cd playback (still kinda broken though) - Renamed getObjectPropertyPtr to findObjectProperty svn-id: r32669
2008-06-12Updated script dumper to show opcode offset.Benjamin Haisch
svn-id: r32668
2008-06-11Merged revisions ↵Christopher Page
32564-32565,32567-32575,32577,32579-32594,32596-32603,32605-32639,32644-32646,32648-32666 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r32667