aboutsummaryrefslogtreecommitdiff
path: root/scumm/intern.h
diff options
context:
space:
mode:
Diffstat (limited to 'scumm/intern.h')
-rw-r--r--scumm/intern.h26
1 files changed, 21 insertions, 5 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index 7f77340da6..37dcb24cc3 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -516,6 +516,13 @@ protected:
int _smushFrameRate;
+ struct TextObject {
+ int16 xpos, ypos;
+ byte color;
+ byte charset;
+ byte text[256];
+ };
+
/** BlastObjects to draw */
struct BlastObject {
uint16 number;
@@ -528,13 +535,9 @@ protected:
int _blastObjectQueuePos;
BlastObject _blastObjectQueue[128];
- struct BlastText {
- int16 xpos, ypos;
+ struct BlastText : TextObject {
Common::Rect rect;
- byte color;
- byte charset;
bool center;
- byte text[256];
};
int _blastTextQueuePos;
@@ -1004,6 +1007,8 @@ protected:
int findObject(int x, int y, int num, int *args);
int getSoundResourceSize(int id);
+ virtual bool handleNextCharsetCode(Actor *a, int *c);
+
/* HE version 72 script opcodes */
void o72_pushDWord();
void o72_getScriptString();
@@ -1338,6 +1343,17 @@ public:
int _languageIndexSize;
char _lastStringTag[12+1];
+ struct SubtitleText : TextObject {
+ bool actorSpeechMsg;
+ };
+
+ int _subtitleQueuePos;
+ SubtitleText _subtitleQueue[20];
+
+ void processSubtitleQueue();
+ void addSubtitleToQueue(const byte *text, const Common::Point &pos, byte color, byte charset);
+ void clearSubtitleQueue();
+
protected:
virtual void setupScummVars();
virtual void initScummVars();