X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fscreens.c;h=212a75caac20e87836812bfa27d45410d58d0b2c;hb=2d235297197dd0c325184f7fc401d9c5c41c2616;hp=ddc28e8d6615a427dcdb009c110e367fe81a762d;hpb=c405cf118d3d31c2b6e1fe935671ecdaeb031f8f;p=rocksndiamonds.git diff --git a/src/screens.c b/src/screens.c index ddc28e8d..212a75ca 100644 --- a/src/screens.c +++ b/src/screens.c @@ -503,15 +503,7 @@ void HandleMainMenu(int mx, int my, int dx, int dy, int button) { game_status = GAME_MODE_PLAYING; StopAnimation(); - -#if 1 - - em_main_init_game(); - -#else InitGame(); - -#endif } } else if (y == 6) @@ -1965,6 +1957,7 @@ static struct TokenInfo setup_info_editor[] = #endif { TYPE_SWITCH, &setup.editor.el_boulderdash, "BoulderDash:" }, { TYPE_SWITCH, &setup.editor.el_emerald_mine, "Emerald Mine:" }, + { TYPE_SWITCH, &setup.editor.el_emerald_mine_club,"E.M. Club:" }, { TYPE_SWITCH, &setup.editor.el_more, "More:" }, { TYPE_SWITCH, &setup.editor.el_sokoban, "Sokoban:" }, { TYPE_SWITCH, &setup.editor.el_supaplex, "Supaplex:" }, @@ -2952,37 +2945,89 @@ void HandleGameActions() if (game_status != GAME_MODE_PLAYING) return; -#if 1 - + /* !!! FIX THIS (START) !!! */ + if (level.game_engine_type == GAME_ENGINE_TYPE_EM) { + byte *recorded_player_action; byte summarized_player_action = 0; + byte tape_action[MAX_PLAYERS]; int i; + if (level.native_em_level->lev->home == 0) /* all players at home */ + { + GameWon(); + + if (!TAPE_IS_STOPPED(tape)) + TapeStop(); + + if (game_status != GAME_MODE_PLAYING) + return; + } + + /* --- game actions --- */ + + if (tape.pausing) + return; + + recorded_player_action = (tape.playing ? TapePlayAction() : NULL); + for (i = 0; i < MAX_PLAYERS; i++) + { summarized_player_action |= stored_player[i].action; - if (em_main_handle_game(summarized_player_action) != 0) + if (!network_playing) + stored_player[i].effective_action = stored_player[i].action; + } + + if (!options.network && !setup.team_mode) + local_player->effective_action = summarized_player_action; + + if (recorded_player_action != NULL) + for (i = 0; i < MAX_PLAYERS; i++) + stored_player[i].effective_action = recorded_player_action[i]; + + for (i = 0; i < MAX_PLAYERS; i++) { - game_status = GAME_MODE_MAIN; - DrawMainMenu(); + tape_action[i] = stored_player[i].effective_action; + + /* !!! (this does not happen in the EM engine) !!! */ + if (tape.recording && tape_action[i] && !tape.player_participates[i]) + tape.player_participates[i] = TRUE; /* player just appeared from CE */ } - } -#else + /* only save actions from input devices, but not programmed actions */ + if (tape.recording) + TapeRecordAction(tape_action); - if (local_player->LevelSolved) - GameWon(); + GameActions_EM(local_player->effective_action); - if (AllPlayersGone && !TAPE_IS_STOPPED(tape)) - TapeStop(); + if (TimeFrames >= FRAMES_PER_SECOND) + { + TimeFrames = 0; + TapeTime++; - GameActions(); - BackToFront(); + if (tape.recording || tape.playing) + DrawVideoDisplay(VIDEO_STATE_TIME_ON, TapeTime); + } - if (tape.auto_play && !tape.playing) - AutoPlayTape(); /* continue automatically playing next tape */ + TimeFrames++; -#endif + BackToFront(); + } + else + { + if (local_player->LevelSolved) + GameWon(); + + if (AllPlayersGone && !TAPE_IS_STOPPED(tape)) + TapeStop(); + + GameActions(); + BackToFront(); + + if (tape.auto_play && !tape.playing) + AutoPlayTape(); /* continue automatically playing next tape */ + } } /* ---------- new screen button stuff -------------------------------------- */