aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/locations.cpp
AgeCommit message (Collapse)Author
2018-03-18XEEN: Fix display of Spell Info dialog in Guild shopsPaul Gilbert
2018-03-18XEEN: Fix display of Spells list dialog within Guild shopsPaul Gilbert
2018-03-17XEEN: Change bool _isDarkCc to int _ccNumPaul Gilbert
Originally the flag was whether the party was on the Dark Side, but as a bool I was having to cast it to an int side/cc number in more and more places. So now I've converted it to _ccNum, and it can be used directly as an int
2018-03-15XEEN: Correct Training welcome voice sample playbackPaul Gilbert
2018-03-15XEEN: Further convertion of playSound to playVoice for location voice samplesPaul Gilbert
2018-03-12XEEN: Add playVoice method for voice sample playbackPaul Gilbert
2018-03-11XEEN: Subtitles for remaining game cutscenesPaul Gilbert
2018-03-11XEEN: Refactoring subtitles for use in location cutscenes, updated Reaper ↵Paul Gilbert
cutscene
2018-03-11XEEN: Subtitle fixes for Dark Side endingPaul Gilbert
2018-03-10XEEN: Implementing subtitles display logicPaul Gilbert
2018-03-06XEEN: Change setMusicVolume to setMusicPercent for better range clarityPaul Gilbert
2018-03-04XEEN: Move all the dialog classes to their own sub-folderPaul Gilbert
2018-02-23XEEN: Change Resource String fields to const char *Paul Gilbert
All too many of the resource strings are used as parameters in Common::String::format calls, and it proved too laborious trying to add .c_str() suffixes everywhere it'd be appropriate. Easier to simply change all the Reosucre fields back to being const char *
2018-02-23XEEN: Creation of create_xeen toolPaul Gilbert
2018-02-19XEEN: Refactor to merge Sound and Music classesPaul Gilbert
The existing structure didn't make sense, as Sound only handled sound files, but Music handled both music and short FX decoding. I've merged Sound & MUsic into a single Sound class, and moved the music driver to their own file, renamed to SoundDriver
2018-02-17XEEN: Fix text for Guild locationPaul Gilbert
2018-02-16XEEN: Renaming fields for location classesPaul Gilbert
2018-02-11XEEN: Fix exiting to main menu after playing ending cutscenesPaul Gilbert
2018-01-28XEEN: Flesh out missing ErrorDialog codePaul Gilbert
2018-01-20XEEN: Fix reaper cutscene renderingPaul Gilbert
2018-01-12XEEN: Further savegame logicPaul Gilbert
2017-12-29XEEN: Fix confirmation buttons for town message dialogsPaul Gilbert
2017-12-18XEEN: Fixes for Sphinx cutscenePaul Gilbert
2017-12-17XEEN: Fixes for the Golem cutscenePaul Gilbert
2017-12-17XEEN: Fixes for the Repear cutscenePaul Gilbert
2017-12-17XEEN: Fix placement checks for indoors wall itemsPaul Gilbert
2017-12-17XEEN: Allow Dwarf Mines cutscene to be interruptedPaul Gilbert
Because I'm already sick of letting it play all the way through
2017-12-17XEEN: Cleanup of Dwarf cutscene class & enum valuesPaul Gilbert
2017-12-17XEEN: Fix Dwarf Mine cutscenePaul Gilbert
2017-12-16XEEN: Fix returning to interactive when leaving Party dialogPaul Gilbert
2017-12-16XEEN: Show Party dialog when signing into tavernsPaul Gilbert
2017-12-16XEEN: Convert character _awards array from bool to intPaul Gilbert
This is needed for the Warzone award (9), which doubles as a counter
2017-12-16XEEN: Added remainder of Arena locationPaul Gilbert
2017-12-15XEEN: Implementing Arena location logicPaul Gilbert
2017-12-14XEEN: Renaming of cutscene subtitle codePaul Gilbert
2017-12-14XEEN: Added Reaper cutscene codePaul Gilbert
2017-12-13XEEN: Added Gole cutscene codePaul Gilbert
2017-12-12XEEN: Added Sphinx cutscene codePaul Gilbert
2017-12-12XEEN: Rename Town to LocationManager, added Locations namespacePaul Gilbert