aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/party.cpp
AgeCommit message (Collapse)Author
2018-05-27XEEN: Animate open treasure chests with treasurePaul Gilbert
2018-05-24JANITORIAL: Fix trailing whitespaceAdrian Frühwirth
2018-04-29XEEN: Fix original bug prematurely resetting WEAK conditionPaul Gilbert
2018-04-22JANITORIAL: Fix formattingAdrian Frühwirth
2018-04-21XEEN: Swords changes for game flags arrayPaul Gilbert
2018-04-19XEEN: Changes for Auto Notes for SwordsPaul Gilbert
2018-04-19XEEN: Alter quest flag handling to accomodate SwordsPaul Gilbert
2018-04-19XEEN: Fix removal of Swords quest items/flagsPaul Gilbert
2018-04-15XEEN: Added differences introduced in Swords of XeenPaul Gilbert
2018-04-15XEEN: Mode renamings, fix loading savegame during script dragging partyPaul Gilbert
2018-04-15XEEN: Fix opening of Ali Baba's chestPaul Gilbert
2018-04-14XEEN: Fix Book of Great Power removing skillsPaul Gilbert
2018-04-14XEEN: Clear prior pending treasure when loading savegamePaul Gilbert
2018-04-08XEEN: Fix reading and setting character specific flagsPaul Gilbert
2018-04-07XEEN: Cleanup of game completion flagsPaul Gilbert
2018-04-05XEEN: Fix Barok giving Enchant Item spell to partyPaul Gilbert
2018-04-05XEEN: Move check code for nearby monsters to it's own methodPaul Gilbert
2018-04-05XEEN: Fix getting multiple Northern Sphinx keysPaul Gilbert
2018-04-05XEEN: Fix lockpicking to use selected characterPaul Gilbert
2018-04-02XEEN: Fix subtraction of Megacredits paying for castle improvementsPaul Gilbert
2018-04-01XEEN: Fix object 0 not being removable, _objNumber cleanupPaul Gilbert
The original used 0 as "unset", and object index + 1 to indicate the object at the current location. Given all the +1/-1 usages, I've simplified the use of _objNumber to use -1 as unset, allowing the direct object index to be used otherwise
2018-03-31XEEN: Fix initial generation of blacksmith waresPaul Gilbert
This only applies to newly started games; existing savegames will have invalid wares in the Blacksmiths
2018-03-31XEEN: Change many item Id checks to use empty() functionPaul Gilbert
2018-03-31XEEN: Properly clear misc item treasure list afterwardsPaul Gilbert
2018-03-31XEEN: Cleanup of item bonus flags to a bitfield state structurePaul Gilbert
2018-03-30XEEN: Fixes for giving items via scriptsPaul Gilbert
2018-03-25XEEN: Add portrait effect when gaining skillPaul Gilbert
2018-03-25XEEN: Slightly increase delay between giving multiple treasure itemsPaul Gilbert
2018-03-23XEEN: Remove duplicated party dead flagPaul Gilbert
2018-03-23XEEN: Don't immediately die again after loading save after deathPaul Gilbert
2018-03-18XEEN: Add an enum SpellsCategory enum, code simplification using itPaul Gilbert
2018-03-18XEEN: Properly write party character data when saving the gamePaul 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-17XEEN: Fix incorrect showing of 'you are tired' dialogs after loading ↵Paul Gilbert
savegame from launcher
2018-03-14XEEN: Fixes and refactoring for Blacksmith WaresPaul Gilbert
2018-03-05XEEN: Fixes returning to main menus after viewing intro/end cutscenesPaul Gilbert
2018-03-04XEEN: Move all the dialog classes to their own sub-folderPaul Gilbert
2018-02-24XEEN: Fix getting items from combat and displaying them in Items dialogPaul 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-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-12XEEN: Properly pause when listing treasure post-combatPaul Gilbert
2018-02-11XEEN: Fix exiting to main menu after playing ending cutscenesPaul Gilbert
2018-02-06XEEN: Implement final score calculationPaul Gilbert
2018-01-28XEEN: Change ErrorDialog to MessageDialogPaul Gilbert
2018-01-28XEEN: Flesh out missing ErrorDialog codePaul Gilbert
2018-01-27XEEN: Move Scripts _v2 to Combat _damageTargetPaul Gilbert
The _damageTarget field is wonky. In most places, such as in giveCharDamage, it's treated like an enum. But in the if opcode logic (cmdIf), it's definitely treated a character index
2018-01-16XEEN: Add spells debugger command to give party all the spellsPaul Gilbert