aboutsummaryrefslogtreecommitdiff
path: root/engines/bladerunner/bladerunner.cpp
AgeCommit message (Collapse)Author
2019-05-31BLADERUNNER: Fix bad timer initialization for actors after LOADThanasis Antoniou
2019-05-29BLADERUNNER: Added click debugger commandThanasis Antoniou
Shows mouse click pos (x,y,z) and detected clickable region/actor/item/object id underneath
2019-05-27BLADERUNNER: Show saved game creation date and add play timeDavid Fioramonti
Bumped saved game version to 2 to add play time. Can load version 1 saves and save/load version 2 saves.
2019-05-23BLADERUNNER: Fix mouse in KIA after moonbus massacre endingThanasis Antoniou
2019-05-22BLADERUNNER: Don't exit to desktop after end creditsThanasis Antoniou
2019-05-21BLADERUNNER: Add methods to skip screen effectsThanasis Antoniou
Also enhanced functionality for debugger's cmdDraw, allowing to draw isolated objects
2019-05-18BLADERUNNER: Split game to two different versionsPeter Kohaut
first one is original game second one contains restored cut content
2019-05-16BLADERUNNER: Add POTFILES and encapsulate message stringsThanasis Antoniou
2019-05-15BLADERUNNER: Warning if loading restored cut content save in original modeThanasis Antoniou
And vice versa. The game won't exit, it will continue loading but adjust the mode accordingly Also added a incremental version number for the save games (as a global variable), for possible future use
2019-05-15BLADERUNNER: Fix sounds persist after load or end stateThanasis Antoniou
Loading a game with music from a scene with music would cause none of the music to be removed. Also looping sounds would persist in the loading screen after a game-over state
2019-05-09BLADERUNNER: Fix bad new game pos for playerThanasis Antoniou
2019-05-05BLADERUNNER: Disable END_GAME_STATE auto-savePeter Kohaut
Disabled as it is not needed and it is only filling-up save slots
2019-04-25BLADERUNNER: Make the cut content a runtime optionPeter Kohaut
Player can choose to use or not the restored cut content. Does not affect fixed bugs in original game.
2019-04-17BLADERUNNER: Fixed typo in pixelFormat namePeter Kohaut
2019-04-17BLADERUNNER: Abstraction from 555 pixel formatPeter Kohaut
Removing hardcoded 555 pixel format to support Android
2019-04-10BLADERUNNER: Close A.TLK within proper define checkThanasis Antoniou
2019-04-10BLADERUNNER: Ensure A.TLK is closed onShutdownThanasis Antoniou
2019-04-10BLADERUNNER: Persistent sound settings, speech samples fixThanasis Antoniou
2019-04-09BLADERUNNER: Fix Officer Leary crowd interrogationThanasis Antoniou
He will now resume interrogation after McCoy interrupts him Also used named constants for timers
2019-04-05BLADERUNNER: SFX named constants and MissSound fixThanasis Antoniou
Still pending cleaning up Ambient_Sounds_Add_Sound and Ambient_Sounds_Add_Looping_Sound calls
2019-04-04BLADERUNNER: Support wait for dialogue queues to finishThanasis Antoniou
Fixes a Crazylegs bug where he can interrupt himself Could probably be used elsewhere if there are any other such cases.
2019-04-02BLADERUNNER: Fix flash back to game between end outtake and creditsThanasis Antoniou
Between an ending outtake and the end credits the game did a quick flash back to the game scene
2019-04-02BLADERUNNER: Fix for corrupt incomplete autosavesThanasis Antoniou
Autosaving overrides other conditions that don't allow proper saving
2019-03-21BLADERUNNER: Handle gracefully missing HDFRAMES or required CDFRAMESx fileThanasis Antoniou
2019-03-17BLADERUNNER: Fixes for Russian versionPeter Kohaut
2019-03-12BLADERUNNER: Fixed inability to drugged McCoy up againPeter Kohaut
Actors are not updated faster than 60 times per second.
2019-03-12BLADERUNNER: Added support for scrolling with mouse wheelPeter Kohaut
Not in the original game
2019-03-09BLADERUNNER: Clean-up for subtitles initialization codePeter Kohaut
2019-03-06BLADERUNNER: Fixed panning of speechPeter Kohaut
Cleanup of other sound pannings
2019-03-05BLADERUNNER: Loading of savegames from the launcherPeter Kohaut
2019-03-04BLADERUNNER: Cleanup of TODO notesPeter Kohaut
2019-02-20BLADERUNNER: Fix Coverity issuesPeter Kohaut
2019-02-12BLADERUNNER: Removal of memory leaksPeter Kohaut
2019-02-11BLADERUNNER: Added original logic for speech skippingPeter Kohaut
And some small cleanup of unnecessary comments.
2019-02-11BLADERUNNER: Improved time managementPeter Kohaut
This should fix thi issue with freezing actors after loading save game, but works on new saves only. Game was not paused before saving and wrong timer value got saved.
2019-02-11BLADERUNNER: Cleanup of audio codePeter Kohaut
Separated audio cache. Fixed bug in the audio cache where still used sound might get freed. Fixes crashes when engine is unloading which were caused by a race condition between the timer code and engine teardown code.
2019-02-10BLADERUNNER: Added shorty modePeter Kohaut
Available via ScummVM game options
2019-02-10BLADERUNNER: Added sitcom modePeter Kohaut
Available via ScummVM game options
2019-02-10BLADERUNNER: Added auto save featurePeter Kohaut
Also fixed a bug in KIA save screen, where not selecting a save slot can lead to overwriting other save game.
2019-02-08BLADERUNNER: Removed unnecessary debugging codePeter Kohaut
2019-02-03BLADERUNNER: Fixed end creditsPeter Kohaut
Game is completable for blade runner path
2019-02-03BLADERUNNER: Fixed Rat interaction at UG15Peter Kohaut
2019-02-02BLADERUNNER: Cleanup of walking codePeter Kohaut
Fixed missing "must reach" in a actorwalk::tick
2019-01-24BLADERUNNER: Splitted debugger draw commandsPeter Kohaut
Debugger overlay is now more configurable Added basic support for fogs
2019-01-12BLADERUNNER: Added debugging output for scriptsPeter Kohaut
Also added last few missing script commands.
2019-01-09BLADERUNNER: Fixed scene video resumePeter Kohaut
Video in the back was always reset to the 1st frame. Now it is working properly. Also added game pause when the debugger is opened.
2019-01-08BLADERUNNER: Player deathPeter Kohaut
Added original game behavior when player died, 5 second wait and then load screen.
2019-01-08BLADERUNNER: Remove right-click walk skipPeter Kohaut
This feature is not in the original game and it is a bug.
2018-12-25BLADERUNNER: Override original FONT and TREThanasis Antoniou
2018-12-25BLADERUNNER: switch clause in fonts and style fixesantoniou79