aboutsummaryrefslogtreecommitdiff
path: root/backends/morphos/morphos.cpp
diff options
context:
space:
mode:
authorRuediger Hanke2003-05-04 13:00:43 +0000
committerRuediger Hanke2003-05-04 13:00:43 +0000
commit34e5eaadd01572693a5fa49c755167ac9919007b (patch)
tree2c0d290cfd4152f39bbb565440be9a893d969a18 /backends/morphos/morphos.cpp
parenta8c180ddf8d184d5896a774708e205efaa6b7be0 (diff)
downloadscummvm-rg350-34e5eaadd01572693a5fa49c755167ac9919007b.tar.gz
scummvm-rg350-34e5eaadd01572693a5fa49c755167ac9919007b.tar.bz2
scummvm-rg350-34e5eaadd01572693a5fa49c755167ac9919007b.zip
*** empty log message ***
svn-id: r7315
Diffstat (limited to 'backends/morphos/morphos.cpp')
-rw-r--r--backends/morphos/morphos.cpp68
1 files changed, 38 insertions, 30 deletions
diff --git a/backends/morphos/morphos.cpp b/backends/morphos/morphos.cpp
index 87b55f6cf0..91215f0cd1 100644
--- a/backends/morphos/morphos.cpp
+++ b/backends/morphos/morphos.cpp
@@ -147,6 +147,8 @@ OSystem_MorphOS::OSystem_MorphOS(int game_id, SCALERTYPE gfx_mode, bool full_scr
OvlBitMap = NULL;
OvlSavedBuffer = NULL;
+ InitSemaphore(&CritSec);
+
TimerBase = (Library*) TimerIORequest->tr_node.io_Device;
ScummNoCursor = (UWORD *) AllocVec(16, MEMF_CLEAR);
UpdateRegion = NewRegion();
@@ -998,6 +1000,8 @@ void OSystem_MorphOS::copy_rect(const byte *src, int pitch, int x, int y, int w,
if (w <= 0 || h <= 0)
return;
+ AUTO_LOCK
+
if (MouseDrawn)
{
if (MOUSE_INTERSECTS(x, y, w, h))
@@ -1074,38 +1078,38 @@ void OSystem_MorphOS::move_screen(int dx, int dy, int height) {
if ((dx == 0) && (dy == 0))
return;
- if (dx == 0) {
- // vertical movement
- if (dy > 0) {
- // move down
- // copy from bottom to top
- for (int y = height - 1; y >= dy; y--)
- copy_rect((byte *)ScummBuffer + ScummBufferWidth * (y - dy), ScummBufferWidth, 0, y, ScummBufferWidth, 1);
- } else {
- // move up
- // copy from top to bottom
- for (int y = 0; y < height + dx; y++)
- copy_rect((byte *)ScummBuffer + ScummBufferWidth * (y - dy), ScummBufferWidth, 0, y, ScummBufferWidth, 1);
- }
- } else if (dy == 0) {
- // horizontal movement
- if (dx > 0) {
- // move right
- // copy from right to left
- for (int x = ScummBufferWidth - 1; x >= dx; x--)
- copy_rect((byte *)ScummBuffer + x - dx, ScummBufferWidth, x, 0, 1, height);
- } else {
- // move left
- // copy from left to right
- for (int x = 0; x < ScummBufferWidth; x++)
- copy_rect((byte *)ScummBuffer + x - dx, ScummBufferWidth, x, 0, 1, height);
- }
- } else {
- // free movement
- // not neccessary for now
- }
+ UpdateRects = 26;
+ Rectangle update_rect = { 0, 0, ScummBufferWidth, ScummBufferHeight };
+ OrRectRegion(NewUpdateRegion, &update_rect);
+ ScreenChanged = true;
+ UndrawMouse();
+
+ // vertical movement
+ if (dy > 0) {
+ // move down
+ // copy from bottom to top
+ for (int y = height - 1; y >= dy; y--)
+ copy_rect((byte *)ScummBuffer + ScummBufferWidth * (y - dy), ScummBufferWidth, 0, y, ScummBufferWidth, 1);
+ } else if (dy < 0) {
+ // move up
+ // copy from top to bottom
+ for (int y = dy; y < height; y++)
+ copy_rect((byte *)ScummBuffer + ScummBufferWidth * (y - dy), ScummBufferWidth, 0, y, ScummBufferWidth, 1);
+ }
+ // horizontal movement
+ if (dx > 0) {
+ // move right
+ // copy from right to left
+ for (int x = ScummBufferWidth - 1; x >= dx; x--)
+ copy_rect((byte *)ScummBuffer + x - dx, ScummBufferWidth, x, 0, 1, height);
+ } else if (dx < 0) {
+ // move left
+ // copy from left to right
+ for (int x = dx; x < ScummBufferWidth; x++)
+ copy_rect((byte *)ScummBuffer + x - dx, ScummBufferWidth, x, 0, 1, height);
+ }
}
@@ -1137,6 +1141,8 @@ bool OSystem_MorphOS::AddUpdateRect(WORD x, WORD y, WORD w, WORD h)
void OSystem_MorphOS::update_screen()
{
+ AUTO_LOCK
+
DrawMouse();
if (!ScreenChanged)
@@ -1528,6 +1534,8 @@ void OSystem_MorphOS::hide_overlay()
void OSystem_MorphOS::clear_overlay()
{
+ AUTO_LOCK
+
UBYTE *src = (UBYTE *) ScummBuffer;
UBYTE *dest = (UBYTE *) OvlBitMap;
copy_rect((byte *) OvlSavedBuffer, ScummBufferWidth, 0, 0, ScummBufferWidth, ScummBufferHeight);