diff options
author | uruk | 2013-07-25 12:15:15 +0200 |
---|---|---|
committer | uruk | 2013-07-25 12:15:15 +0200 |
commit | 502cd7a01791d1812f8b29e9cc36fd5cc2653003 (patch) | |
tree | 9773d2c41775599cc3397d9bd2b491bebe53f90d /engines/avalanche | |
parent | 28b0076e63a71bfa7e1d0b82f9153e13d26c4316 (diff) | |
download | scummvm-rg350-502cd7a01791d1812f8b29e9cc36fd5cc2653003.tar.gz scummvm-rg350-502cd7a01791d1812f8b29e9cc36fd5cc2653003.tar.bz2 scummvm-rg350-502cd7a01791d1812f8b29e9cc36fd5cc2653003.zip |
AVALANCHE: Improve Celer::display_it(), update Celer::load_chunks() to work properly with it.
Diffstat (limited to 'engines/avalanche')
-rw-r--r-- | engines/avalanche/celer2.cpp | 45 | ||||
-rw-r--r-- | engines/avalanche/celer2.h | 2 |
2 files changed, 38 insertions, 9 deletions
diff --git a/engines/avalanche/celer2.cpp b/engines/avalanche/celer2.cpp index 17d4ae1052..b73e16ad74 100644 --- a/engines/avalanche/celer2.cpp +++ b/engines/avalanche/celer2.cpp @@ -298,15 +298,19 @@ void Celer::load_chunks(Common::String xx) { memos[fv].y = ch.y; memos[fv].yl = ch.yl; memos[fv].flavour = ch.flavour; - memos[fv].size = ch.size; - - memory[fv] = new byte[ch.size]; // Celer::forget_chunks() deallocates it. if (ch.natural) { memos[fv].flavour = ch_natural_image; // We simply read from the screen and later, in display_it() we draw it right back. - //getimage(ch.x * 8, ch.y, (ch.x + ch.xl) * 8, ch.y + ch.yl, memory[fv]); - } else + memos[fv].size = ch.xl * ch.yl; + memory[fv] = new byte[memos[fv].size]; // Celer::forget_chunks() deallocates it. + for (uint16 j = 0; j < memos[fv].yl; j++) + for (uint16 i = 0; i < memos[fv].xl; i++) + memory[fv][j * memos[fv].xl + i] = *_vm->_graphics->getPixel(memos[fv].x + i, memos[fv].y + j); + } else { + memos[fv].size = ch.size; + memory[fv] = new byte[memos[fv].size]; // Celer::forget_chunks() deallocates it. f.read(memory[fv], ch.size); + } } else memos[fv].x = on_disk; } @@ -324,7 +328,7 @@ void Celer::forget_chunks() { void Celer::mdrop(int16 x, int16 y, int16 xl, int16 yl, void *p) { /* assembler; asm push ds; { Strictly speaking, we shouldn't modify DS, so we'll save it.} - push bp; { Nor BP! } + push bp; { Nor BP! { DI holds the offset on this page. It starts at the top left-hand corner. } @@ -419,8 +423,33 @@ asm -void Celer::display_it(int16 x, int16 y, int16 xl, int16 yl, flavourtype flavour, void *p) { - warning("STUB: Celer::display_it()"); +void Celer::display_it(int16 x, int16 y, int16 xl, int16 yl, flavourtype flavour, byte *p) { + switch (flavour) { + case ch_natural_image: { + for (uint16 j = 0; j < yl; j++) + for (uint16 i = 0; i < xl; i++) + *_vm->_graphics->getPixel(x + i, y + j) = p[j * xl + i]; + } + break; + case ch_bgi : { + _vm->_graphics->drawPicture(p, x, y); + //putimage(x * 8, y, p, 0); + r.x1 = x; + r.y1 = y; + r.x2 = x + xl + 1; + r.y2 = y + yl; + } + break; + case ch_ega : { + mdrop(x, y, xl, yl, p); + _vm->_lucerna->blitfix(); + r.x1 = x; + r.y1 = y; + r.x2 = x + xl; + r.y2 = y + yl; + } + break; + } } void Celer::show_one(byte which) { diff --git a/engines/avalanche/celer2.h b/engines/avalanche/celer2.h index 3084fdd867..82f97a53d3 100644 --- a/engines/avalanche/celer2.h +++ b/engines/avalanche/celer2.h @@ -89,7 +89,7 @@ private: void mdrop(int16 x, int16 y, int16 xl, int16 yl, void *p); - void display_it(int16 x, int16 y, int16 xl, int16 yl, flavourtype flavour, void *p); + void display_it(int16 x, int16 y, int16 xl, int16 yl, flavourtype flavour, byte *p); void display_it_at(int16 xl, int16 yl, flavourtype flavour, void *p, int16 &xxx, int16 &yyy); }; |