aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen
AgeCommit message (Collapse)Author
2018-03-04XEEN: Added Other Options dialog for Dark Side and WorldPaul Gilbert
2018-03-04XEEN: Finish World of Xeen main menuPaul Gilbert
2018-03-04XEEN: Implemented Dark Side of Xeen menuPaul Gilbert
2018-03-04XEEN: Fix scroll effect for Clouds of Xeen main menuPaul Gilbert
2018-03-04XEEN: Move Credits and Please Wait classes into their own filesPaul Gilbert
2018-03-04XEEN: Move all the dialog classes to their own sub-folderPaul Gilbert
2018-03-04XEEN: Fix loading saves from main menus and launcherPaul Gilbert
2018-03-03XEEN: Fix loading saves from main menus and launcherPaul Gilbert
2018-03-03XEEN: Add Swords of Xeen main menuPaul Gilbert
2018-03-02XEEN: Hook up Clouds of Xeen intro for playing on startupPaul Gilbert
2018-03-02XEEN: Add World of Xeen logo to end of Dark Side introPaul Gilbert
2018-03-01XEEN: Fixes for Dark Side introPaul Gilbert
2018-03-01XEEN: Implemented remaining code for Dark Side introPaul Gilbert
2018-02-28XEEN: In progress implementing Dark Side introPaul Gilbert
2018-02-26XEEN: Don't show game intro if it's already been seen perviouslyPaul Gilbert
2018-02-26XEEN: Minor cleanups to outer enginePaul Gilbert
2018-02-26XEEN: Cleanup of the game title, intro, and menu launching codePaul Gilbert
2018-02-26XEEN: Defer creating new game state until neededPaul Gilbert
This fixes a bug with the startup menu where, after finishing the game, starting a new one would simply re-show the prior game
2018-02-24XEEN: Fix freeze on the Confirm dialogPaul Gilbert
2018-02-24XEEN: Remove old stubbed Screen::draw methodPaul Gilbert
2018-02-24XEEN: Remove debug code and unneeded variablesPaul Gilbert
2018-02-24XEEN: Set correct starting date for each gamePaul Gilbert
2018-02-24XEEN: Add difficulty selection dialog to WOX starting menuPaul Gilbert
2018-02-24XEEN: Properly redraw Char Items dialog after leaving Quest dialogPaul Gilbert
2018-02-24XEEN: Fix getting items from combat and displaying them in Items dialogPaul Gilbert
2018-02-24XEEN: Fix format string for items dialog weapon linesPaul Gilbert
2018-02-24XEEN: Fix resetting wall sprites between mapsPaul Gilbert
2018-02-24XEEN: Don't save prior map state when loading new savesPaul Gilbert
2018-02-24XEEN: Swords of Xeen doesn't have any dreamsPaul Gilbert
2018-02-24XEEN: Implemented Swords of Xeen death screenPaul Gilbert
2018-02-24XEEN: Don't show blood spatter for hits beyond the first rowPaul Gilbert
2018-02-24XEEN: Merge various pow/hit arrays into a single array of structuresPaul Gilbert
2018-02-24XEEN: Fix reduction of damage from physical resistencePaul Gilbert
2018-02-23XEEN: Add custom minimap logo for Swords of XeenPaul Gilbert
2018-02-23XEEN: Simplify showPharaohEndText method to use const char *Paul Gilbert
2018-02-23XEEN: Fix restarting scripts after script teleportsPaul Gilbert
2018-02-23XEEN: Add data to create_xeen for Clouds of Xeen on it's ownPaul Gilbert
2018-02-23XEEN: Add Clouds of Xeen MAE and Spells to xeen.ccsPaul Gilbert
The later games stored them in resources, but Clouds of Xeen had them hardcoded. So this adds them under the same resource names as the later games, so the existing code can load them
2018-02-23XEEN: Properly erase items dialog when exitedPaul Gilbert
2018-02-23XEEN: Fix some incorrect string arrays in create_xeenPaul Gilbert
2018-02-23XEEN: Remove un-needed initialization of monsters list in codePaul Gilbert
The original had a static monsters list in the executable, but it then goes ahead and loads in the list from a resource anyway
2018-02-23XEEN: Add custom maze to the create_xeen toolPaul Gilbert
This could be used as an example of how other new maps could be added in the future, and it also gives people a cool result if they try typing 'ScummVM' into the teleport mirror
2018-02-23XEEN: Fix exiting ScummVM when 'Nothing here' dialog is activePaul Gilbert
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