aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/myst_stacks
AgeCommit message (Collapse)Author
2017-08-08MOHAWK: Myst: Fix off by one pixel map position when rotating the towerBastien Bouclet
Fixes #10081.
2017-08-05MOHAWK: Myst: Display every second fireplace button animation frameBastien Bouclet
The animation is too slow when displaying each frame at 60 fps. Fixes #10053
2017-07-30MOHAWK: Myst: Set the mixer sound type to SFX for videosBastien Bouclet
Also simplify video filename construction.
2017-07-22MOHAWK: Myst: Fix Selenitic sound receiver buttons not flashingBastien Bouclet
The new screen update strategy does not allow scripts to draw twice at the same location for blinking.
2017-07-22MOHAWK: Myst: Fix error when checking the rocket sliders solution twiceBastien Bouclet
The game was trying to start playing the linking book video in a blocking way whereas it was set to loop by the first check. Fixes #9914.
2017-07-22MOHAWK: Myst: Don't cast function pointers when registering commandsBastien Bouclet
2017-07-22MOHAWK: Myst: Improve script execution tracingBastien Bouclet
2017-07-22MOHAWK: Myst: Switch to bounds checked opcode argumentsBastien Bouclet
2017-07-22MOHAWK: Myst: Rewrite the sound codeBastien Bouclet
It now more closely matches the original. Effect sounds are now stopped when resuming background sounds. Fixes #9574, Fixes #9920.
2017-07-22MOHAWK: Myst: Move the sound code to its own classBastien Bouclet
2017-07-22MOHAWK: Myst: Update the screen only once per frameBastien Bouclet
Change all inner loops to call the same frame function. Remove the draw delay code. Now that we have proper frame pacing it is not necessary anymore to wait before drawing to make sure the previous frame stayed on the screen long enough. Fixes #9915, #9922, #9923.
2017-07-22MOHAWK: Myst: Decorrelate hotspot handling from event handlingBastien Bouclet
This makes sure doFrame can be called from anywhere, including scripts.
2017-07-22MOHAWK: Myst: Change blocking sounds to use the main loopBastien Bouclet
2017-07-22MOHAWK: Myst: Change blocking movies and waits to use the main loopBastien Bouclet
2017-07-22MOHAWK: Remove unused parameters VideoManagerBastien Bouclet
2017-07-22MOHAWK: Get rid of VideoHandleBastien Bouclet
2017-07-22MOHAWK: Myst: Remove delayUntilMovieEndsBastien Bouclet
This will break movies called by scripts until event handling is decorrelated from script calls.
2017-07-09MOHAWK: Myst: Fix the sound receiver sound restarting on each frameBastien Bouclet
Fixes #9921.
2017-07-09MOHAWK: Myst: Fix the piano sound effect restarting when moving the mouseBastien Bouclet
Fixes #9916.
2017-07-05MOHAWK: Myst: Poll for events every 10ms when waitingBastien Bouclet
2017-07-03MOHAWK: Poll for events in two inner game loops on SeleniticBastien Bouclet
This should hopefully prevent Windows from showing a 'busy' cursor. Fixes Trac#9570.
2017-03-18MOHAWK: Allow the mouse cursor to move while drawing in a tight loopBastien Bouclet
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-09-25MOHAWK: Fix the tower rotation line to be white instead of blackBastien Bouclet
This was a regression from the default palette change. Fixes #9567.
2016-04-14JANITORIAL: Reduce GUI header dependenciesOri Avtalion
2016-03-28MOHAWK: Play the gears sound when resetting the Myst clock puzzleBastien Bouclet
Fixes #7093.
2016-03-05MOHAWK: Fix error at the end of the Myst creditsBastien Bouclet
2016-03-05MOHAWK: Add a method to get a video handle from a MystAreaVideoBastien Bouclet
Use it to fix the fortress rotation controls once more
2016-03-05MOHAWK: Fix the sound receiver initially displaying an incorrect viewBastien Bouclet
2016-03-05MOHAWK: Fix the Selenitic sound receiver speed being too fastBastien Bouclet
The rotation speed no longer goes directly to the maximum possible speed after one second. This bug also happened in the original.
2016-03-05MOHAWK: Fix garbage being drawn when pressing the rockey piano keysBastien Bouclet
Was a regression introduced in 085f3700f7cd6ddb23abe3719ca21b7025695da4
2016-03-05MOHAWK: Fix one of the Channelwood monitor movies being misalignedBastien Bouclet
2016-03-05MOHAWK: Adjust the Myst gauge boiler movie to the new VideoHandle semanticsBastien Bouclet
Fixes it not being updated.
2016-02-22MOHAWK: Silence a warningBastien Bouclet
2016-02-20MOHAWK: Fix Channelwood's opcode 129Bastien Bouclet
It should only play the sound if no other is already playing
2016-02-20MOHAWK: Remove an unneeded TODOBastien Bouclet
The original did not set the argument to wait until the foreground sound has finished before playing the background sound, so it's fine to play both at the same time.
2016-02-14MOHAWK: Play the handle going up anim when closing the Myst cabin safeBastien Bouclet
2016-02-07MOHAWK: Fix Myst's fortress simulator using a hackBastien Bouclet
The proper solution implies support for playing movies with edit lists backwards in QT code.
2016-02-07MOHAWK: Fix uninitialized memory accesses in the Myst stacksBastien Bouclet
2016-02-07MOHAWK: Fix some incorrect MystArea castsBastien Bouclet
2016-02-07MOHAWK: Don't use static_cast to downcast view resourcesBastien Bouclet
2016-02-07MOHAWK: Don't downcast _invokingResource using static_castBastien Bouclet
2016-02-07MOHAWK: Rename Myst's Area classesBastien Bouclet
2016-02-07MOHAWK: Make MystResourceType8::_subImages privateBastien Bouclet
2016-02-07MOHAWK: Use nullptr where applicable in the Myst codeBastien Bouclet
2016-02-07MOHAWK: Add override qualifiers to the Myst codeBastien Bouclet
2016-01-13MOHAWK: Fix the getter for Channelwood's var 32Bastien Bouclet
2015-12-14MOHAWK: Fix loading the Myst cabin gauge movieBastien Bouclet
2015-07-17MOHAWK: Move further VideoManager functionality to VideoEntryMatthew Hoops
2015-07-17MOHAWK: Make video handles actual objectsMatthew Hoops