diff options
author | Max Horn | 2002-12-04 21:46:05 +0000 |
---|---|---|
committer | Max Horn | 2002-12-04 21:46:05 +0000 |
commit | 8dd3d2ec290d1bbcce5136026ba22316e0432342 (patch) | |
tree | 8d547e5ff73ebe1d620d57fd3e8427781d17e3ec | |
parent | a5302ef937917c6d4bfc3b289577ef1a34f7b4b2 (diff) | |
download | scummvm-rg350-8dd3d2ec290d1bbcce5136026ba22316e0432342.tar.gz scummvm-rg350-8dd3d2ec290d1bbcce5136026ba22316e0432342.tar.bz2 scummvm-rg350-8dd3d2ec290d1bbcce5136026ba22316e0432342.zip |
more cleanup
svn-id: r5837
-rw-r--r-- | scumm/gfx.cpp | 8 | ||||
-rw-r--r-- | scumm/object.cpp | 2 | ||||
-rw-r--r-- | scumm/scumm.h | 18 | ||||
-rw-r--r-- | scumm/string.cpp | 124 | ||||
-rw-r--r-- | scumm/verbs.cpp | 2 |
5 files changed, 71 insertions, 83 deletions
diff --git a/scumm/gfx.cpp b/scumm/gfx.cpp index ae0500928e..6a6958cbbf 100644 --- a/scumm/gfx.cpp +++ b/scumm/gfx.cpp @@ -1763,8 +1763,8 @@ void Scumm::restoreCharsetBg() charset._left = -1; } - charset._xpos2 = _string[0].xpos; - charset._ypos2 = _string[0].ypos; + charset._nextLeft = _string[0].xpos; + charset._nextTop = _string[0].ypos; } void Scumm::restoreBG(int left, int top, int right, int bottom, byte backColor) @@ -1783,10 +1783,6 @@ void Scumm::restoreBG(int left, int top, int right, int bottom, byte backColor) topline = vs->topline; height = topline + vs->height; - if (vs->number == 0) { - left += _lastXstart - vs->xstart; - right += _lastXstart - vs->xstart; - } right++; // FIXME - why do we increment right here?!? (add comment) if (left < 0) diff --git a/scumm/object.cpp b/scumm/object.cpp index c0984c3e7a..c645e1db68 100644 --- a/scumm/object.cpp +++ b/scumm/object.cpp @@ -1214,8 +1214,6 @@ void Scumm::drawBlastObject(BlastObject *eo) vs = &virtscr[0]; - _lastXstart = vs->xstart; - checkRange(_numGlobalObjects - 1, 30, eo->number, "Illegal Blast object %d"); idx = _objs[getObjectIndex(eo->number)].fl_object_index; diff --git a/scumm/scumm.h b/scumm/scumm.h index 0b12b87850..733be25364 100644 --- a/scumm/scumm.h +++ b/scumm/scumm.h @@ -178,8 +178,10 @@ protected: public: Scumm *_vm; + int _strLeft, _strRight, _strTop, _strBottom; + int _nextLeft, _nextTop; + int _top; - int _drawTop; int _left, _startLeft; byte _center; int _right; @@ -187,13 +189,13 @@ public: bool _hasMask; bool _blitAlso; - int _strLeft, _strRight, _strTop, _strBottom; - - int _xpos2, _ypos2; - int _bufPos; bool _firstChar; bool _disableOffsX; + + bool _ignoreCharsetMask; + +protected: byte _bpp; uint32 _charOffs; byte *_charPtr; @@ -202,12 +204,13 @@ public: int _bottom; int _virtScreenHeight; - byte _ignoreCharsetMask; + void drawBits(byte *dst, byte *mask, int drawTop); + +public: byte _colorMap[16]; byte _buffer[512]; - void drawBits(byte *dst, byte *mask); void printChar(int chr); void printCharOld(int chr); int getSpacing(byte chr, byte *charset); @@ -844,7 +847,6 @@ public: byte _proc_special_palette[256]; int _palDirtyMin, _palDirtyMax; - uint16 _lastXstart; byte _haveMsg; bool _useTalkAnims; diff --git a/scumm/string.cpp b/scumm/string.cpp index 703b106126..17fe2f5dc9 100644 --- a/scumm/string.cpp +++ b/scumm/string.cpp @@ -302,13 +302,13 @@ void CharsetRenderer::printChar(int chr) if (_top < _strTop) _strTop = _top; - _drawTop = _top - vs->topline; - if (_drawTop < 0) - _drawTop = 0; + int drawTop = _top - vs->topline; + if (drawTop < 0) + drawTop = 0; - _bottom = _drawTop + _height + _offsY; + _bottom = drawTop + _height + _offsY; - _vm->updateDirtyRect(vs->number, _left, right, _drawTop, _bottom, 0); + _vm->updateDirtyRect(vs->number, _left, right, drawTop, _bottom, 0); if (vs->number != 0) _blitAlso = false; @@ -319,20 +319,20 @@ void CharsetRenderer::printChar(int chr) _charPtr += 4; byte *mask = _vm->getResourceAddress(rtBuffer, 9) - + _drawTop * _vm->gdi._numStrips + _left / 8 + _vm->_screenStartStrip; + + drawTop * _vm->gdi._numStrips + _left / 8 + _vm->_screenStartStrip; - byte *dst = vs->screenPtr + vs->xstart + _drawTop * _vm->_realWidth + _left; + byte *dst = vs->screenPtr + vs->xstart + drawTop * _vm->_realWidth + _left; if (_blitAlso) { byte *back = dst; dst = _vm->getResourceAddress(rtBuffer, vs->number + 5) - + vs->xstart + _drawTop * _vm->_realWidth + _left; + + vs->xstart + drawTop * _vm->_realWidth + _left; - drawBits(dst, mask); + drawBits(dst, mask, drawTop); _vm->blit(back, dst, _width, _height); } else { - drawBits(dst, mask); + drawBits(dst, mask, drawTop); } _left += _width; @@ -345,7 +345,7 @@ void CharsetRenderer::printChar(int chr) _top -= _offsY; } -void CharsetRenderer::drawBits(byte *dst, byte *mask) +void CharsetRenderer::drawBits(byte *dst, byte *mask, int drawTop) { bool usemask; byte maskmask; @@ -354,14 +354,14 @@ void CharsetRenderer::drawBits(byte *dst, byte *mask) int color; byte numbits, bits; - usemask = (_vm->_curVirtScreen->number == 0 && _ignoreCharsetMask == 0); + usemask = (_vm->_curVirtScreen->number == 0 && !_ignoreCharsetMask); bits = *_charPtr++; numbits = 8; y = 0; - for (y = 0; y < _height && y + _drawTop < _virtScreenHeight;) { + for (y = 0; y < _height && y + drawTop < _virtScreenHeight;) { maskmask = revBitMask[_left & 7]; maskpos = 0; @@ -492,8 +492,7 @@ void Scumm::CHARSET_1() } charset._top = _string[0].ypos; - charset._left = _string[0].xpos; - charset._startLeft = _string[0].xpos; + charset._startLeft = charset._left = _string[0].xpos; if (a && a->charset) charset.setCurID(a->charset); @@ -555,19 +554,18 @@ void Scumm::CHARSET_1() t = charset._right - _string[0].xpos - 1; if (charset._center) { - if (t > charset._xpos2) - t = charset._xpos2; + if (t > charset._nextLeft) + t = charset._nextLeft; t <<= 1; } buffer = charset._buffer + charset._bufPos; charset.addLinebreaks(0, buffer, 0, t); - _lastXstart = virtscr[0].xstart; if (charset._center) { - charset._xpos2 -= charset.getStringWidth(0, buffer, 0) >> 1; - if (charset._xpos2 < 0) - charset._xpos2 = 0; + charset._nextLeft -= charset.getStringWidth(0, buffer, 0) >> 1; + if (charset._nextLeft < 0) + charset._nextLeft = 0; } charset._disableOffsX = charset._firstChar = !_keepText; @@ -584,15 +582,15 @@ void Scumm::CHARSET_1() if (c == 13) { newLine:; if (_features & GF_OLD256) { - charset._ypos2 = 8; - charset._xpos2 = 0; + charset._nextTop = 8; + charset._nextLeft = 0; continue; } else { - charset._xpos2 = _string[0].xpos; + charset._nextLeft = _string[0].xpos; if (charset._center) { - charset._xpos2 -= charset.getStringWidth(0, buffer, 0) >> 1; + charset._nextLeft -= charset.getStringWidth(0, buffer, 0) >> 1; } - charset._ypos2 += charset.getFontPtr()[1]; + charset._nextTop += charset.getFontPtr()[1]; charset._disableOffsX = true; continue; } @@ -602,8 +600,8 @@ void Scumm::CHARSET_1() c = 0xFF; if (c != 0xFF) { - charset._left = charset._xpos2; - charset._top = charset._ypos2; + charset._left = charset._nextLeft; + charset._top = charset._nextTop; if (_features & GF_OLD256) charset.printCharOld(c); else if (!(_features & GF_AFTER_V6)) { @@ -616,8 +614,8 @@ void Scumm::CHARSET_1() charset.printChar(c); } - charset._xpos2 = charset._left; - charset._ypos2 = charset._top; + charset._nextLeft = charset._left; + charset._nextTop = charset._top; _talkDelay += _vars[VAR_CHARINC]; continue; } @@ -669,7 +667,7 @@ void Scumm::CHARSET_1() buffer += 2; for (i = 0; i < 4; i++) charset._colorMap[i] = _charsetData[charset.getCurID()][i]; - charset._ypos2 -= charset.getFontPtr()[1] - oldy; + charset._nextTop -= charset.getFontPtr()[1] - oldy; break; } default: @@ -704,30 +702,27 @@ void Scumm::description() byte *buffer; buffer = charset._buffer; - charset._bufPos = 0; _string[0].ypos = camera._cur.y + 88; _string[0].xpos = (_realWidth / 2) - (charset.getStringWidth(0, buffer, 0) >> 1); if (_string[0].xpos < 0) _string[0].xpos = 0; + charset._bufPos = 0; charset._top = _string[0].ypos; - charset._left = _string[0].xpos; - charset._startLeft = _string[0].xpos; + charset._startLeft = charset._left = _string[0].xpos; charset._right = _realWidth - 1; - charset._xpos2 = _string[0].xpos; - charset._ypos2 = _string[0].ypos; - charset._disableOffsX = charset._firstChar = true; - charset.setCurID(3); charset._center = false; charset._color = 15; + charset._disableOffsX = charset._firstChar = true; + charset.setCurID(3); + charset._nextLeft = _string[0].xpos; + charset._nextTop = _string[0].ypos; // FIXME: _talkdelay = 1 - display description, not correct ego actor talking, // 0 - no display, correct ego actor talking _talkDelay = 0; restoreCharsetBg(); - _lastXstart = virtscr[0].xstart; - do { c = *buffer++; if (c == 0) { @@ -735,11 +730,11 @@ void Scumm::description() break; } if (c != 0xFF) { - charset._left = charset._xpos2; - charset._top = charset._ypos2; + charset._left = charset._nextLeft; + charset._top = charset._nextTop; charset.printChar(c); - charset._xpos2 = charset._left; - charset._ypos2 = charset._top; + charset._nextLeft = charset._left; + charset._nextTop = charset._top; continue; } } while (1); @@ -759,21 +754,20 @@ void Scumm::drawDescString(byte *msg) charset._bufPos = 0; charset._top = _string[0].ypos; - charset._left = _string[0].xpos; - charset._startLeft = _string[0].xpos; + charset._startLeft = charset._left = _string[0].xpos; charset._right = _realWidth - 1; - charset._xpos2 = _string[0].xpos; - charset._ypos2 = _string[0].ypos; - charset.setCurID(_string[0].charset); charset._center = _string[0].center; charset._color = _string[0].color; + charset._disableOffsX = charset._firstChar = true; + charset.setCurID(_string[0].charset); + charset._nextLeft = _string[0].xpos; + charset._nextTop = _string[0].ypos; // Center text - charset._xpos2 -= charset.getStringWidth(0, buffer, 0) >> 1; - if (charset._xpos2 < 0) - charset._xpos2 = 0; + charset._nextLeft -= charset.getStringWidth(0, buffer, 0) >> 1; + if (charset._nextLeft < 0) + charset._nextLeft = 0; - charset._disableOffsX = charset._firstChar = true; _talkDelay = 1; restoreCharsetBg(); @@ -785,11 +779,11 @@ void Scumm::drawDescString(byte *msg) break; } if (c != 0xFF) { - charset._left = charset._xpos2; - charset._top = charset._ypos2; + charset._left = charset._nextLeft; + charset._top = charset._nextTop; charset.printChar(c); - charset._xpos2 = charset._left; - charset._ypos2 = charset._top; + charset._nextLeft = charset._left; + charset._nextTop = charset._top; continue; } } while (1); @@ -811,13 +805,13 @@ void Scumm::drawString(int a) _msgPtrToAdd = buf; _messagePtr = addMessageToStack(_messagePtr); - charset._startLeft = charset._left = _string[a].xpos; charset._top = _string[a].ypos; - charset.setCurID(_string[a].charset); - charset._center = _string[a].center; + charset._startLeft = charset._left = _string[a].xpos; charset._right = _string[a].right; + charset._center = _string[a].center; charset._color = _string[a].color; charset._disableOffsX = charset._firstChar = true; + charset.setCurID(_string[a].charset); if (!(_features & GF_OLD256)) { for (i = 0; i < 4; i++) @@ -828,7 +822,7 @@ void Scumm::drawString(int a) _msgPtrToAdd = buf; - /* trim from the right */ + // trim from the right space = NULL; while (*_msgPtrToAdd) { if (*_msgPtrToAdd == ' ') { @@ -846,7 +840,7 @@ void Scumm::drawString(int a) } if (!(_features & GF_AFTER_V7)) - charset._ignoreCharsetMask = 1; + charset._ignoreCharsetMask = true; // In Full Throttle (and other games?), verb text should always mask @@ -904,11 +898,11 @@ void Scumm::drawString(int a) } } - charset._ignoreCharsetMask = 0; + charset._ignoreCharsetMask = false; if (a == 0) { - charset._xpos2 = charset._left; - charset._ypos2 = charset._top; + charset._nextLeft = charset._left; + charset._nextTop = charset._top; } diff --git a/scumm/verbs.cpp b/scumm/verbs.cpp index 7d75677ac1..3bf502cb47 100644 --- a/scumm/verbs.cpp +++ b/scumm/verbs.cpp @@ -200,8 +200,6 @@ void Scumm::drawVerbBitmap(int vrb, int x, int y) if ((vs = findVirtScreen(y)) == NULL) return; - _lastXstart = virtscr[0].xstart; - gdi.disableZBuffer(); twobufs = vs->alloctwobuffers; |