aboutsummaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2009-07-13Fixed logic error in Graphics::crossBlit which would result in no blit ↵Jody Northup
occuring if src and dst have the same format. Converted Graphics::crossBlit to take PixelFormats by reference, instead of copying them for each call. svn-id: r42451
2009-07-13Removed an unneeded debug console output from initGraphicsJody Northup
svn-id: r42450
2009-07-12Merged revisions 42398,42402-42406,42418-42421,42423,42428-42430 via ↵Travis Howell
svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk ........ r42398 | thebluegr | 2009-07-12 09:45:54 +1000 (Sun, 12 Jul 2009) | 1 line Moved the kernel and the vocabulary outside of the engine state (they're static data, which never changes during a game) ........ r42402 | sunmax | 2009-07-12 15:34:46 +1000 (Sun, 12 Jul 2009) | 8 lines Added a temporary work-around for PS2 backend in common/array.h cause its vintage compiler does not support "new T[newCapacity]()" but only "new T[newCapacity]", this will let it compile through. It's ifdef'd as __PLAYSTATION2__, so it won't make a difference for other backends with more modern tools. ........ r42403 | sunmax | 2009-07-12 15:35:56 +1000 (Sun, 12 Jul 2009) | 5 lines I am re-commiting the FORCE_RTL as a temporary solution in trunk, so that trunk/1.0rc is au pair feature-wise with 0.13.x. ........ r42404 | sunmax | 2009-07-12 15:38:08 +1000 (Sun, 12 Jul 2009) | 24 lines ScummVM/PS2 bugs fixed by this commit: - general file write corruption (eg. ScummVM.ini, etc.) - COMI specific save crash / corruption (added option in engines/scumm/saveload.cpp to disable thumbnails on PS2, as emergency fallback in case the fix should prove to be insufficient) - implemented _screenChange logic (fixes grabOverlay & COMI popup menu) - fixed higher pitch (chipmunk fx) - made NET IRXs optional to allow it to work on fat PS2 without net+hd - fixed cursor restore on RTL - added "." as R2 to skip single lines of dialog - added write cache ........ r42405 | dreammaster | 2009-07-12 17:23:50 +1000 (Sun, 12 Jul 2009) | 1 line Added support for sub-relation message types - this fixes trying to attach the chain to the hook on the deck ........ r42406 | lordhoto | 2009-07-12 18:51:57 +1000 (Sun, 12 Jul 2009) | 1 line Add missing quotation mark to error message. ........ r42418 | lordhoto | 2009-07-13 00:29:59 +1000 (Mon, 13 Jul 2009) | 1 line Fix typo, which in fact fixes bug #2820353 "GUI: Search doesn't handle uppercase properly". ........ r42419 | knakos | 2009-07-13 01:59:27 +1000 (Mon, 13 Jul 2009) | 1 line Apply patch 2802544: WINCE: Implement OSystem::engineInit to remove hack ........ r42420 | knakos | 2009-07-13 01:59:56 +1000 (Mon, 13 Jul 2009) | 1 line fix build with arm-asm routines ........ r42421 | knakos | 2009-07-13 02:40:10 +1000 (Mon, 13 Jul 2009) | 1 line oops, fix props ........ r42423 | sev | 2009-07-13 04:52:38 +1000 (Mon, 13 Jul 2009) | 2 lines Patch #1936137: "Speech for Mac BS1 english" ........ r42428 | sunmax | 2009-07-13 07:58:00 +1000 (Mon, 13 Jul 2009) | 6 lines Split _eof vs. _err. Latter defaults to false for now, there are hooks for possible future implementation. ........ r42429 | sunmax | 2009-07-13 08:00:47 +1000 (Mon, 13 Jul 2009) | 4 lines On PS2 use "fprintf" (as in 0.13.x ) to print error messages to stderr, rather than "fputs", which is buggy in the PS2 implementation. ........ r42430 | wjpalenstijn | 2009-07-13 08:08:10 +1000 (Mon, 13 Jul 2009) | 1 line Remove double endline ........ svn-id: r42432
2009-07-12Remove double endlineWillem Jan Palenstijn
svn-id: r42430
2009-07-12On PS2 use "fprintf" (as in 0.13.x ) to print error messages to stderr,Max Lingua
rather than "fputs", which is buggy in the PS2 implementation. svn-id: r42429
2009-07-12Split _eof vs. _err.Max Lingua
Latter defaults to false for now, there are hooks for possible future implementation. svn-id: r42428
2009-07-12Patch #1936137: "Speech for Mac BS1 english"Eugene Sandulenko
svn-id: r42423
2009-07-12oops, fix propsKostas Nakos
svn-id: r42421
2009-07-12fix build with arm-asm routinesKostas Nakos
svn-id: r42420
2009-07-12Apply patch 2802544: WINCE: Implement OSystem::engineInit to remove hackKostas Nakos
svn-id: r42419
2009-07-12Fix typo, which in fact fixes bug #2820353 "GUI: Search doesn't handle ↵Johannes Schickel
uppercase properly". svn-id: r42418
2009-07-12Add missing quotation mark to error message.Johannes Schickel
svn-id: r42406
2009-07-12Added support for sub-relation message types - this fixes trying to attach ↵Paul Gilbert
the chain to the hook on the deck svn-id: r42405
2009-07-12ScummVM/PS2 bugs fixed by this commit:Max Lingua
- general file write corruption (eg. ScummVM.ini, etc.) - COMI specific save crash / corruption (added option in engines/scumm/saveload.cpp to disable thumbnails on PS2, as emergency fallback in case the fix should prove to be insufficient) - implemented _screenChange logic (fixes grabOverlay & COMI popup menu) - fixed higher pitch (chipmunk fx) - made NET IRXs optional to allow it to work on fat PS2 without net+hd - fixed cursor restore on RTL - added "." as R2 to skip single lines of dialog - added write cache svn-id: r42404
2009-07-12I am re-commiting the FORCE_RTL as a temporary solutionMax Lingua
in trunk, so that trunk/1.0rc is au pair feature-wise with 0.13.x. svn-id: r42403
2009-07-12Added a temporary work-around for PS2 backend in common/array.hMax Lingua
cause its vintage compiler does not support "new T[newCapacity]()" but only "new T[newCapacity]", this will let it compile through. It's ifdef'd as __PLAYSTATION2__, so it won't make a difference for other backends with more modern tools. svn-id: r42402
2009-07-11Moved the kernel and the vocabulary outside of the engine state (they're ↵Filippos Karapetis
static data, which never changes during a game) svn-id: r42398
2009-07-11Merged revisions 42382,42385-42387,42393-42394 via svnmerge from Travis Howell
https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk ........ r42382 | Kirben | 2009-07-11 22:23:42 +1000 (Sat, 11 Jul 2009) | 1 line Fix pinball type mini game in Putt-Putt Enters The Race. ........ r42385 | wjpalenstijn | 2009-07-12 01:00:40 +1000 (Sun, 12 Jul 2009) | 3 lines SCI: don't let TimerSongIterator loop forever, and don't immediately signal completion when starting it. This fixes a sync issue with the departing spaceship at the start of SQ4CD (after the intro). ........ r42386 | thebluegr | 2009-07-12 02:07:14 +1000 (Sun, 12 Jul 2009) | 1 line If we fail to auto-detect either the volume or the map version, set the one to be equal to the other ........ r42387 | thebluegr | 2009-07-12 03:25:49 +1000 (Sun, 12 Jul 2009) | 1 line Removed the version parameter from GfxResManager ........ r42393 | thebluegr | 2009-07-12 05:00:56 +1000 (Sun, 12 Jul 2009) | 1 line Some work on QFG1VGA (looks like a mix of SCI1 and SCI1.1) ........ r42394 | thebluegr | 2009-07-12 05:38:41 +1000 (Sun, 12 Jul 2009) | 1 line Changed an incorrect warning back to scidprintf - the relevant message is for testing only ........ svn-id: r42397
2009-07-11Changed an incorrect warning back to scidprintf - the relevant message is ↵Filippos Karapetis
for testing only svn-id: r42394
2009-07-11Some work on QFG1VGA (looks like a mix of SCI1 and SCI1.1)Filippos Karapetis
svn-id: r42393
2009-07-11Removed the version parameter from GfxResManagerFilippos Karapetis
svn-id: r42387
2009-07-11If we fail to auto-detect either the volume or the map version, set the one ↵Filippos Karapetis
to be equal to the other svn-id: r42386
2009-07-11SCI: don't let TimerSongIterator loop forever, and don't immediatelyWillem Jan Palenstijn
signal completion when starting it. This fixes a sync issue with the departing spaceship at the start of SQ4CD (after the intro). svn-id: r42385
2009-07-11Fix pinball type mini game in Putt-Putt Enters The Race.Travis Howell
svn-id: r42382
2009-07-11Merged revisions 42360-42361,42364-42366,42368-42378,42380 via svnmerge from Travis Howell
https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk ........ r42360 | Kirben | 2009-07-11 10:38:50 +1000 (Sat, 11 Jul 2009) | 1 line Fix recent regression in AGOSEngine_Simon1::drawImage(). ........ r42361 | wjpalenstijn | 2009-07-11 10:47:32 +1000 (Sat, 11 Jul 2009) | 3 lines Fix SAGA outline generation algorithm for characters that are copies of earlier characters. (5 characters in IHNM.) This fixes #1904624. ........ r42364 | Kirben | 2009-07-11 11:40:53 +1000 (Sat, 11 Jul 2009) | 1 line Fix bug #2819628 - DETECTOR: Atlantis CD sets wrong gui options. ........ r42365 | lordhoto | 2009-07-11 11:54:27 +1000 (Sat, 11 Jul 2009) | 1 line Fix graphics not updating, when loading a save in Kyra1. This fixes problems when loading saves in rooms like Brynn's temple, which play animations directly on scene enter. ........ r42366 | lordhoto | 2009-07-11 11:54:42 +1000 (Sat, 11 Jul 2009) | 1 line Removed the now uneeded "Screen::_disableScreen" flag. ........ r42368 | dreammaster | 2009-07-11 15:10:13 +1000 (Sat, 11 Jul 2009) | 1 line Bugfix to show the mouse cursor when restarting the game after returning to launcher ........ r42369 | dreammaster | 2009-07-11 15:12:17 +1000 (Sat, 11 Jul 2009) | 1 line Active background screens are now properly freed when the game exits ........ r42370 | dreammaster | 2009-07-11 15:14:42 +1000 (Sat, 11 Jul 2009) | 1 line Added initialisation of paging screens when the game starts ........ r42371 | thebluegr | 2009-07-11 16:19:29 +1000 (Sat, 11 Jul 2009) | 1 line Fixed regression in the script parser from commit 42260 ........ r42372 | thebluegr | 2009-07-11 16:33:19 +1000 (Sat, 11 Jul 2009) | 1 line Applied a slightly modified patch from clone2727 which adds static selector names to some demos which are missing them (KQ4, LSL1, LSL3, Iceman and Christmas1992) ........ r42373 | thebluegr | 2009-07-11 16:34:25 +1000 (Sat, 11 Jul 2009) | 1 line Removed an invalid detection entry ........ r42374 | thebluegr | 2009-07-11 16:43:01 +1000 (Sat, 11 Jul 2009) | 1 line Applied slightly modified patch 2819002 - "SCI: resource-view-patch on SQ5/German fix" ........ r42375 | thebluegr | 2009-07-11 16:53:39 +1000 (Sat, 11 Jul 2009) | 1 line Applied patch 2818733 - "SCI: Timer iterator for audio resources played via doSound" ........ r42376 | Kirben | 2009-07-11 17:03:28 +1000 (Sat, 11 Jul 2009) | 1 line Only error out, if checkStaticSelectorNames() fails. ........ r42377 | dreammaster | 2009-07-11 18:16:55 +1000 (Sat, 11 Jul 2009) | 1 line Bugfix to properly save the currently playing midi music when saving a scene ........ r42378 | wjpalenstijn | 2009-07-11 19:45:25 +1000 (Sat, 11 Jul 2009) | 1 line Fix oversight in r42361 and also handle consecutive copied characters in SAGA. ........ r42380 | drmccoy | 2009-07-11 20:24:06 +1000 (Sat, 11 Jul 2009) | 1 line Explicitely instantiate the decompressWizImage() templates, so that they won't be optimized away, as they are also used in akos.cpp ........ svn-id: r42381
2009-07-11Explicitely instantiate the decompressWizImage() templates, so that they ↵Sven Hesse
won't be optimized away, as they are also used in akos.cpp svn-id: r42380
2009-07-11Fix oversight in r42361 and also handle consecutive copied characters in SAGA.Willem Jan Palenstijn
svn-id: r42378
2009-07-11Bugfix to properly save the currently playing midi music when saving a scenePaul Gilbert
svn-id: r42377
2009-07-11Only error out, if checkStaticSelectorNames() fails.Travis Howell
svn-id: r42376
2009-07-11Applied patch 2818733 - "SCI: Timer iterator for audio resources played via ↵Filippos Karapetis
doSound" svn-id: r42375
2009-07-11Applied slightly modified patch 2819002 - "SCI: resource-view-patch on ↵Filippos Karapetis
SQ5/German fix" svn-id: r42374
2009-07-11Removed an invalid detection entryFilippos Karapetis
svn-id: r42373
2009-07-11Applied a slightly modified patch from clone2727 which adds static selector ↵Filippos Karapetis
names to some demos which are missing them (KQ4, LSL1, LSL3, Iceman and Christmas1992) svn-id: r42372
2009-07-11Fixed regression in the script parser from commit 42260Filippos Karapetis
svn-id: r42371
2009-07-11Added initialisation of paging screens when the game startsPaul Gilbert
svn-id: r42370
2009-07-11Active background screens are now properly freed when the game exitsPaul Gilbert
svn-id: r42369
2009-07-11Bugfix to show the mouse cursor when restarting the game after returning to ↵Paul Gilbert
launcher svn-id: r42368
2009-07-11Removed the now uneeded "Screen::_disableScreen" flag.Johannes Schickel
svn-id: r42366
2009-07-11Fix graphics not updating, when loading a save in Kyra1. This fixes problems ↵Johannes Schickel
when loading saves in rooms like Brynn's temple, which play animations directly on scene enter. svn-id: r42365
2009-07-11Fix bug #2819628 - DETECTOR: Atlantis CD sets wrong gui options.Travis Howell
svn-id: r42364
2009-07-11Fix SAGA outline generation algorithm for charactersWillem Jan Palenstijn
that are copies of earlier characters. (5 characters in IHNM.) This fixes #1904624. svn-id: r42361
2009-07-11Fix recent regression in AGOSEngine_Simon1::drawImage().Travis Howell
svn-id: r42360
2009-07-10Merged revisions 42322,42328,42345-42346,42354-42358 via svnmerge from Travis Howell
https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk ........ r42322 | dreammaster | 2009-07-10 10:49:13 +1000 (Fri, 10 Jul 2009) | 1 line Changed the status of the Tinsel engine to be enabled by default ........ r42328 | sev | 2009-07-10 18:40:44 +1000 (Fri, 10 Jul 2009) | 2 lines Mention cruise support ........ r42345 | thebluegr | 2009-07-11 04:53:40 +1000 (Sat, 11 Jul 2009) | 1 line Applied patch #2819665 - "SCI: cell palette fix for QfG3/SQ5/etc." ........ r42346 | sev | 2009-07-11 05:06:24 +1000 (Sat, 11 Jul 2009) | 2 lines This is 1.0.0svn ........ r42354 | drmccoy | 2009-07-11 07:49:47 +1000 (Sat, 11 Jul 2009) | 1 line Fixing mismatched delete ........ r42355 | drmccoy | 2009-07-11 08:11:36 +1000 (Sat, 11 Jul 2009) | 1 line Mention the Gob savegame format change and change the version from 0.14.0 to 1.0.0 there too ........ r42356 | Hkz | 2009-07-11 08:13:27 +1000 (Sat, 11 Jul 2009) | 1 line tinsel: proper detection entry for Discworld 1 Italian only CD ........ r42357 | wjpalenstijn | 2009-07-11 08:29:25 +1000 (Sat, 11 Jul 2009) | 4 lines Recreate FSNode after calling checkPath since checkPath may have created the directory the FSNode points to, invalidating its cached metadata. In the future, it might be nice to add a FSNode::rescan() function for this? This fixes #2793187 . ........ r42358 | sev | 2009-07-11 08:46:36 +1000 (Sat, 11 Jul 2009) | 5 lines Restored several files after the version update. .in files are THE sources, and have to be modified, not the files generated from them. ........ svn-id: r42359
2009-07-10Restored several files after the version update.Eugene Sandulenko
.in files are THE sources, and have to be modified, not the files generated from them. svn-id: r42358
2009-07-10Recreate FSNode after calling checkPath since checkPath mayWillem Jan Palenstijn
have created the directory the FSNode points to, invalidating its cached metadata. In the future, it might be nice to add a FSNode::rescan() function for this? This fixes #2793187 . svn-id: r42357
2009-07-10tinsel: proper detection entry for Discworld 1 Italian only CDFabio Battaglia
svn-id: r42356
2009-07-10Mention the Gob savegame format change and change the version from 0.14.0 to ↵Sven Hesse
1.0.0 there too svn-id: r42355
2009-07-10Fixing mismatched deleteSven Hesse
svn-id: r42354
2009-07-10Whoops, and one more.Jody Northup
svn-id: r42351
2009-07-10Fixed a couple of errors in the new getSupportedFormats implementation.Jody Northup
svn-id: r42350