X-Git-Url: https://git.artsoft.org/?a=blobdiff_plain;f=src%2Fscreens.c;h=464840b6e078a7575f84d36c1958fcb963b4a55d;hb=HEAD;hp=a7e164399780cb99346e4c08178b97d35cd22ed3;hpb=07a0f43d96ff82b3254cfe4c6fcec5fe769d6e20;p=rocksndiamonds.git diff --git a/src/screens.c b/src/screens.c index a7e16439..fc344373 100644 --- a/src/screens.c +++ b/src/screens.c @@ -1792,6 +1792,9 @@ void DrawMainMenu(void) // store valid level series information leveldir_last_valid = leveldir_current; + // store first level of this level set for "level_nr" style animations + SetAnimationFirstLevel(leveldir_current->first_level); + // needed if last screen (level choice) changed graphics, sounds or music ReloadCustomArtwork(0); @@ -3595,11 +3598,23 @@ void HandleInfoScreen_Music(int dx, int dy, int button) ystart += ystep_head; } - int music_level_nr = -1; - int i; + if (!strEqual(list->played, UNKNOWN_NAME)) + { + if (!strEqual(list->played_header, UNKNOWN_NAME)) + DrawTextSCentered(ystart, font_head, list->played_header); + else + DrawTextSCentered(ystart, font_head, "played in"); + + ystart += ystep_head; - if (!list->is_sound) + DrawTextFCentered(ystart, font_text, "%s", list->played); + ystart += ystep_head; + } + else if (!list->is_sound) { + int music_level_nr = -1; + int i; + // check if this music is configured for a certain level for (i = leveldir_current->first_level; i <= leveldir_current->last_level; i++) @@ -3616,7 +3631,11 @@ void HandleInfoScreen_Music(int dx, int dy, int button) if (music_level_nr != -1) { - DrawTextSCentered(ystart, font_head, "played in"); + if (!strEqual(list->played_header, UNKNOWN_NAME)) + DrawTextSCentered(ystart, font_head, list->played_header); + else + DrawTextSCentered(ystart, font_head, "played in"); + ystart += ystep_head; DrawTextFCentered(ystart, font_text, "level %03d", music_level_nr); @@ -7529,7 +7548,7 @@ static struct TokenInfo setup_info_graphics[] = { TYPE_SWITCH, &setup.quick_switch, "Quick Player Focus Switch:" }, { TYPE_SWITCH, &setup.quick_doors, "Quick Menu Doors:" }, { TYPE_SWITCH, &setup.show_titlescreen,"Show Title Screens:" }, - { TYPE_SWITCH, &setup.toons, "Show Menu Animations:" }, + { TYPE_SWITCH, &setup.toons, "Show Toons:" }, { TYPE_SWITCH, &setup.small_game_graphics, "Small Game Graphics:" }, { TYPE_YES_NO_AUTO, &setup.debug.xsn_mode, debug_xsn_mode }, { TYPE_EMPTY, NULL, "" },