aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic
AgeCommit message (Collapse)Author
2017-09-20TITANIC: DE: Adding sound translationsPaul Gilbert
2017-09-20TITANIC: DE: Adding sound translationsPaul Gilbert
2017-09-20TITANIC: DE: Add translations for playGlobalSound callsPaul Gilbert
2017-09-20TITANIC: DE: Add translations for loadSound callsPaul Gilbert
2017-09-19TITANIC: DE: Adding German translationsPaul Gilbert
2017-09-19TITANIC: DE: Sound changes for BombPaul Gilbert
2017-09-19TITANIC: Fix memory leaks on shutdownPaul Gilbert
2017-09-19TITANIC: Remove redundant surface ccreation from DirectDrawManagerPaul Gilbert
2017-09-18TITANIC: Fix identified redundant tests & assignmentsPaul Gilbert
2017-09-18TITANIC: Add missing return check in BellbotScript::processPaul Gilbert
2017-09-18TITANIC: Fix floor calculation in CChevCode::getChevFloorNumPaul Gilbert
2017-09-18TTITANIC: Guard against TTstring items being self-assignedPaul Gilbert
2017-09-18TITANIC: Fix regenerating CGameObject _movieRangeInfoList during savingPaul Gilbert
2017-09-18TITANIC: Change AVISurface _framePixels from ManagedSurface to boolPaul Gilbert
2017-09-18TITANIC: Fix memory leak loading star control starsPaul Gilbert
2017-09-18TITANIC: Fix memory leak on thumbnails when loading savegamesPaul Gilbert
2017-09-18TITANIC: DE: Fix ship announcementsPaul Gilbert
2017-09-18TITANIC: DE: Fixes for checking inPaul Gilbert
2017-09-18TITANIC: Add VocabMode enum, fix German vocab loadingPaul Gilbert
2017-09-17TITANIC: Added German DeskbotScript process additionsPaul Gilbert
2017-09-17TITANIC: Add Deskbot German specific logicPaul Gilbert
2017-09-17TITANIC: Added German specific TTnpcScript doSentenceEntry codePaul 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-17TITANIC: Fix case sensitivity in header includesPaul Gilbert
2017-09-17TITANIC: Add skeleton derived bot script classes for German versionPaul Gilbert
2017-09-17TITANIC: Add translation.h missing from prior commitPaul Gilbert
2017-09-17TITANIC: Create a separate g_language global in it's own filePaul 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-17TITANIC: German sound fixes for rest of prologuePaul Gilbert
2017-09-17TITANIC: Fixes for sounds and Doorbot during German prologuePaul Gilbert
2017-09-16TITANIC: Add differing response Id range checks for GermanPaul Gilbert
2017-09-16TITANIC: Fix incorrect sound effect in German prologuePaul Gilbert
2017-09-16TITANIC: Fix music playback in music roomPaul Gilbert
2017-09-16TITANIC: Improve audio buffer critial section handlingPaul Gilbert
2017-09-16TITANIC: Fixed FixedQueue compaction when queue has been emptiedPaul Gilbert
2017-09-16TITANIC: Standardize audio rate constantsPaul Gilbert
2017-09-14TITANIC: Moved queue logic within CAUdioBuffer to new FixedQueue classPaul 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-12TITANIC: Fix blocky squares during transitions on SGT levelPaul Gilbert
2017-09-11TITANIC: Fix freeze panning away from Parrot cagePaul Gilbert
2017-09-11TITANIC: The hasAudioTiming code was just an isActive flagPaul Gilbert
2017-09-10TITANIC: Created custom stream reader to fix bad y222.avi headerPaul Gilbert
2017-09-10TITANIC: Remove redundant flag clearing in star controlPaul Gilbert
2017-09-09TITANIC: Disable input during Bellbot intro to prevent moving awayPaul Gilbert
2017-09-09TITANIC: Fix nav helmet glitch from leaving view when it's animatingPaul Gilbert
2017-09-09TITANIC: Fix locking/unlocking starfield markers multiple timesPaul Gilbert
2017-09-09TITANIC: Various whitespace fixes in star control classesPaul Gilbert
2017-09-09Merge pull request #1017 from dafioram/star-control-changesPaul Gilbert
TITANIC: Star control changes
2017-09-09TITANIC: Cleanup and fixes for clicking on Starfield marker LEDsPaul Gilbert
2017-09-09TITANIC: Hitting go on captain wheel resets itDavid 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-09TITANIC: Prevent locking/unlocking sounds in photoviewDavid 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-09TITANIC: Improved naming for Helmet On/Off flagDavid Fioramonti
2017-09-09TITANIC: Fix occassional PET mixup when toggling nav helmet on & offPaul Gilbert