Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-07-08 | MOHAWK: MYST: Play complete audio clip when changing the boiler pressure | Bastien Bouclet | |
Fixes Trac#10607. | |||
2018-07-03 | MOHAWK: MYST: Use degree conversion common math funcs | David Fioramonti | |
2018-06-24 | Merge pull request #1220 from dafioram/mystDaySlider | Bastien Bouclet | |
MOHAWK: MYST: Increment y_pos of observatory day slider faster | |||
2018-06-19 | MOHAWK: MYST: Fix out of bounds read when redrawing the observatory | Bastien Bouclet | |
The observatory go button computes random 105x106 rectangles in the 512x512 star image. The previous code would allow to go out of bounds by 3 pixels. Interestingly the bug is in the original engine disassembly perhaps it could crash as well. Fixes Trac#10576. | |||
2018-06-19 | MOHAWK: MYST: Increment y_pos of observatory day slider faster | David Fioramonti | |
Fixes Trac#10572. The day slider does not go all the way to the bottom (day 31st) when the down arrow is used to increment the day. This change increases how much y displacement happens with each change in the day so that the bottom is reach on day 31st. This is just a graphical bug and doesn't affect the logic of the puzzle. The day slider can also be dragged to the bottom without using the buttons. | |||
2018-06-13 | MOHAWK: MYST: Make the scripts time accounting pause safe | Bastien Bouclet | |
2018-06-13 | MOHAWK: MYST: Move the current stack id to ScriptParser | Bastien Bouclet | |
2018-06-13 | MOHAWK: MYST: Extract a Card class out of the main engine class | Bastien Bouclet | |
This is to allow having multiple cards loaded at the same time in the future. | |||
2018-04-27 | MOHAWK: MYST: Make Dni/Atrus endings an enum | David Fioramonti | |
The global variable "ending" tracks various states that Atrus can be in. This variable determines what video of Atrus will be playing and if the brother books have been destroyed. Despite this variable being called ending there are other endings not captured by this variable (like the brother endings). Also change spelling of Dini to Dni for one usage of ActiveAge from a previous commit. | |||
2018-04-26 | MOHAWK: MYST: Make global currentAge an enum | David Fioramonti | |
This global basically tracks what age/book/stack the player is in. It is also used to change stacks via MohawkEngine_Myst::changeToStack() by being an index for MystScriptParser::_stackMap and MystScriptParser::_startCard. E.x., instead of _global.currentAge = 2 now _global.currentAge = kMystLibrary. Also two of the endings are considered Ages instead of being apart of _global.ending. | |||
2018-04-25 | MOHAWK: MYST: Turn held page state into an enum | dafioram | |
Previously, the held page stage was an unsigned int 16 with values 0-13. The enum will make its state more clear. | |||
2018-04-24 | MOHAWK: MYST: Redraw the tower angle line after the rotation completes | Bastien Bouclet | |
Fixes Trac#10499. | |||
2018-04-15 | JANITORIAL: Fix code formatting | Eugene Sandulenko | |
2018-04-15 | MOHAWK: MYST: Fix Observatory displayed hour from 0:XX to 12:XX | David Fioramonti | |
Fixes #Trac10486. For 12 Hr format versions, in ScummVM when the hour was set to what should be 12:XX it was displayed as 0:XX. This differs with the original English versions which displays the 12:xx. I verified this fix in both Myst ME and Myst English CD. | |||
2018-04-15 | MOHAWK: MYST: Fix observatory slider sounds repeating too quickly | Bastien Bouclet | |
Add delays to simulate running at a lower framerate. | |||
2018-04-11 | MOHAWK: MYST: Fix missing sound effect when using the rocket slider | Bastien Bouclet | |
Fixes #10485. | |||
2018-04-02 | MOHAWK: MYST: Initialize more variables | Bastien Bouclet | |
To make static analysis tools quiet. | |||
2018-04-02 | MOHAWK: MYST: Implement opcodes 178 and 179 | Bastien Bouclet | |
Used when turning pages in the library. Some versions of the game appear to use them. Fixes #10474. | |||
2018-03-31 | MOHAWK: Fix some clang-tidy warnings | Bastien Bouclet | |
2017-08-10 | MOHAWK: Myst: Restore the backbuffer after toggling off fireplace buttons | Bastien Bouclet | |
Fixes #10064 | |||
2017-08-08 | MOHAWK: Myst: Fix off by one pixel map position when rotating the tower | Bastien Bouclet | |
Fixes #10081. | |||
2017-08-05 | MOHAWK: Myst: Display every second fireplace button animation frame | Bastien Bouclet | |
The animation is too slow when displaying each frame at 60 fps. Fixes #10053 | |||
2017-07-30 | MOHAWK: Myst: Set the mixer sound type to SFX for videos | Bastien Bouclet | |
Also simplify video filename construction. | |||
2017-07-22 | MOHAWK: Myst: Fix error when checking the rocket sliders solution twice | Bastien 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-22 | MOHAWK: Myst: Don't cast function pointers when registering commands | Bastien Bouclet | |
2017-07-22 | MOHAWK: Myst: Improve script execution tracing | Bastien Bouclet | |
2017-07-22 | MOHAWK: Myst: Switch to bounds checked opcode arguments | Bastien Bouclet | |
2017-07-22 | MOHAWK: Myst: Rewrite the sound code | Bastien Bouclet | |
It now more closely matches the original. Effect sounds are now stopped when resuming background sounds. Fixes #9574, Fixes #9920. | |||
2017-07-22 | MOHAWK: Myst: Move the sound code to its own class | Bastien Bouclet | |
2017-07-22 | MOHAWK: Myst: Update the screen only once per frame | Bastien 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-22 | MOHAWK: Myst: Decorrelate hotspot handling from event handling | Bastien Bouclet | |
This makes sure doFrame can be called from anywhere, including scripts. | |||
2017-07-22 | MOHAWK: Myst: Change blocking sounds to use the main loop | Bastien Bouclet | |
2017-07-22 | MOHAWK: Myst: Change blocking movies and waits to use the main loop | Bastien Bouclet | |
2017-07-22 | MOHAWK: Get rid of VideoHandle | Bastien Bouclet | |
2017-07-22 | MOHAWK: Myst: Remove delayUntilMovieEnds | Bastien Bouclet | |
This will break movies called by scripts until event handling is decorrelated from script calls. | |||
2017-07-09 | MOHAWK: Myst: Fix the piano sound effect restarting when moving the mouse | Bastien Bouclet | |
Fixes #9916. | |||
2017-07-05 | MOHAWK: Myst: Poll for events every 10ms when waiting | Bastien Bouclet | |
2017-03-18 | MOHAWK: Allow the mouse cursor to move while drawing in a tight loop | Bastien Bouclet | |
2016-10-09 | JANITORIAL: Remove trailing spaces | Eugene Sandulenko | |
2016-09-25 | MOHAWK: Fix the tower rotation line to be white instead of black | Bastien Bouclet | |
This was a regression from the default palette change. Fixes #9567. | |||
2016-04-14 | JANITORIAL: Reduce GUI header dependencies | Ori Avtalion | |
2016-03-28 | MOHAWK: Play the gears sound when resetting the Myst clock puzzle | Bastien Bouclet | |
Fixes #7093. | |||
2016-03-05 | MOHAWK: Fix garbage being drawn when pressing the rockey piano keys | Bastien Bouclet | |
Was a regression introduced in 085f3700f7cd6ddb23abe3719ca21b7025695da4 | |||
2016-03-05 | MOHAWK: Adjust the Myst gauge boiler movie to the new VideoHandle semantics | Bastien Bouclet | |
Fixes it not being updated. | |||
2016-02-20 | MOHAWK: Remove an unneeded TODO | Bastien 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-14 | MOHAWK: Play the handle going up anim when closing the Myst cabin safe | Bastien Bouclet | |
2016-02-07 | MOHAWK: Fix some incorrect MystArea casts | Bastien Bouclet | |
2016-02-07 | MOHAWK: Don't use static_cast to downcast view resources | Bastien Bouclet | |
2016-02-07 | MOHAWK: Don't downcast _invokingResource using static_cast | Bastien Bouclet | |
2016-02-07 | MOHAWK: Rename Myst's Area classes | Bastien Bouclet | |