Age | Commit message (Collapse) | Author | |
---|---|---|---|
2017-09-18 | TITANIC: Change AVISurface _framePixels from ManagedSurface to bool | Paul Gilbert | |
2017-09-18 | TITANIC: Fix memory leak loading star control stars | Paul Gilbert | |
2017-09-18 | TITANIC: Fix memory leak on thumbnails when loading savegames | Paul Gilbert | |
2017-09-18 | TITANIC: DE: Fix ship announcements | Paul Gilbert | |
2017-09-18 | TITANIC: DE: Fixes for checking in | Paul Gilbert | |
2017-09-18 | TITANIC: Add VocabMode enum, fix German vocab loading | Paul Gilbert | |
2017-09-17 | TITANIC: Added German DeskbotScript process additions | Paul Gilbert | |
2017-09-17 | TITANIC: Add Deskbot German specific logic | Paul Gilbert | |
2017-09-17 | TITANIC: Added German specific TTnpcScript doSentenceEntry code | Paul Gilbert | |
I'm not entirely happy I had to put this in the base TTnpcScript rather than somewhere in the new german/ subfolder, but I couldn't think of any clean way to do it except nasty designs like diamond multiple inheritance | |||
2017-09-17 | TITANIC: Fix case sensitivity in header includes | Paul Gilbert | |
2017-09-17 | TITANIC: Add skeleton derived bot script classes for German version | Paul Gilbert | |
2017-09-17 | TITANIC: Add translation.h missing from prior commit | Paul Gilbert | |
2017-09-17 | TITANIC: Create a separate g_language global in it's own file | Paul Gilbert | |
I was becoming concerned with more and more files having to add the full engine definition and sub-classes thereof via titanic.h, just so the TRANSLATE macro could call getLanguage. This way, files just need to include the lightweight translation.h file instead | |||
2017-09-17 | TITANIC: German sound fixes for rest of prologue | Paul Gilbert | |
2017-09-17 | TITANIC: Fixes for sounds and Doorbot during German prologue | Paul Gilbert | |
2017-09-16 | TITANIC: Add differing response Id range checks for German | Paul Gilbert | |
2017-09-16 | TITANIC: Fix incorrect sound effect in German prologue | Paul Gilbert | |
2017-09-16 | TITANIC: Fix music playback in music room | Paul Gilbert | |
2017-09-16 | TITANIC: Improve audio buffer critial section handling | Paul Gilbert | |
2017-09-16 | TITANIC: Fixed FixedQueue compaction when queue has been emptied | Paul Gilbert | |
2017-09-16 | TITANIC: Standardize audio rate constants | Paul Gilbert | |
2017-09-14 | TITANIC: Moved queue logic within CAUdioBuffer to new FixedQueue class | Paul Gilbert | |
This is a cleaner implementation, since all the pointer logic and queue management is now better encapsulated in it's own class. I felt a new FixedQueue class was necessary because the standard Queue class uses a Common::List internally, which would be unsuitable for containing 100,000 elements, since each int value would need it's own list node. This way uses an array internally, like FixedStack | |||
2017-09-12 | TITANIC: Fix blocky squares during transitions on SGT level | Paul Gilbert | |
2017-09-11 | TITANIC: Fix freeze panning away from Parrot cage | Paul Gilbert | |
2017-09-11 | TITANIC: The hasAudioTiming code was just an isActive flag | Paul Gilbert | |
2017-09-10 | TITANIC: Created custom stream reader to fix bad y222.avi header | Paul Gilbert | |
2017-09-10 | TITANIC: Remove redundant flag clearing in star control | Paul Gilbert | |
2017-09-09 | TITANIC: Disable input during Bellbot intro to prevent moving away | Paul Gilbert | |
2017-09-09 | TITANIC: Fix nav helmet glitch from leaving view when it's animating | Paul Gilbert | |
2017-09-09 | TITANIC: Fix locking/unlocking starfield markers multiple times | Paul Gilbert | |
2017-09-09 | TITANIC: Various whitespace fixes in star control classes | Paul Gilbert | |
2017-09-09 | Merge pull request #1017 from dafioram/star-control-changes | Paul Gilbert | |
TITANIC: Star control changes | |||
2017-09-09 | TITANIC: Cleanup and fixes for clicking on Starfield marker LEDs | Paul Gilbert | |
2017-09-09 | TITANIC: Hitting go on captain wheel resets it | David Fioramonti | |
In the original once you have hit the go button on the steering wheel it won't let you use it again until you have solved the puzzle so that is how ScummVM does it now. | |||
2017-09-09 | TITANIC: Prevent locking/unlocking sounds in photoview | David Fioramonti | |
In scummvm and the original engine if you try to unlock/lock stars in photoview/skyview then the stars will not unlock/lock, but the sounds associated with unlocking and locking were playing. Giving a false impression that the locking/unlocking was happening. The sounds no longer play when in photoview. | |||
2017-09-09 | TITANIC: Improved naming for Helmet On/Off flag | David Fioramonti | |
2017-09-09 | TITANIC: Fix occassional PET mixup when toggling nav helmet on & off | Paul Gilbert | |
2017-09-09 | TITANIC: Fix parrot freezing after multiple chicken drags | Paul Gilbert | |
2017-09-09 | TITANIC: Fix play/stop operation for 1st Class Restaurant Phonograph | Paul Gilbert | |
2017-09-08 | TITANIC: Keep highlighted inventory items animating when changing room | Paul Gilbert | |
2017-09-07 | TITANIC: Fix hiding SGT toilet after turning it on & off | Paul Gilbert | |
2017-09-07 | TITANIC: star camera better handler function naming | David Fioramonti | |
The functions that dealt with the mover handling only had handler in the name so I added mover and type to the name to reflect that it involves the mover handler. | |||
2017-09-07 | TITANIC: star control, removed todos and improved some comments | David Fioramonti | |
2017-09-07 | TITANIC: make sure of setOrientations more clear | David Fioramonti | |
Made camera automover setOrientations not virtual and reduced arguments also changed name since to differentiate it from behavior of derived classes. | |||
2017-09-07 | TITANIC: Make use of CCameraAutoMover::setPath() more clear | David Fioramonti | |
There was a setPath() adn setPath2() function took in different arguments and were doing the same thing, but not using the different arguments. I made it into one function that only takes in the arguments it uses. Also it was marked virtual, but all the derived classes, CMarkedAutoMover, and CUnmarkedAutoMover were just doing there own thing and then calling this base class implementation. Therefore, I made it be not virtual and the derived classes can do there own thing and then call this, but since they are doing slightly different things it makes sense to differentiate the names and not have them all be called setPath. I.e., the derived classes also change the orientation so that is included in their function names to reflect that. | |||
2017-09-07 | TITANIC: Better naming for Viewport function | David Fioramonti | |
I differentiated getRelativePosCentering() and getRelativePosCentering2() since one was using the raw Pose and one was using the regular Pose. | |||
2017-09-06 | TITANIC: Add 'skip' response for Deskbot to skip entire checkin | Paul Gilbert | |
2017-09-06 | TITANIC: Make Parrot speech respect the Parrot volume level | Paul Gilbert | |
2017-09-06 | TITANIC: Fix gfx glitch closing SGT chest of drawers | Paul Gilbert | |
2017-09-06 | TITANIC: Fix specifying end frame in movie debugger command | Paul Gilbert | |