aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/character.cpp
AgeCommit message (Collapse)Author
2018-03-10XEEN: Move item classes into their own filePaul 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-17XEEN: Cleanup of giveTake give case 66 - give itemPaul Gilbert
2018-01-28XEEN: Change ErrorDialog to MessageDialogPaul Gilbert
2018-01-28XEEN: Flesh out missing ErrorDialog codePaul Gilbert
2018-01-20XEEN: Add invincible debugger commandPaul Gilbert
2018-01-16XEEN: Add spells debugger command to give party all the spellsPaul Gilbert
2018-01-16XEEN: Fix armor class calculationsPaul Gilbert
2017-12-29XEEN: REplace award values with descriptive constantsPaul Gilbert
2017-12-29XEEN: Comments for the Character class methodsPaul Gilbert
2017-12-29XEEN: Simplify itemScan methodPaul Gilbert
2017-12-29XEEN: Fix showing correct names for quest itemsPaul 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-10XEEN: Implemented awards listing dialogPaul Gilbert
2017-11-23XEEN: Script opcode cleanup and fixesPaul Gilbert
2017-11-23XEEN: Fixes for initializing blacksmith waresPaul Gilbert
2017-11-18XEEN: Fix number of spells per class array & constantPaul Gilbert
2017-11-18XEEN: Fixes for Character classPaul Gilbert
2017-11-14XEEN: Fix some Coverity warningsPaul Gilbert
2017-11-11XEEN: In progress implementing giveTakePaul Gilbert
2017-04-18JANITORIAL: Remove superfluous semicolonsTorbjörn Andersson
2016-10-09JANITORIAL: Remove trailing spacesEugene Sandulenko
2016-09-22XEEN: Create Resources class to encapsulate all the static resourcesPaul Gilbert
This will make it easier later on to handle things like translations, and if the other games have different values for some arrays
2016-09-12XEEN: Beginnings of Music classPaul Gilbert
2016-09-04XEEN: Change a strncpy use to Common::strlcpyPaul Gilbert
2016-08-28XEEN: Moved method comments from CPP to header filesPaul Gilbert
2016-08-28XEEN: gcc compilation fixesPaul Gilbert
2016-08-28XEEN: gcc compilation fixesPaul Gilbert
2015-02-28XEEN: gcc compilation fixesPaul Gilbert
2015-02-28XEEN: Implement addHitPoints and spellFX methodsPaul Gilbert
2015-02-28XEEN: Implemented multiAttackPaul Gilbert
2015-02-21XEEN: Implemented giveTreasurePaul Gilbert
2015-02-20XEEN: Implement attack methodPaul Gilbert
2015-02-20XEEN: Implement attackMonster and breakAllItemsPaul Gilbert
2015-02-17XEEN: Implemented Cast Spell dialogPaul Gilbert
2015-02-16XEEN: Implementing more combat logicPaul Gilbert
2015-02-11XEEN: Implemented code for deleting characters in Party dialogPaul Gilbert
2015-02-10XEEN: Refactored _partyCount and _partyMembers into the _activeParty arrayPaul Gilbert
2015-02-10XEEN: Refacored face sprites loading into Roster and Character classesPaul Gilbert
2015-02-07XEEN: Implemented bashingPaul Gilbert
2015-02-07XEEN: Another fix for makeItem variable usagePaul Gilbert
2015-02-07XEEN: Fix incorrect variable usage in makeItemPaul Gilbert
2015-02-07XEEN: Implemented getIdentifiedDetails and getAttributesPaul Gilbert
2015-02-06XEEN: Implemented makeItemPaul Gilbert
2015-02-05XEEN: Merged confirmation and yes/no dialogs into single source filePaul Gilbert
2015-02-05XEEN: Moved _maeNames to a new Resources classPaul Gilbert
2015-02-05XEEN: Split up assembleItemName and renamed to getFullDescriptionPaul Gilbert
2015-02-05XEEN: equipItem methods for armor and accessoriesPaul Gilbert