X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fgame_sp%2FMurphy.c;h=33421783c06d18e11889f1fe9e1ec0092fbfa46c;hb=d45b35552f4ca1ada1266fb7e8b6968d878019a6;hp=9ce921b380f9ff74446746c8a1ad70757e8ae2e8;hpb=c35ed5e69718416c4b428f1ffeddf31105e933b2;p=rocksndiamonds.git diff --git a/src/game_sp/Murphy.c b/src/game_sp/Murphy.c index 9ce921b3..33421783 100644 --- a/src/game_sp/Murphy.c +++ b/src/game_sp/Murphy.c @@ -28,23 +28,28 @@ static boolean subMoveKillsMurphy(int si, int ax, int bl); // Move Murphy in any direction // ========================================================================== -int subAnimateMurphy(int *si) +void subAnimateMurphy(int *si) { - int subAnimateMurphy; - // int ax, al, ah, bx, bl, i, X, Y; // int tX, tY, tDeltaX, tDeltaY, tPos, Tmp; +#if 1 + int ax, al, bl, i, X, Y; + int time1, time2; +#else int ax, al, bx, bl, i, X, Y; +#endif int tDeltaX, tDeltaY, tPos, Tmp; // Variables that hold information about the animation sequence static int *dx = 0; // an array of image positions in moving.mpx, finalized with -1 + static int dx1 = 0; // same as "*dx" above, but as image/animation token static int dx2 = 0; // an additional image position of a second sprite, for instance: yellow disk if pushed static int MurphyDX = 0, MurphyDY = 0; // murphys move steps static int SeqPos = 0; // index into dx() static int ClearPos = 0; // Position to clear before blitting sprites, none=-1 static int dxPos = 0; // field-position to draw dx(SeqPos) static int dx2Step = 0; // position of dx2 relative to dx-position + static int dx1SequenceLength = 0; ax = PlayField16[*si]; al = LowByte(ax); @@ -54,15 +59,23 @@ int subAnimateMurphy(int *si) *si, *si % 60, *si / 60, ax, al, (al == fiMurphy)); #endif +#if 0 + printf("::: Murphy.c: subAnimateMurphy(): %d [%d] [%d]\n", + YawnSleepCounter, FrameCounter, TimerVar); +#endif + if (al != fiMurphy) { MurphyMoveCounter = 0; // We have no Murphy! Exit! - return subAnimateMurphy; + + return; } MurphyMoveCounter = 1; // We have a Murphy! MurphyExplodePos = *si; - if (ax != 3) // yes--go proceed moving murphy? + + // (check if high byte of PlayField16 has stored movement information) + if (ax != fiMurphy) // yes--go proceed moving murphy? goto locProceedMovingMurphy; // FS: reset moving sequence variables @@ -70,6 +83,7 @@ int subAnimateMurphy(int *si) MurphyDY = 0; ClearPos = *si; dxPos = *si; + dx1 = -1; dx2 = -1; SeqPos = 0; // end of FS @@ -99,9 +113,99 @@ int subAnimateMurphy(int *si) goto loc_g_6364; } +#if 1 + +#if 0 ax = (TimerVar & 3); if (ax != 0) - return subAnimateMurphy; + return; +#endif + + // ------------------------------------------------------------------ + // Murphy's YAWN & SLEEP sequence, counted down by YawnSleepCounter: + + YawnSleepCounter = YawnSleepCounter + 1; + + if (YawnSleepCounter < 16) + return; + + if (YawnSleepCounter < 2000) + { + // normal grin + // (default: single graphic, no animation) + subCopyAnimToScreen(*si, aniMurphy, YawnSleepCounter - 16); + + return; + } + + if (YawnSleepCounter < 4000) + { + // yawn! and look depressed afterwards... + // (default: 12 animation frames with delay of 8) + subCopyAnimToScreen(*si, aniMurphyYawn, YawnSleepCounter - 2000); + + return; + } + + if (YawnSleepCounter < 6400) + { + // yawn again! + // (default: 12 animation frames with delay of 8) + subCopyAnimToScreen(*si, aniMurphyYawn, YawnSleepCounter - 4000); + + return; + } + + // time1 = 6400 + 12 * 8; // (default: 6496 == 6400 + 12 * 8) + time1 = 6400 + 12 * 10; + + if (YawnSleepCounter < time1) + { + // yawn again! - third time + // (default: 12 animation frames with delay of 8) + subCopyAnimToScreen(*si, aniMurphyYawn, YawnSleepCounter - 6400); + + return; + } + + // time2 = 6496 + 3 * 64; // (default: 6688 == 6496 + 3 * 64) + time2 = 6496 + 3 * 100; + + if (YawnSleepCounter > time2) // Murphy already went to sleep + return; + + if (PlayField16[*si - 1] == 0) + { + if (PlayField16[*si + 1] == 0) + { + // no sleep -- go back to "wait and start yawning" phase + YawnSleepCounter = 144; + + return; + } + else + { + // go to sleep (right side) + // (default: 3 animation frames with delay of 64) + subCopyAnimToScreen(*si, aniMurphySleepRight, YawnSleepCounter - time1); + + return; + } + } + + // go to sleep (left side) + // (default: 3 animation frames with delay of 64) + subCopyAnimToScreen(*si, aniMurphySleepLeft, YawnSleepCounter - time1); + + return; + + // end of YAWN-SLEEP-Sequence + +#else + + ax = (TimerVar & 3); + if (ax != 0) + return; // ------------------------------------------------------------------ // Murphy's YAWN & SLEEP sequence, counted down by YawnSleepCounter: @@ -109,63 +213,67 @@ int subAnimateMurphy(int *si) if (YawnSleepCounter == 4) { subCopyFieldToScreen(*si, fiMurphy); // normal grin - return subAnimateMurphy; + return; } // loc_g_5ECE: if (YawnSleepCounter <= 500) // loc_g_5ED7: - return subAnimateMurphy; + return; if (YawnSleepCounter <= 522) { bx = (YawnSleepCounter - 500) / 2; subCopyFieldToScreen(*si, aniMurphyYawn + bx); // yawn! and look depressed afterwards... - return subAnimateMurphy; + return; } // loc_g_5F00: if (YawnSleepCounter <= 1000) - return subAnimateMurphy; + return; if (YawnSleepCounter <= 1022) { bx = (YawnSleepCounter - 1000) / 2; subCopyFieldToScreen(*si, aniMurphyYawn + bx); // yawn again! - return subAnimateMurphy; + return; } // loc_g_5F32: if (YawnSleepCounter <= 1600) // loc_g_5F3B: - return subAnimateMurphy; + return; if (YawnSleepCounter <= 1622) { bx = (YawnSleepCounter - 1600) / 2; subCopyFieldToScreen(*si, aniMurphyYawn + bx); // yawn again! - third time - return subAnimateMurphy; + return; } // loc_g_5F64: if (YawnSleepCounter > 1654) - return subAnimateMurphy; + return; if (PlayField16[*si - 1] == 0) { if (PlayField16[*si + 1] == 0) { YawnSleepCounter = 36; - return subAnimateMurphy; + return; } else { bx = (YawnSleepCounter - 1622) / 16; subCopyFieldToScreen(*si, aniMurphySleepRight + bx); // go to sleep - return subAnimateMurphy; + return; } } // loc_g_5F81: bx = (YawnSleepCounter - 1622) / 16; subCopyFieldToScreen(*si, aniMurphySleepLeft + bx); // go to sleep - return subAnimateMurphy; + + return; // end of YAWN-SLEEP-Sequence + +#endif + // ------------------------------------------------------------------ // ========================================================================== // (Direct Jump) a key was pressed @@ -255,7 +363,7 @@ loc_g_6003: default: RedDiskReleaseFlag = 0; - return subAnimateMurphy; + return; break; } @@ -299,7 +407,7 @@ loc_g_6078: if (! subMoveKillsMurphy(*si - FieldWidth, ax, bl)) goto loc_g_6078; - return subAnimateMurphy; + return; // ========================================================================== // moving right to left ... @@ -348,7 +456,7 @@ loc_g_60DA: if (! subMoveKillsMurphy(*si - 1, ax, bl)) goto loc_g_60DA; - return subAnimateMurphy; + return; // ========================================================================== // moving up to down ... @@ -390,7 +498,7 @@ loc_g_6154: if (! subMoveKillsMurphy(*si + FieldWidth, ax, bl)) goto loc_g_6154; - return subAnimateMurphy; + return; // ========================================================================== // moving left to right ... @@ -439,7 +547,7 @@ loc_g_61B6: if (! subMoveKillsMurphy(*si + 1, ax, bl)) goto loc_g_61B6; - return subAnimateMurphy; + return; // ========================================================================== // touching down to up ... @@ -468,7 +576,7 @@ loc_g_622E: if (al == fiRedDisk) goto loc_g_6A48; - return subAnimateMurphy; + return; // ========================================================================== // touching right to left ... @@ -497,7 +605,7 @@ loc_g_6258: if (al == fiRedDisk) goto loc_g_6A64; - return subAnimateMurphy; + return; // ========================================================================== // touching up to down ... @@ -525,7 +633,7 @@ loc_g_6288: if (al == fiRedDisk) goto loc_g_6A80; - return subAnimateMurphy; + return; // ========================================================================== // touching left to right ... @@ -554,7 +662,7 @@ loc_g_62B2: if (al == fiRedDisk) goto loc_g_6A9C; - return subAnimateMurphy; + return; // ========================================================================== // Release Red disk: no move ... @@ -565,19 +673,20 @@ loc_g_62E2: ClearPos = -1; // end of FS if (LowByte(RedDiskCount) == 0) - return subAnimateMurphy; + return; if (LowByte(RedDiskReleasePhase) != 0) - return subAnimateMurphy; + return; if (LowByte(RedDiskReleaseFlag) != 1) - return subAnimateMurphy; + return; MovHighByte(&PlayField16[*si], 0x2A); MovingPictureSequencePhase = 0x40; // init picture move sequence - dx = aniRedDisk; + dx = aniFramesRedDisk; + dx1 = aniRedDisk; MovLowByte(&RedDiskReleasePhase, 1); - Mov(&RedDiskReleaseMurphyPos, *si); // remember Murphy's location + RedDiskReleaseMurphyPos = *si; // remember Murphy's location goto loc_Split; // ========================================================================== @@ -585,7 +694,8 @@ loc_g_62E2: // ========================================================================== loc_g_6312: - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyMoveUpRight : aniMurphyMoveUpLeft); PlayField16[*si - FieldWidth] = 0x103; PlayField16[*si] = 0x300; *si = *si - FieldWidth; @@ -596,7 +706,8 @@ loc_g_6312: // ========================================================================== loc_g_6341: - dx = aniMurphyEatLeft; + dx = aniFramesMurphyEatLeft; + dx1 = aniMurphyMoveLeft; PlayField16[*si - 1] = 0x203; PlayField16[*si] = 0x300; *si = *si - 1; @@ -607,7 +718,8 @@ loc_g_6341: // ========================================================================== loc_g_6364: - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyMoveUpRight : aniMurphyMoveUpLeft); PlayField16[*si + FieldWidth] = 0x303; PlayField16[*si] = 0x300; *si = *si + FieldWidth; @@ -618,7 +730,8 @@ loc_g_6364: // ========================================================================== loc_g_6399: - dx = aniMurphyEatRight; + dx = aniFramesMurphyEatRight; + dx1 = aniMurphyMoveRight; PlayField16[*si + 1] = 0x403; PlayField16[*si] = 0x300; *si = *si + 1; @@ -632,7 +745,8 @@ loc_g_63C2: if (SgnHighByte(PlayField16[*si - FieldWidth]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si - FieldWidth] = fiBase; @@ -641,8 +755,14 @@ loc_g_63C2: // ========================================================================== loc_g_63D3: +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); +#endif + + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyDigUpRight : aniMurphyDigUpLeft); PlayField16[*si - FieldWidth] = 0x503; PlayField16[*si] = 0x300; *si = *si - FieldWidth; @@ -656,7 +776,8 @@ loc_g_640B: if (SgnHighByte(PlayField16[*si - 1]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si - 1] = fiBase; @@ -665,8 +786,14 @@ loc_g_640B: // ========================================================================== loc_g_641C: +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = aniMurphyEatLeft; +#endif + + dx = aniFramesMurphyEatLeft; + dx1 = aniMurphyDigLeft; PlayField16[*si - 1] = 0x203; PlayField16[*si] = 0x300; *si = *si - 1; @@ -680,7 +807,8 @@ loc_g_6448: if (SgnHighByte(PlayField16[*si + FieldWidth]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si + FieldWidth] = fiBase; @@ -689,8 +817,14 @@ loc_g_6448: // ========================================================================== loc_g_6459: +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); +#endif + + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyDigUpRight : aniMurphyDigUpLeft); PlayField16[*si + FieldWidth] = 0x703; PlayField16[*si] = 0x300; *si = *si + FieldWidth; @@ -704,7 +838,8 @@ loc_g_6491: if (SgnHighByte(PlayField16[*si + 1]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si + 1] = fiBase; @@ -713,8 +848,14 @@ loc_g_6491: // ========================================================================== loc_g_64A2: +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = aniMurphyEatRight; +#endif + + dx = aniFramesMurphyEatRight; + dx1 = aniMurphyDigRight; PlayField16[*si + 1] = 0x803; PlayField16[*si] = 0x300; *si = *si + 1; @@ -728,7 +869,8 @@ loc_g_64CE: if (SgnHighByte(PlayField16[*si - FieldWidth]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si - FieldWidth] = fiBase; @@ -737,9 +879,15 @@ loc_g_64CE: // ========================================================================== loc_g_64DF: - subCopyFieldToScreen(*si, aniMurphyTouchUp); + subCopyImageToScreen(*si, aniMurphyTouchUp); +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = aniTouchBase; +#endif + + dx = aniFramesTouchBase; + dx1 = aniTouchBase; dxPos = *si - FieldWidth; MovHighByte(&PlayField16[*si], 0x10); goto loc_StopNoSplit; @@ -752,7 +900,8 @@ loc_g_650C: if (SgnHighByte(PlayField16[*si - 1]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si - 1] = fiBase; @@ -761,9 +910,15 @@ loc_g_650C: // ========================================================================== loc_g_651D: - subCopyFieldToScreen(*si, aniMurphyTouchLeft); + subCopyImageToScreen(*si, aniMurphyTouchLeft); +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = aniTouchBase; +#endif + + dx = aniFramesTouchBase; + dx1 = aniTouchBase; dxPos = *si - 1; MovHighByte(&PlayField16[*si], 0x11); goto loc_StopNoSplit; @@ -776,7 +931,8 @@ loc_g_654A: if (SgnHighByte(PlayField16[*si + FieldWidth]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si + FieldWidth] = fiBase; @@ -785,9 +941,15 @@ loc_g_654A: // ========================================================================== loc_g_655B: - subCopyFieldToScreen(*si, aniMurphyTouchDown); + subCopyImageToScreen(*si, aniMurphyTouchDown); +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = aniTouchBase; +#endif + + dx = aniFramesTouchBase; + dx1 = aniTouchBase; dxPos = *si + FieldWidth; MovHighByte(&PlayField16[*si], 0x12); goto loc_StopNoSplit; @@ -800,7 +962,8 @@ loc_g_6588: if (SgnHighByte(PlayField16[*si + 1]) >= 0) { ExplodeFieldSP(*si); // Explode - return subAnimateMurphy; + + return; } PlayField16[*si + 1] = fiBase; @@ -809,9 +972,15 @@ loc_g_6588: // ========================================================================== loc_g_6599: - subCopyFieldToScreen(*si, aniMurphyTouchRight); + subCopyImageToScreen(*si, aniMurphyTouchRight); +#if 1 + subSoundFX(*si, fiBase, actDigging); +#else subSoundFXBase(); - dx = aniTouchBase; +#endif + + dx = aniFramesTouchBase; + dx1 = aniTouchBase; dxPos = *si + 1; MovHighByte(&PlayField16[*si], 0x13); goto loc_StopNoSplit; @@ -821,8 +990,14 @@ loc_g_6599: // ========================================================================== loc_g_65C6: +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); +#endif + + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpLeft); PlayField16[*si - FieldWidth] = 0x903; PlayField16[*si] = 0x300; *si = *si - FieldWidth; @@ -833,11 +1008,19 @@ loc_g_65C6: // ========================================================================== loc_g_65FE: +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = aniEatInfotronLeft; +#endif + + dx = aniFramesEatInfotronLeft; + dx1 = aniEatInfotronLeft; +#if 0 dx2 = fiInfotron; dx2Step = -1; ClearPos = -1; +#endif PlayField16[*si - 1] = 0xA03; PlayField16[*si] = 0x300; *si = *si - 1; @@ -848,8 +1031,14 @@ loc_g_65FE: // ========================================================================== loc_g_662A: +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); +#endif + + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpLeft); PlayField16[*si + FieldWidth] = 0xB03; PlayField16[*si] = 0x300; *si = *si + FieldWidth; @@ -860,11 +1049,19 @@ loc_g_662A: // ========================================================================== loc_g_6662: +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = aniEatInfotronRight; +#endif + + dx = aniFramesEatInfotronRight; + dx1 = aniEatInfotronRight; +#if 0 dx2 = fiInfotron; dx2Step = 1; ClearPos = -1; +#endif PlayField16[*si + 1] = 0xC03; PlayField16[*si] = 0x300; *si = *si + 1; @@ -875,9 +1072,15 @@ loc_g_6662: // ========================================================================== loc_g_668E: - subCopyFieldToScreen(*si, aniMurphyTouchUp); + subCopyImageToScreen(*si, aniMurphyTouchUp); +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = aniTouchInfotron; +#endif + + dx = aniFramesTouchInfotron; + dx1 = aniTouchInfotron; MovHighByte(&PlayField16[*si], 0x14); MovHighByte(&PlayField16[*si - FieldWidth], 0xFF); goto loc_StopNoSplit; @@ -887,9 +1090,15 @@ loc_g_668E: // ========================================================================== loc_g_66C0: - subCopyFieldToScreen(*si, aniMurphyTouchLeft); + subCopyImageToScreen(*si, aniMurphyTouchLeft); +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = aniTouchInfotron; +#endif + + dx = aniFramesTouchInfotron; + dx1 = aniTouchInfotron; MovHighByte(&PlayField16[*si], 0x15); MovHighByte(&PlayField16[*si - 1], 0xFF); goto loc_StopNoSplit; @@ -899,9 +1108,15 @@ loc_g_66C0: // ========================================================================== loc_g_66F2: - subCopyFieldToScreen(*si, aniMurphyTouchDown); + subCopyImageToScreen(*si, aniMurphyTouchDown); +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = aniTouchInfotron; +#endif + + dx = aniFramesTouchInfotron; + dx1 = aniTouchInfotron; MovHighByte(&PlayField16[*si], 0x16); MovHighByte(&PlayField16[*si + FieldWidth], 0xFF); goto loc_StopNoSplit; @@ -911,9 +1126,15 @@ loc_g_66F2: // ========================================================================== loc_g_6724: - subCopyFieldToScreen(*si, aniMurphyTouchRight); + subCopyImageToScreen(*si, aniMurphyTouchRight); +#if 1 + subSoundFX(*si, fiInfotron, actCollecting); +#else subSoundFXInfotron(); - dx = aniTouchInfotron; +#endif + + dx = aniFramesTouchInfotron; + dx1 = aniTouchInfotron; MovHighByte(&PlayField16[*si], 0x17); MovHighByte(&PlayField16[*si + 1], 0xFF); goto loc_StopNoSplit; @@ -929,13 +1150,23 @@ loc_g_6756: MurphyDY = 0; // end of FS if (LowByte(InfotronsNeeded) != 0) - return subAnimateMurphy; + return; #if 1 - printf("::: Murphy.c: !!!!!!!!!! GAME SOLVED !!!!!!!!!!\n"); + if (!game_sp.LevelSolved) + printf("::: Murphy.c: !!!!!!!!!! LEVEL %d SOLVED !!!!!!!!!!\n",LevelNumber); #endif +#if 1 + game_sp.LevelSolved = TRUE; +#endif + +#if 1 + subSoundFX(*si, fiExit, actPassing); +#else subSoundFXExit(); +#endif + data_h_DemoDone = 1; // EP set level success bytes LevelStatus = 1; // set Level Status DONE EP_GameDemoVar0DAA = 0; // force demo for lead-out @@ -953,7 +1184,8 @@ loc_g_6756: #endif LeadOutCounter = 0x40; // quit: start lead-out - dx = aniMurphyExit; + dx = aniFramesMurphyExit; + dx1 = aniMurphyExit; MovHighByte(&PlayField16[*si], 0xD); goto loc_StopNoSplit; @@ -964,11 +1196,12 @@ loc_g_6756: loc_g_679B: ax = PlayField16[*si - 2]; if (ax != 0) - return subAnimateMurphy; + return; MovHighByte(&PlayField16[*si - 2], 1); - subCopyFieldToScreen(*si, aniPushLeft); // draw pushing murphy - dx = aniZonkRollLeft; + subCopyImageToScreen(*si, aniPushLeft); // draw pushing murphy + dx = aniFramesZonkRollLeft; + dx1 = aniZonkRollLeft; dxPos = *si - 1; dx2 = aniPushLeft; dx2Step = 1; @@ -982,15 +1215,16 @@ loc_g_679B: loc_g_67D4: ax = PlayField16[*si + 2]; if (ax != 0) - return subAnimateMurphy; + return; ax = PlayField16[*si + FieldWidth + 1]; if (ax == 0) // zonk falls - return subAnimateMurphy; + return; MovHighByte(&PlayField16[*si + 2], 1); - subCopyFieldToScreen(*si, aniPushRight); // draw pushing murphy - dx = aniZonkRollRight; + subCopyImageToScreen(*si, aniPushRight); // draw pushing murphy + dx = aniFramesZonkRollRight; + dx1 = aniZonkRollRight; dxPos = *si + 1; dx2 = aniPushRight; dx2Step = -1; @@ -1002,14 +1236,24 @@ loc_g_67D4: // ========================================================================== loc_g_6817: - subCopyFieldToScreen(*si, aniMurphyTouchUp); + subCopyImageToScreen(*si, aniMurphyTouchUp); if (YellowDisksExploded != 0) { - YawnSleepCounter = 10; // stay hypnotized - return subAnimateMurphy; + YawnSleepCounter = 40; // stay hypnotized + + return; } // loc_g_6838: +#if 1 + // draw new terminal type +#if 1 + GfxGraphic[GetX(*si - FieldWidth)][GetY(*si - FieldWidth)] = aniTerminalActive; +#else + subCopyImageToScreen(*si - FieldWidth, aniTerminalActive); +#endif +#else subCopyFieldToScreen(*si - FieldWidth, 0x88); // draw new terminal type +#endif TerminalState[*si - FieldWidth] = 8; goto loc_g_68F0; @@ -1018,14 +1262,24 @@ loc_g_6817: // ========================================================================== loc_g_684E: - subCopyFieldToScreen(*si, aniMurphyTouchLeft); + subCopyImageToScreen(*si, aniMurphyTouchLeft); if (YellowDisksExploded != 0) { - YawnSleepCounter = 10; // stay hypnotized - return subAnimateMurphy; + YawnSleepCounter = 40; // stay hypnotized + + return; } // loc_g_6838: +#if 1 + // draw new terminal type +#if 1 + GfxGraphic[GetX(*si - 1)][GetY(*si - 1)] = aniTerminalActive; +#else + subCopyImageToScreen(*si - 1, aniTerminalActive); +#endif +#else subCopyFieldToScreen(*si - 1, 0x88); // draw new terminal type +#endif TerminalState[*si - 1] = 8; goto loc_g_68F0; @@ -1034,14 +1288,24 @@ loc_g_684E: // ========================================================================== loc_g_6884: - subCopyFieldToScreen(*si, aniMurphyTouchDown); + subCopyImageToScreen(*si, aniMurphyTouchDown); if (YellowDisksExploded != 0) { - YawnSleepCounter = 10; // stay hypnotized - return subAnimateMurphy; + YawnSleepCounter = 40; // stay hypnotized + + return; } // loc_g_6838: +#if 1 + // draw new terminal type +#if 1 + GfxGraphic[GetX(*si + FieldWidth)][GetY(*si + FieldWidth)] = aniTerminalActive; +#else + subCopyImageToScreen(*si + FieldWidth, aniTerminalActive); +#endif +#else subCopyFieldToScreen(*si + FieldWidth, 0x88); // draw new terminal type +#endif TerminalState[*si + FieldWidth] = 8; goto loc_g_68F0; @@ -1050,14 +1314,24 @@ loc_g_6884: // ========================================================================== loc_g_68BA: - subCopyFieldToScreen(*si, aniMurphyTouchRight); + subCopyImageToScreen(*si, aniMurphyTouchRight); if (YellowDisksExploded != 0) { - YawnSleepCounter = 10; // stay hypnotized - return subAnimateMurphy; + YawnSleepCounter = 40; // stay hypnotized + + return; } // loc_g_6838: +#if 1 + // draw new terminal type +#if 1 + GfxGraphic[GetX(*si + 1)][GetY(*si + 1)] = aniTerminalActive; +#else + subCopyImageToScreen(*si + 1, aniTerminalActive); +#endif +#else subCopyFieldToScreen(*si + 1, 0x88); // draw new terminal type +#endif TerminalState[*si + 1] = 8; // ========================================================================== // common TERMINAL stuff moving/touching from all directions @@ -1072,7 +1346,7 @@ loc_g_68F0: ExplodeFieldSP (i); } - return subAnimateMurphy; + return; // ========================================================================== // PORT down to up, VERTICAL PORT, CROSS PORT all moving down to up @@ -1080,9 +1354,10 @@ loc_g_68F0: loc_g_6916: if (PlayField16[*si - 2 * FieldWidth] != 0) - return subAnimateMurphy; + return; - dx = aniSplitUpDown; + dx = aniFramesSplitUpDown; + dx1 = aniSplitUpDown; dx2Step = -FieldWidth; PlayField16[*si] = 0x1803; PlayField16[*si - 2 * FieldWidth] = 0x300; @@ -1094,9 +1369,10 @@ loc_g_6916: loc_g_693A: if (PlayField16[*si - 2] != 0) - return subAnimateMurphy; + return; - dx = aniMurphyEatLeft; + dx = aniFramesMurphyEatLeft; + dx1 = aniMurphyMoveLeft; dx2Step = -1; PlayField16[*si] = 0x1903; PlayField16[*si - 2] = 0x300; @@ -1108,9 +1384,10 @@ loc_g_693A: loc_g_695E: if (PlayField16[*si + 2 * FieldWidth] != 0) - return subAnimateMurphy; + return; - dx = aniSplitUpDown; + dx = aniFramesSplitUpDown; + dx1 = aniSplitUpDown; dx2Step = FieldWidth; PlayField16[*si] = 0x1A03; PlayField16[*si + 2 * FieldWidth] = 0x300; @@ -1122,9 +1399,10 @@ loc_g_695E: loc_g_6982: if (PlayField16[*si + 2] != 0) - return subAnimateMurphy; + return; - dx = aniMurphyEatRight; + dx = aniFramesMurphyEatRight; + dx1 = aniMurphyMoveRight; dx2Step = 1; PlayField16[*si] = 0x1B03; PlayField16[*si + 2] = 0x300; @@ -1139,7 +1417,8 @@ loc_StopSplit: // ========================================================================== loc_g_69A6: - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpLeft); PlayField16[*si] = 0x1C03; PlayField16[*si - FieldWidth] = 0x300; goto loc_StopNoSplit; @@ -1149,7 +1428,8 @@ loc_g_69A6: // ========================================================================== loc_g_69CE: - dx = aniMurphyEatLeft; + dx = aniFramesMurphyEatLeft; + dx1 = aniMurphyEatLeft; PlayField16[*si] = 0x300; // !!!!!! this time we move murphy at sequence-start! PlayField16[*si - 1] = 0x1D03; *si = *si - 1; @@ -1160,7 +1440,8 @@ loc_g_69CE: // ========================================================================== loc_g_69F7: - dx = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpRight); + dx = (MurphyVarFaceLeft == 0 ? aniFramesMurphyEatUpRight : aniFramesMurphyEatUpLeft); + dx1 = (MurphyVarFaceLeft == 0 ? aniMurphyEatUpRight : aniMurphyEatUpLeft); PlayField16[*si] = 0x1E03; PlayField16[*si + FieldWidth] = 0x300; goto loc_StopNoSplit; @@ -1170,8 +1451,9 @@ loc_g_69F7: // ========================================================================== loc_g_6A1F: - // dx = aniMurphyEatRightRedDisk 'this sequence is 9 steps long! - dx = aniMurphyEatRight; + // dx = aniFramesMurphyEatRightRedDisk 'this sequence is 9 steps long! + dx = aniFramesMurphyEatRight; + dx1 = aniMurphyEatRight; // -------------------------------------------------------------------------- // BugFix // Table data_h_145A, pointed to by table data_h_105E, has a severe bug: @@ -1205,7 +1487,8 @@ loc_g_6A1F: // ========================================================================== loc_g_6A48: - dx = aniTouchRedDisk; + dx = aniFramesTouchRedDisk; + dx1 = aniTouchRedDisk; MovHighByte(&PlayField16[*si], 0x20); MovHighByte(&PlayField16[*si - FieldWidth], 3); goto loc_StopNoSplit; @@ -1215,7 +1498,8 @@ loc_g_6A48: // ========================================================================== loc_g_6A64: - dx = aniTouchRedDisk; + dx = aniFramesTouchRedDisk; + dx1 = aniTouchRedDisk; MovHighByte(&PlayField16[*si], 0x21); MovHighByte(&PlayField16[*si - 1], 3); goto loc_StopNoSplit; @@ -1225,7 +1509,8 @@ loc_g_6A64: // ========================================================================== loc_g_6A80: - dx = aniTouchRedDisk; + dx = aniFramesTouchRedDisk; + dx1 = aniTouchRedDisk; MovHighByte(&PlayField16[*si], 0x22); MovHighByte(&PlayField16[*si + FieldWidth], 3); goto loc_StopNoSplit; @@ -1235,7 +1520,8 @@ loc_g_6A80: // ========================================================================== loc_g_6A9C: - dx = aniTouchRedDisk; + dx = aniFramesTouchRedDisk; + dx1 = aniTouchRedDisk; MovHighByte(&PlayField16[*si], 0x23); MovHighByte(&PlayField16[*si + 1], 3); @@ -1249,15 +1535,25 @@ loc_StopNoSplit: loc_g_6AB8: if (PlayField16[*si - 2 * FieldWidth] != 0) - return subAnimateMurphy; + return; PlayField16[*si - 2 * FieldWidth] = 0x1200; - subCopyFieldToScreen(*si, aniPushRight); - dx = aniYellowDisk; +#if 0 + subCopyImageToScreen(*si, aniPushRight); +#endif + dx = aniFramesYellowDisk; + dx1 = aniYellowDisk; dxPos = *si - FieldWidth; +#if 1 + dx2 = (MurphyVarFaceLeft == 0 ? aniPushRight : aniPushLeft); +#else dx2 = aniPushUpDown; +#endif dx2Step = FieldWidth; PlayField16[*si] = 0x2403; +#if 1 + subCopyImageToScreen(*si, dx2); +#endif goto loc_MoveNoSplit; // ========================================================================== @@ -1266,11 +1562,12 @@ loc_g_6AB8: loc_g_6AF1: if (PlayField16[*si - 2] != 0) - return subAnimateMurphy; + return; PlayField16[*si - 2] = 0x1200; - subCopyFieldToScreen(*si, aniPushLeft); - dx = aniYellowDisk; + subCopyImageToScreen(*si, aniPushLeft); + dx = aniFramesYellowDisk; + dx1 = aniYellowDisk; dxPos = *si - 1; dx2 = aniPushLeft; dx2Step = 1; @@ -1283,15 +1580,25 @@ loc_g_6AF1: loc_g_6B2A: if (PlayField16[*si + 2 * FieldWidth] != 0) - return subAnimateMurphy; + return; PlayField16[*si + 2 * FieldWidth] = 0x1200; - subCopyFieldToScreen(*si, aniPushRight); - dx = aniYellowDisk; +#if 0 + subCopyImageToScreen(*si, aniPushRight); +#endif + dx = aniFramesYellowDisk; + dx1 = aniYellowDisk; dxPos = *si + FieldWidth; +#if 1 + dx2 = (MurphyVarFaceLeft == 0 ? aniPushRight : aniPushLeft); +#else dx2 = aniPushUpDown; +#endif dx2Step = -FieldWidth; PlayField16[*si] = 0x2703; +#if 1 + subCopyImageToScreen(*si, dx2); +#endif goto loc_MoveNoSplit; // ========================================================================== @@ -1300,11 +1607,12 @@ loc_g_6B2A: loc_g_6B63: if (PlayField16[*si + 2] != 0) - return subAnimateMurphy; + return; PlayField16[*si + 2] = 0x1200; - subCopyFieldToScreen(*si, aniPushRight); - dx = aniYellowDisk; + subCopyImageToScreen(*si, aniPushRight); + dx = aniFramesYellowDisk; + dx1 = aniYellowDisk; dxPos = *si + 1; dx2 = aniPushRight; dx2Step = -1; @@ -1317,11 +1625,12 @@ loc_g_6B63: loc_g_6B9B: if (PlayField16[*si - 2] != 0) - return subAnimateMurphy; + return; PlayField16[*si - 2] = 0x800; - subCopyFieldToScreen(*si, aniPushLeft); - dx = aniOrangeDisk; + subCopyImageToScreen(*si, aniPushLeft); + dx = aniFramesOrangeDisk; + dx1 = aniOrangeDisk; dxPos = *si - 1; dx2 = aniPushLeft; dx2Step = 1; @@ -1334,14 +1643,15 @@ loc_g_6B9B: loc_g_6BD3: if (PlayField16[*si + 2] != 0) - return subAnimateMurphy; + return; if (PlayField16[*si + FieldWidth + 1] == 0) // falling goes before pushing - return subAnimateMurphy; + return; PlayField16[*si + 2] = 0x100; - subCopyFieldToScreen(*si, aniPushRight); - dx = aniOrangeDisk; + subCopyImageToScreen(*si, aniPushRight); + dx = aniFramesOrangeDisk; + dx1 = aniOrangeDisk; dxPos = *si + 1; dx2 = aniPushRight; dx2Step = -1; @@ -1372,8 +1682,36 @@ locProceedMovingMurphy: // proceed moving murphy ax = ax - 1; // next picture of sequence MovingPictureSequencePhase = ax; // store for later + if (ax == 0) // Sound effects +#if 1 + { + switch (HighByte(PlayField16[*si])) + { + case 0xE: + case 0xF: + subSoundFX(*si, fiZonk, actPushing); + break; + + case 0x28: + case 0x29: + subSoundFX(*si, fiOrangeDisk, actPushing); + break; + + case 0x24: + case 0x25: + case 0x26: + case 0x27: + subSoundFX(*si, fiYellowDisk, actPushing); + break; + + default: + break; + } + } +#else subSoundFXPush(); +#endif bl = HighByte(PlayField16[*si]); if (bl == 0xE) // Push Zonk to left @@ -1403,13 +1741,19 @@ locProceedMovingMurphy: // proceed moving murphy if (bl == 0x2A) // Red disk release timer goto loc_g_716E; - return subAnimateMurphy; + return; // ========================================================================== // Paint frame of MOVING.DAT sequence // ========================================================================== loc_g_6C8F: + +#if 1 + if (SeqPos <= 0) + dx1SequenceLength = getSequenceLength(dx1); +#endif + if (SplitMoveFlag == 0) { // ++++++++++++++++++++++++++ @@ -1422,9 +1766,34 @@ loc_g_6C8F: MurphyScreenYPos = MurphyScreenYPos + MurphyDY; #endif + +#if 0 + printf("::: %04d [%03ld, %02d] ----------> %s [%d] [%d, %d] [%d, %d] [%d]\n", + TimerVar, + DemoOffset - DemoPointer, DemoKeyRepeatCounter, + (DemoKeyCode == keyNone ? "(none)" : + DemoKeyCode == keyLeft ? "left" : + DemoKeyCode == keyRight ? "right" : + DemoKeyCode == keyUp ? "up" : + DemoKeyCode == keyDown ? "down" : + DemoKeyCode == keySpace ? "space" : + DemoKeyCode == keySpaceLeft ? "space + left" : + DemoKeyCode == keySpaceRight ? "space + right" : + DemoKeyCode == keySpaceUp ? "space + up" : + DemoKeyCode == keySpaceDown ? "space + down" : "(unknown)"), + DemoKeyCode, + MurphyScreenXPos, MurphyScreenYPos, + MurphyPosIndex % 60, MurphyPosIndex / 60, + ClearPos); +#endif + +#if 0 + Delay(500); +#endif + #if 1 if (!(ClearPos < 0)) // clear field that murphy is leaving - subCopyFieldToScreen(ClearPos, 0); + subCopyImageToScreen(ClearPos, aniSpace); #else if (! ClearPos < 0) // clear field that murphy is leaving subCopyFieldToScreen(ClearPos, 0); @@ -1435,12 +1804,15 @@ loc_g_6C8F: MurphyScreenXPos, MurphyScreenYPos, MurphyDX, MurphyDY); #endif +#if 0 + // !!! special two-tile animation currently not used !!! if (dx2 == fiInfotron) // special case of infotron moving left or right { tDeltaX = 0; tDeltaY = 0; } else +#endif { tDeltaX = MurphyDX * LocalStretch * (SeqPos + 1); tDeltaY = MurphyDY * LocalStretch * (SeqPos + 1); @@ -1448,8 +1820,21 @@ loc_g_6C8F: X = GetStretchX(dxPos) + tDeltaX; Y = GetStretchY(dxPos) + tDeltaY; - Tmp = (SeqPos < 0 ? 0 : 0); // 9StepBugFix!(red disk move right) + Tmp = (SeqPos < 0 ? 0 : SeqPos); // 9StepBugFix!(red disk move right) + +#if 1 + if (isSnappingSequence(dx1) && SeqPos == dx1SequenceLength - 1) + dx1 = aniSpace; +#endif + +#if 1 + StretchedSprites.BltImg(X, Y, dx1, Tmp); + GfxGraphic[GetX(*si)][GetY(*si)] = -1; // (Murphy's position) + GfxGraphic[GetX(dxPos)][GetY(dxPos)] = -1; // (snapping position) + // printf("::: Tmp: %d\n", Tmp); +#else StretchedSprites.BltEx(X, Y, dx[Tmp]); +#endif #if 1 if (!(dx2 < 0)) @@ -1460,13 +1845,22 @@ loc_g_6C8F: tPos = dxPos + dx2Step; X = GetStretchX(tPos); Y = GetStretchY(tPos); +#if 0 + // !!! special two-tile animation currently not used !!! if (dx2 == fiInfotron) // special case of infotron moving left or right { StretchedSprites.BltEx(X, Y, dx[SeqPos] + dx2Step); } else // pushing something +#endif { +#if 1 + // (SeqPos iterates from 0 to 7 while pushing) + StretchedSprites.BltImg(X + tDeltaX, Y + tDeltaY, dx2, SeqPos); + // printf("::: SeqPos: %d\n", SeqPos); +#else StretchedSprites.BltEx(X + tDeltaX, Y + tDeltaY, dx2); +#endif } } @@ -1484,24 +1878,38 @@ loc_g_6C8F: MurphyScreenXPos = MurphyScreenXPos + 2 * MurphyDX; MurphyScreenYPos = MurphyScreenYPos + 2 * MurphyDY; #endif - subCopyFieldToScreen(ClearPos, 0); // clear the field that murphy leaves + subCopyImageToScreen(ClearPos, aniSpace); // clear the field that murphy leaves tDeltaX = MurphyDX * LocalStretch * (SeqPos + 1); tDeltaY = MurphyDY * LocalStretch * (SeqPos + 1); X = GetStretchX(dxPos) + tDeltaX; Y = GetStretchY(dxPos) + tDeltaY; +#if 1 + StretchedSprites.BltImg(X, Y, dx1, SeqPos); // plot first murphy +#else StretchedSprites.BltEx(X, Y, dx[SeqPos]); // plot first murphy +#endif tPos = dxPos + dx2Step; X = GetStretchX(tPos); Y = GetStretchY(tPos); +#if 1 + StretchedSprites.BltImg(X + tDeltaX, Y + tDeltaY, dx1, SeqPos); // plot second murphy + StretchedSprites.BltImg(X, Y, fiGraphic[LowByte(PlayField16[tPos])], 0); // replot the port on top +#else StretchedSprites.BltEx(X + tDeltaX, Y + tDeltaY, dx[SeqPos]); // plot second murphy StretchedSprites.BltEx(X, Y, LowByte(PlayField16[tPos])); // replot the port on top +#endif // End of split movement (port) // ------------------------------ } // loc_g_6D1E:'loc_g_6D28: SeqPos = SeqPos + 1; +#if 1 + if (SeqPos < dx1SequenceLength) + return; +#else if (dx[SeqPos] > -1) - return subAnimateMurphy; + return; +#endif // Follow-up after movement completed 'loc_g_6D35: MurphyXPos = MurphyXPos + MurphyDX; @@ -1636,7 +2044,8 @@ loc_g_6C8F: goto loc_g_747F; ExitToMenuFlag = 1; - return subAnimateMurphy; + + return; // ========================================================================== // infotron, moving up @@ -1650,7 +2059,8 @@ loc_g_6EBA: loc_g_6EC8: // space, base PlayField16[*si] = fiMurphy; subAdjustZonksInfotronsAboveMurphy(*si + FieldWidth); - return subAnimateMurphy; + + return; // ========================================================================== // infotron, moving left @@ -1664,7 +2074,8 @@ loc_g_6ED8: loc_g_6EE6: // space, base PlayField16[*si] = fiMurphy; subAdjustZonksInfotronsAboveMurphy(*si + 1); - return subAnimateMurphy; + + return; // ========================================================================== // infotron, moving down @@ -1680,7 +2091,8 @@ loc_g_6F04: // space, base PlayField16[*si - FieldWidth] = 0; PlayField16[*si] = fiMurphy; - return subAnimateMurphy; + + return; // ========================================================================== // infotron, moving right @@ -1694,7 +2106,8 @@ loc_g_71B6: loc_g_71C4: // space, base subAdjustZonksInfotronsAboveMurphy(*si - 1); PlayField16[*si] = fiMurphy; - return subAnimateMurphy; + + return; // ========================================================================== // infotron, touching up @@ -1709,7 +2122,7 @@ loc_g_71E2: // base if (LowByte(PlayField16[*si - FieldWidth]) != fiExplosion) PlayField16[*si - FieldWidth] = 0; - return subAnimateMurphy; + return; // ========================================================================== // infotron, touching left @@ -1724,7 +2137,7 @@ loc_g_71FE: // base if (LowByte(PlayField16[*si - 1]) != fiExplosion) PlayField16[*si - 1] = 0; - return subAnimateMurphy; + return; // ========================================================================== // infotron, touching down @@ -1739,7 +2152,7 @@ loc_g_721A: // base if (LowByte(PlayField16[*si + FieldWidth]) != fiExplosion) PlayField16[*si + FieldWidth] = 0; - return subAnimateMurphy; + return; // ========================================================================== // infotron, touching right @@ -1754,7 +2167,7 @@ loc_g_7236: // base if (LowByte(PlayField16[*si + 1]) != fiExplosion) PlayField16[*si + 1] = 0; - return subAnimateMurphy; + return; // ========================================================================== // zonk, pushing left @@ -1768,7 +2181,8 @@ loc_g_6F18: PlayField16[*si - 2] = fiZonk; subExplodeSnikSnaksBelow(*si - 2); *si = *si - 1; - return subAnimateMurphy; + + return; // ========================================================================== // zonk, pushing right @@ -1782,7 +2196,8 @@ loc_g_6F3B: PlayField16[*si + 2] = fiZonk; subExplodeSnikSnaksBelow(*si + 2); *si = *si + 1; - return subAnimateMurphy; + + return; // ========================================================================== // exit @@ -1790,7 +2205,12 @@ loc_g_6F3B: loc_g_6F77: ExitToMenuFlag = 1; - return subAnimateMurphy; + +#if 1 + PlayField16[*si] = fiSpace; // remove Murphy from playfield after exiting +#endif + + return; // ========================================================================== // Push Zonk from right to left @@ -1798,15 +2218,16 @@ loc_g_6F77: loc_g_6F7E: if (DemoKeyCode == keyLeft && PlayField16[*si - 1] == fiZonk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more zonk pushing! PlayField16[*si - 1] = fiZonk; if (LowByte(PlayField16[*si - 2]) != fiExplosion) PlayField16[*si - 2] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push Zonk from left to right @@ -1814,15 +2235,16 @@ loc_g_6F7E: loc_g_6FBC: if (DemoKeyCode == keyRight && PlayField16[*si + 1] == fiZonk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more zonk pushing! PlayField16[*si + 1] = fiZonk; if (LowByte(PlayField16[*si + 2]) != fiExplosion) PlayField16[*si + 2] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push orange disk from right to left @@ -1830,15 +2252,16 @@ loc_g_6FBC: loc_g_6FFA: if (DemoKeyCode == keyLeft && PlayField16[*si - 1] == fiOrangeDisk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more pushing! PlayField16[*si - 1] = fiOrangeDisk; if (LowByte(PlayField16[*si - 2]) != fiExplosion) PlayField16[*si - 2] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push orange disk from left to right @@ -1846,15 +2269,16 @@ loc_g_6FFA: loc_g_7038: if (DemoKeyCode == keyRight && PlayField16[*si + 1] == fiOrangeDisk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more pushing! PlayField16[*si + 1] = fiOrangeDisk; if (LowByte(PlayField16[*si + 2]) != fiExplosion) PlayField16[*si + 2] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push yellow disk from down to up @@ -1862,15 +2286,16 @@ loc_g_7038: loc_g_7076: if (DemoKeyCode == keyUp && PlayField16[*si - FieldWidth] == fiYellowDisk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more pushing! PlayField16[*si - FieldWidth] = fiYellowDisk; if (LowByte(PlayField16[*si - 2 * FieldWidth]) != fiExplosion) PlayField16[*si - 2 * FieldWidth] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push yellow disk from right to left @@ -1878,15 +2303,16 @@ loc_g_7076: loc_g_70B4: if (DemoKeyCode == keyLeft && PlayField16[*si - 1] == fiYellowDisk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more pushing! PlayField16[*si - 1] = fiYellowDisk; if (LowByte(PlayField16[*si - 2]) != fiExplosion) PlayField16[*si - 2] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push yellow disk from up to down @@ -1894,15 +2320,16 @@ loc_g_70B4: loc_g_70F2: if (DemoKeyCode == keyDown && PlayField16[*si + FieldWidth] == fiYellowDisk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more pushing! PlayField16[*si + FieldWidth] = fiYellowDisk; if (LowByte(PlayField16[*si + 2 * FieldWidth]) != fiExplosion) PlayField16[*si + 2 * FieldWidth] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // Push yellow disk from left to right @@ -1910,15 +2337,16 @@ loc_g_70F2: loc_g_7130: if (DemoKeyCode == keyRight && PlayField16[*si + 1] == fiYellowDisk) - return subAnimateMurphy; + return; PlayField16[*si] = fiMurphy; // else restore - no more pushing! PlayField16[*si + 1] = fiYellowDisk; if (LowByte(PlayField16[*si + 2]) != fiExplosion) PlayField16[*si + 2] = 0; - subCopyFieldToScreen(*si, fiMurphy); - return subAnimateMurphy; + subCopyImageToScreen(*si, aniMurphy); + + return; // ========================================================================== // time red disk release (space) @@ -1928,16 +2356,21 @@ loc_g_716E: if (DemoKeyCode != keySpace) { PlayField16[*si] = fiMurphy; - subCopyFieldToScreen(*si, fiMurphy); + subCopyImageToScreen(*si, aniMurphy); RedDiskReleasePhase = 0; } else if (MovingPictureSequencePhase == 0x20) { +#if 1 + // anxious murphy, dropping red disk + subCopyImageToScreen(*si, aniMurphyDropping); +#else subCopyFieldToScreen(*si, 43); // anxious murphy +#endif RedDiskReleasePhase = 1; } - return subAnimateMurphy; + return; // ========================================================================== // Special port down to up @@ -1954,7 +2387,8 @@ loc_g_7244: subSpPortTest(*si); *si = *si - FieldWidth; - return subAnimateMurphy; + + return; // ========================================================================== // Special port right to left @@ -1971,7 +2405,8 @@ loc_g_7272: subSpPortTest(*si); *si = *si - 1; - return subAnimateMurphy; + + return; // ========================================================================== // Special port up to down @@ -1988,7 +2423,8 @@ loc_g_729F: subSpPortTest(*si); *si = *si + FieldWidth; - return subAnimateMurphy; + + return; // ========================================================================== // Special port left to right @@ -2005,7 +2441,8 @@ loc_g_72CD: subSpPortTest(*si); *si = *si + 1; - return subAnimateMurphy; + + return; // ========================================================================== // Move Red Disk up @@ -2018,7 +2455,8 @@ loc_g_72FA: *si = *si - FieldWidth; PlayField16[*si] = fiMurphy; subEatRedDisk(*si); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Move Red Disk left @@ -2030,7 +2468,8 @@ loc_g_7318: PlayField16[*si] = fiMurphy; subEatRedDisk(*si); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Move Red Disk down @@ -2043,7 +2482,8 @@ loc_g_7333: *si = *si + FieldWidth; PlayField16[*si] = fiMurphy; subEatRedDisk(*si); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Move Red Disk right @@ -2055,7 +2495,8 @@ loc_g_7351: PlayField16[*si] = fiMurphy; subEatRedDisk(*si); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Eat Red Disk up @@ -2066,7 +2507,8 @@ loc_g_736C: PlayField16[*si - FieldWidth] = 0; subEatRedDisk(*si - FieldWidth); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Eat Red Disk left @@ -2077,7 +2519,8 @@ loc_g_7381: PlayField16[*si - 1] = 0; subEatRedDisk(*si - 1); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Eat Red Disk down @@ -2088,7 +2531,8 @@ loc_g_7396: PlayField16[*si + FieldWidth] = 0; subEatRedDisk(*si + FieldWidth); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // Eat Red Disk right @@ -2099,7 +2543,8 @@ loc_g_73AB: PlayField16[*si + 1] = 0; subEatRedDisk(*si + 1); // inc+show Murphy's red disks - return subAnimateMurphy; + + return; // ========================================================================== // yellow disk, pushing up @@ -2112,7 +2557,8 @@ loc_g_73C0: *si = *si - FieldWidth; PlayField16[*si] = fiMurphy; PlayField16[*si - FieldWidth] = fiYellowDisk; - return subAnimateMurphy; + + return; // ========================================================================== // yellow disk, pushing left @@ -2125,7 +2571,8 @@ loc_g_73DD: *si = *si - 1; PlayField16[*si] = fiMurphy; PlayField16[*si - 1] = fiYellowDisk; - return subAnimateMurphy; + + return; // ========================================================================== // yellow disk, pushing down @@ -2138,7 +2585,8 @@ loc_g_73FA: *si = *si + FieldWidth; PlayField16[*si] = fiMurphy; PlayField16[*si + FieldWidth] = fiYellowDisk; - return subAnimateMurphy; + + return; // ========================================================================== // yellow disk pushing right @@ -2151,7 +2599,8 @@ loc_g_7417: *si = *si + 1; PlayField16[*si] = fiMurphy; PlayField16[*si + 1] = fiYellowDisk; - return subAnimateMurphy; + + return; // ========================================================================== // orange disk, pushing left @@ -2164,7 +2613,8 @@ loc_g_7434: *si = *si - 1; PlayField16[*si] = fiMurphy; PlayField16[*si - 1] = fiOrangeDisk; - return subAnimateMurphy; + + return; // ========================================================================== // orange disk, pushing right @@ -2183,7 +2633,7 @@ loc_g_7451: MovHighByte(&PlayField16[*si + FieldWidth + 1], fiOrangeDisk); } - return subAnimateMurphy; + return; // ========================================================================== // Release a red disk @@ -2194,25 +2644,24 @@ loc_g_747F: RedDiskReleasePhase = 2; RedDiskCount = RedDiskCount - 1; subDisplayRedDiskCount(); - subSoundFXPush(); // Sound effects - return subAnimateMurphy; +#if 1 + subSoundFX(*si, fiRedDisk, actDropping); +#else + subSoundFXPush(); // Sound effects +#endif } // subAnimateMurphy // ========================================================================== // SUBROUTINE // ========================================================================== -int subExplodeSnikSnaksBelow(int si) +void subExplodeSnikSnaksBelow(int si) { - int subExplodeSnikSnaksBelow; - int ax; ax = LowByte(PlayField16[si + FieldWidth]); if (ax == 0x11 || ax == 0xBB) ExplodeFieldSP(si + FieldWidth); - - return subExplodeSnikSnaksBelow; } // subExplodeSnikSnaksBelow // ========================================================================== @@ -2303,6 +2752,34 @@ int subSpPortTest(int si) int i, cx, bx; +#if 1 + cx = LInfo.SpecialPortCount; // number of special ports + + for (i = 0; i < cx; i++) + { +#if 1 + /* this assumes that PortLocation is stored as big endian */ + bx = LInfo.SpecialPort[i].PortLocation; +#else + /* this assumes that PortLocation is stored as little endian */ + bx = HighByte(LInfo.SpecialPort[i].PortLocation); + MovHighByte(&bx, LowByte(LInfo.SpecialPort[i].PortLocation)); +#endif + + if (bx / 2 == si) + { + GravityFlag = LInfo.SpecialPort[i].Gravity; + FreezeZonks = LInfo.SpecialPort[i].FreezeZonks; + SnikSnaksElectronsFrozen = LInfo.SpecialPort[i].FreezeEnemies; + + // RandomTime = RandomTime Xor RandomSeed 'is RandomTime used at all? no! + + break; + } + } + +#else + cx = LInfo.SpecialPortCount; // number of special ports for (i = 1; i <= cx; i++) { @@ -2317,13 +2794,15 @@ int subSpPortTest(int si) // RandomTime = RandomTime Xor RandomSeed 'is RandomTime used at all? no! i = cx + 1; } - } } +#endif return subSpPortTest; } // subSpPortTest +#if 0 + void subCopyFieldToScreen(int si, int fi) { int X, Y; @@ -2335,6 +2814,24 @@ void subCopyFieldToScreen(int si, int fi) // +++++++++++++++++++++++++++++++++++++++++ } +#endif + +void subCopyAnimToScreen(int si, int graphic, int sync_frame) +{ + int X, Y; + + // +++++++++++++++++++++++++++++++++++++++++ + X = GetStretchX(si); + Y = GetStretchY(si); + StretchedSprites.BltImg(X, Y, graphic, sync_frame); + // +++++++++++++++++++++++++++++++++++++++++ +} + +void subCopyImageToScreen(int si, int graphic) +{ + subCopyAnimToScreen(si, graphic, 0); +} + static void subEatRedDisk(int si) { if (AllowRedDiskCheat == 0) @@ -2350,10 +2847,8 @@ static void subEatRedDisk(int si) subDisplayRedDiskCount(); } -int subAdjustZonksInfotronsAboveMurphy(int si) +void subAdjustZonksInfotronsAboveMurphy(int si) { - int subAdjustZonksInfotronsAboveMurphy; - int ax; if (LowByte(PlayField16[si]) != fiExplosion) @@ -2368,7 +2863,7 @@ int subAdjustZonksInfotronsAboveMurphy(int si) MovHighByte(&PlayField16[si - FieldWidth], 0x40); // make falling straigt down } - return subAdjustZonksInfotronsAboveMurphy; + return; loc_g_15A8: // empty above ax = PlayField16[si - FieldWidth - 1]; @@ -2380,7 +2875,7 @@ loc_g_15B6: if (ax == fiZonk || ax == fiInfotron) goto loc_g_15E8; - return subAdjustZonksInfotronsAboveMurphy; + return; loc_g_15C5: // zonk/infotron above left ax = PlayField16[si - 1]; @@ -2389,7 +2884,8 @@ loc_g_15C5: // zonk/infotron above left MovHighByte(&PlayField16[si - FieldWidth - 1], 0x60); // make roll right PlayField16[si - FieldWidth] = 0x8888; - return subAdjustZonksInfotronsAboveMurphy; + + return; loc_g_15E8: // zonk/infotron above right ax = PlayField16[si + 1]; @@ -2398,6 +2894,4 @@ loc_g_15E8: // zonk/infotron above right MovHighByte(&PlayField16[si - FieldWidth + 1], 0x50); // make roll left PlayField16[si - FieldWidth] = 0x8888; } - - return subAdjustZonksInfotronsAboveMurphy; } // subAdjustZonksInfotronsAboveMurphy