aboutsummaryrefslogtreecommitdiff
path: root/engines/xeen/dialogs/dialogs.cpp
AgeCommit message (Collapse)Author
2018-07-04XEEN: Fix using mouse click to close message dialogsPaul Gilbert
2018-05-30XEEN: Stop re-rolling new character stats when some areas of screen clickedPaul Gilbert
2018-04-07XEEN: Cache mouse clicks as well as keyboard in EventsManagerPaul Gilbert
This allows the well open door/gate, shoot at enemies, then close to work with the mouse as well as the keyboard. The pending event queue has also been limited to 5 pending events. Trust me, you don't want to spent time spamming Shoot at a high level monster that can't reach you, only for when it's killed to have to wait several minutes whilst your party keeps shooting.
2018-04-06XEEN: Don't set a _buttonValue when Ctrl or Alt is pressedPaul Gilbert
This avoids a problem where holding down Ctrl for the GMM was passing multiple turns.. very noticeable if there were monsters nearby, or the party is standing on a trap tile
2018-03-27XEEN: Fixes for the buttons in the Items dialogPaul 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-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