aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2005-05-26 16:39:40 +0000
committerMax Horn2005-05-26 16:39:40 +0000
commit6e42068c8bda323f41f48d77d76582579da2c5ac (patch)
treed5efe240bd47341993bceaecc8450ee04cdf5302 /scumm
parent97f03369ec4086bf33da3a436c5c8e8aa3253a90 (diff)
downloadscummvm-rg350-6e42068c8bda323f41f48d77d76582579da2c5ac.tar.gz
scummvm-rg350-6e42068c8bda323f41f48d77d76582579da2c5ac.tar.bz2
scummvm-rg350-6e42068c8bda323f41f48d77d76582579da2c5ac.zip
In V7/V8 games, use the blast text system to render verbs (this fixes bug #1208956, but certainly will cause new regressions ;-)
svn-id: r18267
Diffstat (limited to 'scumm')
-rw-r--r--scumm/intern.h2
-rw-r--r--scumm/script_v8.cpp2
-rw-r--r--scumm/scumm.h2
-rw-r--r--scumm/verbs.cpp60
4 files changed, 60 insertions, 6 deletions
diff --git a/scumm/intern.h b/scumm/intern.h
index ab1942f095..cb57a157ee 100644
--- a/scumm/intern.h
+++ b/scumm/intern.h
@@ -1298,6 +1298,8 @@ protected:
virtual void translateText(const byte *text, byte *trans_buff);
virtual void loadLanguageBundle();
void playSpeech(const byte *ptr);
+
+ virtual void drawVerb(int verb, int mode);
};
class ScummEngine_v8 : public ScummEngine_v7 {
diff --git a/scumm/script_v8.cpp b/scumm/script_v8.cpp
index 305d538fbc..1430c8e283 100644
--- a/scumm/script_v8.cpp
+++ b/scumm/script_v8.cpp
@@ -1475,7 +1475,7 @@ void ScummEngine_v8::o8_getObjectImageHeight() {
void ScummEngine_v8::o8_getStringWidth() {
int charset = pop();
- int oldID = _charset->getCurID();
+ int oldID = _charset->getCurID();
int width;
const byte *msg = _scriptPointer;
byte transBuf[512];
diff --git a/scumm/scumm.h b/scumm/scumm.h
index 9500062f6c..e36ea4b51e 100644
--- a/scumm/scumm.h
+++ b/scumm/scumm.h
@@ -830,7 +830,7 @@ protected:
void checkExecVerbs();
void verbMouseOver(int verb);
int findVerbAtPos(int x, int y) const;
- void drawVerb(int verb, int mode);
+ virtual void drawVerb(int verb, int mode);
void runInputScript(int a, int cmd, int mode);
void restoreVerbBG(int verb);
void drawVerbBitmap(int verb, int x, int y);
diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp
index 73b863b186..e5efa048e8 100644
--- a/scumm/verbs.cpp
+++ b/scumm/verbs.cpp
@@ -486,6 +486,61 @@ int ScummEngine::findVerbAtPos(int x, int y) const {
return 0;
}
+void ScummEngine_v7::drawVerb(int verb, int mode) {
+ VerbSlot *vs;
+
+ if (!verb)
+ return;
+
+ vs = &_verbs[verb];
+
+ if (!vs->saveid && vs->curmode && vs->verbid) {
+ if (vs->type == kImageVerbType) {
+ drawVerbBitmap(verb, vs->curRect.left, vs->curRect.top);
+ return;
+ }
+
+ uint8 color = vs->color;
+ if (vs->curmode == 2)
+ color = vs->dimcolor;
+ else if (mode && vs->hicolor)
+ color = vs->hicolor;
+
+ const byte *msg = getResourceAddress(rtVerb, verb);
+ if (!msg)
+ return;
+
+ // Convert the message, and skip a few remaining 0xFF codes (they
+ // occur in FT; subtype 10, which is used for the speech associated
+ // with the string).
+ byte buf[384];
+ convertMessageToString(msg, buf, sizeof(buf));
+ msg = buf;
+ while (*msg == 0xFF)
+ msg += 4;
+
+ enqueueText(msg, vs->curRect.left, vs->curRect.top, color, vs->charset_nr, vs->center);
+
+ // Set the specified charset id
+ _charset->setCurID(vs->charset_nr);
+
+ // Compute the text rect
+ vs->curRect.right = 0;
+ vs->curRect.bottom = 0;
+ while (*msg) {
+ const int charWidth = _charset->getCharWidth(*msg);
+ const int charHeight = _charset->getCharHeight(*msg);
+ vs->curRect.right += charWidth;
+ if (vs->curRect.bottom < charHeight)
+ vs->curRect.bottom = charHeight;
+ msg++;
+ }
+ vs->curRect.right += vs->curRect.left;
+ vs->curRect.bottom += vs->curRect.top;
+ vs->oldRect = vs->curRect;
+ }
+}
+
void ScummEngine::drawVerb(int verb, int mode) {
VerbSlot *vs;
bool tmp;
@@ -527,7 +582,6 @@ void ScummEngine::drawVerb(int verb, int mode) {
return;
tmp = _charset->_center;
- _charset->_center = 0;
drawString(4, msg);
_charset->_center = tmp;
@@ -546,9 +600,7 @@ void ScummEngine::restoreVerbBG(int verb) {
vs = &_verbs[verb];
- if (_gameId == GID_FT) {
- restoreBG(vs->curRect, vs->bkcolor);
- } else if (vs->oldRect.left != -1) {
+ if (vs->oldRect.left != -1) {
restoreBG(vs->oldRect, vs->bkcolor);
vs->oldRect.left = -1;
}