aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/events.cpp
AgeCommit message (Collapse)Author
2017-08-24TITANIC: Reduce header includes for titanic.hDavid Fioramonti
I reduced the header includes a lot in Titanic.h and forward declared when I could. Titanic.h was including a lot and a lot of functions that were including it were not using its API. This will help make it more clear which implementation files are using which class since they will just need to include which ones they need. I also moved the debug related items in Titanic.h into the debugger header. I also reordered several of the the header includes to be local to global.
2017-08-06TITANIC: Bring movement rates in the starfield closer to the originalPaul Gilbert
The original updated the camera during the general scene drawing, which was done at a much higher rate than I wanted for the ScummVM implementation. So I've added this workaround to update the camera every 10ms when the player is in the star control scene. This gives it a comparible rate of movement to the original.
2017-07-30TITANIC: Remap right mouse click to be a left click with Shift held.Paul Gilbert
This was a suggestion by dafioram; holding down Shift allows you to skip scene transitions and edit the fragments of room glyphs. Now with this remapping, you can alternatively just use right clicks.
2017-07-17TITANIC: Improve performance of event handlingPaul Gilbert
2017-06-17TITANIC: Fix maintaining total playtime for savegamesPaul Gilbert
2016-12-20TITANIC: Hopefully fix overlapping announcementsPaul Gilbert
2016-11-08TITANIC: Fix compiler warningsPaul Gilbert
2016-11-08TITANIC: Fix spurious drag starts happening after view changesPaul Gilbert
2016-11-01TITANIC: Add support for mouse wheel scrolling conversations logPaul Gilbert
2016-10-31TITANIC: Implement manual mouse control used during introPaul Gilbert
2016-09-03TITANIC: Fix updating mixer during cutscenes, ending NPC speechPaul Gilbert
2016-08-11TITANIC: Hook up wave pump for callbacksPaul Gilbert
2016-08-07TITANIC: Added sound methods to CGameObjectPaul Gilbert
2016-07-22TITANIC: Add button handling and evil twin to Continue Save dialogPaul Gilbert
2016-07-22TITANIC: Add support for arbitrary window event targetsPaul Gilbert
Also moved all standard game event methods to CMainGameWindow. This will allow for the Continue Save dialog to be added in and get events instead of the game window
2016-07-15TITANIC: Major implementation of OSMovie and AVISurface classesPaul Gilbert
2016-07-10TITANIC: Added remainder of CCarry msg handlersPaul Gilbert
2016-04-08TITANIC: Rename field in CGameStatePaul Gilbert
2016-04-08TITANIC: Implement onIdle method for regular game updatesPaul Gilbert
2016-03-31TITANIC: Implement keyboard event handlingPaul Gilbert
2016-03-24TITANIC: Fix view message handlingPaul Gilbert
2016-03-21TITANIC: Implementing view draw codePaul Gilbert
2016-03-21TITANIC: Add new derived Rect and Point classesPaul Gilbert
2016-03-19TITANIC: Implement view change logicPaul Gilbert
2016-03-18TITANIC: Implement input translator event methodsPaul Gilbert
2016-03-18TITANIC: Create Event manager classPaul Gilbert