aboutsummaryrefslogtreecommitdiff
path: root/queen/talk.h
diff options
context:
space:
mode:
authorDavid Eriksson2003-11-06 08:44:33 +0000
committerDavid Eriksson2003-11-06 08:44:33 +0000
commitc524a58197f28d6ff54398a052ef391dac905148 (patch)
tree8f4b9c1f692c57129b3307cb22d72ac9b7fa1d6f /queen/talk.h
parentd1ebb50c5b93906d69fe1359ac73b5cc0523df66 (diff)
downloadscummvm-rg350-c524a58197f28d6ff54398a052ef391dac905148.tar.gz
scummvm-rg350-c524a58197f28d6ff54398a052ef391dac905148.tar.bz2
scummvm-rg350-c524a58197f28d6ff54398a052ef391dac905148.zip
The more I implement, the more I need to implement.
- More cutaway code - More dialogue code Hint: Let the last intro cutaway finish if you don't want Joe to get stuck. svn-id: r11160
Diffstat (limited to 'queen/talk.h')
-rw-r--r--queen/talk.h10
1 files changed, 8 insertions, 2 deletions
diff --git a/queen/talk.h b/queen/talk.h
index aee5f38016..a5ec14a11b 100644
--- a/queen/talk.h
+++ b/queen/talk.h
@@ -63,13 +63,17 @@ class Talk {
private:
//! Collection of constants used by Talk
enum {
+ LINE_HEIGHT = 10,
MAX_STRING_LENGTH = 255,
MAX_STRING_SIZE = (MAX_STRING_LENGTH + 1),
MAX_TEXT_WIDTH = (320-18),
PUSHUP = 4,
TALK_SELECTED_COUNT = 86,
- SENTENCE_BOB_1 = 62,
- SENTENCE_BOB_2 = 63
+ ZONE_SCREEN = 1,
+ ARROW_BOB_UP = 62,
+ ARROW_BOB_DOWN = 63,
+ ARROW_ZONE_UP = 5,
+ ARROW_ZONE_DOWN = 6
};
//! Special commands for speech
@@ -113,6 +117,8 @@ class Talk {
Resource *_resource;
Sound *_sound;
+ bool _wasFullscren;
+
//! Raw .dog file data (without 20 byte header)
byte *_fileData;