aboutsummaryrefslogtreecommitdiff
path: root/engines/startrek
AgeCommit message (Collapse)Author
2019-09-01STARTREK: Simplify call to initGraphics()Cameron Cawley
2019-08-27STARTREK: Mark detection entries as ADGF_UNSTABLETarek Soliman
2019-08-26STARTREK: Fix GCC Compiler WarningD G Turner
2019-08-26STARTREK: Read most strings for the LOV mission from its RDF filesFilippos Karapetis
2019-08-19STARTREK: Read most of the TUG mission texts from RDF filesFilippos Karapetis
2019-08-19STARTREK: Fix failed action textsFilippos Karapetis
2019-08-19STARTREK: Fix loading of some texts, and add the "text" console commandFilippos Karapetis
2019-08-17STARTREK: Fix introduced bug in mission chain loading codeD G Turner
This needs to avoid loading when the mission is "VENG" i.e. the last mission, since there is no next mission to load and this would have loaded an invalid memory string.
2019-08-17STARTREK: Read TUG0 description messages from the respective RDF fileFilippos Karapetis
2019-08-17STARTREK: More explicit definition of text typesFilippos Karapetis
2019-08-17STARTREK: Load all kinds of messages, and remove redundant variablesFilippos Karapetis
2019-08-17STARTREK: Allow lowercase for mission names in console commandsFilippos Karapetis
2019-08-16STARTREK: Simplify screen name code and add the "actions" debug commandFilippos Karapetis
- The screen name and map name code have been merged and simplified - Some usage of SharedPtr has been adapted - Duplicate code for loading the room map has been merged - The "actions" command has been imported from the tools code - Cleanup
2019-08-15STARTREK: Cleanup away mission chain loading codeFilippos Karapetis
2019-08-15STARTREK: Add a consoleFilippos Karapetis
This also fixes an uninitialized pointer crash (_mapFile)
2019-06-11STARTREK: Rename the different showText() functions for disambiguationFilippos Karapetis
Hopefully, this will fix the AmigaOS and DS builds
2019-06-11STARTREK: Load more messages from RDF filesFilippos Karapetis
The whole Demon chapter has been converted to the new logic. The offsets for the extra room messages have been hardcoded, for now, inside loadOtherRoomMessages(), until we figure out how they are referenced.
2019-06-11STARTREK: Adapt many usages of Common::SharedPtr() to regular pointersFilippos Karapetis
2019-06-11STARTREK: Remove the FileStream wrapper classFilippos Karapetis
2019-06-03STARTREK: Fix use of uninitialized variableThierry Crozat
2019-05-28Revert "STARTREK: Start adding a console"Thierry Crozat
This reverts commit 33fb9809c3a1353d927a3c7dfa41e673d79a089e. The engine/startrek/console.h and engine/startrek/console.cpp files were missing from that commit, which break compilation.
2019-05-28STARTREK: Start adding a consoleFilippos Karapetis
We need to properly inject it to all inner screen update loops
2019-05-28STARTREK: Fix regression with saving/loadingFilippos Karapetis
2019-05-28STARTREK: Start reading text from RDF files, instead of hardcoding itFilippos Karapetis
Rooms DEMON0 and DEMON5 have been partially adapted to the new logic. This isn't yet fully functional, for the following reasons: - We only read the main text block. There are also some others which are not handled yet. The unhandled blocks have been kept in text.cpp - We load text in dictionaries, splitting the strings in look and talk. However, there's a third category (look with a talker), which isn't handled yet - Text is loaded per-room, but there are enhancements where text and samples are loaded from other rooms. These need to be refactored
2019-05-28STARTREK: Add detection for reported English floppy variantLothar Serra Mari
Reported by ccorbacho in trac/#10921
2019-05-28STARTREK: Fixes to drawR3Shape; red planet rendersMatthew Stewart
2019-05-28STARTREK: Bugfix to map preview of republicMatthew Stewart
2019-05-28STARTREK: Saving for VENG missionMatthew Stewart
2019-05-28STARTREK: Common code for VENG missionMatthew Stewart
2019-05-28STARTREK: VENG8 text changesMatthew Stewart
2019-05-28STARTREK: VENG8Matthew Stewart
2019-05-27STARTREK: Improve game responsivenessFilippos Karapetis
- Add a delay after screen updates - Do not update the screen when drawing the background - this is unnecessary - Fix memory leak when drawing the background
2019-05-27STARTREK: Change more fields to Common::String, and fix shadowed varsFilippos Karapetis
2019-05-27STARTREK: Use Common::String for animation stringsFilippos Karapetis
2019-05-27STARTREK: Refactor code to remove more gotosFilippos Karapetis
2019-05-27STARTREK: Fix memory leakFilippos Karapetis
2019-05-27STARTREK: Refactor code so that gotos are not used in DEMON6Filippos Karapetis
2019-05-27STARTREK: Replace getRectEncompassing() with extend()Filippos Karapetis
2019-05-27STARTREK: Fix MSVC warningsFilippos Karapetis
- Disable duplicate if block - Fix potentially uninitialized variables - Change _activeMenu to be a regular pointer, instead of a SharedPtr - it was not initialized correctly - Fix struct packing in structs with pointers to complex objects - Fix sound initialization - Fix memory leaks (handles to files which were never deleted)
2018-12-10ENGINES: Normalize the getName() result of metaenginesBastien Bouclet
Also-By: Matthew Hoops <clone2727@gmail.com>
2018-09-26STARTREK: Add Detection Entry for English Demo.D G Turner
This can be found at: https://archive.org/details/StarTrek25thAnniversaryDemo
2018-09-25STARTREK: Add Detection Entry For German Version of Judgement Rites.D G Turner
2018-08-31STARTREK: remove dead code, simplify if statement by moving out code ↵Strangerke
identical in both branches
2018-08-31STARTREK: Initialize more variables in graphicsStrangerke
2018-08-31STARTREK: Initialize some variables in soundStrangerke
2018-08-31STARTREK: Fix an uninitialized variable in bitmapStrangerke
2018-08-18STARTREK: Simplify sine table usageDavid Fioramonti
The if checks that StarTrekEngine::sin is doing to evaluate the correct index for the sine table lookup are already done in Common::SineTable::at().
2018-08-18STARTREK: Update cos/sin table constructor changeDavid Fioramonti
They now take in the size rather than the power of 2 exponent.
2018-08-18STARTREK: Make atan table staticDavid Fioramonti
Currently, it is reloaded every atan call.
2018-08-18STARTREK: Detect another ST25 CD/DOS English variantDavid Fioramonti