- Simplify PlayerHorizon::settarget() by adding a dedicated angle setter that resets interpolated value as well.

This commit is contained in:
Mitchell Richters 2022-05-30 21:14:34 +10:00
parent 70d2a8dc78
commit 0416834d9d
2 changed files with 6 additions and 4 deletions

View file

@ -49,6 +49,9 @@ struct PlayerHorizon
fixedhoriz sum() { return horiz + horizoff; }
fixedhoriz interpolatedsum(double const smoothratio) { return interpolatedhorizon(osum(), sum(), smoothratio); }
// Setter to force horizon and its interpolation companion.
void setvalue(fixedhoriz const value) { ohoriz = horiz = q16horiz(clamp(value.asq16(), gi->playerHorizMin(), gi->playerHorizMax())); }
// Ticrate playsim adjustment helpers.
void resetadjustment() { adjustment = 0; }
bool targetset() { return target.asq16(); }
@ -89,11 +92,11 @@ struct PlayerHorizon
}
}
void settarget(fixedhoriz value, bool const backup = false)
void settarget(fixedhoriz value)
{
value = q16horiz(clamp(value.asq16(), gi->playerHorizMin(), gi->playerHorizMax()));
if (!SyncInput() && !backup)
if (!SyncInput())
{
target = value;
if (!targetset()) target = q16horiz(1);
@ -101,7 +104,6 @@ struct PlayerHorizon
else
{
horiz = value;
if (backup) ohoriz = horiz;
}
}

View file

@ -938,7 +938,7 @@ void AIPlayer::Tick(RunListEvent* ev)
PlayerList[nPlayer].angle.settarget(buildang(ang), true);
pPlayerActor->spr.ang = ang;
PlayerList[nPlayer].horizon.settarget(buildhoriz(0), true);
PlayerList[nPlayer].horizon.setvalue(buildhoriz(0));
lPlayerXVel = 0;
lPlayerYVel = 0;