mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
- use GetActor() wrapper in hud weapon code.
This commit is contained in:
parent
f729f7d7a3
commit
b2497b346c
2 changed files with 57 additions and 62 deletions
|
@ -35,6 +35,7 @@ source as it is released.
|
||||||
#include "ns.h"
|
#include "ns.h"
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "names_d.h"
|
#include "names_d.h"
|
||||||
|
#include "dukeactor.h"
|
||||||
|
|
||||||
BEGIN_DUKE_NS
|
BEGIN_DUKE_NS
|
||||||
|
|
||||||
|
@ -105,7 +106,7 @@ int animatefist(int gs, int snum, double look_anghalf)
|
||||||
fistzoom = 40290;
|
fistzoom = 40290;
|
||||||
fistz = 194 + (calcSinTableValue(((6 + fisti) << 7) & 2047) / 512.);
|
fistz = 194 + (calcSinTableValue(((6 + fisti) << 7) & 2047) / 512.);
|
||||||
|
|
||||||
if (sprite[ps[snum].i].pal == 1)
|
if (ps[snum].GetActor()->s.pal == 1)
|
||||||
fistpal = 1;
|
fistpal = 1;
|
||||||
else
|
else
|
||||||
fistpal = sector[ps[snum].cursectnum].floorpal;
|
fistpal = sector[ps[snum].cursectnum].floorpal;
|
||||||
|
@ -130,13 +131,13 @@ int animateknee(int gs, int snum, double hard_landing, double look_anghalf, doub
|
||||||
short pal;
|
short pal;
|
||||||
double looking_arc;
|
double looking_arc;
|
||||||
|
|
||||||
if (ps[snum].knee_incs > 11 || ps[snum].knee_incs == 0 || sprite[ps[snum].i].extra <= 0) return 0;
|
if (ps[snum].knee_incs > 11 || ps[snum].knee_incs == 0 || ps[snum].GetActor()->s.extra <= 0) return 0;
|
||||||
|
|
||||||
looking_arc = knee_y[ps[snum].knee_incs] + (fabs(look_anghalf) / 4.5);
|
looking_arc = knee_y[ps[snum].knee_incs] + (fabs(look_anghalf) / 4.5);
|
||||||
|
|
||||||
looking_arc -= hard_landing * 8.;
|
looking_arc -= hard_landing * 8.;
|
||||||
|
|
||||||
if (sprite[ps[snum].i].pal == 1)
|
if (ps[snum].GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -162,13 +163,13 @@ int animateknuckles(int gs, int snum, double hard_landing, double look_anghalf,
|
||||||
short pal;
|
short pal;
|
||||||
double looking_arc;
|
double looking_arc;
|
||||||
|
|
||||||
if (isWW2GI() || ps[snum].over_shoulder_on != 0 || ps[snum].knuckle_incs == 0 || sprite[ps[snum].i].extra <= 0) return 0;
|
if (isWW2GI() || ps[snum].over_shoulder_on != 0 || ps[snum].knuckle_incs == 0 || ps[snum].GetActor()->s.extra <= 0) return 0;
|
||||||
|
|
||||||
looking_arc = fabs(look_anghalf) / 4.5;
|
looking_arc = fabs(look_anghalf) / 4.5;
|
||||||
|
|
||||||
looking_arc -= hard_landing * 8.;
|
looking_arc -= hard_landing * 8.;
|
||||||
|
|
||||||
if (sprite[ps[snum].i].pal == 1)
|
if (ps[snum].GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[ps[snum].cursectnum].floorpal;
|
pal = sector[ps[snum].cursectnum].floorpal;
|
||||||
|
@ -189,7 +190,7 @@ void displaymasks_d(int snum, double)
|
||||||
{
|
{
|
||||||
int p;
|
int p;
|
||||||
|
|
||||||
if (sprite[ps[snum].i].pal == 1)
|
if (ps[snum].GetActor()->s.pal == 1)
|
||||||
p = 1;
|
p = 1;
|
||||||
else
|
else
|
||||||
p = sector[ps[snum].cursectnum].floorpal;
|
p = sector[ps[snum].cursectnum].floorpal;
|
||||||
|
@ -218,16 +219,11 @@ static int animatetip(int gs, int snum, double hard_landing, double look_anghalf
|
||||||
looking_arc = fabs(look_anghalf) / 4.5;
|
looking_arc = fabs(look_anghalf) / 4.5;
|
||||||
looking_arc -= hard_landing * 8.;
|
looking_arc -= hard_landing * 8.;
|
||||||
|
|
||||||
if (sprite[ps[snum].i].pal == 1)
|
if (ps[snum].GetActor()->s.pal == 1)
|
||||||
p = 1;
|
p = 1;
|
||||||
else
|
else
|
||||||
p = sector[ps[snum].cursectnum].floorpal;
|
p = sector[ps[snum].cursectnum].floorpal;
|
||||||
|
|
||||||
/* if(ps[snum].access_spritenum >= 0)
|
|
||||||
p = sprite[ps[snum].access_spritenum].pal;
|
|
||||||
else
|
|
||||||
p = wall[ps[snum].access_wallnum].pal;
|
|
||||||
*/
|
|
||||||
hud_drawpal(170 + (getavel(snum) / 16.) - look_anghalf,
|
hud_drawpal(170 + (getavel(snum) / 16.) - look_anghalf,
|
||||||
(tip_y[ps[snum].tipincs] >> 1) + looking_arc + 240 - horiz16th, TIP + ((26 - ps[snum].tipincs) >> 4), gs, 0, p);
|
(tip_y[ps[snum].tipincs] >> 1) + looking_arc + 240 - horiz16th, TIP + ((26 - ps[snum].tipincs) >> 4), gs, 0, p);
|
||||||
|
|
||||||
|
@ -246,7 +242,7 @@ int animateaccess(int gs,int snum,double hard_landing,double look_anghalf,double
|
||||||
double looking_arc;
|
double looking_arc;
|
||||||
char p;
|
char p;
|
||||||
|
|
||||||
if(ps[snum].access_incs == 0 || sprite[ps[snum].i].extra <= 0) return 0;
|
if(ps[snum].access_incs == 0 || ps[snum].GetActor()->s.extra <= 0) return 0;
|
||||||
|
|
||||||
looking_arc = access_y[ps[snum].access_incs] + (fabs(look_anghalf) / 4.5);
|
looking_arc = access_y[ps[snum].access_incs] + (fabs(look_anghalf) / 4.5);
|
||||||
looking_arc -= hard_landing * 8.;
|
looking_arc -= hard_landing * 8.;
|
||||||
|
@ -254,8 +250,6 @@ int animateaccess(int gs,int snum,double hard_landing,double look_anghalf,double
|
||||||
if(ps[snum].access_spritenum >= 0)
|
if(ps[snum].access_spritenum >= 0)
|
||||||
p = sprite[ps[snum].access_spritenum].pal;
|
p = sprite[ps[snum].access_spritenum].pal;
|
||||||
else p = 0;
|
else p = 0;
|
||||||
// else
|
|
||||||
// p = wall[ps[snum].access_wallnum].pal;
|
|
||||||
|
|
||||||
if((ps[snum].access_incs-3) > 0 && (ps[snum].access_incs-3)>>3)
|
if((ps[snum].access_incs-3) > 0 && (ps[snum].access_incs-3)>>3)
|
||||||
hud_drawpal(170+(getavel(snum)/16.)-look_anghalf+(access_y[ps[snum].access_incs]>>2),looking_arc+266-horiz16th,HANDHOLDINGLASER+(ps[snum].access_incs>>3),gs,0,p);
|
hud_drawpal(170+(getavel(snum)/16.)-look_anghalf+(access_y[ps[snum].access_incs]>>2),looking_arc+266-horiz16th,HANDHOLDINGLASER+(ps[snum].access_incs>>3),gs,0,p);
|
||||||
|
@ -294,10 +288,10 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
random_club_frame = p->orandom_club_frame + fmulscale16(p->random_club_frame - p->orandom_club_frame, smoothratio);
|
random_club_frame = p->orandom_club_frame + fmulscale16(p->random_club_frame - p->orandom_club_frame, smoothratio);
|
||||||
hard_landing = p->ohard_landing + fmulscale16(p->hard_landing - p->ohard_landing, smoothratio);
|
hard_landing = p->ohard_landing + fmulscale16(p->hard_landing - p->ohard_landing, smoothratio);
|
||||||
|
|
||||||
gs = sprite[p->i].shade;
|
gs = p->GetActor()->s.shade;
|
||||||
if(gs > 24) gs = 24;
|
if(gs > 24) gs = 24;
|
||||||
|
|
||||||
bool playerVars = p->newowner >= 0 || ud.camerasprite >= 0 || p->over_shoulder_on > 0 || (sprite[p->i].pal != 1 && sprite[p->i].extra <= 0);
|
bool playerVars = p->newowner >= 0 || ud.camerasprite >= 0 || p->over_shoulder_on > 0 || (p->GetActor()->s.pal != 1 && p->GetActor()->s.extra <= 0);
|
||||||
bool playerAnims = animatefist(gs,snum,look_anghalf) || animateknuckles(gs,snum,hard_landing,look_anghalf,horiz16th) ||
|
bool playerAnims = animatefist(gs,snum,look_anghalf) || animateknuckles(gs,snum,hard_landing,look_anghalf,horiz16th) ||
|
||||||
animatetip(gs,snum,hard_landing,look_anghalf,horiz16th) || animateaccess(gs,snum,hard_landing,look_anghalf,horiz16th);
|
animatetip(gs,snum,hard_landing,look_anghalf,horiz16th) || animateaccess(gs,snum,hard_landing,look_anghalf,horiz16th);
|
||||||
|
|
||||||
|
@ -313,7 +307,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
weapon_xoffset = (160)-90;
|
weapon_xoffset = (160)-90;
|
||||||
weapon_xoffset -= calcSinTableValue((weapon_sway / 2.) + 512) / (1024. + 512.);
|
weapon_xoffset -= calcSinTableValue((weapon_sway / 2.) + 512) / (1024. + 512.);
|
||||||
weapon_xoffset -= 58 + p->weapon_ang;
|
weapon_xoffset -= 58 + p->weapon_ang;
|
||||||
if( sprite[p->i].xrepeat < 32 )
|
if( p->GetActor()->s.xrepeat < 32 )
|
||||||
gun_pos -= fabs(calcSinTableValue(weapon_sway * 4.) / 512.);
|
gun_pos -= fabs(calcSinTableValue(weapon_sway * 4.) / 512.);
|
||||||
else gun_pos -= fabs(calcSinTableValue(weapon_sway / 2.) / 1024.);
|
else gun_pos -= fabs(calcSinTableValue(weapon_sway / 2.) / 1024.);
|
||||||
|
|
||||||
|
@ -344,7 +338,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
j = 14-p->quick_kick;
|
j = 14-p->quick_kick;
|
||||||
if (j != 14 || p->last_quick_kick)
|
if (j != 14 || p->last_quick_kick)
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -364,13 +358,13 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sprite[p->i].xrepeat < 40)
|
if (p->GetActor()->s.xrepeat < 40)
|
||||||
{
|
{
|
||||||
static int fistsign;
|
static int fistsign;
|
||||||
//shrunken..
|
//shrunken..
|
||||||
if (p->jetpack_on == 0)
|
if (p->jetpack_on == 0)
|
||||||
{
|
{
|
||||||
i = sprite[p->i].xvel;
|
i = p->GetActor()->s.xvel;
|
||||||
looking_arc += 32 - (i >> 1);
|
looking_arc += 32 - (i >> 1);
|
||||||
fistsign += i >> 1;
|
fistsign += i >> 1;
|
||||||
}
|
}
|
||||||
|
@ -398,7 +392,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
if (*kb > 0)
|
if (*kb > 0)
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -429,7 +423,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
auto displaytripbomb = [&]()
|
auto displaytripbomb = [&]()
|
||||||
{
|
{
|
||||||
|
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -462,7 +456,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
//pin = (isWorldTour() || (duke3d_globalflags & DUKE3D_NO_WIDESCREEN_PINNING)) ? 0 : RS_ALIGN_R;
|
//pin = (isWorldTour() || (duke3d_globalflags & DUKE3D_NO_WIDESCREEN_PINNING)) ? 0 : RS_ALIGN_R;
|
||||||
auto rpgpic = /*isWorldTour() ? RPGGUNWIDE :*/ RPGGUN;
|
auto rpgpic = /*isWorldTour() ? RPGGUNWIDE :*/ RPGGUN;
|
||||||
|
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else pal = sector[p->cursectnum].floorpal;
|
else pal = sector[p->cursectnum].floorpal;
|
||||||
|
|
||||||
|
@ -510,7 +504,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displayshotgun_ww = [&]()
|
auto displayshotgun_ww = [&]()
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -521,7 +515,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
gun_pos -= calcSinTableValue(kickback_pic * 128.) / 4096.;
|
gun_pos -= calcSinTableValue(kickback_pic * 128.) / 4096.;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (*kb > 0 && sprite[p->i].pal != 1)
|
if (*kb > 0 && p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += 1 - (rand() & 3);
|
weapon_xoffset += 1 - (rand() & 3);
|
||||||
}
|
}
|
||||||
|
@ -572,7 +566,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displayshotgun = [&]()
|
auto displayshotgun = [&]()
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -657,7 +651,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displaychaingun_ww = [&]()
|
auto displaychaingun_ww = [&]()
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -665,7 +659,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
if (*kb > 0)
|
if (*kb > 0)
|
||||||
gun_pos -= calcSinTableValue(kickback_pic * 128.) / 4096.;
|
gun_pos -= calcSinTableValue(kickback_pic * 128.) / 4096.;
|
||||||
|
|
||||||
if (*kb > 0 && sprite[p->i].pal != 1) weapon_xoffset += 1 - (rand() & 3);
|
if (*kb > 0 && p->GetActor()->s.pal != 1) weapon_xoffset += 1 - (rand() & 3);
|
||||||
|
|
||||||
if (*kb == 0)
|
if (*kb == 0)
|
||||||
{
|
{
|
||||||
|
@ -770,7 +764,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displaychaingun = [&]
|
auto displaychaingun = [&]
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -778,7 +772,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
if (*kb > 0)
|
if (*kb > 0)
|
||||||
gun_pos -= calcSinTableValue(kickback_pic * 128.) / 4096.;
|
gun_pos -= calcSinTableValue(kickback_pic * 128.) / 4096.;
|
||||||
|
|
||||||
if (*kb > 0 && sprite[p->i].pal != 1) weapon_xoffset += 1 - (rand() & 3);
|
if (*kb > 0 && p->GetActor()->s.pal != 1) weapon_xoffset += 1 - (rand() & 3);
|
||||||
|
|
||||||
hud_drawpal(weapon_xoffset + 168 - look_anghalf, looking_arc + 260 - gun_pos, CHAINGUN, gs, o, pal);
|
hud_drawpal(weapon_xoffset + 168 - look_anghalf, looking_arc + 260 - gun_pos, CHAINGUN, gs, o, pal);
|
||||||
switch(*kb)
|
switch(*kb)
|
||||||
|
@ -790,9 +784,9 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
if (*kb > 4 && *kb < 12)
|
if (*kb > 4 && *kb < 12)
|
||||||
{
|
{
|
||||||
i = 0;
|
i = 0;
|
||||||
if (sprite[p->i].pal != 1) i = rand() & 7;
|
if (p->GetActor()->s.pal != 1) i = rand() & 7;
|
||||||
hud_drawpal(i + weapon_xoffset - 4 + 140 - look_anghalf,i + looking_arc - (kickback_pic / 2.) + 208 - gun_pos, CHAINGUN + 5 + ((*kb - 4) / 5),gs,o,pal);
|
hud_drawpal(i + weapon_xoffset - 4 + 140 - look_anghalf,i + looking_arc - (kickback_pic / 2.) + 208 - gun_pos, CHAINGUN + 5 + ((*kb - 4) / 5),gs,o,pal);
|
||||||
if (sprite[p->i].pal != 1) i = rand() & 7;
|
if (p->GetActor()->s.pal != 1) i = rand() & 7;
|
||||||
hud_drawpal(i + weapon_xoffset - 4 + 184 - look_anghalf,i + looking_arc - (kickback_pic / 2.) + 208 - gun_pos, CHAINGUN + 5 + ((*kb - 4) / 5),gs,o,pal);
|
hud_drawpal(i + weapon_xoffset - 4 + 184 - look_anghalf,i + looking_arc - (kickback_pic / 2.) + 208 - gun_pos, CHAINGUN + 5 + ((*kb - 4) / 5),gs,o,pal);
|
||||||
}
|
}
|
||||||
if (*kb < 8)
|
if (*kb < 8)
|
||||||
|
@ -814,7 +808,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displaypistol = [&]()
|
auto displaypistol = [&]()
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -877,7 +871,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displayhandbomb = [&]()
|
auto displayhandbomb = [&]()
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -937,7 +931,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
auto displayhandremote = [&]()
|
auto displayhandremote = [&]()
|
||||||
{
|
{
|
||||||
signed char remote_frames[] = { 0,1,1,2,1,1,0,0,0,0,0 };
|
signed char remote_frames[] = { 0,1,1,2,1,1,0,0,0,0,0 };
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -958,7 +952,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displaydevastator_ww = [&]
|
auto displaydevastator_ww = [&]
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -1019,7 +1013,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displaydevastator = [&]
|
auto displaydevastator = [&]
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -1059,7 +1053,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
//pin = (isWW2GI() || isWorldTour() || (duke3d_globalflags & DUKE3D_NO_WIDESCREEN_PINNING)) ? 0 : RS_ALIGN_R;
|
//pin = (isWW2GI() || isWorldTour() || (duke3d_globalflags & DUKE3D_NO_WIDESCREEN_PINNING)) ? 0 : RS_ALIGN_R;
|
||||||
auto pic = /*isWorldTour() ? FREEZEWIDE :*/ FREEZE;
|
auto pic = /*isWorldTour() ? FREEZEWIDE :*/ FREEZE;
|
||||||
|
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -1068,7 +1062,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
char cat_frames[] = { 0,0,1,1,2,2 };
|
char cat_frames[] = { 0,0,1,1,2,2 };
|
||||||
|
|
||||||
if (sprite[p->i].pal != 1)
|
if (p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += rand() & 3;
|
weapon_xoffset += rand() & 3;
|
||||||
looking_arc += rand() & 3;
|
looking_arc += rand() & 3;
|
||||||
|
@ -1090,7 +1084,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
weapon_xoffset += 28;
|
weapon_xoffset += 28;
|
||||||
looking_arc += 18;
|
looking_arc += 18;
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -1121,7 +1115,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
// the 'active' display.
|
// the 'active' display.
|
||||||
if (sprite[p->i].pal != 1)
|
if (p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += rand() & 3;
|
weapon_xoffset += rand() & 3;
|
||||||
gun_pos += (rand() & 3);
|
gun_pos += (rand() & 3);
|
||||||
|
@ -1183,7 +1177,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
weapon_xoffset += 28;
|
weapon_xoffset += 28;
|
||||||
looking_arc += 18;
|
looking_arc += 18;
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -1196,7 +1190,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal != 1)
|
if (p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += rand() & 3;
|
weapon_xoffset += rand() & 3;
|
||||||
gun_pos += (rand() & 3);
|
gun_pos += (rand() & 3);
|
||||||
|
@ -1259,7 +1253,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
auto shrinker = /*isWorldTour() ? SHRINKERWIDE :*/ SHRINKER;
|
auto shrinker = /*isWorldTour() ? SHRINKERWIDE :*/ SHRINKER;
|
||||||
weapon_xoffset += 28;
|
weapon_xoffset += 28;
|
||||||
looking_arc += 18;
|
looking_arc += 18;
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -1288,7 +1282,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal != 1)
|
if (p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += rand() & 3;
|
weapon_xoffset += rand() & 3;
|
||||||
gun_pos += (rand() & 3);
|
gun_pos += (rand() & 3);
|
||||||
|
@ -1324,7 +1318,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
|
|
||||||
auto displayflamethrower = [&]()
|
auto displayflamethrower = [&]()
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
@ -1342,7 +1336,7 @@ void displayweapon_d(int snum, double smoothratio)
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
static const uint8_t cat_frames[] = { 0, 0, 1, 1, 2, 2 };
|
static const uint8_t cat_frames[] = { 0, 0, 1, 1, 2, 2 };
|
||||||
if (sprite[p->i].pal != 1)
|
if (p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += krand() & 1;
|
weapon_xoffset += krand() & 1;
|
||||||
looking_arc += krand() & 1;
|
looking_arc += krand() & 1;
|
||||||
|
|
|
@ -29,6 +29,7 @@ Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
||||||
#include "ns.h"
|
#include "ns.h"
|
||||||
#include "global.h"
|
#include "global.h"
|
||||||
#include "names_r.h"
|
#include "names_r.h"
|
||||||
|
#include "dukeactor.h"
|
||||||
|
|
||||||
BEGIN_DUKE_NS
|
BEGIN_DUKE_NS
|
||||||
|
|
||||||
|
@ -68,7 +69,7 @@ void displaymasks_r(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
short p;
|
short p;
|
||||||
|
|
||||||
if (sprite[ps[snum].i].pal == 1)
|
if (ps[snum].GetActor()->s.pal == 1)
|
||||||
p = 1;
|
p = 1;
|
||||||
else
|
else
|
||||||
p = sector[ps[snum].cursectnum].floorpal;
|
p = sector[ps[snum].cursectnum].floorpal;
|
||||||
|
@ -132,10 +133,10 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
if (shadedsector[p->cursectnum] == 1)
|
if (shadedsector[p->cursectnum] == 1)
|
||||||
gs = 16;
|
gs = 16;
|
||||||
else
|
else
|
||||||
gs = sprite[p->i].shade;
|
gs = p->GetActor()->s.shade;
|
||||||
if(gs > 24) gs = 24;
|
if(gs > 24) gs = 24;
|
||||||
|
|
||||||
if(p->newowner >= 0 || ud.camerasprite >= 0 || p->over_shoulder_on > 0 || (sprite[p->i].pal != 1 && sprite[p->i].extra <= 0))
|
if(p->newowner >= 0 || ud.camerasprite >= 0 || p->over_shoulder_on > 0 || (p->GetActor()->s.pal != 1 && p->GetActor()->s.extra <= 0))
|
||||||
return;
|
return;
|
||||||
|
|
||||||
int opos = p->oweapon_pos * p->oweapon_pos;
|
int opos = p->oweapon_pos * p->oweapon_pos;
|
||||||
|
@ -145,7 +146,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
weapon_xoffset = (160)-90;
|
weapon_xoffset = (160)-90;
|
||||||
weapon_xoffset -= calcSinTableValue((weapon_sway / 2.) + 512) / (1024. + 512.);
|
weapon_xoffset -= calcSinTableValue((weapon_sway / 2.) + 512) / (1024. + 512.);
|
||||||
weapon_xoffset -= 58 + p->weapon_ang;
|
weapon_xoffset -= 58 + p->weapon_ang;
|
||||||
if( sprite[p->i].xrepeat < 8 )
|
if( p->GetActor()->s.xrepeat < 8 )
|
||||||
gun_pos -= fabs(calcSinTableValue(weapon_sway * 4.) / 512.);
|
gun_pos -= fabs(calcSinTableValue(weapon_sway * 4.) / 512.);
|
||||||
else gun_pos -= fabs(calcSinTableValue(weapon_sway / 2.) / 1024.);
|
else gun_pos -= fabs(calcSinTableValue(weapon_sway / 2.) / 1024.);
|
||||||
|
|
||||||
|
@ -158,7 +159,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
j = 14-p->quick_kick;
|
j = 14-p->quick_kick;
|
||||||
if(j != 14)
|
if(j != 14)
|
||||||
{
|
{
|
||||||
if(sprite[p->i].pal == 1)
|
if(p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = p->palookup;
|
pal = p->palookup;
|
||||||
|
@ -213,7 +214,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
else
|
else
|
||||||
temp_kb = MOTOHIT;
|
temp_kb = MOTOHIT;
|
||||||
}
|
}
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -280,7 +281,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
temp_kb = BOATHIT;
|
temp_kb = BOATHIT;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -300,12 +301,12 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
if( sprite[p->i].xrepeat < 8 )
|
if( p->GetActor()->s.xrepeat < 8 )
|
||||||
{
|
{
|
||||||
static int fistsign;
|
static int fistsign;
|
||||||
if(p->jetpack_on == 0 )
|
if(p->jetpack_on == 0 )
|
||||||
{
|
{
|
||||||
i = sprite[p->i].xvel;
|
i = p->GetActor()->s.xvel;
|
||||||
looking_arc += 32-(i>>1);
|
looking_arc += 32-(i>>1);
|
||||||
fistsign += i>>1;
|
fistsign += i>>1;
|
||||||
}
|
}
|
||||||
|
@ -324,7 +325,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
int pin = 0;
|
int pin = 0;
|
||||||
|
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -480,7 +481,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
}
|
}
|
||||||
else if ((krand() & 15) == 5)
|
else if ((krand() & 15) == 5)
|
||||||
{
|
{
|
||||||
S_PlayActorSound(327, p->i);
|
S_PlayActorSound(327, p->GetActor());
|
||||||
rdmyospal((weapon_xoffset + 210) - look_anghalf,
|
rdmyospal((weapon_xoffset + 210) - look_anghalf,
|
||||||
looking_arc + 222 - gun_pos, RPGGUN2 + 7, gs, o | pin, pal);
|
looking_arc + 222 - gun_pos, RPGGUN2 + 7, gs, o | pin, pal);
|
||||||
chickenphase = 6;
|
chickenphase = 6;
|
||||||
|
@ -509,7 +510,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
{
|
{
|
||||||
weapon_xoffset -= 8;
|
weapon_xoffset -= 8;
|
||||||
|
|
||||||
if (sprite[p->i].pal == 1)
|
if (p->GetActor()->s.pal == 1)
|
||||||
pal = 1;
|
pal = 1;
|
||||||
else
|
else
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
|
@ -624,7 +625,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
if (*kb > 0)
|
if (*kb > 0)
|
||||||
gun_pos -= calcSinTableValue((*kb) << 7) / 4096.;
|
gun_pos -= calcSinTableValue((*kb) << 7) / 4096.;
|
||||||
|
|
||||||
if (*kb > 0 && sprite[p->i].pal != 1) weapon_xoffset += 1 - (rand() & 3);
|
if (*kb > 0 && p->GetActor()->s.pal != 1) weapon_xoffset += 1 - (rand() & 3);
|
||||||
|
|
||||||
switch (*kb)
|
switch (*kb)
|
||||||
{
|
{
|
||||||
|
@ -837,7 +838,7 @@ void displayweapon_r(int snum, double smoothratio)
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
if (sprite[p->i].pal != 1)
|
if (p->GetActor()->s.pal != 1)
|
||||||
{
|
{
|
||||||
weapon_xoffset += rand() & 3;
|
weapon_xoffset += rand() & 3;
|
||||||
gun_pos += (rand() & 3);
|
gun_pos += (rand() & 3);
|
||||||
|
|
Loading…
Reference in a new issue