Age | Commit message (Collapse) | Author | |
---|---|---|---|
2014-01-19 | FULLPIPE: Implement sceneHandler38_drink() | Eugene Sandulenko | |
2014-01-19 | FULLPIPE: Implement sceneHandler38() | Eugene Sandulenko | |
2014-01-19 | FULLPIPE: Implement scene38_setBottleState() | Eugene Sandulenko | |
2014-01-19 | FULLPIPE: Plug scene38 in | Eugene Sandulenko | |
2014-01-19 | FULLPIPE: Initial code for scene38 | Eugene Sandulenko | |
2014-01-18 | NEVERHOOD: Add a todo in the readme related to engine data | Strangerke | |
2014-01-18 | MORTEVIELLE: Enable engine by default | Strangerke | |
2014-01-18 | CONFIGURE: Disable taskbar integration for Dreamcast. | D G Turner | |
This caused an exception if a error() call occurs, rather than a clean exit. This occurred in the defaultErrorHandler() function of engines/engine.cpp, probably due to g_system->getTaskbarManager() returning a null pointer. | |||
2014-01-18 | FULLPIPE: Silence GCC warnings. | Torbjörn Andersson | |
2014-01-18 | FULLPIPE: Renames in scene37. This completes the scene | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Implement sceneHandler37_updateRing() | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Plug scene37 in | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Implement sceneHandler37_setRingsState() | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Implement sceneHandler37() | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Implement scene37_updateCursor() | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Plug scene37 in | Eugene Sandulenko | |
2014-01-18 | FULLPIPE: Initial code for scene37 | Eugene Sandulenko | |
2014-01-18 | KYRA: Slight formatting fix. | Johannes Schickel | |
2014-01-18 | SCUMM: Fix some GCC warnings. | Johannes Schickel | |
2014-01-18 | KYRA: Make pointers to VQAHeader const | Torbjörn Andersson | |
This is just to enforce the idea that VQADecoder owns the VQAHeader and that the audio/video tracks are only allowed to look at it, not change it. | |||
2014-01-18 | KYRA: Restructure the VQA decoder, as suggested by clone2727 | Torbjörn Andersson | |
Untangled the audio and video track from each other, and the parsing of the stream from the decoding of its data. Also fixed a memory leak as it turns out deleting a Surface doesn't free its data. You have to call free() in it. I have only checked the intro, not every cutscene, but that seems to work fine at least. | |||
2014-01-18 | KYRA: Let the VQA decoder draw directly to the backend | Torbjörn Andersson | |
As an alternative to using the Screen class's functions, we can let the VQA decoder draw directly to the backend. This won't work if the game uses "hi-res mode", but I don't think that's ever the case for Malcolm's Revenge. I believe the KyraEngine_MR::playVQA() function ensures that the screen is properly updated after the movie has finished. This almost limits the VQA rewrite to vqa.cpp and vqa.h. Whether it's better this way than changing the Screen functions to take a 'pitch' parameter...? I don't know. But it's an alternative. | |||
2014-01-18 | KYRA: Rewrite the VQA decoder, using the VideoDecoder classes | Torbjörn Andersson | |
There isn't really a lot of benefit to this, but I think it's nicer if all our video decoders at least try to use the same infrastructure. | |||
2014-01-17 | VIDEO: Fix a typo in the include guard | Matthew Hoops | |
2014-01-17 | VIDEO: Add MJPEG support | Matthew Hoops | |
2014-01-17 | Merge pull request #417 from digitall/STACK_fixes | Johannes Schickel | |
ALL: Fix optimization unstable code on checking for null after new. | |||
2014-01-17 | VIDEO: Rename the Motion JPEG decoder to JPEG to better reflect its purpose | Matthew Hoops | |
This JPEG is separate from the modified JPEG format used in MJPEG | |||
2014-01-17 | NEWS: Fix order of games/engines | Matthew Hoops | |
2014-01-17 | NEWS: Mention HE save changes | Matthew Hoops | |
2014-01-17 | Merge pull request #366 from clone2727/he-saves-target-name | clone2727 | |
RFC: Make HE games use the target name in all save files | |||
2014-01-17 | MORTEVIELLE: Some refactoring in Action | Strangerke | |
2014-01-17 | MORTEVIELLE: rename a variable | Strangerke | |
2014-01-17 | FULLPIPE: Enable scene35 | Eugene Sandulenko | |
2014-01-17 | FULLPIPE: Renames in scene35. This completes the scene | Eugene Sandulenko | |
2014-01-17 | FULLPIPE: Implement sceneHandler35_genFlies() | Eugene Sandulenko | |
2014-01-17 | MORTEVIELLE: Remove unused structure and an obsolete comment | Strangerke | |
2014-01-17 | CGE: Further alignment fixes to Bitmap class. | D G Turner | |
This fixes bug #6476 - "DC: Soltys (CGE) crashes at start up". | |||
2014-01-16 | TONY: Cleanup (don't compare pointer with false). | Johannes Schickel | |
2014-01-16 | KYRA: Slight cleanup. | Johannes Schickel | |
2014-01-16 | AUDIO: Cleanup MT-32 code a bit. | Johannes Schickel | |
This removes overwrites in ReportHandlerScummVM which are simply the default implementation anyway. A side effect is that this silences/fixes a warning about the former onProgramChanged to hide an virtual method due to parameter differences. | |||
2014-01-16 | FULLPIPE: Implement sceneHandler35_startFlow() | Eugene Sandulenko | |
2014-01-16 | FULLPIPE: Implement sceneHandler35_stopFlow() and _shrink() | Eugene Sandulenko | |
2014-01-16 | FULLPIPE: Implement sceneHandler35() | Eugene Sandulenko | |
2014-01-16 | AUDIO: Register EAS sound driver as plain sound type. | Johannes Schickel | |
MIDI code will control volume via MIDI events thus the generated audio should not be affected by mixer sound volumes. The initial commit 0e6cdfd67580f75e912c5e92abb26821d032f74b added it as music sound type. Might be copied from the (also) incorrect FluidSynth code. | |||
2014-01-16 | AUDIO: Register FluidSynth driver as plain sound type. | Johannes Schickel | |
MIDI code will control volume via MIDI events thus the generated audio should not be affected by mixer sound volumes. The initial commit(s) in d4d045b1174b4a48659f39f026ade42684b679bf / 13dc149ded691e718905049990dd0220230c500e added it as music sound type. So, this seems to be a long standing issue. | |||
2014-01-16 | AUDIO: Register MT-32 emulator as plain sound type. | Johannes Schickel | |
Formerly the audio stream was registered as sfx. This is incorrect behavior since the client code will control music volume with MIDI events on its own. It seems 67b311713d8f4cfcd460a9649e0075f24278a048 introduced this very long ago. This should fix unintended coupling of sfx volume and music volume in BASS. | |||
2014-01-16 | FULLPIPE: Plug scene35 in | Eugene Sandulenko | |
2014-01-16 | FULLPIPE: Initial code for scene35 | Eugene Sandulenko | |
2014-01-15 | AVALANCHE: Move Clock to dedicated files. | uruk | |
2014-01-15 | AVALANCHE: Fix another bug regarding speaking. | uruk | |
This prevents the player from giving commands to Avalot when the character is tied up to a tree, so it's impossible to break the game's consistency that way. |