X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Finit.c;h=114b177fb1578c19f30248069d85bf6a23acb350;hb=5bed0c59a91d32e2e82def3a95625b26bb8610a4;hp=7802e8e9a7da848e6abd41291bbbe3c0b61d66b2;hpb=456850f38548906c013fb29dd03f2171021ee9ec;p=rocksndiamonds.git diff --git a/src/init.c b/src/init.c index 7802e8e9..114b177f 100644 --- a/src/init.c +++ b/src/init.c @@ -6197,6 +6197,7 @@ void OpenAll(void) InitRND(NEW_RANDOMIZE); InitSimpleRandom(NEW_RANDOMIZE); + InitBetterRandom(NEW_RANDOMIZE); print_timestamp_time("[init global stuff]"); @@ -6330,10 +6331,10 @@ void OpenAll(void) print_timestamp_done("OpenAll"); - DrawMainMenu(); + if (setup.ask_for_remaining_tapes) + setup.ask_for_uploading_tapes = TRUE; - // needed once to offer uploading score tapes after starting the program - CheckUploadTapes(); + DrawMainMenu(); #if 0 Debug("internal:path", "SDL_GetBasePath() == '%s'", @@ -6354,8 +6355,44 @@ void OpenAll(void) #endif } +static boolean WaitForApiThreads(void) +{ + unsigned int thread_delay = 0; + unsigned int thread_delay_value = 10000; + + if (program.api_thread_count == 0) + return TRUE; + + // deactivate global animations (not accessible in game state "loading") + setup.toons = FALSE; + + // set game state to "loading" to be able to show busy animation + SetGameStatus(GAME_MODE_LOADING); + + ResetDelayCounter(&thread_delay); + + // wait for threads to finish (and fail on timeout) + while (program.api_thread_count > 0) + { + if (DelayReached(&thread_delay, thread_delay_value)) + { + Error("failed waiting for threads - TIMEOUT"); + + return FALSE; + } + + UPDATE_BUSY_STATE(); + + Delay(20); + } + + return TRUE; +} + void CloseAllAndExit(int exit_value) { + WaitForApiThreads(); + StopSounds(); FreeAllSounds(); FreeAllMusic();