mirror of
https://github.com/ZDoom/Raze.git
synced 2025-04-04 06:55:48 +00:00
- Exhumed: Split out player current item code.
This commit is contained in:
parent
f7433234b2
commit
764ec032c1
1 changed files with 15 additions and 7 deletions
|
@ -891,6 +891,18 @@ static void ClearSpaceBar(int nPlayer)
|
|||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
static void doPlayerCurrentItem(Player* const pPlayer)
|
||||
{
|
||||
UseItem(pPlayer->nPlayer, pPlayer->nCurrentItem);
|
||||
pPlayer->nCurrentItem = -1;
|
||||
}
|
||||
|
||||
//---------------------------------------------------------------------------
|
||||
//
|
||||
//
|
||||
//
|
||||
//---------------------------------------------------------------------------
|
||||
|
||||
static void doPlayerTorch(Player* const pPlayer)
|
||||
{
|
||||
pPlayer->nTorch--;
|
||||
|
@ -1008,16 +1020,12 @@ void AIPlayer::Tick(RunListEvent* ev)
|
|||
int nActionB = pPlayer->nAction;
|
||||
|
||||
pPlayerActor->vel.XY() = pPlayer->vel;
|
||||
|
||||
if (pPlayer->nCurrentItem > -1)
|
||||
{
|
||||
UseItem(nPlayer, pPlayer->nCurrentItem);
|
||||
pPlayer->nCurrentItem = -1;
|
||||
}
|
||||
|
||||
pPlayerActor->spr.picnum = seq_GetSeqPicnum(pPlayer->nSeq, PlayerSeq[nHeightTemplate[nAction]].a, pPlayer->nSeqSize);
|
||||
pDopple->spr.picnum = pPlayerActor->spr.picnum;
|
||||
|
||||
if (pPlayer->nCurrentItem > -1)
|
||||
doPlayerCurrentItem(pPlayer);
|
||||
|
||||
if (pPlayer->nTorch > 0)
|
||||
doPlayerTorch(pPlayer);
|
||||
|
||||
|
|
Loading…
Reference in a new issue