mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 23:12:15 +00:00
- Tidy up how games reapply needed bits at start of tic.
This commit is contained in:
parent
e5bad9af2c
commit
ff652f454c
12 changed files with 16 additions and 32 deletions
|
@ -194,6 +194,7 @@ void getInput(const double scaleAdjust, PlayerAngles* const plrAngles, InputPack
|
|||
|
||||
if (packet)
|
||||
{
|
||||
inputBuffer.actions |= gi->GetNeededInputBits();
|
||||
*packet = inputBuffer;
|
||||
clearLocalInputBuffer();
|
||||
}
|
||||
|
|
|
@ -120,6 +120,7 @@ struct GameInterface
|
|||
virtual void RemoveQAVInterpProps(const int res_id) { }
|
||||
virtual bool WantEscape() { return false; }
|
||||
virtual void StartSoundEngine() = 0;
|
||||
virtual ESyncBits GetNeededInputBits() = 0;
|
||||
virtual void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust)
|
||||
{
|
||||
processMovement(hidInput, inputBuffer, currInput, scaleAdjust);
|
||||
|
|
|
@ -412,18 +412,6 @@ int GameInterface::GetCurrentSkill()
|
|||
|
||||
void GameInterface::Ticker()
|
||||
{
|
||||
for (int i = connecthead; i >= 0; i = connectpoint2[i])
|
||||
{
|
||||
auto& inp = gPlayer[i].input;
|
||||
auto oldactions = inp.actions;
|
||||
|
||||
inp = playercmds[i].ucmd;
|
||||
inp.actions |= oldactions & ~(SB_BUTTON_MASK | SB_RUN | SB_WEAPONMASK_BITS); // should be everything non-button and non-weapon
|
||||
|
||||
int newweap = inp.getNewWeapon();
|
||||
if (newweap > 0 && newweap <= WeaponSel_MaxBlood) gPlayer[i].newWeapon = newweap;
|
||||
}
|
||||
|
||||
BloodSpriteIterator it;
|
||||
while (DBloodActor* act = it.Next()) act->interpolated = false;
|
||||
|
||||
|
@ -442,6 +430,7 @@ void GameInterface::Ticker()
|
|||
|
||||
for (int i = connecthead; i >= 0; i = connectpoint2[i])
|
||||
{
|
||||
gPlayer[i].input = playercmds[i].ucmd;
|
||||
gPlayer[i].Angles.resetCameraAngles();
|
||||
viewBackupView(i);
|
||||
playerProcess(&gPlayer[i]);
|
||||
|
|
|
@ -145,6 +145,7 @@ struct GameInterface : public ::GameInterface
|
|||
void AddQAVInterpProps(const int res_id, const FString& interptype, const bool loopable, const TMap<int, TArray<int>>&& ignoredata) override;
|
||||
void RemoveQAVInterpProps(const int res_id) override;
|
||||
void StartSoundEngine() override;
|
||||
ESyncBits GetNeededInputBits() override { return gPlayer[myconnectindex].input.actions & ~(SB_BUTTON_MASK | SB_RUN | SB_WEAPONMASK_BITS); }
|
||||
|
||||
GameStats getStats() override;
|
||||
};
|
||||
|
|
|
@ -2382,6 +2382,9 @@ void WeaponProcess(PLAYER* pPlayer) {
|
|||
}
|
||||
#endif
|
||||
|
||||
int newweap = pPlayer->input.getNewWeapon();
|
||||
if (newweap > 0 && newweap <= WeaponSel_MaxBlood) pPlayer->newWeapon = newweap;
|
||||
|
||||
if (pPlayer->actor->xspr.health == 0)
|
||||
{
|
||||
pPlayer->qavLoop = 0;
|
||||
|
|
|
@ -39,6 +39,7 @@ struct GameInterface : public ::GameInterface
|
|||
void SerializeGameState(FSerializer& arc) override;
|
||||
void ExitFromMenu() override;
|
||||
void DrawPlayerSprite(const DVector2& origin, bool onteam) override;
|
||||
ESyncBits GetNeededInputBits() override { return ps[myconnectindex].sync.actions & SB_CENTERVIEW; }
|
||||
void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override;
|
||||
void UpdateSounds() override;
|
||||
void Startup() override;
|
||||
|
|
|
@ -46,13 +46,6 @@ BEGIN_DUKE_NS
|
|||
|
||||
void GameInterface::Ticker()
|
||||
{
|
||||
// Make copies so that the originals do not have to be modified.
|
||||
for (int i = 0; i < MAXPLAYERS; i++)
|
||||
{
|
||||
auto oldactions = ps[i].sync.actions;
|
||||
ps[i].sync = playercmds[i].ucmd;
|
||||
if (oldactions & SB_CENTERVIEW) ps[i].sync.actions |= SB_CENTERVIEW;
|
||||
}
|
||||
if (rtsplaying > 0) rtsplaying--;
|
||||
|
||||
if (show_shareware > 0)
|
||||
|
@ -72,6 +65,7 @@ void GameInterface::Ticker()
|
|||
for (int i = connecthead; i >= 0; i = connectpoint2[i])
|
||||
{
|
||||
ps[i].Angles.resetCameraAngles();
|
||||
ps[i].sync = playercmds[i].ucmd;
|
||||
}
|
||||
|
||||
// disable synchronised input if set by game.
|
||||
|
|
|
@ -377,10 +377,8 @@ void GameInterface::Ticker()
|
|||
// disable synchronised input if set by game.
|
||||
resetForcedSyncInput();
|
||||
|
||||
// set new player input, factoring in previous view centering.
|
||||
const auto oldactions = pInput.actions;
|
||||
// set new player input.
|
||||
pInput = playercmds[nLocalPlayer].ucmd;
|
||||
if (oldactions & SB_CENTERVIEW) pInput.actions |= SB_CENTERVIEW;
|
||||
|
||||
const auto inputvect = DVector2(pInput.fvel, pInput.svel).Rotated(pPlayer->pActor->spr.Angles.Yaw) * 0.375;
|
||||
|
||||
|
|
|
@ -239,6 +239,7 @@ struct GameInterface : public ::GameInterface
|
|||
void processSprites(tspriteArray& tsprites, const DVector3& view, DAngle viewang, double interpfrac) override;
|
||||
int GetCurrentSkill() override;
|
||||
void StartSoundEngine() override;
|
||||
ESyncBits GetNeededInputBits() override { return PlayerList[nLocalPlayer].input.actions & SB_CENTERVIEW; }
|
||||
|
||||
::GameStats getStats() override;
|
||||
};
|
||||
|
|
|
@ -715,15 +715,6 @@ int GameInterface::GetCurrentSkill()
|
|||
|
||||
void GameInterface::Ticker(void)
|
||||
{
|
||||
int i;
|
||||
TRAVERSE_CONNECT(i)
|
||||
{
|
||||
auto pp = Player + i;
|
||||
pp->lastinput = pp->input;
|
||||
pp->input = playercmds[i].ucmd;
|
||||
if (pp->lastinput.actions & SB_CENTERVIEW) pp->input.actions |= SB_CENTERVIEW;
|
||||
}
|
||||
|
||||
domovethings();
|
||||
r_NoInterpolate = paused;
|
||||
}
|
||||
|
|
|
@ -1888,6 +1888,7 @@ struct GameInterface : public ::GameInterface
|
|||
void ExitFromMenu() override;
|
||||
int GetCurrentSkill() override;
|
||||
void StartSoundEngine() override;
|
||||
ESyncBits GetNeededInputBits() override { return Player[myconnectindex].input.actions & SB_CENTERVIEW; }
|
||||
void GetInput(HIDInput* const hidInput, InputPacket* const inputBuffer, InputPacket* const currInput, const double scaleAdjust) override
|
||||
{
|
||||
processMovement(hidInput, inputBuffer, currInput, scaleAdjust, 0, !Player[myconnectindex].sop, Player[myconnectindex].sop_control ? 3. / 1.40625 : 1.);
|
||||
|
|
|
@ -6887,7 +6887,7 @@ void PauseMultiPlay(void)
|
|||
|
||||
void domovethings(void)
|
||||
{
|
||||
short i, pnum;
|
||||
short pnum;
|
||||
|
||||
PLAYER* pp;
|
||||
extern int FinishTimer;
|
||||
|
@ -6935,6 +6935,9 @@ void domovethings(void)
|
|||
pp = Player + pnum;
|
||||
GlobPlayerP = pp;
|
||||
|
||||
pp->lastinput = pp->input;
|
||||
pp->input = playercmds[pnum].ucmd;
|
||||
|
||||
if (pp->cookieTime)
|
||||
{
|
||||
pp->cookieTime -= synctics;
|
||||
|
|
Loading…
Reference in a new issue