aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen
AgeCommit message (Collapse)Author
2018-02-23XEEN: Make mirror text entry matching case insensitivePaul Gilbert
2018-02-23XEEN: Fix saving maps with no objects and/or monstersPaul Gilbert
2018-02-23XEEN: Add _filename field to SpriteResourcePaul Gilbert
This will be useful for debug purposes, so it be determined where a given sprite resource was loaded from
2018-02-23XEEN: Fix loading maps with no monstersPaul 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: Implement Quick Fight Options dialogPaul Gilbert
2018-02-19XEEN: Fix shadowed field warning in SpriteResourcePaul 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-19XEEN: Fix input of new character names not allowing uppercasePaul Gilbert
2018-02-18XEEN: Flag games as not having voicePaul Gilbert
Technically they do have voice samples, but the code for playing them is indistinguishable from standard SFX. And given how few they are, I feel it better for now to simply flag the detection entries as no voice, rather than trying to separate them
2018-02-18XEEN: Selection and creation fixes for Create Character dialogPaul Gilbert
2018-02-18XEEN: Cleanup and fixes for exchanging character attributesPaul Gilbert
2018-02-18XEEN: Fix randomly rolling attribute valuesPaul Gilbert
2018-02-18XEEN: Cleanup of new CreateCharacterDialog classPaul Gilbert
2018-02-18XEEN: Split up code for create character dialog into it's own classPaul Gilbert
2018-02-17XEEN: Fix dice animation in Create Character dialogPaul Gilbert
2018-02-17XEEN: Fix initial rendering of Create Character dialogPaul Gilbert
2018-02-17XEEN: Fix getting random item when searching bedsPaul Gilbert
2018-02-17XEEN: Cleanup of giveTake give case 66 - give itemPaul Gilbert
2018-02-17XEEN: Fix crash after searching bedsPaul Gilbert
2018-02-17XEEN: Fix resistence gems when visiting a town locationPaul Gilbert
2018-02-17XEEN: Fix text for Guild locationPaul Gilbert
2018-02-17XEEN: Fix vertical line skipping in sprite renderingPaul Gilbert
2018-02-17XEEN: Fix GCC warningTorbjörn Andersson
The other ending functions return true, so I assume this one should as well.
2018-02-16XEEN: Renaming fields for location classesPaul Gilbert
2018-02-16XEEN: Fix default color of resistence gems in the UIPaul Gilbert
2018-02-14XEEN: Fixes and cleanup for Dark Side endingPaul Gilbert
2018-02-13XEEN: Move reseting dream sequence cutscene into the engine classPaul Gilbert
2018-02-13XEEN: Fix toggling the minimap by clicking on itPaul Gilbert
2018-02-13XEEN: Add detection for Clouds & Dark SidePaul Gilbert
2018-02-12XEEN: Correct loading of auxiliary map data for Swords of XeenPaul Gilbert
2018-02-12XEEN: Added skeleton child engine for Swords of XeenPaul Gilbert
2018-02-12XEEN: Fix memory leak loading savegamesPaul Gilbert
2018-02-12XEEN: Fix Valgrind reported issuesPaul Gilbert
2018-02-12XEEN: Properly pause when listing treasure post-combatPaul Gilbert
2018-02-11XEEN: Fix exiting to main menu after playing ending cutscenesPaul Gilbert
2018-02-11XEEN: Add missing music to Clouds endingPaul Gilbert
2018-02-11XEEN: Further fixes for Clouds endingPaul Gilbert
2018-02-11XEEN: Fixes and comments for Clouds Ending part 1Paul Gilbert
2018-02-10XEEN: Fix Clouds cutscene background decoderPaul Gilbert
2018-02-09XEEN: Fix experience doubling calculationPaul Gilbert
Thanks to dtgreene in the GOG forums for pointing out the incorrect calculation, and that it isn't present in Clouds of Xeen only
2018-02-09XEEN: Fix MonsterStruct _accuracy to be _armorClassPaul Gilbert
Thanks to Leprosy57 in the GOG forums for pointing it out
2018-02-09XEEN: Reduce code duplication in Clouds endingPaul Gilbert
2018-02-07XEEN: Clicking on party member glyphs, show Character Info dialogPaul Gilbert
2018-02-07XEEN: Compilation fixPaul Gilbert
2018-02-07XEEN: Implemented remainder of Clouds endingPaul Gilbert
2018-02-06XEEN: More of Clouds endingPaul Gilbert
2018-02-06XEEN: Implement final score calculationPaul Gilbert
2018-02-06XEEN: More of Clouds endgamePaul Gilbert