aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic
AgeCommit message (Collapse)Author
2017-08-07TITANIC: Hook in the original game's secret cheat roomPaul Gilbert
You can either use a special Ctrl-C key combination, or use the 'cheat' command in the debugger
2017-08-07TITANIC: Fix bots freezing up during long conversationsPaul Gilbert
2017-08-06TITANIC: Removed unused CWaveFile constructorPaul Gilbert
2017-08-06TITANIC: Fix SuccUBus not always redirecting 'nowhere' glyphs to BilgePaul Gilbert
2017-08-06Merge pull request #983 from dafioram/titanic_starview_addReversePaul Gilbert
TITANIC: Change Starview slowdown to reverse
2017-08-06TITANIC: Change Starview slowdown to reverseDavid Fioramonti
This changes the starview manual camera movement using semicolon. Before it slowed down the ship. To make it more like the original game it now adds negative velocity so that it slows down then speeds up in the backward direction. The functions were renamed accordingly.
2017-08-06TITANIC: Bring movement rates in the starfield closer to the originalPaul Gilbert
The original updated the camera during the general scene drawing, which was done at a much higher rate than I wanted for the ScummVM implementation. So I've added this workaround to update the camera every 10ms when the player is in the star control scene. This gives it a comparible rate of movement to the original.
2017-08-06TITANIC: Minor renamings in CStarViewPaul Gilbert
2017-08-06TITANIC: Renaming in SuccUBus classes for better clarityPaul Gilbert
2017-08-06TITANIC: Correct local variable name in SuccUBusPaul Gilbert
2017-08-06TITANIC: Remove development link left in computer screen viewPaul Gilbert
2017-08-06TITANIC: Fix movement cursors in Lift 4 when eye is removedPaul Gilbert
2017-08-06TITANIC: Don't allow movement link to be used in Starfield PuzlzePaul Gilbert
The scene has an unused right turn link that wasn't used, and is covered by the starview. Since movement now uses simulated mouse clicks, the worst result of clicking right arrow is simply that a star may be accidentally selected. But for cleanliness, it was best to fix it. It also allowed the creation of code that other objects in the view can use to override default movement logic, just in case it's needed.
2017-08-06TITANIC: Fix arrow key movement in front of Parrot cagePaul Gilbert
2017-08-06TITANIC: Changing arrow movement to be done via simulated mouse clicksPaul Gilbert
2017-08-06TITANIC: Create new CMovementMsg for new movement functionalityPaul Gilbert
This also moves logic for detecting which movement is associated with given keycodes and cursors to CMovementMsg and CLinkItem, which are better suited to contain the logic
2017-08-06TITANIC: Fix handling of NumPad causing double digitsPaul Gilbert
2017-08-05TITANIC: Maintain static movie frames on objects across savesPaul Gilbert
2017-08-05TITANIC: Fix original savegames from the bar not loadingPaul Gilbert
2017-08-05TITANIC: Don't show invalid meta info for original game savesPaul Gilbert
2017-08-05TITANIC: Fix getting into Lift 1 from a first class floorPaul Gilbert
2017-08-05TITANIC: Fix releasing chicken in middle of parrot leaning out to eatPaul Gilbert
2017-08-05TITANIC: Cleanup and fix for multi drop targetsPaul Gilbert
The fix deals with a bug in the original that if an item was used that the drop target didn't handle, the item wouldn't be returned to the player's inventory
2017-08-05TITANIC: Add missing conv fragment for Presidential bed during checkinPaul Gilbert
2017-08-05TITANIC: Only allow exiting SGT minilifts on the ground floorPaul Gilbert
2017-08-05TITANIC: Fix arrow keys allow getting to bridge before Titania is fixedPaul Gilbert
2017-08-04TITANIC: Don't allow loading games when Bellbot is summonedPaul Gilbert
2017-08-04TITANIC: Fix using chicken on Bilge SuccUBusPaul Gilbert
2017-08-04TITANIC: Fix arrow movements ignoring restricted movesPaul Gilbert
2017-08-04TITANIC: Introduce movement via arrow keysPaul Gilbert
This also fixes a bug with Page Up, Down, Home, & End not working for the Conversation tab. Additionally, code for scrolling individual lines in the conversation and glyphs via the arrow keys has been removed in favor of this centrallised movement, since they were somewhat redundant, and the mouse wheel can be used for scrolling.
2017-08-04TITANIC: Fixes for names in the CursorId enumPaul Gilbert
2017-08-03Merge pull request #980 from dafioram/titanic_access_last_savePaul Gilbert
TITANIC: Fix access to last savegame slot
2017-08-03TITANIC: Create a new audio stream each time a wave file is playedPaul Gilbert
This fixes the problem with the 2nd Class floors, where the same music played in the lift doesn't have time to fade out before the same music is loaded to be faded in for the floor. Now, each gets it's own separate audio stream, preventing the two clashing
2017-08-03TITANIC: Shifting wave file playback into CWaveFile classPaul Gilbert
2017-08-03TITANIC: Allow last saved game to be loadedDavid Fioramonti
2017-08-03TITANIC: Max saved games const centralizedDavid Fioramonti
Before the const specifying the max number of save/load games was in titanic.h, core/project_item.cpp, main_game_window, and detection.cpp. Since they all inherit from titanic.h they should just use the const there. Also the saved game const in core/project_item.cpp was named differently so I also changed that.
2017-08-01TITANIC: Fix sound effects on the Promenade DeckPaul Gilbert
2017-08-01TITANIC: Fix playback of ambient music for Top of the WellPaul Gilbert
2017-07-31TITANIC: Fix not being able to close ScummVM during prologue creditsPaul Gilbert
2017-07-31TITANIC: Only skip cutscenes if standard ASCII keys pressedPaul Gilbert
2017-07-31TITANIC: Handle brief freeze if prologue credits are skippedPaul Gilbert
2017-07-31TITANIC: Fix forward/backward manual camera movement in starmapPaul Gilbert
2017-07-31Merge pull request #978 from dafioram/Titanic-star-keybrdlookupPaul Gilbert
TITANIC: Star View: Added keyboard key to look up
2017-07-31TITANIC: Don't let bots appear when you're in the GondolaPaul Gilbert
I agree with Dafioram, frankly it just looks weird
2017-07-31TITANIC: Don't have bots appear in Embarkation SuccUBus or Deskbot deskPaul Gilbert
2017-07-31TITANIC: Fix delay check for Bellbot/Doorbot summonerPaul Gilbert
2017-07-30TITANIC: Fix Long Stick not returning to inventory in ArboretumPaul Gilbert
2017-07-30TITANIC: Fix speed of palette transitions in end creditsPaul Gilbert
2017-07-30TITANIC: Update cursor after transitioning to new viewsPaul Gilbert
2017-07-30TITANIC: Fix crash saying 'No I dont' to DeskbotPaul Gilbert