aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/video.cpp
AgeCommit message (Collapse)Author
2011-12-12MOHAWK: Fix Stoneship's hologram projectorMatthew Hoops
2011-06-20ALL: Remove trailing whitespacesMax Horn
This tries to make our code a bit more compliant with our code formatting conventions. For future use, this is the command I used: git ls-files "*.cpp" "*.h" | xargs sed -i -e 's/[ \t]*$//'
2011-06-14MOHAWK: Finish implementation of Riven's storeMovieOpcode opcodeMatthew Hoops
2011-05-12GIT: Clean up: Suppress SVN tags, now uselessstrangerke
2011-05-01Merge pull request #16 "Add a PixelFormat to Graphics::Surface.".Johannes Schickel
For further discussion check here: https://github.com/scummvm/scummvm/pull/16 Conflicts: graphics/png.cpp
2011-04-28JANITORIAL: Reduce header dependencies in shared codeOri Avtalion
Some backends may break as I only compiled SDL
2011-04-17MOHAWK: Do not access Surface::bytesPerPixel anymore.Johannes Schickel
2011-04-17MOHAWK: Prefer Surface::create taking a PixelFormat over the one taking a ↵Johannes Schickel
byte depth.
2011-03-21MOHAWK: Add a getDuration() function to the VideoManagerMatthew Hoops
2011-02-09VIDEO: Remove unused SeekableVideoDecoder::seekToFrame methodMax Horn
svn-id: r55844
2011-02-07VIDEO: Replace Video::VideoTimestamp with Audio::TimestampMax Horn
svn-id: r55814
2011-02-07VIDEO: Rename VideoDecoder::load() to loadStream()Max Horn
svn-id: r55810
2011-02-02MOHAWK: Fix GCC-3 cast warning.David Turner
Seen with a number of buildbot chains. svn-id: r55718
2011-01-27MOHAWK: Allow videos to be paused individuallyBastien Bouclet
svn-id: r55576
2011-01-23MOHAWK: Fix the Riven demo intro sequence (a regression from r55188)Matthew Hoops
svn-id: r55484
2011-01-23VIDEO: Move video classes to Video:: namespaceEugene Sandulenko
svn-id: r55479
2011-01-23GRAPHICS: Move graphics/video/ to video/. Step 1/2Eugene Sandulenko
svn-id: r55473
2011-01-18MOHAWK: Rename some VideoManager functions so we have some unified naming ↵Matthew Hoops
between versions svn-id: r55312
2011-01-18MOHAWK: Add a sanity check to waitUntilMovieEnds()Matthew Hoops
svn-id: r55309
2011-01-15MOHAWK: Implement Myst's clock tower gears puzzleBastien Bouclet
svn-id: r55253
2011-01-14MOHAWK: Don't delete the wrong video.Alyssa Milburn
svn-id: r55241
2011-01-11MOHAWK: Set the system palette on 8bpp videos when in 8bpp modeMatthew Hoops
svn-id: r55210
2011-01-11MOHAWK: Adapt the VideoManager to allow for seeking; cleanupMatthew Hoops
svn-id: r55204
2011-01-09MOHAWK: Cleanup named video handlingMatthew Hoops
svn-id: r55188
2010-12-21MOHAWK: Remove sound.h include from resource.hAlyssa Milburn
svn-id: r54988
2010-12-16VIDEO: Remove the need to call updateAudioBuffer() externally for QuickTimeMatthew Hoops
svn-id: r54929
2010-12-16VIDEO: Make VideoDecoder::getPalette() return a const byte pointerMatthew Hoops
svn-id: r54928
2010-12-16VIDEO: Make VideoDecoder::decodeNextFrame() return a const Surface pointerMatthew Hoops
svn-id: r54927
2010-12-09MOHAWK: Allow background videos to be played/manipulated with resource handlesAlyssa Milburn
svn-id: r54843
2010-11-23MOHAWK: Pass objs by const ref not by valueMax Horn
svn-id: r54443
2010-11-20MOHAWK: Cleanup resource handlingMatthew Hoops
- Renamed getRawData() to getResource() - Add a getResource() and hasResource() function for named resources - Other minor formatting changes svn-id: r54396
2010-09-03MOHAWK: Improve support for the Riven DemoMatthew Hoops
- The exit button now appears and is functional - The intro movies now play on start up - Add shortcuts for returning to the menu/playing the intro videos again - Make the text when hitting a boundary match the original - Change the wording of the browser button message - Note: The demo's extras.mhk (not the full game's!) is required now svn-id: r52509
2010-09-01MOHAWK: Implement xbookclickMatthew Hoops
It is now possible to trap Gehn in the trap book. Side note: Riven is now completable from the beginning provided you know the D'ni number system already (and the marble puzzle is just hacked to always work). svn-id: r52482
2010-08-04GRAPHICS: Change signature of VideoDecoder::load()Max Horn
Now takes a pointer to a stream, instead of a reference. The rational is that in all instances, callers have a pointer (and dereference it to call load), and all load implementations turn the reference back into a pointer. svn-id: r51725
2010-06-02Fix a regression from r49377 - we should be checking against code in ↵Matthew Hoops
addition to index for duplicate MLST's. svn-id: r49395
2010-06-01Fix videos in Riven activated from a different card from which they are ↵Matthew Hoops
played; minor cleanup. svn-id: r49377
2010-05-27Add some null checking when pausing/resuming videos.Matthew Hoops
svn-id: r49254
2010-05-26Fix the 'boiling water' videos in the boiler puzzle.Matthew Hoops
svn-id: r49237
2010-05-25Fix a Myst regression: not a good idea to use memset on a Common::String :)Matthew Hoops
svn-id: r49215
2010-05-25Implement *scpbtn and *_domecheck. The domes can now be opened/closed (not ↵Matthew Hoops
using the sliders). svn-id: r49208
2010-05-23Move Mohawk's QuickTime code to graphics/ (and QDM2 to sound, disabled when ↵Matthew Hoops
Mohawk is not enabled) so SCI can use the code. svn-id: r49165