aboutsummaryrefslogtreecommitdiff
path: root/engines/mohawk/riven_stacks
AgeCommit message (Collapse)Author
2019-02-02MOHAWK: RIVEN: Add a console to quickly test all the cardsBastien Bouclet
Goes through all the cards clicking on hotspots at random.
2018-09-09MOHAWK: RIVEN: Return to main menu after the creditsDavid Fioramonti
Like the original the game loop returns to the main menu after the credits end. The variable states are reset and the player can start a new game or load an old one.
2018-08-11MOHAWK: RIVEN: Rework font loading so the TTF font is not leakedBastien Bouclet
2018-08-04MOHAWK: RIVEN: Fix crash when clicking on a marble with the mouse movingBastien Bouclet
In some cases a mouse moved event could be handled between the moment the xtakeit script was queued and the moment it is executed (on the same frame), causing the mouse position no longer to be over a marble rectangle. Fixes #10647.
2018-07-31MOHAWK: Fix Unused Variable Compiler Warning.D G Turner
This occurs when FreeType2 is not enabled and thus fontHeight variable is unused.
2018-07-27MOHAWK: RIVEN: Only use x mouse position to move dome slidersDavid Fioramonti
Fixes Trac#10642. The original engine will move the dome sliders whenever the player is dragging a dome slider to the left or right regardless of y position. In ScummVM the dome slider position would only change to the players x mouse position when the y value was also in the slider hotspot. This change removes the y check by making the point to be checked always have a y value in the hotspot rect. The x values are also bound to the max and min value that any of the slider hotspots can have. This allows the slider to go all the way to the left and right even if the user has gone past the slider area to the left or right while still holding the slider.
2018-07-17MOHAWK: RIVEN: Fix white screen before a bad ending's creditsBastien Bouclet
This was happening in the Polish version only. Fixes #10632.
2018-07-13MOHAWK: RIVEN: Queue opening and closing the main menu as scriptsBastien Bouclet
This way all the other actions are blocked while the card load scripts are executed. Expecially, it's not possible anymore to open the main menu while the scripts for returning from the main menu are still executing. Fixes Trac#10628.
2018-07-02MOHAWK: RIVEN: Fix the credits not showing in the Polish versionBastien Bouclet
Fixes Trac#10589
2018-06-29MOHAWK: RIVEN: Tweak a bit the main menu itemsBastien Bouclet
* Move the text to the left so the japanese version is not cut. * Increase the size of the text so it looks better when scaled up.
2018-06-29MOHAWK: RIVEN: Improve some of the main menu translationsBastien Bouclet
2018-06-29MOHAWK: RIVEN: Restrict new menu to 25th Anniversary gamesEugene Sandulenko
2018-06-29MOHAWK: RIVEN: Added Japanese font and menu translationEugene Sandulenko
2018-06-29MOHAWK: RIVEN: Translated new menu entriesEugene Sandulenko
2018-06-29MOHAWK: RIVEN: Show confirmation dialogs on the main menuBastien Bouclet
2018-06-29MOHAWK: RIVEN: Fix starting a new game with a game currently activeBastien Bouclet
2018-06-29MOHAWK: RIVEN: Fix loading and resuming from the main menuBastien Bouclet
2018-06-29MOHAWK: RIVEN: Fix compilation without RivenBastien Bouclet
2018-06-29MOHAWK: RIVEN: Add more options to the main menuBastien Bouclet
2018-06-29MOHAWK: RIVEN: Patch in the load menu for the game versions missing itBastien Bouclet
2018-06-29MOHAWK: RIVEN: Localize menusEugene Sandulenko
2018-06-29MOHAWK: RIVEN: Fix crash for German RivenEugene Sandulenko
2018-06-29MOHAWK: RIVEN: Add a save button to the main menuBastien Bouclet
2018-06-29MOHAWK: RIVEN: Draw menu with TTF fontsEugene Sandulenko
2018-05-24JANITORIAL: Fix trailing whitespaceAdrian Frühwirth
2018-05-18MOHAWK: RIVEN: Always release the prison combination buttonsBastien Bouclet
Fixes Trac#10525.
2018-05-10MOHAWK: RIVEN: Hide the mouse cursor after pressing a prison code buttonBastien Bouclet
It now matches the behavior of the original engine. Fixes #10521.
2017-11-26MOHAWK: RIVEN: Allow turning book pages more quicklyBastien Bouclet
Fixes #10075
2017-08-11MOHAWK: Riven: Fix pin rotation handle sometimes disappearingBastien Bouclet
It was due to inaccurate rotation movie bounds. Fixes #10086.
2017-08-10MOHAWK: Riven: Neutralize the timer when moving the Ytram trap upBastien Bouclet
Fixes #10103.
2017-08-06MOHAWK: Riven: Add keyboard navigationBastien Bouclet
2017-07-29MOHAWK: Riven: Let the gameloop gracefully end when quittingBastien Bouclet
Prevents the quit confirmation dialog from being displayed at the end of the game's ending if it is enabled. Fixes #9943.
2017-07-09MOHAWK: Riven: Fix use after free when using the trap bookBastien Bouclet
2017-07-04MOHAWK: Only disable videos when turning off the prison viewerBastien Bouclet
Closing them was causing a crash when using the lake viewer since there is nothing to load back the lake video. Fixes Trac#9892.
2017-07-03MOHAWK: Switch external command arguments to Common::ArrayBastien Bouclet
2017-07-03MOHAWK: Get rid of refreshCardBastien Bouclet
2017-07-03MOHAWK: Reenable the Riven demo specific featuresBastien Bouclet
2017-07-03MOHAWK: Fix the inventory being visible when scripts are runningBastien Bouclet
2017-07-03MOHAWK: Preload all the PE cursors on startupBastien Bouclet
We were previously reloading the current cursor from raw data on each frame.
2017-07-03MOHAWK: Check the Books external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Check the Office island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Check the Rebel island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Check the Prison island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Switch timers to script commandsBastien Bouclet
2017-07-03MOHAWK: Check the Garden island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Check the Temple island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Check the Book making island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Check the Jungle island external commands against the originalBastien Bouclet
2017-07-03MOHAWK: Rewrite the Riven movie managerBastien Bouclet
2017-07-03MOHAWK: Add an enum for Riven's command typesBastien Bouclet