aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorTravis Howell2005-04-23 14:32:40 +0000
committerTravis Howell2005-04-23 14:32:40 +0000
commit88dfc9891e9b75f9e3fbd4a5c27e06abc7f9caf8 (patch)
tree6ed55e16914dd4e49a9d243156aa2951e2dad845 /scumm
parent2cc5040a9a3801a3cda6eb144b5514ab3e8b24c9 (diff)
downloadscummvm-rg350-88dfc9891e9b75f9e3fbd4a5c27e06abc7f9caf8.tar.gz
scummvm-rg350-88dfc9891e9b75f9e3fbd4a5c27e06abc7f9caf8.tar.bz2
scummvm-rg350-88dfc9891e9b75f9e3fbd4a5c27e06abc7f9caf8.zip
decompressWizImage shouldn't be called directly by charset renderer in HE games.
Fix palette issues with charset type 0 in HE games svn-id: r17774
Diffstat (limited to 'scumm')
-rw-r--r--scumm/charset.cpp83
1 files changed, 38 insertions, 45 deletions
diff --git a/scumm/charset.cpp b/scumm/charset.cpp
index fe5e7ecd41..9d14818394 100644
--- a/scumm/charset.cpp
+++ b/scumm/charset.cpp
@@ -1382,60 +1382,53 @@ void CharsetRendererClassic::printChar(int chr) {
_textScreenID = vs->number;
}
- Graphics::Surface dstSurface;
- Graphics::Surface backSurface;
- if (_ignoreCharsetMask || !vs->hasTwoBuffers) {
- dstSurface = *vs;
- dstPtr = vs->getPixels(_left, drawTop);
- } else {
- dstSurface = _textSurface;
- dstPtr = (byte *)_textSurface.pixels + (_top - _vm->_screenTop) * _textSurface.pitch + _left;
- }
-
- if (_blitAlso && vs->hasTwoBuffers) {
- backSurface = dstSurface;
- back = dstPtr;
- dstSurface = *vs;
- dstPtr = vs->getBackPixels(_left, drawTop);
- }
-
- if (!_ignoreCharsetMask && vs->hasTwoBuffers) {
- drawTop = _top - _vm->_screenTop;
- }
-
if ((_vm->_heversion >= 71 && type >= 8) || (_vm->_heversion >= 90 && type == 0)) {
- Common::Rect src, dst;
-
- dst.left = _left;
- dst.top = _top;
- dst.right = dst.left + width;
- dst.bottom = dst.top + height;
-
- if (dst.left < 0) {
- dstPtr -= _left;
- dst.left = 0;
+ if (_ignoreCharsetMask || !vs->hasTwoBuffers) {
+ dstPtr = vs->getPixels(0, 0);
+ } else {
+ dstPtr = (byte *)_textSurface.pixels;
}
- if (dst.top < 0) {
- dstPtr -= _top * dstSurface.pitch;
- dst.top = 0;
+ if (_blitAlso && vs->hasTwoBuffers) {
+ dstPtr = vs->getBackPixels(0, 0);
}
- if ((dst.left >= dst.right) || (dst.top >= dst.bottom))
- return;
+ Common::Rect rScreen(vs->w, vs->h);
+ if (type >= 8) {
+ byte imagePalette[256];
+ memset(imagePalette, 0, sizeof(imagePalette));
+ memcpy(imagePalette, _vm->_charsetColorMap, 16);
+ Wiz::copyWizImage(dstPtr, charPtr, vs->w, vs->h, _left, _top, origWidth, origHeight, &rScreen, imagePalette);
+ } else {
+ Wiz::copyWizImage(dstPtr, charPtr, vs->w, vs->h, _left, _top, origWidth, origHeight, &rScreen);
+ }
- src = dst;
- src.moveTo(0, 0);
+ if (_blitAlso && vs->hasTwoBuffers) {
+ Common::Rect dst(_left, _top, _left + origWidth, _top + origHeight);
+ _vm->gdi.copyVirtScreenBuffers(dst);
+ }
+ } else {
+ Graphics::Surface dstSurface;
+ Graphics::Surface backSurface;
+ if (_ignoreCharsetMask || !vs->hasTwoBuffers) {
+ dstSurface = *vs;
+ dstPtr = vs->getPixels(_left, drawTop);
+ } else {
+ dstSurface = _textSurface;
+ dstPtr = (byte *)_textSurface.pixels + (_top - _vm->_screenTop) * _textSurface.pitch + _left;
+ }
- byte imagePalette[256];
- memset(imagePalette, 255, sizeof(imagePalette));
- memcpy(imagePalette, _vm->_charsetColorMap, 16);
- Wiz::decompressWizImage(dstPtr, vs->w, dst, charPtr, src, imagePalette);
+ if (_blitAlso && vs->hasTwoBuffers) {
+ backSurface = dstSurface;
+ back = dstPtr;
+ dstSurface = *vs;
+ dstPtr = vs->getBackPixels(_left, drawTop);
+ }
- if (_blitAlso && vs->hasTwoBuffers)
- _vm->gdi.copyVirtScreenBuffers(dst);
+ if (!_ignoreCharsetMask && vs->hasTwoBuffers) {
+ drawTop = _top - _vm->_screenTop;
+ }
- } else {
if (is2byte) {
drawBits1(dstSurface, dstPtr, charPtr, drawTop, origWidth, origHeight);
} else {