aboutsummaryrefslogtreecommitdiff
path: root/engines/scumm/he
diff options
context:
space:
mode:
authorGregory Montoir2006-12-10 00:44:40 +0000
committerGregory Montoir2006-12-10 00:44:40 +0000
commit08c261a5a639c249d482112eb4a0118cff98a25f (patch)
treeffe6b2096dc5832e74575758d5e2f8ad41df6a66 /engines/scumm/he
parent80dfce00a599824a257d32de99c0b0633a6827bb (diff)
downloadscummvm-rg350-08c261a5a639c249d482112eb4a0118cff98a25f.tar.gz
scummvm-rg350-08c261a5a639c249d482112eb4a0118cff98a25f.tar.bz2
scummvm-rg350-08c261a5a639c249d482112eb4a0118cff98a25f.zip
made CUP_Player only update the modified screen areas.
svn-id: r24831
Diffstat (limited to 'engines/scumm/he')
-rw-r--r--engines/scumm/he/cup_player_he.cpp48
-rw-r--r--engines/scumm/he/cup_player_he.h3
2 files changed, 35 insertions, 16 deletions
diff --git a/engines/scumm/he/cup_player_he.cpp b/engines/scumm/he/cup_player_he.cpp
index 6ee0228322..af76e48a6d 100644
--- a/engines/scumm/he/cup_player_he.cpp
+++ b/engines/scumm/he/cup_player_he.cpp
@@ -43,6 +43,7 @@ bool CUP_Player::open(const char *filename) {
debug(1, "rate %d width %d height %d", _playbackRate, _width, _height);
_offscreenBuffer = (uint8 *)malloc(_width * _height);
memset(_offscreenBuffer, 0, _width * _height);
+ _paletteChanged = false;
opened = true;
}
}
@@ -108,9 +109,7 @@ void CUP_Player::play() {
} else {
_system->delayMillis(1);
}
- _system->setPalette(_paletteData, 0, 256);
- _system->copyRectToScreen(_offscreenBuffer, _width, 0, 0, _width, _height);
- _system->updateScreen();
+ updateScreen();
_vm->parseEvents();
ticks = _system->getMillis();
@@ -121,6 +120,19 @@ void CUP_Player::play() {
}
}
+void CUP_Player::setDirtyScreenRect(const Common::Rect &r) {
+ const uint8 *src = _offscreenBuffer + r.top * _width + r.left;
+ _system->copyRectToScreen(src, _width, r.left, r.top, r.width() + 1, r.height() + 1);
+}
+
+void CUP_Player::updateScreen() {
+ if (_paletteChanged) {
+ _system->setPalette(_paletteData, 0, 256);
+ _paletteChanged = false;
+ }
+ _system->updateScreen();
+}
+
void CUP_Player::parseNextTag(const uint8 *data, uint32 &tag, uint32 &size) {
tag = READ_BE_UINT32(data);
size = READ_BE_UINT32(data + 4);
@@ -183,6 +195,7 @@ void CUP_Player::handleRGBS(const uint8 *data, uint32 dataSize) {
*ptr++ = *data++;
*ptr++ = 0;
}
+ _paletteChanged = true;
}
void CUP_Player::handleFRAM(uint8 *dst, const uint8 *data, uint32 size) {
@@ -191,15 +204,16 @@ void CUP_Player::handleFRAM(uint8 *dst, const uint8 *data, uint32 size) {
if (flags & 1) {
type = *data++;
}
- Common::Rect dstRect;
+ Common::Rect r;
if (flags & 2) {
- dstRect.left = READ_LE_UINT16(data); data += 2;
- dstRect.top = READ_LE_UINT16(data); data += 2;
- dstRect.right = READ_LE_UINT16(data); data += 2;
- dstRect.bottom = READ_LE_UINT16(data); data += 2;
+ r.left = READ_LE_UINT16(data); data += 2;
+ r.top = READ_LE_UINT16(data); data += 2;
+ r.right = READ_LE_UINT16(data); data += 2;
+ r.bottom = READ_LE_UINT16(data); data += 2;
}
if (flags & 0x80) {
- decodeFRAM(dst, dstRect, data, type);
+ decodeFRAM(dst, r, data, type);
+ setDirtyScreenRect(r);
}
}
@@ -240,13 +254,15 @@ void CUP_Player::decodeFRAM(uint8 *dst, Common::Rect &dstRect, const uint8 *data
}
void CUP_Player::handleSRLE(uint8 *dst, const uint8 *data, uint32 size) {
-// x1 = READ_LE_UINT16(data + 0);
-// y1 = READ_LE_UINT16(data + 2);
-// x2 = READ_LE_UINT16(data + 4);
-// y2 = READ_LE_UINT16(data + 6);
- const uint8 *colorMap = data + 8;
- int unpackedSize = READ_LE_UINT32(data + 40);
- decodeSRLE(dst, colorMap, data + 44, unpackedSize);
+ Common::Rect r;
+ r.left = READ_LE_UINT16(data); data += 2;
+ r.top = READ_LE_UINT16(data); data += 2;
+ r.right = READ_LE_UINT16(data); data += 2;
+ r.bottom = READ_LE_UINT16(data); data += 2;
+ const uint8 *colorMap = data;
+ int unpackedSize = READ_LE_UINT32(data + 32);
+ decodeSRLE(dst, colorMap, data + 36, unpackedSize);
+ setDirtyScreenRect(r);
}
void CUP_Player::decodeSRLE(uint8 *dst, const uint8 *colorMap, const uint8 *data, int unpackedSize) {
diff --git a/engines/scumm/he/cup_player_he.h b/engines/scumm/he/cup_player_he.h
index 654a75001c..2caf8b5068 100644
--- a/engines/scumm/he/cup_player_he.h
+++ b/engines/scumm/he/cup_player_he.h
@@ -38,6 +38,7 @@ struct CUP_Player {
uint32 _currentChunkSize;
uint8 *_bufferLzssData;
uint32 _bufferLzssSize;
+ bool _paletteChanged;
ScummEngine_vCUPhe *_vm;
Audio::Mixer *_mixer;
@@ -58,6 +59,8 @@ struct CUP_Player {
uint32 loadNextChunk();
void parseHeaderTags();
void play();
+ void setDirtyScreenRect(const Common::Rect &r);
+ void updateScreen();
void parseNextTag(const uint8 *data, uint32 &tag, uint32 &size);
void handleHEAD(const uint8 *data, uint32 dataSize);
void handleSFXB(const uint8 *data, uint32 dataSize);