25 #include "common/language.h" 26 #include "common/rect.h" 27 #include "common/events.h" 28 #include "queen/defs.h" 41 DELAY_SCREEN_BLANKER = 5 * 60 * 1000
50 void delay(uint amount);
58 void canQuit(
bool cq) { _canQuit = cq; }
60 bool cutawayRunning()
const {
return _cutawayRunning; }
61 void cutawayRunning(
bool running) { _cutawayRunning = running; }
63 bool cutawayQuit()
const {
return _cutawayQuit; }
64 void cutawayQuitReset() { _cutawayQuit =
false; }
66 void dialogueRunning(
bool running) { _dialogueRunning = running; }
68 bool talkQuit()
const {
return _talkQuit; }
69 void talkQuitReset() { _talkQuit =
false; }
71 bool quickSave()
const {
return _quickSave; }
72 void quickSaveReset() { _quickSave =
false; }
73 bool quickLoad()
const {
return _quickLoad; }
74 void quickLoadReset() { _quickLoad =
false; }
76 bool fastMode()
const {
return _fastMode; }
77 void fastMode(
bool fm) { _fastMode = fm; }
79 Verb keyVerb()
const {
return _keyVerb; }
83 int mouseButton()
const {
return _mouseButton; }
84 void clearMouseButton() { _mouseButton = 0; }
103 bool _cutawayRunning;
112 bool _dialogueRunning;
124 Common::KeyCode _inKey;
133 const char *_currentCommandKeys;
136 static const char *
const _commandKeys[];
139 static const Verb _verbKeys[];
Language
Definition: language.h:45