aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorMartin Kiewitz2010-02-05 22:31:48 +0000
committerMartin Kiewitz2010-02-05 22:31:48 +0000
commit25a9df8a817de652a40d2cc48411310b081b5653 (patch)
tree5db0607f069830e5926d48ef6207327c9db53e05 /engines
parent71fb77a5aa9b3e64f535ff06d58f1a31f6778d49 (diff)
downloadscummvm-rg350-25a9df8a817de652a40d2cc48411310b081b5653.tar.gz
scummvm-rg350-25a9df8a817de652a40d2cc48411310b081b5653.tar.bz2
scummvm-rg350-25a9df8a817de652a40d2cc48411310b081b5653.zip
SCI: moving kDisplay into GfxPaint16, now getting called directly as well
svn-id: r47917
Diffstat (limited to 'engines')
-rw-r--r--engines/sci/engine/kgraphics.cpp3
-rw-r--r--engines/sci/graphics/gui.cpp105
-rw-r--r--engines/sci/graphics/gui.h2
-rw-r--r--engines/sci/graphics/paint16.cpp107
-rw-r--r--engines/sci/graphics/paint16.h2
5 files changed, 110 insertions, 109 deletions
diff --git a/engines/sci/engine/kgraphics.cpp b/engines/sci/engine/kgraphics.cpp
index 4e250a46ed..6358db450b 100644
--- a/engines/sci/engine/kgraphics.cpp
+++ b/engines/sci/engine/kgraphics.cpp
@@ -1075,8 +1075,7 @@ reg_t kDisplay(EngineState *s, int argc, reg_t *argv) {
text = kernel_lookup_text(s, textp, index);
}
- s->_gui->display(s->strSplit(text.c_str()).c_str(), argc, argv);
- return s->r_acc;
+ return s->_gfxPaint16->kernelDisplay(s->strSplit(text.c_str()).c_str(), argc, argv);
}
reg_t kShowMovie(EngineState *s, int argc, reg_t *argv) {
diff --git a/engines/sci/graphics/gui.cpp b/engines/sci/graphics/gui.cpp
index 44bf96eba6..4796659203 100644
--- a/engines/sci/graphics/gui.cpp
+++ b/engines/sci/graphics/gui.cpp
@@ -104,111 +104,6 @@ void SciGui::wait(int16 ticks) {
kernel_sleep(_s->_event, ticks * 1000 / 60);
}
-#define SCI_DISPLAY_MOVEPEN 100
-#define SCI_DISPLAY_SETALIGNMENT 101
-#define SCI_DISPLAY_SETPENCOLOR 102
-#define SCI_DISPLAY_SETBACKGROUNDCOLOR 103
-#define SCI_DISPLAY_SETGREYEDOUTPUT 104
-#define SCI_DISPLAY_SETFONT 105
-#define SCI_DISPLAY_WIDTH 106
-#define SCI_DISPLAY_SAVEUNDER 107
-#define SCI_DISPLAY_RESTOREUNDER 108
-#define SCI_DISPLAY_DONTSHOWBITS 121
-
-void SciGui::display(const char *text, int argc, reg_t *argv) {
- int displayArg;
- TextAlignment alignment = SCI_TEXT16_ALIGNMENT_LEFT;
- int16 colorPen = -1, colorBack = -1, width = -1, bRedraw = 1;
- bool doSaveUnder = false;
- Common::Rect rect;
-
- // Make a "backup" of the port settings
- Port oldPort = *_ports->getPort();
-
- // setting defaults
- _ports->penMode(0);
- _ports->penColor(0);
- _ports->textGreyedOutput(false);
- // processing codes in argv
- while (argc > 0) {
- displayArg = argv[0].toUint16();
- argc--; argv++;
- switch (displayArg) {
- case SCI_DISPLAY_MOVEPEN:
- _ports->moveTo(argv[0].toUint16(), argv[1].toUint16());
- argc -= 2; argv += 2;
- break;
- case SCI_DISPLAY_SETALIGNMENT:
- alignment = argv[0].toSint16();
- argc--; argv++;
- break;
- case SCI_DISPLAY_SETPENCOLOR:
- colorPen = argv[0].toUint16();
- _ports->penColor(colorPen);
- argc--; argv++;
- break;
- case SCI_DISPLAY_SETBACKGROUNDCOLOR:
- colorBack = argv[0].toUint16();
- argc--; argv++;
- break;
- case SCI_DISPLAY_SETGREYEDOUTPUT:
- _ports->textGreyedOutput(argv[0].isNull() ? false : true);
- argc--; argv++;
- break;
- case SCI_DISPLAY_SETFONT:
- _text16->SetFont(argv[0].toUint16());
- argc--; argv++;
- break;
- case SCI_DISPLAY_WIDTH:
- width = argv[0].toUint16();
- argc--; argv++;
- break;
- case SCI_DISPLAY_SAVEUNDER:
- doSaveUnder = true;
- break;
- case SCI_DISPLAY_RESTOREUNDER:
- _paint16->bitsGetRect(argv[0], &rect);
- rect.translate(-_ports->getPort()->left, -_ports->getPort()->top);
- _paint16->bitsRestore(argv[0]);
- _paint16->kernelGraphRedrawBox(rect);
- // finishing loop
- argc = 0;
- break;
- case SCI_DISPLAY_DONTSHOWBITS:
- bRedraw = 0;
- break;
- default:
- warning("Unknown kDisplay argument %X", displayArg);
- break;
- }
- }
-
- // now drawing the text
- _text16->Size(rect, text, -1, width);
- rect.moveTo(_ports->getPort()->curLeft, _ports->getPort()->curTop);
- if (getSciVersion() >= SCI_VERSION_1_LATE) {
- int16 leftPos = rect.right <= _screen->getWidth() ? 0 : _screen->getWidth() - rect.right;
- int16 topPos = rect.bottom <= _screen->getHeight() ? 0 : _screen->getHeight() - rect.bottom;
- _ports->move(leftPos, topPos);
- rect.moveTo(_ports->getPort()->curLeft, _ports->getPort()->curTop);
- }
-
- if (doSaveUnder)
- _s->r_acc = _paint16->bitsSave(rect, SCI_SCREEN_MASK_VISUAL);
- if (colorBack != -1)
- _paint16->fillRect(rect, SCI_SCREEN_MASK_VISUAL, colorBack, 0, 0);
- _text16->Box(text, 0, rect, alignment, -1);
- if (_screen->_picNotValid == 0 && bRedraw)
- _paint16->bitsShow(rect);
- // restoring port and cursor pos
- Port *currport = _ports->getPort();
- uint16 tTop = currport->curTop;
- uint16 tLeft = currport->curLeft;
- *currport = oldPort;
- currport->curTop = tTop;
- currport->curLeft = tLeft;
-}
-
void SciGui::textSize(const char *text, int16 font, int16 maxWidth, int16 *textWidth, int16 *textHeight) {
Common::Rect rect(0, 0, *textWidth, *textHeight);
_text16->Size(rect, text, font, maxWidth);
diff --git a/engines/sci/graphics/gui.h b/engines/sci/graphics/gui.h
index 5c03b201f3..911f72facc 100644
--- a/engines/sci/graphics/gui.h
+++ b/engines/sci/graphics/gui.h
@@ -53,8 +53,6 @@ public:
virtual void wait(int16 ticks);
- virtual void display(const char *text, int argc, reg_t *argv);
-
virtual void textSize(const char *text, int16 font, int16 maxWidth, int16 *textWidth, int16 *textHeight);
virtual void textFonts(int argc, reg_t *argv);
virtual void textColors(int argc, reg_t *argv);
diff --git a/engines/sci/graphics/paint16.cpp b/engines/sci/graphics/paint16.cpp
index 16c2dd03b5..dad058f356 100644
--- a/engines/sci/graphics/paint16.cpp
+++ b/engines/sci/graphics/paint16.cpp
@@ -414,4 +414,111 @@ void GfxPaint16::kernelGraphRedrawBox(Common::Rect rect) {
_ports->setPort(oldPort);
}
+#define SCI_DISPLAY_MOVEPEN 100
+#define SCI_DISPLAY_SETALIGNMENT 101
+#define SCI_DISPLAY_SETPENCOLOR 102
+#define SCI_DISPLAY_SETBACKGROUNDCOLOR 103
+#define SCI_DISPLAY_SETGREYEDOUTPUT 104
+#define SCI_DISPLAY_SETFONT 105
+#define SCI_DISPLAY_WIDTH 106
+#define SCI_DISPLAY_SAVEUNDER 107
+#define SCI_DISPLAY_RESTOREUNDER 108
+#define SCI_DISPLAY_DONTSHOWBITS 121
+
+reg_t GfxPaint16::kernelDisplay(const char *text, int argc, reg_t *argv) {
+ int displayArg;
+ TextAlignment alignment = SCI_TEXT16_ALIGNMENT_LEFT;
+ int16 colorPen = -1, colorBack = -1, width = -1, bRedraw = 1;
+ bool doSaveUnder = false;
+ Common::Rect rect;
+ reg_t result = NULL_REG;
+
+ // Make a "backup" of the port settings
+ Port oldPort = *_ports->getPort();
+
+ // setting defaults
+ _ports->penMode(0);
+ _ports->penColor(0);
+ _ports->textGreyedOutput(false);
+ // processing codes in argv
+ while (argc > 0) {
+ displayArg = argv[0].toUint16();
+ argc--; argv++;
+ switch (displayArg) {
+ case SCI_DISPLAY_MOVEPEN:
+ _ports->moveTo(argv[0].toUint16(), argv[1].toUint16());
+ argc -= 2; argv += 2;
+ break;
+ case SCI_DISPLAY_SETALIGNMENT:
+ alignment = argv[0].toSint16();
+ argc--; argv++;
+ break;
+ case SCI_DISPLAY_SETPENCOLOR:
+ colorPen = argv[0].toUint16();
+ _ports->penColor(colorPen);
+ argc--; argv++;
+ break;
+ case SCI_DISPLAY_SETBACKGROUNDCOLOR:
+ colorBack = argv[0].toUint16();
+ argc--; argv++;
+ break;
+ case SCI_DISPLAY_SETGREYEDOUTPUT:
+ _ports->textGreyedOutput(argv[0].isNull() ? false : true);
+ argc--; argv++;
+ break;
+ case SCI_DISPLAY_SETFONT:
+ _text16->SetFont(argv[0].toUint16());
+ argc--; argv++;
+ break;
+ case SCI_DISPLAY_WIDTH:
+ width = argv[0].toUint16();
+ argc--; argv++;
+ break;
+ case SCI_DISPLAY_SAVEUNDER:
+ doSaveUnder = true;
+ break;
+ case SCI_DISPLAY_RESTOREUNDER:
+ bitsGetRect(argv[0], &rect);
+ rect.translate(-_ports->getPort()->left, -_ports->getPort()->top);
+ bitsRestore(argv[0]);
+ kernelGraphRedrawBox(rect);
+ // finishing loop
+ argc = 0;
+ break;
+ case SCI_DISPLAY_DONTSHOWBITS:
+ bRedraw = 0;
+ break;
+ default:
+ warning("Unknown kDisplay argument %X", displayArg);
+ break;
+ }
+ }
+
+ // now drawing the text
+ _text16->Size(rect, text, -1, width);
+ rect.moveTo(_ports->getPort()->curLeft, _ports->getPort()->curTop);
+ if (getSciVersion() >= SCI_VERSION_1_LATE) {
+ int16 leftPos = rect.right <= _screen->getWidth() ? 0 : _screen->getWidth() - rect.right;
+ int16 topPos = rect.bottom <= _screen->getHeight() ? 0 : _screen->getHeight() - rect.bottom;
+ _ports->move(leftPos, topPos);
+ rect.moveTo(_ports->getPort()->curLeft, _ports->getPort()->curTop);
+ }
+
+ if (doSaveUnder)
+ result = bitsSave(rect, SCI_SCREEN_MASK_VISUAL);
+ if (colorBack != -1)
+ fillRect(rect, SCI_SCREEN_MASK_VISUAL, colorBack, 0, 0);
+ _text16->Box(text, 0, rect, alignment, -1);
+ if (_screen->_picNotValid == 0 && bRedraw)
+ bitsShow(rect);
+ // restoring port and cursor pos
+ Port *currport = _ports->getPort();
+ uint16 tTop = currport->curTop;
+ uint16 tLeft = currport->curLeft;
+ *currport = oldPort;
+ currport->curTop = tTop;
+ currport->curLeft = tLeft;
+ return result;
+}
+
} // End of namespace Sci
diff --git a/engines/sci/graphics/paint16.h b/engines/sci/graphics/paint16.h
index 06a0cc5f8c..a880da74c8 100644
--- a/engines/sci/graphics/paint16.h
+++ b/engines/sci/graphics/paint16.h
@@ -86,6 +86,8 @@ public:
void kernelGraphUpdateBox(Common::Rect rect, bool hiresMode);
void kernelGraphRedrawBox(Common::Rect rect);
+ reg_t kernelDisplay(const char *text, int argc, reg_t *argv);
+
private:
ResourceManager *_resMan;
SegManager *_segMan;