mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-17 02:01:35 +00:00
Merge branch 'mpspec_cleanup' into 'master'
MP/Old Special Stage ring stuff See merge request STJr/SRB2Internal!276
This commit is contained in:
commit
5ef190fc69
2 changed files with 136 additions and 61 deletions
|
@ -110,6 +110,7 @@ static patch_t *orngstat;
|
||||||
static patch_t *redstat;
|
static patch_t *redstat;
|
||||||
static patch_t *yelstat;
|
static patch_t *yelstat;
|
||||||
static patch_t *nbracket;
|
static patch_t *nbracket;
|
||||||
|
static patch_t *nring;
|
||||||
static patch_t *nhud[12];
|
static patch_t *nhud[12];
|
||||||
static patch_t *nsshud;
|
static patch_t *nsshud;
|
||||||
static patch_t *nbon[12];
|
static patch_t *nbon[12];
|
||||||
|
@ -311,6 +312,7 @@ void ST_LoadGraphics(void)
|
||||||
redstat = W_CachePatchName("REDSTAT", PU_HUDGFX);
|
redstat = W_CachePatchName("REDSTAT", PU_HUDGFX);
|
||||||
yelstat = W_CachePatchName("YELSTAT", PU_HUDGFX);
|
yelstat = W_CachePatchName("YELSTAT", PU_HUDGFX);
|
||||||
nbracket = W_CachePatchName("NBRACKET", PU_HUDGFX);
|
nbracket = W_CachePatchName("NBRACKET", PU_HUDGFX);
|
||||||
|
nring = W_CachePatchName("NRNG1", PU_HUDGFX);
|
||||||
for (i = 0; i < 12; ++i)
|
for (i = 0; i < 12; ++i)
|
||||||
{
|
{
|
||||||
nhud[i] = W_CachePatchName(va("NHUD%d", i+1), PU_HUDGFX);
|
nhud[i] = W_CachePatchName(va("NHUD%d", i+1), PU_HUDGFX);
|
||||||
|
@ -1545,7 +1547,7 @@ static void ST_drawNiGHTSLink(void)
|
||||||
static void ST_drawNiGHTSHUD(void)
|
static void ST_drawNiGHTSHUD(void)
|
||||||
{
|
{
|
||||||
INT32 origamount;
|
INT32 origamount;
|
||||||
INT32 total_spherecount;
|
INT32 total_spherecount, total_ringcount;
|
||||||
const boolean oldspecialstage = (G_IsSpecialStage(gamemap) && !(maptol & TOL_NIGHTS));
|
const boolean oldspecialstage = (G_IsSpecialStage(gamemap) && !(maptol & TOL_NIGHTS));
|
||||||
|
|
||||||
// Drill meter
|
// Drill meter
|
||||||
|
@ -1625,21 +1627,20 @@ static void ST_drawNiGHTSHUD(void)
|
||||||
if (G_IsSpecialStage(gamemap))
|
if (G_IsSpecialStage(gamemap))
|
||||||
{
|
{
|
||||||
INT32 i;
|
INT32 i;
|
||||||
total_spherecount = 0;
|
total_spherecount = total_ringcount = 0;
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
if (playeringame[i] /*&& players[i].powers[pw_carry] == CR_NIGHTSMODE*/ && players[i].spheres)
|
{
|
||||||
|
if (!playeringame[i])
|
||||||
|
continue;
|
||||||
total_spherecount += players[i].spheres;
|
total_spherecount += players[i].spheres;
|
||||||
|
total_ringcount += players[i].rings;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
total_spherecount = stplyr->spheres;
|
|
||||||
|
|
||||||
/*if (oldspecialstage)
|
|
||||||
{
|
{
|
||||||
if (total_spherecount < ssspheres)
|
total_spherecount = stplyr->spheres;
|
||||||
total_spherecount = ssspheres - total_spherecount;
|
total_ringcount = stplyr->spheres;
|
||||||
else
|
}
|
||||||
total_spherecount = 0;
|
|
||||||
}*/
|
|
||||||
|
|
||||||
if (stplyr->capsule)
|
if (stplyr->capsule)
|
||||||
{
|
{
|
||||||
|
@ -1727,6 +1728,27 @@ static void ST_drawNiGHTSHUD(void)
|
||||||
else
|
else
|
||||||
ST_DrawTopLeftOverlayPatch(40, 8 + 5, narrow[8]);
|
ST_DrawTopLeftOverlayPatch(40, 8 + 5, narrow[8]);
|
||||||
|
|
||||||
|
if (oldspecialstage)
|
||||||
|
{
|
||||||
|
// invert for s3k style junk
|
||||||
|
total_spherecount = ssspheres - total_spherecount;
|
||||||
|
if (total_spherecount < 0)
|
||||||
|
total_spherecount = 0;
|
||||||
|
|
||||||
|
if (nummaprings > 0) // don't count down if there ISN'T a valid maximum number of rings, like sonic 3
|
||||||
|
{
|
||||||
|
total_ringcount = nummaprings - total_ringcount;
|
||||||
|
if (total_ringcount < 0)
|
||||||
|
total_ringcount = 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
// now rings! you know, for that perfect bonus.
|
||||||
|
V_DrawScaledPatch(272, 8, V_PERPLAYER|V_SNAPTOTOP|V_SNAPTORIGHT|V_HUDTRANS, nbracket);
|
||||||
|
V_DrawScaledPatch(280, 16+1, V_PERPLAYER|V_SNAPTOTOP|V_SNAPTORIGHT|V_HUDTRANS, nring);
|
||||||
|
V_DrawScaledPatch(280, 8+5, V_FLIP|V_PERPLAYER|V_SNAPTOTOP|V_SNAPTORIGHT|V_HUDTRANS, narrow[8]);
|
||||||
|
V_DrawTallNum(272, 8 + 11, V_PERPLAYER|V_SNAPTOTOP|V_SNAPTORIGHT|V_HUDTRANS, total_ringcount);
|
||||||
|
}
|
||||||
|
|
||||||
if (total_spherecount >= 100)
|
if (total_spherecount >= 100)
|
||||||
V_DrawTallNum((total_spherecount >= 1000) ? 76 : 72, 8 + 11, V_PERPLAYER|V_SNAPTOTOP|V_SNAPTOLEFT|V_HUDTRANS, total_spherecount);
|
V_DrawTallNum((total_spherecount >= 1000) ? 76 : 72, 8 + 11, V_PERPLAYER|V_SNAPTOTOP|V_SNAPTOLEFT|V_HUDTRANS, total_spherecount);
|
||||||
else
|
else
|
||||||
|
|
145
src/y_inter.c
145
src/y_inter.c
|
@ -86,8 +86,8 @@ typedef union
|
||||||
INT32 passedx3;
|
INT32 passedx3;
|
||||||
INT32 passedx4;
|
INT32 passedx4;
|
||||||
|
|
||||||
y_bonus_t bonus;
|
y_bonus_t bonuses[2];
|
||||||
patch_t *bonuspatch;
|
patch_t *bonuspatches[2];
|
||||||
|
|
||||||
patch_t *pscore; // SCORE
|
patch_t *pscore; // SCORE
|
||||||
UINT32 score; // fake score
|
UINT32 score; // fake score
|
||||||
|
@ -326,34 +326,36 @@ void Y_IntermissionDrawer(void)
|
||||||
// draw the header
|
// draw the header
|
||||||
if (intertic <= 2*TICRATE)
|
if (intertic <= 2*TICRATE)
|
||||||
animatetic = 0;
|
animatetic = 0;
|
||||||
else if (!animatetic && data.spec.bonus.points == 0 && data.spec.passed3[0] != '\0')
|
else if (!animatetic && data.spec.bonuses[0].points == 0 && data.spec.bonuses[1].points == 0 && data.spec.passed3[0] != '\0')
|
||||||
animatetic = intertic + TICRATE;
|
animatetic = intertic + TICRATE;
|
||||||
|
|
||||||
if (animatetic && (tic_t)intertic >= animatetic)
|
if (animatetic && (tic_t)intertic >= animatetic)
|
||||||
{
|
{
|
||||||
const INT32 scradjust = (vid.width/vid.dupx)>>3; // 40 for BASEVIDWIDTH
|
const INT32 scradjust = (vid.width/vid.dupx)>>3; // 40 for BASEVIDWIDTH
|
||||||
INT32 animatetimer = (intertic - animatetic);
|
INT32 animatetimer = (intertic - animatetic);
|
||||||
if (animatetimer <= 14)
|
if (animatetimer <= 16)
|
||||||
{
|
{
|
||||||
xoffset1 = -(animatetimer * scradjust);
|
xoffset1 = -(animatetimer * scradjust);
|
||||||
xoffset2 = -((animatetimer- 2) * scradjust);
|
xoffset2 = -((animatetimer- 2) * scradjust);
|
||||||
xoffset3 = -((animatetimer- 4) * scradjust);
|
xoffset3 = -((animatetimer- 4) * scradjust);
|
||||||
xoffset4 = -((animatetimer- 6) * scradjust);
|
xoffset4 = -((animatetimer- 6) * scradjust);
|
||||||
xoffset5 = -((animatetimer- 8) * scradjust);
|
xoffset5 = -((animatetimer- 8) * scradjust);
|
||||||
|
xoffset6 = -((animatetimer-10) * scradjust);
|
||||||
if (xoffset2 > 0) xoffset2 = 0;
|
if (xoffset2 > 0) xoffset2 = 0;
|
||||||
if (xoffset3 > 0) xoffset3 = 0;
|
if (xoffset3 > 0) xoffset3 = 0;
|
||||||
if (xoffset4 > 0) xoffset4 = 0;
|
if (xoffset4 > 0) xoffset4 = 0;
|
||||||
if (xoffset5 > 0) xoffset5 = 0;
|
if (xoffset5 > 0) xoffset5 = 0;
|
||||||
|
if (xoffset6 > 0) xoffset6 = 0;
|
||||||
}
|
}
|
||||||
else if (animatetimer < 32)
|
else if (animatetimer < 34)
|
||||||
{
|
{
|
||||||
drawsection = 1;
|
drawsection = 1;
|
||||||
xoffset1 = (22-animatetimer) * scradjust;
|
xoffset1 = (24-animatetimer) * scradjust;
|
||||||
xoffset2 = (24-animatetimer) * scradjust;
|
xoffset2 = (26-animatetimer) * scradjust;
|
||||||
xoffset3 = (26-animatetimer) * scradjust;
|
xoffset3 = (28-animatetimer) * scradjust;
|
||||||
xoffset4 = (28-animatetimer) * scradjust;
|
xoffset4 = (30-animatetimer) * scradjust;
|
||||||
xoffset5 = (30-animatetimer) * scradjust;
|
xoffset5 = (32-animatetimer) * scradjust;
|
||||||
xoffset6 = (32-animatetimer) * scradjust;
|
xoffset6 = (34-animatetimer) * scradjust;
|
||||||
if (xoffset1 < 0) xoffset1 = 0;
|
if (xoffset1 < 0) xoffset1 = 0;
|
||||||
if (xoffset2 < 0) xoffset2 = 0;
|
if (xoffset2 < 0) xoffset2 = 0;
|
||||||
if (xoffset3 < 0) xoffset3 = 0;
|
if (xoffset3 < 0) xoffset3 = 0;
|
||||||
|
@ -370,9 +372,9 @@ void Y_IntermissionDrawer(void)
|
||||||
|
|
||||||
if (drawsection == 1)
|
if (drawsection == 1)
|
||||||
{
|
{
|
||||||
const char *ringtext = "\x86" "50 RINGS, NO SHIELD";
|
const char *ringtext = "\x82" "50 RINGS, NO SHIELD";
|
||||||
const char *tut1text = "\x86" "PRESS " "\x82" "SPIN";
|
const char *tut1text = "\x82" "PRESS " "\x80" "SPIN";
|
||||||
const char *tut2text = "\x86" "MID-" "\x82" "JUMP";
|
const char *tut2text = "\x82" "MID-" "\x80" "JUMP";
|
||||||
ttheight = 16;
|
ttheight = 16;
|
||||||
V_DrawLevelTitle(data.spec.passedx1 + xoffset1, ttheight, 0, data.spec.passed1);
|
V_DrawLevelTitle(data.spec.passedx1 + xoffset1, ttheight, 0, data.spec.passed1);
|
||||||
ttheight += V_LevelNameHeight(data.spec.passed3) + 2;
|
ttheight += V_LevelNameHeight(data.spec.passed3) + 2;
|
||||||
|
@ -389,6 +391,7 @@ void Y_IntermissionDrawer(void)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
INT32 yoffset = 0;
|
||||||
if (data.spec.passed1[0] != '\0')
|
if (data.spec.passed1[0] != '\0')
|
||||||
{
|
{
|
||||||
ttheight = 24;
|
ttheight = 24;
|
||||||
|
@ -402,22 +405,31 @@ void Y_IntermissionDrawer(void)
|
||||||
V_DrawLevelTitle(data.spec.passedx2 + xoffset1, ttheight, 0, data.spec.passed2);
|
V_DrawLevelTitle(data.spec.passedx2 + xoffset1, ttheight, 0, data.spec.passed2);
|
||||||
}
|
}
|
||||||
|
|
||||||
V_DrawScaledPatch(152 + xoffset3, 108, 0, data.spec.bonuspatch);
|
V_DrawScaledPatch(152 + xoffset3, 108, 0, data.spec.bonuspatches[0]);
|
||||||
V_DrawTallNum(BASEVIDWIDTH + xoffset3 - 68, 109, 0, data.spec.bonus.points);
|
V_DrawTallNum(BASEVIDWIDTH + xoffset3 - 68, 109, 0, data.spec.bonuses[0].points);
|
||||||
V_DrawScaledPatch(152 + xoffset4, 124, 0, data.spec.pscore);
|
if (data.spec.bonuses[1].display)
|
||||||
V_DrawTallNum(BASEVIDWIDTH + xoffset4 - 68, 125, 0, data.spec.score);
|
{
|
||||||
|
V_DrawScaledPatch(152 + xoffset4, 124, 0, data.spec.bonuspatches[1]);
|
||||||
|
V_DrawTallNum(BASEVIDWIDTH + xoffset4 - 68, 125, 0, data.spec.bonuses[1].points);
|
||||||
|
yoffset = 16;
|
||||||
|
// hack; pass the buck along...
|
||||||
|
xoffset4 = xoffset5;
|
||||||
|
xoffset5 = xoffset6;
|
||||||
|
}
|
||||||
|
V_DrawScaledPatch(152 + xoffset4, 124+yoffset, 0, data.spec.pscore);
|
||||||
|
V_DrawTallNum(BASEVIDWIDTH + xoffset4 - 68, 125+yoffset, 0, data.spec.score);
|
||||||
|
|
||||||
// Draw continues!
|
// Draw continues!
|
||||||
if (!multiplayer /* && (data.spec.continues & 0x80) */) // Always draw outside of netplay
|
if (!multiplayer /* && (data.spec.continues & 0x80) */) // Always draw outside of netplay
|
||||||
{
|
{
|
||||||
UINT8 continues = data.spec.continues & 0x7F;
|
UINT8 continues = data.spec.continues & 0x7F;
|
||||||
|
|
||||||
V_DrawScaledPatch(152 + xoffset5, 150, 0, data.spec.pcontinues);
|
V_DrawScaledPatch(152 + xoffset5, 150+yoffset, 0, data.spec.pcontinues);
|
||||||
for (i = 0; i < continues; ++i)
|
for (i = 0; i < continues; ++i)
|
||||||
{
|
{
|
||||||
if ((data.spec.continues & 0x80) && i == continues-1 && (endtic < 0 || intertic%20 < 10))
|
if ((data.spec.continues & 0x80) && i == continues-1 && (endtic < 0 || intertic%20 < 10))
|
||||||
break;
|
break;
|
||||||
V_DrawContinueIcon(246 + xoffset5 - (i*12), 162, 0, *data.spec.playerchar, *data.spec.playercolor);
|
V_DrawContinueIcon(246 + xoffset5 - (i*12), 162+yoffset, 0, *data.spec.playerchar, *data.spec.playercolor);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -904,7 +916,7 @@ void Y_Ticker(void)
|
||||||
{
|
{
|
||||||
INT32 i;
|
INT32 i;
|
||||||
UINT32 oldscore = data.spec.score;
|
UINT32 oldscore = data.spec.score;
|
||||||
boolean skip = false, super = false;
|
boolean skip = false, super = false, anybonuses = false;
|
||||||
|
|
||||||
if (!intertic) // first time only
|
if (!intertic) // first time only
|
||||||
{
|
{
|
||||||
|
@ -946,16 +958,26 @@ void Y_Ticker(void)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
// ring bonus counts down by 222 each tic
|
// bonuses count down by 222 each tic
|
||||||
data.spec.bonus.points -= 222;
|
for (i = 0; i < 2; ++i)
|
||||||
data.spec.score += 222;
|
|
||||||
if (data.spec.bonus.points < 0 || skip == true) // went too far
|
|
||||||
{
|
{
|
||||||
data.spec.score += data.spec.bonus.points;
|
if (!data.spec.bonuses[i].points)
|
||||||
data.spec.bonus.points = 0;
|
continue;
|
||||||
|
|
||||||
|
data.spec.bonuses[i].points -= 222;
|
||||||
|
data.spec.score += 222;
|
||||||
|
if (data.spec.bonuses[i].points < 0 || skip == true) // too far?
|
||||||
|
{
|
||||||
|
data.spec.score += data.spec.bonuses[i].points;
|
||||||
|
data.spec.bonuses[i].points = 0;
|
||||||
|
}
|
||||||
|
if (data.spec.score > MAXSCORE)
|
||||||
|
data.spec.score = MAXSCORE;
|
||||||
|
if (data.spec.bonuses[i].points > 0)
|
||||||
|
anybonuses = true;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!data.spec.bonus.points)
|
if (!anybonuses)
|
||||||
{
|
{
|
||||||
tallydonetic = intertic;
|
tallydonetic = intertic;
|
||||||
if (!((data.spec.continues & 0x80) || (super && ALL7EMERALDS(emeralds)))) // don't set endtic yet!
|
if (!((data.spec.continues & 0x80) || (super && ALL7EMERALDS(emeralds)))) // don't set endtic yet!
|
||||||
|
@ -1301,7 +1323,9 @@ void Y_StartIntermission(void)
|
||||||
// give out ring bonuses
|
// give out ring bonuses
|
||||||
Y_AwardSpecialStageBonus();
|
Y_AwardSpecialStageBonus();
|
||||||
|
|
||||||
data.spec.bonuspatch = W_CachePatchName(data.spec.bonus.patch, PU_STATIC);
|
for (i = 0; i < 2; ++i)
|
||||||
|
data.spec.bonuspatches[i] = W_CachePatchName(data.spec.bonuses[i].patch, PU_STATIC);
|
||||||
|
|
||||||
data.spec.pscore = W_CachePatchName("YB_SCORE", PU_STATIC);
|
data.spec.pscore = W_CachePatchName("YB_SCORE", PU_STATIC);
|
||||||
data.spec.pcontinues = W_CachePatchName("YB_CONTI", PU_STATIC);
|
data.spec.pcontinues = W_CachePatchName("YB_CONTI", PU_STATIC);
|
||||||
|
|
||||||
|
@ -1831,7 +1855,7 @@ static void Y_SetPerfectBonus(player_t *player, y_bonus_t *bstruct)
|
||||||
memset(bstruct, 0, sizeof(y_bonus_t));
|
memset(bstruct, 0, sizeof(y_bonus_t));
|
||||||
strncpy(bstruct->patch, "YB_PERFE", sizeof(bstruct->patch));
|
strncpy(bstruct->patch, "YB_PERFE", sizeof(bstruct->patch));
|
||||||
|
|
||||||
if (data.coop.gotperfbonus == -1)
|
if (intertype != int_coop || data.coop.gotperfbonus == -1)
|
||||||
{
|
{
|
||||||
INT32 sharedringtotal = 0;
|
INT32 sharedringtotal = 0;
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
|
@ -1840,16 +1864,34 @@ static void Y_SetPerfectBonus(player_t *player, y_bonus_t *bstruct)
|
||||||
sharedringtotal += players[i].rings;
|
sharedringtotal += players[i].rings;
|
||||||
}
|
}
|
||||||
if (!sharedringtotal || nummaprings == -1 || sharedringtotal < nummaprings)
|
if (!sharedringtotal || nummaprings == -1 || sharedringtotal < nummaprings)
|
||||||
data.coop.gotperfbonus = 0;
|
bstruct->display = false;
|
||||||
else
|
else
|
||||||
data.coop.gotperfbonus = 1;
|
{
|
||||||
}
|
|
||||||
if (!data.coop.gotperfbonus)
|
|
||||||
return;
|
|
||||||
|
|
||||||
bstruct->display = true;
|
bstruct->display = true;
|
||||||
bstruct->points = 50000;
|
bstruct->points = 50000;
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
if (intertype != int_coop)
|
||||||
|
return;
|
||||||
|
|
||||||
|
data.coop.gotperfbonus = (bstruct->display ? 1 : 0);
|
||||||
|
}
|
||||||
|
|
||||||
|
static void Y_SetSpecialRingBonus(player_t *player, y_bonus_t *bstruct)
|
||||||
|
{
|
||||||
|
INT32 i, sharedringtotal = 0;
|
||||||
|
|
||||||
|
(void)player;
|
||||||
|
strncpy(bstruct->patch, "YB_RING", sizeof(bstruct->patch));
|
||||||
|
bstruct->display = true;
|
||||||
|
|
||||||
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
|
{
|
||||||
|
if (!playeringame[i]) continue;
|
||||||
|
sharedringtotal += players[i].rings;
|
||||||
|
}
|
||||||
|
bstruct->points = max(0, (sharedringtotal) * 100);
|
||||||
|
}
|
||||||
|
|
||||||
// This list can be extended in the future with SOC/Lua, perhaps.
|
// This list can be extended in the future with SOC/Lua, perhaps.
|
||||||
typedef void (*bonus_f)(player_t *, y_bonus_t *);
|
typedef void (*bonus_f)(player_t *, y_bonus_t *);
|
||||||
|
@ -1953,23 +1995,33 @@ static void Y_AwardCoopBonuses(void)
|
||||||
static void Y_AwardSpecialStageBonus(void)
|
static void Y_AwardSpecialStageBonus(void)
|
||||||
{
|
{
|
||||||
INT32 i, oldscore, ptlives;
|
INT32 i, oldscore, ptlives;
|
||||||
y_bonus_t localbonus;
|
y_bonus_t localbonuses[2];
|
||||||
|
|
||||||
data.spec.score = players[consoleplayer].score;
|
data.spec.score = players[consoleplayer].score;
|
||||||
memset(&data.spec.bonus, 0, sizeof(data.spec.bonus));
|
memset(data.spec.bonuses, 0, sizeof(data.spec.bonuses));
|
||||||
data.spec.bonuspatch = NULL;
|
memset(data.spec.bonuspatches, 0, sizeof(data.coop.bonuspatches));
|
||||||
|
|
||||||
for (i = 0; i < MAXPLAYERS; i++)
|
for (i = 0; i < MAXPLAYERS; i++)
|
||||||
{
|
{
|
||||||
oldscore = players[i].score;
|
oldscore = players[i].score;
|
||||||
|
|
||||||
if (!playeringame[i] || players[i].lives < 1) // not active or game over
|
if (!playeringame[i] || players[i].lives < 1) // not active or game over
|
||||||
Y_SetNullBonus(&players[i], &localbonus);
|
{
|
||||||
else if (maptol & TOL_NIGHTS) // Mare score instead of Rings
|
Y_SetNullBonus(&players[i], &localbonuses[0]);
|
||||||
Y_SetNightsBonus(&players[i], &localbonus);
|
Y_SetNullBonus(&players[i], &localbonuses[1]);
|
||||||
|
}
|
||||||
|
else if (maptol & TOL_NIGHTS) // NiGHTS bonus score instead of Rings
|
||||||
|
{
|
||||||
|
Y_SetNightsBonus(&players[i], &localbonuses[0]);
|
||||||
|
Y_SetNullBonus(&players[i], &localbonuses[1]);
|
||||||
|
}
|
||||||
else
|
else
|
||||||
Y_SetRingBonus(&players[i], &localbonus);
|
{
|
||||||
players[i].score += localbonus.points;
|
Y_SetSpecialRingBonus(&players[i], &localbonuses[0]);
|
||||||
|
Y_SetPerfectBonus(&players[i], &localbonuses[1]);
|
||||||
|
}
|
||||||
|
players[i].score += localbonuses[0].points;
|
||||||
|
players[i].score += localbonuses[1].points;
|
||||||
if (players[i].score > MAXSCORE)
|
if (players[i].score > MAXSCORE)
|
||||||
players[i].score = MAXSCORE;
|
players[i].score = MAXSCORE;
|
||||||
|
|
||||||
|
@ -1982,7 +2034,7 @@ static void Y_AwardSpecialStageBonus(void)
|
||||||
if (i == consoleplayer)
|
if (i == consoleplayer)
|
||||||
{
|
{
|
||||||
data.spec.gotlife = (((netgame || multiplayer) && gametype == GT_COOP && cv_cooplives.value == 0) ? 0 : ptlives);
|
data.spec.gotlife = (((netgame || multiplayer) && gametype == GT_COOP && cv_cooplives.value == 0) ? 0 : ptlives);
|
||||||
M_Memcpy(&data.spec.bonus, &localbonus, sizeof(data.spec.bonus));
|
M_Memcpy(&data.spec.bonuses, &localbonuses, sizeof(data.spec.bonuses));
|
||||||
|
|
||||||
// Continues related
|
// Continues related
|
||||||
data.spec.continues = min(players[i].continues, 8);
|
data.spec.continues = min(players[i].continues, 8);
|
||||||
|
@ -2057,7 +2109,8 @@ static void Y_UnloadData(void)
|
||||||
// unload the special stage patches
|
// unload the special stage patches
|
||||||
//UNLOAD(data.spec.cemerald);
|
//UNLOAD(data.spec.cemerald);
|
||||||
//UNLOAD(data.spec.nowsuper);
|
//UNLOAD(data.spec.nowsuper);
|
||||||
UNLOAD(data.spec.bonuspatch);
|
UNLOAD(data.spec.bonuspatches[1]);
|
||||||
|
UNLOAD(data.spec.bonuspatches[0]);
|
||||||
UNLOAD(data.spec.pscore);
|
UNLOAD(data.spec.pscore);
|
||||||
UNLOAD(data.spec.pcontinues);
|
UNLOAD(data.spec.pcontinues);
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue