From 731b05e26389bb847a9b72bd9e9971f096abc9c0 Mon Sep 17 00:00:00 2001 From: toaster Date: Mon, 30 Jul 2018 23:17:01 +0100 Subject: [PATCH] More UI crap! * Fix minor additional error in tab rankings. * Remove FREE PLAY from intermission drawer, per Sal's request. * Remove "second%s" from the end of the "Start in %d"/"Vote ends in %d" string. * Rename cv_advancemap's "Off" value to "Same", to make the behaviour clearer. * Make the "Start in %d" string now begin with cv_advancemap's string (ie, "Vote in %d", "Same in %d", "Random in %d, Next in %d"... --- src/d_netcmd.c | 2 +- src/hu_stuff.c | 2 +- src/m_menu.c | 2 +- src/y_inter.c | 13 ++----------- 4 files changed, 5 insertions(+), 14 deletions(-) diff --git a/src/d_netcmd.c b/src/d_netcmd.c index f7954747..78531be3 100644 --- a/src/d_netcmd.c +++ b/src/d_netcmd.c @@ -432,7 +432,7 @@ consvar_t cv_maxping = {"maxping", "0", CV_SAVE, CV_Unsigned, NULL, 0, NULL, NUL static CV_PossibleValue_t inttime_cons_t[] = {{0, "MIN"}, {3600, "MAX"}, {0, NULL}}; consvar_t cv_inttime = {"inttime", "20", CV_NETVAR, inttime_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; -static CV_PossibleValue_t advancemap_cons_t[] = {{0, "Off"}, {1, "Next"}, {2, "Random"}, {3, "Vote"}, {0, NULL}}; +static CV_PossibleValue_t advancemap_cons_t[] = {{0, "Same"}, {1, "Next"}, {2, "Random"}, {3, "Vote"}, {0, NULL}}; consvar_t cv_advancemap = {"advancemap", "Vote", CV_NETVAR, advancemap_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; static CV_PossibleValue_t playersforexit_cons_t[] = {{0, "One"}, {1, "All"}, {0, NULL}}; consvar_t cv_playersforexit = {"playersforexit", "One", CV_NETVAR, playersforexit_cons_t, NULL, 0, NULL, NULL, 0, 0, NULL}; diff --git a/src/hu_stuff.c b/src/hu_stuff.c index dd08d26e..4122b398 100644 --- a/src/hu_stuff.c +++ b/src/hu_stuff.c @@ -1376,7 +1376,7 @@ void HU_DrawTabRankings(INT32 x, INT32 y, playersort_t *tab, INT32 scorelines, I #undef timestring } else - V_DrawRightAlignedString(x+rightoffset, y, ((players[tab[i].num].health > 0) ? 0 : V_60TRANS), va("%u", tab[i].count)); + V_DrawRightAlignedString(x+rightoffset, y, 0, va("%u", tab[i].count)); y += 16; if (i == 9) diff --git a/src/m_menu.c b/src/m_menu.c index ce4e7486..63eae220 100644 --- a/src/m_menu.c +++ b/src/m_menu.c @@ -1436,7 +1436,7 @@ static menuitem_t OP_ServerOptionsMenu[] = {IT_STRING | IT_CVAR, NULL, "Intermission Timer", &cv_inttime, 40}, {IT_STRING | IT_CVAR, NULL, "Voting Timer", &cv_votetime, 50}, - {IT_STRING | IT_CVAR, NULL, "Advance to Next Level", &cv_advancemap, 60}, + {IT_STRING | IT_CVAR, NULL, "Advance to Next Level", &cv_advancemap, 60}, #ifndef NONET {IT_STRING | IT_CVAR, NULL, "Max Player Count", &cv_maxplayers, 80}, diff --git a/src/y_inter.c b/src/y_inter.c index f07e8e2f..29c81df0 100644 --- a/src/y_inter.c +++ b/src/y_inter.c @@ -263,7 +263,6 @@ static void Y_CalculateMatchData(boolean rankingsmode, void (*comparison)(INT32) // void Y_IntermissionDrawer(void) { - boolean forcefreeplay = false; INT32 i, whiteplayer = MAXPLAYERS, x = 4, hilicol = V_YELLOWMAP; // fallback if (intertype == int_none || rendermode == render_none) @@ -370,11 +369,7 @@ void Y_IntermissionDrawer(void) if (data.match.rankingsmode) timeheader = "RANK"; else - { timeheader = (intertype == int_race ? "TIME" : "SCORE"); - if (data.match.numplayers <= 1) - forcefreeplay = true; - } // draw the level name V_DrawCenteredString(-4 + x + BASEVIDWIDTH/2, 20, 0, data.match.levelstring); @@ -492,15 +487,11 @@ void Y_IntermissionDrawer(void) } dotimer: - - if (netgame && forcefreeplay) // FREE PLAY? - K_drawKartFreePlay(intertic); - if (timer) { INT32 tickdown = (timer+1)/TICRATE; V_DrawCenteredString(BASEVIDWIDTH/2, 188, hilicol, - va("start in %d second%s", tickdown, (tickdown == 1 ? "" : "s"))); + va("%s in %d", cv_advancemap.string, tickdown)); } // Make it obvious that scrambling is happening next round. @@ -1139,7 +1130,7 @@ void Y_VoteDrawer(void) else //if (gametype == GT_MATCH) hilicol = V_REDMAP; V_DrawCenteredString(BASEVIDWIDTH/2, 188, hilicol, - va("Vote ends in %d second%s", tickdown, (tickdown == 1 ? "" : "s"))); + va("Vote ends in %d", tickdown)); } }