aboutsummaryrefslogtreecommitdiff
path: root/engines/titanic/support/video_surface.cpp
diff options
context:
space:
mode:
authorPaul Gilbert2016-07-12 19:19:06 -0400
committerPaul Gilbert2016-07-17 13:09:36 -0400
commit6331e3814a7fe501056ec5a356924b9c4c40c16f (patch)
tree39101c1e92b7f58e87b05b16f6f48ef7e4c62002 /engines/titanic/support/video_surface.cpp
parentb843b2fd3385533955a325ff8819e37ab3b0b2f0 (diff)
downloadscummvm-rg350-6331e3814a7fe501056ec5a356924b9c4c40c16f.tar.gz
scummvm-rg350-6331e3814a7fe501056ec5a356924b9c4c40c16f.tar.bz2
scummvm-rg350-6331e3814a7fe501056ec5a356924b9c4c40c16f.zip
TITANIC: Fleshing out & fixes for video surface blit methods
Diffstat (limited to 'engines/titanic/support/video_surface.cpp')
-rw-r--r--engines/titanic/support/video_surface.cpp42
1 files changed, 28 insertions, 14 deletions
diff --git a/engines/titanic/support/video_surface.cpp b/engines/titanic/support/video_surface.cpp
index 0429ed4257..4169a80b4b 100644
--- a/engines/titanic/support/video_surface.cpp
+++ b/engines/titanic/support/video_surface.cpp
@@ -32,7 +32,8 @@ int CVideoSurface::_videoSurfaceCounter = 0;
CVideoSurface::CVideoSurface(CScreenManager *screenManager) :
_screenManager(screenManager), _rawSurface(nullptr), _movie(nullptr),
_pendingLoad(false), _transBlitFlag(false), _fastBlitFlag(false),
- _movieFrameSurface(nullptr), _transparencyMode(TRANS_DEFAULT), _field48(0), _field50(1) {
+ _movieFrameSurface(nullptr), _transparencyMode(TRANS_DEFAULT),
+ _field48(0), _field50(1), _lockCount(0) {
_videoSurfaceNum = _videoSurfaceCounter++;
}
@@ -52,10 +53,10 @@ void CVideoSurface::blitFrom(const Point &destPos, CVideoSurface *src, const Rec
Rect srcBounds, destBounds;
clipBounds(srcBounds, destBounds, src, srcRect, &destPos);
- if (_transBlitFlag)
- transBlitRect(srcBounds, destBounds, src);
+ if (src->_transBlitFlag)
+ blitRect2(srcBounds, destBounds, src);
else
- blitRect(srcBounds, destBounds, src);
+ blitRect1(srcBounds, destBounds, src);
}
}
@@ -128,25 +129,38 @@ void CVideoSurface::clipBounds(Rect &srcRect, Rect &destRect,
error("Invalid rect");
}
-void CVideoSurface::blitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src) {
+void CVideoSurface::blitRect1(const Rect &srcRect, const Rect &destRect, CVideoSurface *src) {
src->lock();
lock();
- if (_fastBlitFlag) {
- _rawSurface->transBlitFrom(*src->_rawSurface, srcRect, destRect,
- getTransparencyColor());
- return;
+ if (src->_fastBlitFlag) {
+ _rawSurface->blitFrom(*src->_rawSurface, srcRect, Point(destRect.left, destRect.top));
+ } else if (getMovieFrameSurface()) {
+ movieBlitRect(srcRect, destRect, src);
+ } else {
+ _rawSurface->transBlitFrom(*src->_rawSurface, srcRect, destRect, src->getTransparencyColor());
}
- // TODO
-
src->unlock();
unlock();
}
-void CVideoSurface::transBlitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src) {
- // TODO: Do it like the original does it
- blitRect(srcRect, destRect, src);
+void CVideoSurface::blitRect2(const Rect &srcRect, const Rect &destRect, CVideoSurface *src) {
+ if (getMovieFrameSurface()) {
+ movieBlitRect(srcRect, destRect, src);
+ } else {
+ src->lock();
+ lock();
+
+ _rawSurface->blitFrom(*src->_rawSurface, srcRect, Point(destRect.left, destRect.top));
+
+ src->unlock();
+ unlock();
+ }
+}
+
+void CVideoSurface::movieBlitRect(const Rect &srcRect, const Rect &destRect, CVideoSurface *src) {
+ // TODO
}
uint CVideoSurface::getTransparencyColor() {