Remove log comments for Fade FOF

This commit is contained in:
mazmazz 2018-03-30 22:59:33 -04:00
parent e617753d00
commit 047fffb6da

View file

@ -3095,7 +3095,6 @@ static void P_ProcessLineSpecial(line_t *line, mobj_t *mo, sector_t *callsec)
case 452: // Fade FOF
{
//CONS_Printf("Hello! Found a Fade special!\n");
INT32 s, j;
for (s = -1; (s = P_FindSectorFromLineTag(line, s)) >= 0 ;)
for (j = 0; (unsigned)j < sectors[s].linecount; j++)
@ -7082,8 +7081,6 @@ static void P_AddMasterFader(INT32 destvalue, INT32 speed, BOOL ignoreflags, INT
{
fade_t *d = Z_Malloc(sizeof *d, PU_LEVSPEC, NULL);
//CONS_Printf("Adding fader | Dest %i | Speed %i | Ignore %i\n", destvalue, speed, ignoreflags);
d->thinker.function.acp1 = (actionf_p1)T_Fade;
d->affectee = line;
d->destvalue = max(1, min(256, destvalue)); // ffloor->alpha is 1-256
@ -7091,8 +7088,6 @@ static void P_AddMasterFader(INT32 destvalue, INT32 speed, BOOL ignoreflags, INT
d->ignoreflags = (UINT8)ignoreflags;
P_AddThinker(&d->thinker);
//CONS_Printf("Added fader | Dest %i | Speed %i | Ignore %i\n", d->destvalue, d->speed, d->ignoreflags);
}
/** Makes a FOF fade
@ -7114,22 +7109,19 @@ void T_Fade(fade_t *d)
continue;
// fade out
//CONS_Printf("Fading from %i to %i\n", rover->alpha, d->destvalue);
if (rover->alpha > d->destvalue)
{
// we'll reach our destvalue
if (rover->alpha - d->speed <= d->destvalue + d->speed)
{
//CONS_Printf("Finished fading out\n");
rover->alpha = d->destvalue;
if (!d->ignoreflags && rover->alpha <= 1)
rover->flags &= ~FF_EXISTS;
else
rover->flags |= FF_EXISTS;
}
else
else // continue fading out
{
//CONS_Printf("Fading out...\n");
rover->alpha -= d->speed;
if (!d->ignoreflags)
rover->flags |= FF_EXISTS;
@ -7141,14 +7133,12 @@ void T_Fade(fade_t *d)
// we'll reach our destvalue
if (rover->alpha + d->speed >= d->destvalue - d->speed)
{
//CONS_Printf("Finished fading in\n");
rover->alpha = d->destvalue;
if (!d->ignoreflags)
rover->flags |= FF_EXISTS;
}
else
else // continue fading in
{
//CONS_Printf("Fading in...\n");
rover->alpha += d->speed;
if (!d->ignoreflags)
rover->flags |= FF_EXISTS;
@ -7161,7 +7151,6 @@ void T_Fade(fade_t *d)
// no more ffloors to fade? remove myself
if (affectedffloors == 0)
{
//CONS_Printf("No more FOFs to fade!\n");
// \todo how to erase the fade_t struct?
P_RemoveThinker(&d->thinker);
}