- SW: Replace remaining Player + pointer arithmetic with array accesses.

This commit is contained in:
Mitchell Richters 2023-10-02 14:22:46 +11:00
parent 2733c90237
commit 2327e08acb
7 changed files with 10 additions and 10 deletions

View file

@ -1369,7 +1369,7 @@ void drawscreen(SWPlayer* pp, double interpfrac, bool sceneonly)
bool GameInterface::GenerateSavePic()
{
drawscreen(Player + myconnectindex, 65536, true);
drawscreen(&Player[myconnectindex], 65536, true);
return true;
}

View file

@ -720,7 +720,7 @@ void GameInterface::Render()
{
drawtime.Reset();
drawtime.Clock();
drawscreen(Player + screenpeek, paused || !cl_interpolate || cl_capfps ? 1. : I_GetTimeFrac(), false);
drawscreen(&Player[screenpeek], paused || !cl_interpolate || cl_capfps ? 1. : I_GetTimeFrac(), false);
drawtime.Unclock();
}

View file

@ -2109,7 +2109,7 @@ void InitAllPlayerSprites(const DVector3& spawnpos, const DAngle startang)
TRAVERSE_CONNECT(i)
{
InitPlayerSprite(Player + i, spawnpos, startang);
InitPlayerSprite(&Player[i], spawnpos, startang);
}
}

View file

@ -7784,7 +7784,7 @@ void UpdatePanel(double interpfrac)
TRAVERSE_CONNECT(pnum)
{
if (pnum == screenpeek)
pDisplaySprites(Player + pnum, interpfrac);
pDisplaySprites(&Player[pnum], interpfrac);
}
}
@ -7803,7 +7803,7 @@ void PreUpdatePanel(double interpfrac)
TRAVERSE_CONNECT(pnum)
{
if (pnum == screenpeek)
pDisplaySprites(Player + pnum, interpfrac);
pDisplaySprites(&Player[pnum], interpfrac);
}
DrawBeforeView = false;

View file

@ -5467,7 +5467,7 @@ void DoPlayerDeathMessage(SWPlayer* pp, SWPlayer* killer)
}
else
// I am being killed
if (killer == Player + myconnectindex)
if (killer == &Player[myconnectindex])
{
sprintf(ds,"%s",KilledPlayerMessage(pp,killer));
SEND_OK = true;

View file

@ -421,7 +421,7 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, SWPlayer*& w, SWPl
{
int ndx = w ? int(w - Player) : -1;
arc(keyname, ndx);
w = ndx == -1 ? nullptr : Player + ndx;
w = ndx == -1 ? nullptr : &Player[ndx];
return arc;
}
@ -1162,8 +1162,8 @@ void GameInterface::SerializeGameState(FSerializer& arc)
// this is not a new game
ShadowWarrior::NewGame = false;
DoPlayerDivePalette(Player + myconnectindex);
DoPlayerNightVisionPalette(Player + myconnectindex);
DoPlayerDivePalette(&Player[myconnectindex]);
DoPlayerNightVisionPalette(&Player[myconnectindex]);
InitLevelGlobals();
}
}

View file

@ -199,7 +199,7 @@ void InitAmbient(int num, DSWActor* actor)
if (num != -1) // skip message for -1 to allow using it for silencing buggy ambient sound sprites (there is one in SW level 9.)
{
sprintf(ds, "Invalid or out of range ambient sound number %d\n", num);
PutStringInfo(Player + screenpeek, ds);
PutStringInfo(&Player[screenpeek], ds);
}
return;
}