X-Git-Url: https://git.artsoft.org/?p=rocksndiamonds.git;a=blobdiff_plain;f=src%2Fgame_sp%2FMainGameLoop.c;h=61d5ed1c663414e456599b12037af2eb2a1805ec;hp=ee955cb68218c1902780abfd89904424c0d3f42d;hb=3ff2e8a0b5c27b99a9920bdf5ed82bc41bf40181;hpb=34e8c8894f9aa655a87577c946c31a3f9b6134c5 diff --git a/src/game_sp/MainGameLoop.c b/src/game_sp/MainGameLoop.c index ee955cb6..61d5ed1c 100644 --- a/src/game_sp/MainGameLoop.c +++ b/src/game_sp/MainGameLoop.c @@ -5,13 +5,9 @@ #include "MainGameLoop.h" -int GameLoopRunning; boolean bPlaying; -int LeadOutCounter, EnterRepeatCounter; -int ForcedExitFlag; +int LeadOutCounter; int ExitToMenuFlag; -int SavedGameFlag; -boolean UserDragFlag; boolean AutoScrollFlag; @@ -22,27 +18,11 @@ boolean AutoScrollFlag; void subMainGameLoop_Init() { - if (DemoFlag != 0) - { - // EP set level success byte: demo, not game - WasDemoFlag = 1; - EP_GameDemoVar0DAA = 0; // demo - } - else // loc_g_1836: - { - // EP set level success byte: game, not demo - WasDemoFlag = 0; - EP_GameDemoVar0DAA = 1; // game - } - // This was a bug in the original Supaplex: sometimes red disks could not // be released. This happened if Murphy was killed DURING a red disk release // and the next try started. RedDiskReleasePhase = 0; // (re-)enable red disk release - UpdatedFlag = 0; - GameLoopRunning = 1; - LevelStatus = 0; } void subMainGameLoop_Main(byte action, boolean warp_mode) @@ -51,15 +31,6 @@ void subMainGameLoop_Main(byte action, boolean warp_mode) // --------------------- START OF GAME-BUSY LOOP ----------------------------- // --------------------------------------------------------------------------- - if (EndFlag) - { - // (should never happen) - - // printf("::: EndFlag == True\n"); - - goto locExitMainGameLoop; - } - subProcessKeyboardInput(action); // check keyboard, act on keys // --------------------------------------------------------------------------- @@ -75,33 +46,18 @@ void subMainGameLoop_Main(byte action, boolean warp_mode) subCalculateScreenScrollPos(); // calculate screen start addrs - if ((! UserDragFlag) && AutoScrollFlag) + if (AutoScrollFlag) ScrollTowards(ScreenScrollXPos, ScreenScrollYPos); - if (ForcedExitFlag != 0) // Forced Exit?' yes--exit! - { - // (should never happen) - - // printf("::: ForcedExitFlag == True\n"); - - goto locExitMainGameLoop; - } - TimerVar = TimerVar + 1; -#if 1 + if (ExplosionShakeMurphy > 0) + ExplosionShakeMurphy--; + if (ExitToMenuFlag == 1) { // happens when demo ends or when Murphy enters exit (to be checked) - -#if 0 - goto locExitMainGameLoop; -#endif } -#else - if (ExitToMenuFlag == 1) - goto locExitMainGameLoop; -#endif if (LeadOutCounter == 0) // no lead-out: game busy return; @@ -118,27 +74,16 @@ void subMainGameLoop_Main(byte action, boolean warp_mode) // lead-out done: exit now // ---------------------- END OF GAME-BUSY LOOP (including lead-out) --------- -locExitMainGameLoop: - -#if 1 - printf("::: locExitMainGameLoop reached [%d]\n", LeadOutCounter); - printf("::: [KillMurphyFlag == %d]\n", KillMurphyFlag); -#endif - -#if 1 /* if the game is not won when reaching this point, then it is lost */ if (!game_sp.LevelSolved) game_sp.GameOver = TRUE; -#endif } void subCalculateScreenScrollPos() { - int ax, Ay; - -#if 1 int jump_pos = TILEX / 2; + /* handle wrap-around */ if (MurphyScreenXPos < -jump_pos) { MurphyScreenXPos = FieldWidth * TILEX + MurphyScreenXPos; @@ -149,7 +94,6 @@ void subCalculateScreenScrollPos() MurphyScreenXPos = MurphyScreenXPos - FieldWidth * TILEX; MurphyScreenYPos += TILEY; } -#endif if (ExplosionShake != 0) { @@ -158,11 +102,6 @@ void subCalculateScreenScrollPos() // printf("::: ExplosionShake [%d]\n", FrameCounter); } - { - ax = MainForm.picPane.Width / 2; - Ay = MainForm.picPane.Height / 2; - } - - ScreenScrollXPos = Stretch * (MurphyScreenXPos + TILEX / 2) - ax; - ScreenScrollYPos = Stretch * (MurphyScreenYPos + TILEY / 2) - Ay; + ScreenScrollXPos = MurphyScreenXPos - (SCR_FIELDX / 2) * TILESIZE; + ScreenScrollYPos = MurphyScreenYPos - (SCR_FIELDY / 2) * TILESIZE; }