aboutsummaryrefslogtreecommitdiff
path: root/engines/startrek/startrek.h
AgeCommit message (Collapse)Author
2019-10-29STARTREK: Refactored mouse cursor and bitmap handlingFilippos Karapetis
- Reduced usage of SharedPtr - Simplified the mouse cursor code (normal, locked, stack handling) - Simplified the background handling code - Initialize the mouse cursor after the graphics are initialized
2019-08-19STARTREK: Fix loading of some texts, and add the "text" console commandFilippos 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: Add a consoleFilippos Karapetis
This also fixes an uninitialized pointer crash (_mapFile)
2019-06-11STARTREK: Adapt many usages of Common::SharedPtr() to regular pointersFilippos Karapetis
2019-06-11STARTREK: Remove the FileStream wrapper classFilippos Karapetis
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-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-08-09STARTREK: Implement republic map screenMatthew Stewart
2018-08-09STARTREK: Split up startrek.cpp into more filesMatthew Stewart
2018-08-09STARTREK: Put CD ROM detection into features fieldMatthew Stewart
2018-08-09STARTREK: Use AD_ENTRY1s for game detectionMatthew Stewart
2018-08-09STARTREK: text.cpp -> textbox.cppMatthew Stewart
2018-08-09STARTREK: Implement text input boxesMatthew Stewart
Needed for SINS mission with the keypads
2018-08-09STARTREK: Implement save loading from launcherMatthew Stewart
2018-08-09STARTREK: Implement "BAN" files.Matthew Stewart
These are background animations in various rooms, purely visual.
2018-08-09STARTREK: Link away missions together, temporarilyMatthew Stewart
2018-08-09STARTREK: Reformat with artistic styleMatthew Stewart
2018-08-09STARTREK: Move function descriptions to headersMatthew Stewart
2018-08-09STARTREK: Remove some gotosMatthew Stewart
2018-08-09STARTREK: Half-done implementation of drawR3ShapeMatthew Stewart
Handles drawing, scaling, probably rotating objects in space.
2018-08-09STARTREK: atan2 functionMatthew Stewart
2018-08-09STARTREK: sine & cosineMatthew Stewart
2018-08-09STARTREK: Rename fixed-point typesMatthew Stewart
2018-08-09STARTREK: Implement fixed-point decimal classMatthew Stewart
2018-08-09STARTREK: Move space functions into separate fileMatthew Stewart
2018-08-09STARTREK: Fix sound, support MT32.Matthew Stewart
Also jump to the first mission after the intro.
2018-08-09STARTREK: Get starfields working for the introMatthew Stewart
2018-08-09STARTREK: Make Action struct POD againMatthew Stewart
2018-08-09STARTREK: Right-clicking & keyboard in menusMatthew Stewart
2018-08-09STARTREK: Fixes to textboxesMatthew Stewart
Center the speaker name, and show the choice number when there are multiple choices.
2018-08-09STARTREK: LOVE3 finished.Matthew Stewart
Added "callback" variants of the "walkCrewman" and "loadActorAnim" functions to simplify chains of calls in room-specific code.
2018-08-09STARTREK: Default text for undefined actionsMatthew Stewart
2018-08-09STARTREK: Preliminary saving/loadingMatthew Stewart
2018-08-09STARTREK: Mission 1 finishedMatthew Stewart
2018-08-09STARTREK: Demon2, half of Demon3 doneMatthew Stewart
2018-08-09STARTREK: DEMON1 done (klingon attack)Matthew Stewart
2018-08-09STARTREK: Finish implementing first roomMatthew Stewart
Doors now work, and the system of "walking, then performing an action afterward" is implemented.
2018-08-09STARTREK: Begin on room-specific code for room 1Matthew Stewart
2018-08-09STARTREK: Cleanup some text codeMatthew Stewart
2018-08-09STARTREK: Default behaviour for look actionMatthew Stewart
2018-08-09STARTREK: Rename objects to actorsMatthew Stewart
2018-08-09STARTREK: Don't memset sprites, add Fixed16 typeMatthew Stewart
2018-08-09STARTREK: Inventory menu and hotspotsMatthew Stewart
Action buttons now react when hovering over hotspots.
2018-08-09STARTREK: Action menuMatthew Stewart
2018-08-09STARTREK: Refactor text and menusMatthew Stewart
Moved them out of the Graphics class and into their own files.
2018-08-09STARTREK: Warps between roomsMatthew Stewart
2018-08-09STARTREK: PathfindingMatthew Stewart
2018-08-09STARTREK: Basic walkingMatthew Stewart