aboutsummaryrefslogtreecommitdiff
path: root/engines
AgeCommit message (Collapse)Author
2018-08-09STARTREK: PathfindingMatthew Stewart
2018-08-09STARTREK: Sprite layeringMatthew Stewart
2018-08-09STARTREK: Basic walkingMatthew Stewart
2018-08-09STARTREK: Initialization of away mission.Matthew Stewart
Crew successfully beams in and does their idle animation.
2018-08-09STARTREK: Palette fadingMatthew Stewart
2018-08-09STARTREK: Bitmap scalingMatthew Stewart
2018-08-09STARTREK: Implement "xor'd" animations for crewmenMatthew Stewart
2018-08-09STARTREK: Get animation timing working properlyMatthew Stewart
2018-08-09STARTREK: Objects and animations.Matthew Stewart
Testing them with the transporter room.
2018-08-09STARTREK: setVisibleMenuButtons functionMatthew Stewart
2018-08-09STARTREK: Music/SFX enable and disable functionsMatthew Stewart
2018-08-09STARTREK: Rects don't include right/bottom pixel.Matthew Stewart
Fixes some off-by-one errors.
2018-08-09STARTREK: Fix placement of textboxesMatthew Stewart
2018-08-09STARTREK: Quit game menu and mouse warp functionMatthew Stewart
2018-08-09STARTREK: Options menuMatthew Stewart
2018-08-09STARTREK: Remove executable bit on source filesMatthew Stewart
2018-08-09STARTREK: Set default mouse sprite to stop crashesMatthew Stewart
2018-08-09STARTREK: Disabling menu buttons + text menu.Matthew Stewart
2018-08-09STARTREK: Add debug channel for soundMatthew Stewart
2018-08-09STARTREK: Implement CD Audio handling.Matthew Stewart
2018-08-09STARTREK: Implement sound effects in the midisMatthew Stewart
Removed amiga and mac sound code for now since I can't test it.
2018-08-09STARTREK: Begin implementing event system.Matthew Stewart
Textbox now responds to mouse input.
2018-08-09STARTREK: Implement more text routinesMatthew Stewart
2018-08-09STARTREK: Add mouse cursorMatthew Stewart
2018-08-09STARTREK: Fix off-by-1 bug in drawSpriteMatthew Stewart
2018-08-09STARTREK: Implement drawAllSprites properly.Matthew Stewart
Still need to do the part which calculates sprite priorities.
2018-08-09STARTREK: Begin implementing menusMatthew Stewart
2018-08-09STARTREK: Begin implementation of showText.Matthew Stewart
Also started using SharedPtrs.
2018-08-09STARTREK: Implement addSprite and delSpriteMatthew Stewart
2018-08-09STARTREK: Implement draw modes 2 and 3 for spritesMatthew Stewart
2018-08-09STARTREK: Implement drawSprite functionMatthew Stewart
2018-08-09STARTREK: Make Bitmap, Sprite, FileStream classesMatthew Stewart
2018-08-09STARTREK: Fixes to file loading.Matthew Stewart
The "numbered" files that I implemented can also use letters as the last character.
2018-08-09STARTREK: Implement loading "numbered" filesMatthew Stewart
2018-08-09STARTREK: Add detection for the ST25 Mac demoMatthew Stewart
2018-08-09STARTREK: Import my startrek engineMatthew Hoops
Now updated even
2018-08-07TINSEL: Fix displayed saved game month off by oneDavid Fioramonti
This corrects the displayed month for querySaveMetaInfos being a month behind.
2018-08-05PINK: implemented text drawing in ActionText for English versionAndrei Prykhodko
2018-08-04MOHAWK: RIVEN: Fix crash when clicking on a marble with the mouse movingBastien Bouclet
In some cases a mouse moved event could be handled between the moment the xtakeit script was queued and the moment it is executed (on the same frame), causing the mouse position no longer to be over a marble rectangle. Fixes #10647.
2018-08-03SAGA: Deduplicate kScriptTimeTicksPerSecond constantAdrian Frühwirth
2018-08-03GROOVIE: Allow saving via GMM and increase save slots to 25David Fioramonti
If the user enters in an invalid description for the save then it will be simplified by the saved name cache process in Script::savegame. I checked this with t7g, but not with the 11th guest or any other Groovie game. The original in-game loading/saving can still only access the first 10 save slots (0-9). Its possible to saving via the GMM when the game is interactive. Loading a game saved via the gui using the original in-game load menu works fine. Saving via the GMM with timestamp works, but only only saves the characters up to the first non-alpha non-letter characer.
2018-08-03TINSEL: Add playTime to saved game and display itDavid Fioramonti
Also bumps the saved game format version to 3. I changed the order of how the data is saved so that the playtime could be read in without skipping as much data. This is because querySaveMetaInfos only needs the metafields where as saveload::DoRestore() needs more of the header. A crash was happening when trying to delete a saved game from the launcher. It is because the engine is not initalized. I assign a dummy value to resolve the issue. Loading saved games from previous versions works. When an old version saved game is loaded it will start with zero playtime. Old saved games are shown as not having playtime data.
2018-08-03LAB: By default skip thumbnail loading for readSaveGameHeaderDavid Fioramonti
This changes the convention back to skipping the thumbnail loading for readSaveGameHeader. querySaveMetaInfos is the only place it shouldn't be skipped.
2018-08-03BLADERUNNER: Add cos/sine tableDavid 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-08-02PINK: fixed bug when in walking state you choose another locationwhiterandrek
2018-08-01PARALLACTION: Fix use-after-free on quitColin Snover
Parallaction::_gfx is referenced by objects destroyed when Parallaction::_input is destroyed so it cannot be destroyed first.
2018-08-01PARALLACTION: Fix null pointer dereference on quitColin Snover
2018-08-01PARALLACTION: Fix invalid array access at dialogue selectionColin Snover
Also removes an unnecessary second condition check for oldAnswer by moving that closer to its point of use.
2018-07-31MOHAWK: Fix Unused Variable Compiler Warning.D G Turner
This occurs when FreeType2 is not enabled and thus fontHeight variable is unused.
2018-07-31CRUISE: Fix Possible Invalid Thumbnail Pointer Access.D G Turner