mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Don't show uncollected Platinum medals
You'll see the Platinum time to reach as a guiding star when Time Attacking the specific course, but with no accompanying empty medal icon. Also - fixes an x coordinate issue for higher medal quantity on the version that draws under the timestamp - cache SECRET_ENCORE and SECRET_SPBATTACK availability in the statistics drawer too
This commit is contained in:
parent
b35a05ad61
commit
0427f7f3ff
4 changed files with 45 additions and 22 deletions
10
src/g_game.c
10
src/g_game.c
|
|
@ -440,8 +440,14 @@ void G_UpdateTimeStickerMedals(UINT16 map, boolean showownrecord)
|
||||||
if (cv_dummyspbattack.value && !(emblem->flags & (ME_SPBATTACK|ME_ENCORE)))
|
if (cv_dummyspbattack.value && !(emblem->flags & (ME_SPBATTACK|ME_ENCORE)))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
if (!gamedata->collected[(emblem-emblemlocations)] && gonnadrawtime)
|
if (!gamedata->collected[(emblem-emblemlocations)])
|
||||||
break;
|
{
|
||||||
|
if (gonnadrawtime)
|
||||||
|
break;
|
||||||
|
|
||||||
|
if (emblem->type == ET_TIME && emblem->tag == AUTOMEDAL_PLATINUM)
|
||||||
|
stickermedalinfo.platinumcount++;
|
||||||
|
}
|
||||||
|
|
||||||
// Simpler than having two checks
|
// Simpler than having two checks
|
||||||
if (stickermedalinfo.visiblecount == MAXMEDALVISIBLECOUNT)
|
if (stickermedalinfo.visiblecount == MAXMEDALVISIBLECOUNT)
|
||||||
|
|
|
||||||
|
|
@ -213,6 +213,7 @@ void G_EndGame(void); // moved from y_inter.c/h and renamed
|
||||||
extern struct stickermedalinfo
|
extern struct stickermedalinfo
|
||||||
{
|
{
|
||||||
UINT8 visiblecount;
|
UINT8 visiblecount;
|
||||||
|
UINT8 platinumcount;
|
||||||
UINT8 jitter;
|
UINT8 jitter;
|
||||||
boolean norecord;
|
boolean norecord;
|
||||||
tic_t timetoreach;
|
tic_t timetoreach;
|
||||||
|
|
|
||||||
|
|
@ -2015,7 +2015,7 @@ void K_drawKartTimestamp(tic_t drawtime, INT32 TX, INT32 TY, INT32 splitflags, U
|
||||||
Draw(workx, worky).text(text);
|
Draw(workx, worky).text(text);
|
||||||
}
|
}
|
||||||
|
|
||||||
workx -= (6 + (i*5));
|
workx -= (((1 + i - stickermedalinfo.platinumcount)*6) - 1);
|
||||||
|
|
||||||
if (!mode)
|
if (!mode)
|
||||||
splitflags = (splitflags &~ V_HUDTRANSHALF)|V_HUDTRANS;
|
splitflags = (splitflags &~ V_HUDTRANSHALF)|V_HUDTRANS;
|
||||||
|
|
@ -2029,16 +2029,21 @@ void K_drawKartTimestamp(tic_t drawtime, INT32 TX, INT32 TY, INT32 splitflags, U
|
||||||
static_cast<patch_t*>(W_CachePatchName(M_GetEmblemPatch(stickermedalinfo.emblems[i], false), PU_CACHE)),
|
static_cast<patch_t*>(W_CachePatchName(M_GetEmblemPatch(stickermedalinfo.emblems[i], false), PU_CACHE)),
|
||||||
R_GetTranslationColormap(TC_DEFAULT, M_GetEmblemColor(stickermedalinfo.emblems[i]), GTC_CACHE)
|
R_GetTranslationColormap(TC_DEFAULT, M_GetEmblemColor(stickermedalinfo.emblems[i]), GTC_CACHE)
|
||||||
);
|
);
|
||||||
|
|
||||||
|
workx += 6;
|
||||||
}
|
}
|
||||||
else
|
else if (
|
||||||
|
stickermedalinfo.emblems[i]->type != ET_TIME
|
||||||
|
|| stickermedalinfo.emblems[i]->tag != AUTOMEDAL_PLATINUM
|
||||||
|
)
|
||||||
{
|
{
|
||||||
V_DrawMappedPatch(workx, worky, splitflags,
|
V_DrawMappedPatch(workx, worky, splitflags,
|
||||||
static_cast<patch_t*>(W_CachePatchName("NEEDIT", PU_CACHE)),
|
static_cast<patch_t*>(W_CachePatchName("NEEDIT", PU_CACHE)),
|
||||||
NULL
|
NULL
|
||||||
);
|
);
|
||||||
}
|
|
||||||
|
|
||||||
workx += 6;
|
workx += 6;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -7952,24 +7952,32 @@ challengedesc:
|
||||||
|
|
||||||
#define STATSSTEP 10
|
#define STATSSTEP 10
|
||||||
|
|
||||||
static void M_DrawMapMedals(INT32 mapnum, INT32 x, INT32 y)
|
static void M_DrawMapMedals(INT32 mapnum, INT32 x, INT32 y, boolean allowtime, boolean allowencore, boolean allowspb)
|
||||||
{
|
{
|
||||||
UINT8 lasttype = UINT8_MAX, curtype;
|
UINT8 lasttype = UINT8_MAX, curtype;
|
||||||
|
|
||||||
// M_GetLevelEmblems is ONE-indexed, urgh
|
// M_GetLevelEmblems is ONE-indexed, urgh
|
||||||
mapnum++;
|
emblem_t *emblem = M_GetLevelEmblems(mapnum+1);
|
||||||
|
|
||||||
emblem_t *emblem = M_GetLevelEmblems(mapnum);
|
const boolean hasmedals = (emblem != NULL);
|
||||||
|
boolean collected = false;
|
||||||
boolean hasmedals = (emblem != NULL);
|
|
||||||
|
|
||||||
while (emblem)
|
while (emblem)
|
||||||
{
|
{
|
||||||
|
collected = gamedata->collected[emblem-emblemlocations];
|
||||||
switch (emblem->type)
|
switch (emblem->type)
|
||||||
{
|
{
|
||||||
case ET_TIME:
|
case ET_TIME:
|
||||||
|
{
|
||||||
|
if (!allowtime
|
||||||
|
|| (!collected && emblem->tag == AUTOMEDAL_PLATINUM))
|
||||||
|
{
|
||||||
|
emblem = M_GetLevelEmblems(-1);
|
||||||
|
continue;
|
||||||
|
}
|
||||||
curtype = 1;
|
curtype = 1;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
case ET_GLOBAL:
|
case ET_GLOBAL:
|
||||||
{
|
{
|
||||||
if (emblem->flags & GE_NOTMEDAL)
|
if (emblem->flags & GE_NOTMEDAL)
|
||||||
|
|
@ -7982,8 +7990,8 @@ static void M_DrawMapMedals(INT32 mapnum, INT32 x, INT32 y)
|
||||||
}
|
}
|
||||||
case ET_MAP:
|
case ET_MAP:
|
||||||
{
|
{
|
||||||
if (((emblem->flags & ME_ENCORE) && !M_SecretUnlocked(SECRET_ENCORE, true))
|
if (((emblem->flags & ME_ENCORE) && !allowencore)
|
||||||
|| ((emblem->flags & ME_SPBATTACK) && !M_SecretUnlocked(SECRET_SPBATTACK, true)))
|
|| ((emblem->flags & ME_SPBATTACK) && !allowspb))
|
||||||
{
|
{
|
||||||
emblem = M_GetLevelEmblems(-1);
|
emblem = M_GetLevelEmblems(-1);
|
||||||
continue;
|
continue;
|
||||||
|
|
@ -7992,8 +8000,10 @@ static void M_DrawMapMedals(INT32 mapnum, INT32 x, INT32 y)
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
default:
|
default:
|
||||||
|
{
|
||||||
curtype = 0;
|
curtype = 0;
|
||||||
break;
|
break;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
// Shift over if emblem is of a different discipline
|
// Shift over if emblem is of a different discipline
|
||||||
|
|
@ -8001,7 +8011,7 @@ static void M_DrawMapMedals(INT32 mapnum, INT32 x, INT32 y)
|
||||||
x -= 4;
|
x -= 4;
|
||||||
lasttype = curtype;
|
lasttype = curtype;
|
||||||
|
|
||||||
if (gamedata->collected[emblem-emblemlocations])
|
if (collected)
|
||||||
V_DrawMappedPatch(x, y, 0, W_CachePatchName(M_GetEmblemPatch(emblem, false), PU_CACHE),
|
V_DrawMappedPatch(x, y, 0, W_CachePatchName(M_GetEmblemPatch(emblem, false), PU_CACHE),
|
||||||
R_GetTranslationColormap(TC_DEFAULT, M_GetEmblemColor(emblem), GTC_MENUCACHE));
|
R_GetTranslationColormap(TC_DEFAULT, M_GetEmblemColor(emblem), GTC_MENUCACHE));
|
||||||
else
|
else
|
||||||
|
|
@ -8011,9 +8021,6 @@ static void M_DrawMapMedals(INT32 mapnum, INT32 x, INT32 y)
|
||||||
x -= 8;
|
x -= 8;
|
||||||
}
|
}
|
||||||
|
|
||||||
// Undo offset
|
|
||||||
mapnum--;
|
|
||||||
|
|
||||||
if (hasmedals)
|
if (hasmedals)
|
||||||
x -= 4;
|
x -= 4;
|
||||||
|
|
||||||
|
|
@ -8107,6 +8114,10 @@ static void M_DrawStatsMaps(void)
|
||||||
|
|
||||||
i = -1;
|
i = -1;
|
||||||
|
|
||||||
|
const boolean allowencore = M_SecretUnlocked(SECRET_ENCORE, true);
|
||||||
|
const boolean allowspb = M_SecretUnlocked(SECRET_SPBATTACK, true);
|
||||||
|
boolean allowtime = false;
|
||||||
|
|
||||||
while ((mnum = statisticsmenu.maplist[++i]) != NEXTMAP_INVALID)
|
while ((mnum = statisticsmenu.maplist[++i]) != NEXTMAP_INVALID)
|
||||||
{
|
{
|
||||||
if (location)
|
if (location)
|
||||||
|
|
@ -8157,13 +8168,13 @@ static void M_DrawStatsMaps(void)
|
||||||
|
|
||||||
V_DrawFadeFill(24, y + 5, (BASEVIDWIDTH - 24) - 24, 3, 0, 31, 8 - (i & 1)*2);
|
V_DrawFadeFill(24, y + 5, (BASEVIDWIDTH - 24) - 24, 3, 0, 31, 8 - (i & 1)*2);
|
||||||
|
|
||||||
if (!(mapheaderinfo[mnum]->menuflags & LF2_NOTIMEATTACK)
|
allowtime = (
|
||||||
&& (
|
|
||||||
(timeattack[0] && (mapheaderinfo[mnum]->typeoflevel & TOL_RACE))
|
(timeattack[0] && (mapheaderinfo[mnum]->typeoflevel & TOL_RACE))
|
||||||
|| (timeattack[1] && (mapheaderinfo[mnum]->typeoflevel & TOL_BATTLE))
|
|| (timeattack[1] && (mapheaderinfo[mnum]->typeoflevel & TOL_BATTLE))
|
||||||
|| (timeattack[2] && (mapheaderinfo[mnum]->typeoflevel & (TOL_SPECIAL|TOL_VERSUS)))
|
|| (timeattack[2] && (mapheaderinfo[mnum]->typeoflevel & (TOL_SPECIAL|TOL_VERSUS)))
|
||||||
)
|
);
|
||||||
)
|
|
||||||
|
if (!(mapheaderinfo[mnum]->menuflags & LF2_NOTIMEATTACK) && allowtime)
|
||||||
{
|
{
|
||||||
besttime = mapheaderinfo[mnum]->records.timeattack.time;
|
besttime = mapheaderinfo[mnum]->records.timeattack.time;
|
||||||
|
|
||||||
|
|
@ -8183,7 +8194,7 @@ static void M_DrawStatsMaps(void)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
M_DrawMapMedals(mnum, medalspos - 8, y);
|
M_DrawMapMedals(mnum, medalspos - 8, y, allowtime, allowencore, allowspb);
|
||||||
|
|
||||||
if (mapheaderinfo[mnum]->menuttl[0])
|
if (mapheaderinfo[mnum]->menuttl[0])
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue