diff options
author | David Eriksson | 2003-10-18 10:58:10 +0000 |
---|---|---|
committer | David Eriksson | 2003-10-18 10:58:10 +0000 |
commit | 65883950d84a1fab5320169b3b765be2d814afbb (patch) | |
tree | dafda4336bd60fedb8b269bb79712dbf3ff490a9 /queen | |
parent | c518ee26ec394e7359bc565624de78b60f5fb84a (diff) | |
download | scummvm-rg350-65883950d84a1fab5320169b3b765be2d814afbb.tar.gz scummvm-rg350-65883950d84a1fab5320169b3b765be2d814afbb.tar.bz2 scummvm-rg350-65883950d84a1fab5320169b3b765be2d814afbb.zip |
Make the aeroplane fly (and Joe too... I wonder what he smoked.)
svn-id: r10889
Diffstat (limited to 'queen')
-rw-r--r-- | queen/cutaway.cpp | 139 | ||||
-rw-r--r-- | queen/cutaway.h | 6 | ||||
-rw-r--r-- | queen/xref.txt | 14 |
3 files changed, 145 insertions, 14 deletions
diff --git a/queen/cutaway.cpp b/queen/cutaway.cpp index ab9dd07c73..bdda6db41e 100644 --- a/queen/cutaway.cpp +++ b/queen/cutaway.cpp @@ -32,6 +32,8 @@ namespace Queen { - Implement CUTAWAY_SCALE + - Implement SCENE_START and SCENE_END + - Finish Cutaway::handleAnimation - Support the remaining cutaway object types: @@ -493,6 +495,7 @@ Cutaway::ObjectType Cutaway::getObjectType(CutawayObject &object) { } byte *Cutaway::getCutawayAnim(byte *ptr, int header, CutawayAnim &anim) { + // lines 1531-1607 in cutaway.c anim.currentFrame = 0; anim.originalFrame = 0; @@ -508,7 +511,7 @@ byte *Cutaway::getCutawayAnim(byte *ptr, int header, CutawayAnim &anim) { // XXX if(FULLSCREEN) bobs[0].y2=199; } else { - warning("Stuff not yet implemented in Cutaway::handleAnimation()"); + //warning("Stuff not yet implemented in Cutaway::getCutawayAnim()"); anim.object = _logic->findBob(header); @@ -529,6 +532,24 @@ byte *Cutaway::getCutawayAnim(byte *ptr, int header, CutawayAnim &anim) { anim.bank = (int16)READ_BE_UINT16(ptr); ptr += 2; + if (anim.bank == 0) { + anim.bank = 15; + } + else { + if (anim.bank != 13) { + /* XXX if (OLDBANK != T) */ { + _graphics->bankLoad(_bankNames[anim.bank], 8); + // XXX OLDBANK=T; + } + + anim.bank = 8; + } + else { + // Make sure we ref correct JOE bank (7) + anim.bank = 7; + } + } + anim.mx = (int16)READ_BE_UINT16(ptr); ptr += 2; @@ -551,6 +572,14 @@ byte *Cutaway::getCutawayAnim(byte *ptr, int header, CutawayAnim &anim) { anim.song = 0; #endif + // Extract information that depend on the signedness of values + if (anim.unpackFrame < 0) { + anim.flip = true; + anim.unpackFrame = -anim.unpackFrame; + } + else + anim.flip = false; + return ptr; } @@ -571,13 +600,16 @@ void Cutaway::dumpCutawayAnim(CutawayAnim &anim) { } byte *Cutaway::handleAnimation(byte *ptr, CutawayObject &object) { + // lines 1517-1770 in cutaway.c int frameCount = 0; int header = 0; + int i; + + CutawayAnim objAnim[56]; // Read animation frames for (;;) { - CutawayAnim tmp; // make array header = (int16)READ_BE_UINT16(ptr); ptr += 2; @@ -589,8 +621,8 @@ byte *Cutaway::handleAnimation(byte *ptr, CutawayObject &object) { if (header > 1000) error("Header too large"); - ptr = getCutawayAnim(ptr, header, tmp); - dumpCutawayAnim(tmp); + ptr = getCutawayAnim(ptr, header, objAnim[frameCount]); + dumpCutawayAnim(objAnim[frameCount]); frameCount++; @@ -599,18 +631,72 @@ byte *Cutaway::handleAnimation(byte *ptr, CutawayObject &object) { } if (object.animType == 1) { - // XXX + // lines 1615-1636 in cutaway.c + + if (/*(P_BNUM==1) &&*/ (_logic->currentRoom() == 47 || _logic->currentRoom() == 63)) { + // The oracle + warning("The oracle is not yet handled"); + } + else { + int currentImage = 0; + currentImage = makeComplexAnimation(currentImage, objAnim, frameCount); + } + + if (object.bobStartX || object.bobStartY) { + BobSlot *bob = _graphics->bob(objAnim[0].object); + bob->x = object.bobStartX; + bob->y = object.bobStartY; + } } // Setup the SYNCHRO bob channels - // XXX + + for (i = 0; i < frameCount; i++) { + if (objAnim[i].mx || objAnim[i].my) { + BobSlot *bob = _graphics->bob(objAnim[i].object); + bob->frameNum = objAnim[i].originalFrame; + _graphics->bobMove( + objAnim[i].object, + objAnim[i].mx, + objAnim[i].my, + (object.specialMove > 0) ? object.specialMove : 4); + } + } + + // Boat room hard coded + if (_logic->currentRoom() == 43) { + BobSlot *bob = _graphics->bob(0); + if (bob->x < 320) + _graphics->bobMove( + 0, + bob->x + 346, + bob->y, + 4); + } // Normal cutaway if (object.animType != 1) { - // XXX + // lines 1657-1761 in cutaway.c } + bool moving = true; + + while (moving) { + moving = false; + _graphics->update(); + + for (i = 0; i < frameCount; i++) { + BobSlot *bob = _graphics->bob(objAnim[i].object); + if (bob->moving) { + moving = true; + break; + } + } + + if (_quit) + break; + } return ptr; } @@ -1045,4 +1131,43 @@ void Cutaway::talk(char *nextFilename) { } } + +int Cutaway::makeComplexAnimation(int16 currentImage, Cutaway::CutawayAnim *objAnim, int frameCount) { + AnimFrame cutAnim[17][30]; + bool hasFrame[256]; + int i; + int bobNum = objAnim[0].object; + + memset(hasFrame, 0, sizeof(hasFrame)); + + BobSlot *bob = _graphics->bob(bobNum); + bob->xflip = objAnim[0].flip; + + for (i = 0; i < frameCount; i++) { + cutAnim[bobNum][i].frame = currentImage + objAnim[i].unpackFrame; + cutAnim[bobNum][i].speed = objAnim[i].speed; + hasFrame[objAnim[i].unpackFrame] = true; + } + + cutAnim[bobNum][frameCount].frame = 0; + cutAnim[bobNum][frameCount].speed = 0; + + int uniqueFrameCount = 0; + + for (i = 1; i < 256; i++) + if (hasFrame[i]) + uniqueFrameCount++; + + for (i = 1; i < 256; i++) { + if (hasFrame[i]) { + currentImage++; + _graphics->bankUnpack(i, currentImage, objAnim[0].bank); + } + } + + _graphics->bobAnimString(bobNum, cutAnim[bobNum]); + + return currentImage + 1; +} + } // End of namespace Queen diff --git a/queen/cutaway.h b/queen/cutaway.h index 7fbf767d97..4e6c7ccd9f 100644 --- a/queen/cutaway.h +++ b/queen/cutaway.h @@ -106,7 +106,7 @@ class Cutaway { struct CutawayAnim { int object; - int unpackFrame; // Frame to unpack + int unpackFrame; // Frame to unpack int speed; int bank; int mx; @@ -117,6 +117,7 @@ class Cutaway { int currentFrame; // Index to Current Frame int originalFrame; // Index to Original Object Frame int song; + bool flip; // set this if unpackFrame is negative }; struct ObjectDataBackup { @@ -260,6 +261,9 @@ class Cutaway { //! Get CutawayAnim data from ptr and return new ptr byte *getCutawayAnim(byte *ptr, int header, CutawayAnim &anim); + //! Special animation + int makeComplexAnimation(int16 currentImage, CutawayAnim *objAnim, int frameCount); + //! Read a CutawayObject from ptr and return new ptr static byte *getCutawayObject(byte *ptr, CutawayObject &object); diff --git a/queen/xref.txt b/queen/xref.txt index b6b7468bb8..d2e488757b 100644 --- a/queen/xref.txt +++ b/queen/xref.txt @@ -44,15 +44,17 @@ Czone CUTAWAY ======= CUTAWAY() Cutaway::run +MAKE_COMPLEX_ANIM() Cutaway::makeComplexAnimation SCENE_START() SCENE_END() -- CUTJOEF CUTON -CUTQUIT -FINAL_ROOM -IROOM -TROOM +CUTQUIT Cutaway::_quit (rename and move to Logic?) +FINAL_ROOM Cutaway::_finalRoom +IROOM Cutaway::_initialRoom +TROOM Cutaway::_temporaryRoom +OBJ_CUT +OBJ_ANIM DEBUG @@ -398,7 +400,7 @@ DESC2,DESC, OBJMAXv, OBJ_DESC_DATA, PERSON_DATA, -PERSON_OBJ,OBJ_CUT,OBJ_ANIM, +PERSON_OBJ FS,FE,FACE,TY,DY,BS,DS, TEMPA, I2, |