From a52de03324bf07891be4ff4e161668ed59a78d6e Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Fri, 11 Mar 2005 15:30:28 +0000 Subject: Renamed variables in the MPEG animation classes to better conform with ScummVM standard. It seems the 8-bit version of the code had decayed slightly, but I believe it's working again now. svn-id: r17081 --- sword2/build_display.h | 2 +- sword2/driver/animation.cpp | 26 +++++++++++++------------- sword2/driver/render.cpp | 3 +++ 3 files changed, 17 insertions(+), 14 deletions(-) (limited to 'sword2') diff --git a/sword2/build_display.h b/sword2/build_display.h index 4259b4360e..bccd88ad87 100644 --- a/sword2/build_display.h +++ b/sword2/build_display.h @@ -417,10 +417,10 @@ public: void plotPoint(int16 x, int16 y, uint8 colour); void drawLine(int16 x1, int16 y1, int16 x2, int16 y2, uint8 colour); + #ifdef BACKEND_8BIT void plotYUV(byte *lut, int width, int height, byte *const *dat); #endif - }; } // End of namespace Sword2 diff --git a/sword2/driver/animation.cpp b/sword2/driver/animation.cpp index 2f428b144f..90da608e69 100644 --- a/sword2/driver/animation.cpp +++ b/sword2/driver/animation.cpp @@ -51,7 +51,7 @@ void AnimationState::setPalette(byte *pal) { #else void AnimationState::drawTextObject(SpriteInfo *s, byte *src) { - OverlayColor *dst = overlay + RENDERWIDE * (s->y) + s->x; + OverlayColor *dst = _overlay + RENDERWIDE * s->y + s->x; // FIXME: These aren't the "right" colours, but look good to me. @@ -78,31 +78,31 @@ void AnimationState::drawTextObject(SpriteInfo *s, byte *src) { #endif -void AnimationState::clearScreen(void) { +void AnimationState::clearScreen() { #ifdef BACKEND_8BIT - memset(_vm->_screen->getScreen(), 0, MOVIE_WIDTH * MOVIE_HEIGHT); + memset(_vm->_screen->getScreen(), 0, _movieWidth * _movieHeight); #else OverlayColor black = _sys->RGBToColor(0, 0, 0); - for (int i = 0; i < MOVIE_WIDTH * MOVIE_HEIGHT; i++) - overlay[i] = black; + for (int i = 0; i < _movieWidth * _movieHeight; i++) + _overlay[i] = black; #endif } -void AnimationState::updateScreen(void) { +void AnimationState::updateScreen() { #ifdef BACKEND_8BIT - byte *buf = _vm->_screen->getScreen() + ((480 - MOVIE_HEIGHT) / 2) * RENDERWIDE + (640 - MOVIE_WIDTH) / 2; + byte *buf = _vm->_screen->getScreen() + ((480 - _movieHeight) / 2) * RENDERWIDE + (640 - _movieWidth) / 2; - _vm->_system->copyRectToScreen(buf, MOVIE_WIDTH, (640 - MOVIE_WIDTH) / 2, (480 - MOVIE_HEIGHT) / 2, MOVIE_WIDTH, MOVIE_HEIGHT); + _vm->_system->copyRectToScreen(buf, _movieWidth, (640 - _movieWidth) / 2, (480 - _movieHeight) / 2, _movieWidth, _movieHeight); #else - _sys->copyRectToOverlay(overlay, MOVIE_WIDTH, 0, 0, MOVIE_WIDTH, MOVIE_HEIGHT); + _sys->copyRectToOverlay(_overlay, _movieWidth, 0, 0, _movieWidth, _movieHeight); #endif _vm->_system->updateScreen(); } void AnimationState::drawYUV(int width, int height, byte *const *dat) { #ifdef BACKEND_8BIT - _vm->_screen->plotYUV(lut, width, height, dat); + _vm->_screen->plotYUV(_lut, width, height, dat); #else plotYUV(width, height, dat); #endif @@ -241,12 +241,12 @@ void MoviePlayer::playMPEG(const char *filename, MovieTextObject *text[], byte * return; } -#ifndef BACKEND_8BIT // Clear the screen, because whatever is on it will be visible when the - // overlay is removed. + // overlay is removed. And if there isn't an overlay, we don't want it + // to be visible during the cutscene. (Not all cutscenes cover the + // entire screen.) _vm->_screen->clearScene(); _vm->_screen->updateDisplay(); -#endif #ifndef SCUMM_BIG_ENDIAN flags |= SoundMixer::FLAG_LITTLE_ENDIAN; diff --git a/sword2/driver/render.cpp b/sword2/driver/render.cpp index eb50fcb1c8..8587be3b36 100644 --- a/sword2/driver/render.cpp +++ b/sword2/driver/render.cpp @@ -24,7 +24,10 @@ #include "sword2/sword2.h" #include "sword2/defs.h" #include "sword2/build_display.h" + +#ifdef BACKEND_8BIT #include "sword2/driver/animation.h" +#endif namespace Sword2 { -- cgit v1.2.3