Age | Commit message (Collapse) | Author | |
---|---|---|---|
2018-12-25 | BLADERUNNER: Removed redundant header inclusion | Thanasis Antoniou | |
2018-12-25 | BLADERUNNER: Fix conflict with outtakes.cpp | Thanasis Antoniou | |
2018-12-25 | BLADERUNNER: Override original FONT and TRE | Thanasis Antoniou | |
2018-12-25 | BLADERUNNER more comments on calculatePosition workings | Thanasis Antoniou | |
A bit of cleaning up of Subtitles::calculatePosition() method adding comments. | |||
2018-12-25 | BLADERUNNER: switch clause in fonts and style fixes | antoniou79 | |
2018-12-25 | BLADERUNNER: removed BLADERUNNER_SUBTITLES_EXTERNAL_FONT | antoniou79 | |
2018-12-25 | BLADERUNNER: SUBTITLES.MIX pack support | antoniou79 | |
2018-12-25 | BLADERUNNER: setSubtitlesEnabled also calls synchSoundSettings | Thanasis Antoniou | |
2018-12-25 | BLADERUNNER: Removed compile time macros, added synch with GUI | Thanasis Antoniou | |
2018-12-25 | BLADERUNNER: Added subtitles support and checkbox in KIA | Thanasis Antoniou | |
2018-12-24 | BLADERUNNER: Fixed item rotation | Peter Kohaut | |
Item's angle was not update after chaning "facing". Police maze targets are now rotated correct way. Added debug logging for the police maze tracts. | |||
2018-12-19 | BLADERUNNER: Actually use normalized chapter number in the 'scene' command | Eugene Sandulenko | |
2018-12-19 | BLADERUNNER: Implemented sanity checks in the 'scene' debugger command | Eugene Sandulenko | |
2018-12-19 | BLADERUNNER: Print scene name in 'scene' debug command | Eugene Sandulenko | |
2018-12-19 | BLADERUNNER: Enhanced 'scene' debugger command | Eugene Sandulenko | |
2018-12-17 | BLADERUNNER: Rect -> RectFloat | Eugene Sandulenko | |
2018-12-15 | BLADERUNNER: Added time control and game pausing | Peter Kohaut | |
2018-12-10 | ENGINES: Normalize the getName() result of metaengines | Bastien Bouclet | |
Also-By: Matthew Hoops <clone2727@gmail.com> | |||
2018-12-05 | BLADERUNNER: Add in-game saving screen | Peter Kohaut | |
2018-11-25 | BLADERUNNER: Add in-game loading screen | Peter Kohaut | |
It is also possible to start new game from it. | |||
2018-11-24 | BLADERUNNER: Fixed ambient sounds after load | Peter Kohaut | |
After loading a game, ambient sounds stoped playing, now they are working properly. Also some smaller compiler warnings were fixed. | |||
2018-11-24 | BLADERUNNER: Fix build issues | Peter Kohaut | |
2018-11-24 | BLADERUNNER: Preliminary saving & loading support | Peter Kohaut | |
Saving and loading is accessible via ScummVM dialogs. No in-game UI support yet. It is possible to load saves from original game via debugger console. ScummVM saves have additional header and are incompatibile with original game. | |||
2018-11-18 | BLADERUNNER: Fixed perspective slice rendering | Peter Kohaut | |
Perspective projection is now working properly and character and object are now properly rendered. | |||
2018-11-13 | BLADERUNNER: Fix Fall Through Compiler Warnings | D G Turner | |
Clang and newer versions of GCC i.e. v8.2 require the comment to match "fall through" to surpress warnings so change "no break" comments to match. | |||
2018-08-26 | BLADERUNNER: Remove use of C99 math | Colin Snover | |
C++ math functions are overloaded so operate using single-precision when receiving a float input. The C standard library on FreeMiNT does not fully support C99 math so use of sqrtf, sinf, etc. instead of the C++ API does not work. | |||
2018-08-18 | BLADERUNNER: Update cos/sin table constructor change | David Fioramonti | |
They now take in the size rather than the power of 2 exponent. | |||
2018-08-03 | BLADERUNNER: Add cos/sine table | David Fioramonti | |
This uses the one in Common. The engine now contains a 10-bit cosine and sine table. It used mostly for vector math. This also allows two vector functions to be removed from vector.h. | |||
2018-06-29 | BLADERUNNER: Fix another signed vs unsigned warning | Eugene Sandulenko | |
2018-06-29 | BLADERUNNER: Fix another warning | Eugene Sandulenko | |
2018-06-29 | BLADERUNNER: Fix warnings | Eugene Sandulenko | |
2018-05-24 | JANITORIAL: Fix trailing whitespace | Adrian Frühwirth | |
2018-05-20 | JANITORIAL: Remove trailing whitespace | Adrian Frühwirth | |
2018-05-07 | BLADERUNNER: Fix build | Thomas Fach-Pedersen | |
2018-05-07 | BLADERUNNER: Implement obstacle polygon merging | Thomas Fach-Pedersen | |
2018-05-07 | BLADERUNNER: Fix typo in DialogueMenu::queryInput() | Adrian Frühwirth | |
Confirmed by madmoose. | |||
2018-05-06 | BLADERUNNER: Fix typo/bug in handleMouseAction() | Adrian Frühwirth | |
This was introduced when the SceneObjectOffset enum was introduced in commit 7090841ccc43c64d5a1d9058071ebccaf6b52fc2. | |||
2018-04-22 | JANITORIAL: Fix formatting | Adrian Frühwirth | |
2018-04-19 | JANITORIAL: Fix whitespace | Adrian Frühwirth | |
2018-04-07 | JANITORIAL: Fix whitespace | Eugene Sandulenko | |
2018-04-07 | BLADERUNNER: Remove dead code | Eugene Sandulenko | |
2018-04-04 | BLADERUNNER: Fix memory leaks | Eugene Sandulenko | |
2018-04-03 | BLADERUNNER: Implement scene jumping via bootparams. | Eugene Sandulenko | |
Specify bootparam in form CTTTSSS, where C is chapter, TTT is set and SSS is scene number. So, for RC02 it is 1016079. | |||
2018-04-02 | BLADERUNNER: Added 'draw actors' debug command. | Eugene Sandulenko | |
Implemented as a hack on top of 'draw obj' with skipping all other scene objects. | |||
2018-04-01 | BLADERUNNER: Remove leftover debug output | Eugene Sandulenko | |
2018-04-01 | BLADERUNNER: Fix chapter switching with CDFRAMES.DAT | Eugene Sandulenko | |
2018-04-01 | BLADERUNNER: Support for CDFRAMES.DAT | Eugene Sandulenko | |
Rename CDFRAMES.DAT into CDFRAMES1.DAT, CDFRAMES2.DAT etc | |||
2018-03-31 | BLADERUNNER: Implemented ActorClues::getModifier(). | Eugene Sandulenko | |
This completes implementation of the automatic clue exchange | |||
2018-03-30 | BLADERUNNER: Implemented ActorClues::acquireCluesByRelations() | Eugene Sandulenko | |
2018-03-30 | BLADERUNNER: Further work on acquireCluesByRelations() | Eugene Sandulenko | |