aboutsummaryrefslogtreecommitdiff
path: root/engines/agos/animation.cpp
AgeCommit message (Collapse)Author
2009-05-20- Reverted commit #40730, as it introduced rounding errorsFilippos Karapetis
- Properly fixed the FLIC player - The sound chunk tag of DXA files is now read by the DXADecoder's loadFile() method svn-id: r40736
2009-05-19Improve looping of videos, in the demo version of The Feeble Files.Travis Howell
svn-id: r40716
2009-05-16Add initial support for DOS non-interactive demos of The Feeble Files.Travis Howell
svn-id: r40619
2009-05-14Fix bug #2791699 - Feeble Files: Crash after OmniTV video.Travis Howell
svn-id: r40560
2009-04-24Minor cleanup.Travis Howell
svn-id: r40099
2009-04-24Fix pausing during video play back.Travis Howell
svn-id: r40098
2009-04-22Fix crash that occurs when OmniTV video is played completely, in The Feeble ↵Travis Howell
Files. svn-id: r40063
2009-03-09Renamed SMKPlayer -> SmackerDecoder and DXAPlayer -> DXADecoder, as well as ↵Max Horn
some other tweaks svn-id: r39255
2009-01-27Extended makeWAVStream by a 'disposeAfterUse' param; changed makeWAVStream ↵Max Horn
to directly return the AudioStream created by makeADPCMStream svn-id: r36085
2009-01-20Fix bug #2522556 - FEEBLE: Cutscene not found, Crash.Travis Howell
svn-id: r35935
2009-01-06Updated AGOS with the latest changes to video playersFilippos Karapetis
svn-id: r35758
2009-01-03AGOS Smacker player: Wait for the *next* frame to be displayed, not the ↵Filippos Karapetis
current one svn-id: r35707
2009-01-03Properly using SMKPlayer::getFrameWaitTime() in MoviePlayerSMK::processFrame()Sven Hesse
svn-id: r35699
2009-01-03This should fix the SMK playing bug discussed in the forumsSven Hesse
SMKPlayer::getFrameDelay() returns the time to wait _in 1/100 ms_. svn-id: r35696
2008-12-31Added punctuation to the error dialog I added before.Torbjörn Andersson
svn-id: r35643
2008-12-31Display an error message if the cutscene cannot be found. (Afterwards, ScummVMTorbjörn Andersson
will trigger an assertion and die, so this is still far from ideal...) svn-id: r35640
2008-12-29Fixed typoFilippos Karapetis
svn-id: r35611
2008-12-21Return exact frame rate in Smacker player, and minor cleanup.Travis Howell
svn-id: r35458
2008-12-21Add initial Smacker support for The Feeble Files.Travis Howell
svn-id: r35457
2008-12-14Enable Smacker support, and switch later HE games to Smacker support (since ↵Travis Howell
they aren't supported yet). svn-id: r35368
2008-10-06Added new type Engine::Feature; pushed down some #include dependenciesMax Horn
svn-id: r34755
2008-09-30Renamed Engine::quit to Engine::shouldQuit (previously, it was easily ↵Max Horn
confused with Engine::quitGame); also cleaned up engine.h a bit svn-id: r34700
2008-08-13Cleanup: Got rid of _quit and _rtl variables in engine.h/.cpp which are not ↵Christopher Page
used anymore. Found some _quit flags in Agos and Gob and replaced with bool quit() where appropriate svn-id: r33848
2008-08-09Merged revisions ↵Christopher Page
33632-33633,33635,33637,33639-33640,33642-33645,33648,33654-33655,33664,33667-33670,33673-33674,33678,33682,33686-33691,33693,33696,33698,33700,33703,33708,33710,33712-33714,33716 via svnmerge from https://scummvm.svn.sourceforge.net/svnroot/scummvm/scummvm/trunk svn-id: r33720
2008-08-08Hopefully allow quiting at any stage AGOS engines games again.Travis Howell
svn-id: r33693
2008-07-10Removed unnecessary #inlcudesChristopher Page
svn-id: r32984
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-06-16AGOS: Found a system->quit(), changed to _quit=trueChristopher Page
svn-id: r32718
2007-11-01Revert patch #1709219 - DXA Player: double size scaling option.Travis Howell
svn-id: r29351
2007-11-01Fix play back of OmniTV videos in The Feeble Files for now.Travis Howell
svn-id: r29350
2007-10-31Slighly modified patch #1709219: "DXA Player: double size scaling option"Eugene Sandulenko
svn-id: r29347
2007-09-19Merged common/stdafx.h into common/scummsys.h. All referencing files have ↵Nicola Mettifogo
been updated. svn-id: r28966
2007-06-27Clear any paused OmniTV video, when playing another video. To fix crashes in ↵Travis Howell
The Feeble Files, when another video is played between the pause and restart of an OmniTV video. svn-id: r27737
2007-06-21Fix regressions, due to buffer changes and cleanup.Travis Howell
svn-id: r27578
2007-06-21Use frameBuffer directly, in order to drop extra buffer (frontBuffer) and ↵Travis Howell
cleanup code. svn-id: r27577
2007-06-12Add support for pausing/resume cutscenes shown on the OmniTV in The Feeble ↵Travis Howell
Files. svn-id: r27371
2007-06-10An OmniTV cutscene pack, with be provided for Amiga and Macintosh versions ↵Travis Howell
of The Feeble Files. svn-id: r27300
2007-06-02Actually drop the DXA frame (i.e. don't update the screen) when we say we do.Torbjörn Andersson
svn-id: r27053
2007-05-30Updated legal headers in source files, based on what Pidgin (the IM client ↵Max Horn
formerly knowns as Gaim) does; added new (incomplete) COPYRIGHT file; updated copyright dates in a few spots svn-id: r27024
2007-03-17Moved Event/EventType/keyboard enum from common/system.h (part of class ↵Max Horn
OSystem) to common/events.h (part of namespace Common). Porters may have to make minor changes to their backends to get them to compile again svn-id: r26180
2007-03-17Force all code to use EventManager::pollEvent instead of OSystem::pollEventMax Horn
svn-id: r26156
2007-01-01Add dxa file extension for short version of filenames too.Travis Howell
svn-id: r24961
2006-10-21CleanupTravis Howell
svn-id: r24397
2006-10-01When escaping a cutscene, stop its soundtrack as well. (I can't check if thisTorbjörn Andersson
is a problem in 0.9.0 as well, but surely not...?) svn-id: r24047
2006-09-29Phase 5 of Simon engine renaming. Renamed namespace Simon -> AGOS andEugene Sandulenko
SimonEngine -> AGOSEngine. Source is compilable and runnable again. I'm done. svn-id: r24013
2006-09-29Phase 2 of Simon renaming. Simon directory renamingEugene Sandulenko
svn-id: r24009