aboutsummaryrefslogtreecommitdiff
path: root/queen/command.h
diff options
context:
space:
mode:
authorGregory Montoir2003-11-04 13:51:36 +0000
committerGregory Montoir2003-11-04 13:51:36 +0000
commitb06e50dfa5588a0ad92515996c04477dd51da938 (patch)
treeacad24ad035cc3300ba11b66c80bcadf8bb48b16 /queen/command.h
parentbfb8f9a0702735eb38e716d12e60ce27b79c0e25 (diff)
downloadscummvm-rg350-b06e50dfa5588a0ad92515996c04477dd51da938.tar.gz
scummvm-rg350-b06e50dfa5588a0ad92515996c04477dd51da938.tar.bz2
scummvm-rg350-b06e50dfa5588a0ad92515996c04477dd51da938.zip
preliminary R_MAP implementation
svn-id: r11125
Diffstat (limited to 'queen/command.h')
-rw-r--r--queen/command.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/queen/command.h b/queen/command.h
index f055571aee..fd11cb63a1 100644
--- a/queen/command.h
+++ b/queen/command.h
@@ -104,6 +104,9 @@ public:
//! return true if command is ready to be executed
bool parse() const { return _parse; }
+ enum {
+ MAX_MATCHING_CMDS = 50
+ };
private:
@@ -118,7 +121,6 @@ private:
bool executeIfCutaway(const char *description);
bool executeIfDialog(const char *description);
- uint16 countAssociatedCommands(const Verb& verb, int16 subj1, int16 subj2);
bool handleBadCommand(bool walk);
void executeStandardStuff(const Verb& action, int16 subj1, int16 subj2);
void changeObjectState(const Verb& action, int16 obj, int16 song, bool cutDone);