mirror of
https://github.com/ZDoom/Raze.git
synced 2024-11-15 00:42:08 +00:00
- Duke: Replace player_struct
loogiey[64]
with loogie[64].Y
calls.
This commit is contained in:
parent
e196a4daa3
commit
0bc26e78ba
8 changed files with 8 additions and 9 deletions
|
@ -1528,7 +1528,7 @@ static bool weaponhitsprite(DDukeActor* proj, DDukeActor *targ, bool fireball)
|
|||
for (int x = 0; x < j; x++)
|
||||
{
|
||||
ps[p].loogie[x].X = krand() % 320;
|
||||
ps[p].loogiey[x] = krand() % 200;
|
||||
ps[p].loogie[x].Y = krand() % 200;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -1173,7 +1173,7 @@ static bool weaponhitsprite(DDukeActor *proj, DDukeActor *targ, const vec3_t &ol
|
|||
for (int x = 0; x < j; x++)
|
||||
{
|
||||
ps[p].loogie[x].X = krand() % 320;
|
||||
ps[p].loogiey[x] = krand() % 200;
|
||||
ps[p].loogie[x].Y = krand() % 200;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
@ -311,8 +311,8 @@ void DoPlayer(bool bSet, int lVar1, int lLabelID, int lVar2, DDukeActor* sActor,
|
|||
break;
|
||||
|
||||
case PLAYER_LOOGIEY:
|
||||
if (bSet) ps[iPlayer].loogiey[lParm2] = lValue;
|
||||
else SetGameVarID(lVar2, ps[iPlayer].loogiey[lParm2], sActor, sPlayer);
|
||||
if (bSet) ps[iPlayer].loogie[lParm2].Y = lValue;
|
||||
else SetGameVarID(lVar2, ps[iPlayer].loogie[lParm2].Y, sActor, sPlayer);
|
||||
break;
|
||||
|
||||
case PLAYER_NUMLOOGS:
|
||||
|
|
|
@ -76,7 +76,7 @@ void displayloogie(player_struct* p)
|
|||
z = 4096 + ((p->loogcnt + i) << 9);
|
||||
x = -getavel(p->GetPlayerNum()) + bsinf((p->loogcnt + i) << 6, -10);
|
||||
|
||||
hud_drawsprite((p->loogie[i].X + x), (200 + p->loogiey[i] - y), z - (i << 8), 256 - a, LOOGIE, 0, 0, 2);
|
||||
hud_drawsprite((p->loogie[i].X + x), (200 + p->loogie[i].Y - y), z - (i << 8), 256 - a, LOOGIE, 0, 0, 2);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1075,7 +1075,7 @@ DEFINE_FIELD_X(DukePlayer, player_struct, psectlotag)
|
|||
//DEFINE_FIELD_X(DukePlayer, player_struct, exitx)
|
||||
//DEFINE_FIELD_X(DukePlayer, player_struct, exity)
|
||||
//DEFINE_FIELD_X(DukePlayer, player_struct, loogiex)
|
||||
DEFINE_FIELD_X(DukePlayer, player_struct, loogiey)
|
||||
//DEFINE_FIELD_X(DukePlayer, player_struct, loogiey)
|
||||
DEFINE_FIELD_X(DukePlayer, player_struct, numloogs)
|
||||
DEFINE_FIELD_X(DukePlayer, player_struct, loogcnt)
|
||||
DEFINE_FIELD_X(DukePlayer, player_struct, invdisptime)
|
||||
|
|
|
@ -121,7 +121,6 @@ FSerializer& Serialize(FSerializer& arc, const char* keyname, player_struct& w,
|
|||
("numloogs", w.numloogs)
|
||||
("loogcnt", w.loogcnt)
|
||||
.Array("loogie", w.loogie, w.numloogs)
|
||||
.Array("loogiey", w.loogiey, w.numloogs)
|
||||
("bobposx", w.bobposx)
|
||||
("bobposy", w.bobposy)
|
||||
("pyoff", w.pyoff)
|
||||
|
|
|
@ -201,7 +201,7 @@ struct player_struct
|
|||
short psectlotag;
|
||||
|
||||
// From here on it is unaltered from JFDuke with the exception of a few fields that are no longer needed and were removed.
|
||||
int loogiey[64], numloogs, loogcnt;
|
||||
int numloogs, loogcnt;
|
||||
int invdisptime;
|
||||
int bobposx, bobposy, pyoff, opyoff;
|
||||
int last_pissed_time, truefz, truecz;
|
||||
|
|
|
@ -150,7 +150,7 @@ struct DukePlayer
|
|||
native int16 psectlotag;
|
||||
|
||||
// From here on it is unaltered from JFDuke with the exception of a few fields that are no longer needed and were removed.
|
||||
native int loogiey[64], numloogs, loogcnt;
|
||||
native int numloogs, loogcnt;
|
||||
native int invdisptime;
|
||||
native int bobposx, bobposy, pyoff, opyoff;
|
||||
native int last_pissed_time, truefz, truecz;
|
||||
|
|
Loading…
Reference in a new issue