mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-12-26 03:30:46 +00:00
git-svn-id: https://svn.eduke32.com/eduke32@1172 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1aed7f53f8
commit
b2274e1968
3 changed files with 79 additions and 7 deletions
|
@ -1104,6 +1104,8 @@ static int defsparser(scriptfile *script)
|
||||||
ltilenume = tilex;
|
ltilenume = tilex;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
smoothduration = 0.1f;
|
||||||
|
|
||||||
if (lastmodelid < 0)
|
if (lastmodelid < 0)
|
||||||
{
|
{
|
||||||
initprintf("Warning: Ignoring frame definition.\n");
|
initprintf("Warning: Ignoring frame definition.\n");
|
||||||
|
|
|
@ -911,6 +911,12 @@ void updateanimation(md2model *m, spritetype *tspr)
|
||||||
int fps;
|
int fps;
|
||||||
char lpal = (tspr->owner >= MAXSPRITES) ? tspr->pal : sprite[tspr->owner].pal;
|
char lpal = (tspr->owner >= MAXSPRITES) ? tspr->pal : sprite[tspr->owner].pal;
|
||||||
|
|
||||||
|
if (m->numframes < 2)
|
||||||
|
{
|
||||||
|
m->interpol = 0;
|
||||||
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
m->cframe = m->nframe = tile2model[Ptile2tile(tspr->picnum,lpal)].framenum;
|
m->cframe = m->nframe = tile2model[Ptile2tile(tspr->picnum,lpal)].framenum;
|
||||||
|
|
||||||
for (anim = m->animations;
|
for (anim = m->animations;
|
||||||
|
|
|
@ -2329,15 +2329,22 @@ void P_DisplayWeapon(int snum)
|
||||||
if ((*kb) > 6)
|
if ((*kb) > 6)
|
||||||
looking_arc += ((*kb)<<3);
|
looking_arc += ((*kb)<<3);
|
||||||
else if ((*kb) < 4)
|
else if ((*kb) < 4)
|
||||||
|
{
|
||||||
|
guniqhudid = cw<<2;
|
||||||
G_DrawWeaponTile(weapon_xoffset+142-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+142-(p->look_ang>>1),
|
||||||
looking_arc+234-gun_pos,HANDHOLDINGLASER+3,gs,o,pal);
|
looking_arc+234-gun_pos,HANDHOLDINGLASER+3,gs,o,pal);
|
||||||
|
}
|
||||||
|
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+130-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+130-(p->look_ang>>1),
|
||||||
looking_arc+249-gun_pos,
|
looking_arc+249-gun_pos,
|
||||||
HANDHOLDINGLASER+((*kb)>>2),gs,o,pal);
|
HANDHOLDINGLASER+((*kb)>>2),gs,o,pal);
|
||||||
|
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+152-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+152-(p->look_ang>>1),
|
||||||
looking_arc+249-gun_pos,
|
looking_arc+249-gun_pos,
|
||||||
HANDHOLDINGLASER+((*kb)>>2),gs,o|4,pal);
|
HANDHOLDINGLASER+((*kb)>>2),gs,o|4,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2389,14 +2396,17 @@ void P_DisplayWeapon(int snum)
|
||||||
{
|
{
|
||||||
case 1:
|
case 1:
|
||||||
case 2:
|
case 2:
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+168-(p->look_ang>>1),looking_arc+201-gun_pos,
|
G_DrawWeaponTile(weapon_xoffset+168-(p->look_ang>>1),looking_arc+201-gun_pos,
|
||||||
SHOTGUN+2,-128,o,pal);
|
SHOTGUN+2,-128,o,pal);
|
||||||
case 0:
|
case 0:
|
||||||
case 6:
|
case 6:
|
||||||
case 7:
|
case 7:
|
||||||
case 8:
|
case 8:
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+146-(p->look_ang>>1),looking_arc+202-gun_pos,
|
G_DrawWeaponTile(weapon_xoffset+146-(p->look_ang>>1),looking_arc+202-gun_pos,
|
||||||
SHOTGUN,gs,o,pal);
|
SHOTGUN,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
case 3:
|
case 3:
|
||||||
case 4:
|
case 4:
|
||||||
|
@ -2410,46 +2420,57 @@ void P_DisplayWeapon(int snum)
|
||||||
gun_pos -= 40;
|
gun_pos -= 40;
|
||||||
weapon_xoffset += 20;
|
weapon_xoffset += 20;
|
||||||
|
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+178-(p->look_ang>>1),looking_arc+194-gun_pos,
|
G_DrawWeaponTile(weapon_xoffset+178-(p->look_ang>>1),looking_arc+194-gun_pos,
|
||||||
SHOTGUN+1+((*(kb)-1)>>1),-128,o,pal);
|
SHOTGUN+1+((*(kb)-1)>>1),-128,o,pal);
|
||||||
}
|
}
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+158-(p->look_ang>>1),looking_arc+220-gun_pos,
|
G_DrawWeaponTile(weapon_xoffset+158-(p->look_ang>>1),looking_arc+220-gun_pos,
|
||||||
SHOTGUN+3,gs,o,pal);
|
SHOTGUN+3,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
case 13:
|
case 13:
|
||||||
case 14:
|
case 14:
|
||||||
case 15:
|
case 15:
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(32+weapon_xoffset+166-(p->look_ang>>1),looking_arc+210-gun_pos,
|
G_DrawWeaponTile(32+weapon_xoffset+166-(p->look_ang>>1),looking_arc+210-gun_pos,
|
||||||
SHOTGUN+4,gs,o,pal);
|
SHOTGUN+4,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
case 16:
|
case 16:
|
||||||
case 17:
|
case 17:
|
||||||
case 18:
|
case 18:
|
||||||
case 19:
|
case 19:
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(64+weapon_xoffset+170-(p->look_ang>>1),looking_arc+196-gun_pos,
|
G_DrawWeaponTile(64+weapon_xoffset+170-(p->look_ang>>1),looking_arc+196-gun_pos,
|
||||||
SHOTGUN+5,gs,o,pal);
|
SHOTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
case 20:
|
case 20:
|
||||||
case 21:
|
case 21:
|
||||||
case 22:
|
case 22:
|
||||||
case 23:
|
case 23:
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(64+weapon_xoffset+176-(p->look_ang>>1),looking_arc+196-gun_pos,
|
G_DrawWeaponTile(64+weapon_xoffset+176-(p->look_ang>>1),looking_arc+196-gun_pos,
|
||||||
SHOTGUN+6,gs,o,pal);
|
SHOTGUN+6,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
case 24:
|
case 24:
|
||||||
case 25:
|
case 25:
|
||||||
case 26:
|
case 26:
|
||||||
case 27:
|
case 27:
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(64+weapon_xoffset+170-(p->look_ang>>1),looking_arc+196-gun_pos,
|
G_DrawWeaponTile(64+weapon_xoffset+170-(p->look_ang>>1),looking_arc+196-gun_pos,
|
||||||
SHOTGUN+5,gs,o,pal);
|
SHOTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
case 28:
|
case 28:
|
||||||
case 29:
|
case 29:
|
||||||
case 30:
|
case 30:
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(32+weapon_xoffset+156-(p->look_ang>>1),looking_arc+206-gun_pos,
|
G_DrawWeaponTile(32+weapon_xoffset+156-(p->look_ang>>1),looking_arc+206-gun_pos,
|
||||||
SHOTGUN+4,gs,o,pal);
|
SHOTGUN+4,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2527,36 +2548,54 @@ void P_DisplayWeapon(int snum)
|
||||||
if ((*kb) == *aplWeaponFireDelay[PISTOL_WEAPON])
|
if ((*kb) == *aplWeaponFireDelay[PISTOL_WEAPON])
|
||||||
l -= 3;
|
l -= 3;
|
||||||
|
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile((l-(p->look_ang>>1)),(looking_arc+244-gun_pos),FIRSTGUN+kb_frames[*kb>2?0:*kb],gs,2,pal);
|
G_DrawWeaponTile((l-(p->look_ang>>1)),(looking_arc+244-gun_pos),FIRSTGUN+kb_frames[*kb>2?0:*kb],gs,2,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
||||||
if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-17)
|
if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-17)
|
||||||
|
{
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(194-(p->look_ang>>1),looking_arc+230-gun_pos,FIRSTGUN+4,gs,o,pal);
|
G_DrawWeaponTile(194-(p->look_ang>>1),looking_arc+230-gun_pos,FIRSTGUN+4,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
|
}
|
||||||
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-12)
|
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-12)
|
||||||
{
|
{
|
||||||
G_DrawWeaponTile(244-((*kb)<<3)-(p->look_ang>>1),looking_arc+130-gun_pos+((*kb)<<4),FIRSTGUN+6,gs,o,pal);
|
G_DrawWeaponTile(244-((*kb)<<3)-(p->look_ang>>1),looking_arc+130-gun_pos+((*kb)<<4),FIRSTGUN+6,gs,o,pal);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+220-gun_pos,FIRSTGUN+5,gs,o,pal);
|
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+220-gun_pos,FIRSTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-7)
|
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-7)
|
||||||
{
|
{
|
||||||
G_DrawWeaponTile(124+((*kb)<<1)-(p->look_ang>>1),looking_arc+430-gun_pos-((*kb)<<3),FIRSTGUN+6,gs,o,pal);
|
G_DrawWeaponTile(124+((*kb)<<1)-(p->look_ang>>1),looking_arc+430-gun_pos-((*kb)<<3),FIRSTGUN+6,gs,o,pal);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+220-gun_pos,FIRSTGUN+5,gs,o,pal);
|
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+220-gun_pos,FIRSTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-4)
|
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-4)
|
||||||
{
|
{
|
||||||
G_DrawWeaponTile(184-(p->look_ang>>1),looking_arc+235-gun_pos,FIRSTGUN+8,gs,o,pal);
|
G_DrawWeaponTile(184-(p->look_ang>>1),looking_arc+235-gun_pos,FIRSTGUN+8,gs,o,pal);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+210-gun_pos,FIRSTGUN+5,gs,o,pal);
|
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+210-gun_pos,FIRSTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-2)
|
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON]-2)
|
||||||
{
|
{
|
||||||
G_DrawWeaponTile(164-(p->look_ang>>1),looking_arc+245-gun_pos,FIRSTGUN+8,gs,o,pal);
|
G_DrawWeaponTile(164-(p->look_ang>>1),looking_arc+245-gun_pos,FIRSTGUN+8,gs,o,pal);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+220-gun_pos,FIRSTGUN+5,gs,o,pal);
|
G_DrawWeaponTile(224-(p->look_ang>>1),looking_arc+220-gun_pos,FIRSTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON])
|
else if ((*kb) < *aplWeaponReload[PISTOL_WEAPON])
|
||||||
|
{
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(194-(p->look_ang>>1),looking_arc+235-gun_pos,FIRSTGUN+5,gs,o,pal);
|
G_DrawWeaponTile(194-(p->look_ang>>1),looking_arc+235-gun_pos,FIRSTGUN+5,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2640,19 +2679,28 @@ void P_DisplayWeapon(int snum)
|
||||||
|
|
||||||
if (p->hbomb_hold_delay)
|
if (p->hbomb_hold_delay)
|
||||||
{
|
{
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile((cycloidy[*kb]>>1)+weapon_xoffset+268-(p->look_ang>>1),cycloidy[*kb]+looking_arc+238-gun_pos,DEVISTATOR+i,-32,o,pal);
|
G_DrawWeaponTile((cycloidy[*kb]>>1)+weapon_xoffset+268-(p->look_ang>>1),cycloidy[*kb]+looking_arc+238-gun_pos,DEVISTATOR+i,-32,o,pal);
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+30-(p->look_ang>>1),looking_arc+240-gun_pos,DEVISTATOR,gs,o|4,pal);
|
G_DrawWeaponTile(weapon_xoffset+30-(p->look_ang>>1),looking_arc+240-gun_pos,DEVISTATOR,gs,o|4,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(-(cycloidy[*kb]>>1)+weapon_xoffset+30-(p->look_ang>>1),cycloidy[*kb]+looking_arc+240-gun_pos,DEVISTATOR+i,-32,o|4,pal);
|
G_DrawWeaponTile(-(cycloidy[*kb]>>1)+weapon_xoffset+30-(p->look_ang>>1),cycloidy[*kb]+looking_arc+240-gun_pos,DEVISTATOR+i,-32,o|4,pal);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+268-(p->look_ang>>1),looking_arc+238-gun_pos,DEVISTATOR,gs,o,pal);
|
G_DrawWeaponTile(weapon_xoffset+268-(p->look_ang>>1),looking_arc+238-gun_pos,DEVISTATOR,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+268-(p->look_ang>>1),looking_arc+238-gun_pos,DEVISTATOR,gs,o,pal);
|
G_DrawWeaponTile(weapon_xoffset+268-(p->look_ang>>1),looking_arc+238-gun_pos,DEVISTATOR,gs,o,pal);
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+30-(p->look_ang>>1),looking_arc+240-gun_pos,DEVISTATOR,gs,o|4,pal);
|
G_DrawWeaponTile(weapon_xoffset+30-(p->look_ang>>1),looking_arc+240-gun_pos,DEVISTATOR,gs,o|4,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
@ -2668,7 +2716,6 @@ void P_DisplayWeapon(int snum)
|
||||||
else if (p->cursectnum >= 0)
|
else if (p->cursectnum >= 0)
|
||||||
pal = sector[p->cursectnum].floorpal;
|
pal = sector[p->cursectnum].floorpal;
|
||||||
else pal = 0;
|
else pal = 0;
|
||||||
|
|
||||||
if ((*kb) < (aplWeaponTotalTime[p->curr_weapon][snum]+1) && (*kb) > 0)
|
if ((*kb) < (aplWeaponTotalTime[p->curr_weapon][snum]+1) && (*kb) > 0)
|
||||||
{
|
{
|
||||||
static char cat_frames[] = { 0,0,1,1,2,2 };
|
static char cat_frames[] = { 0,0,1,1,2,2 };
|
||||||
|
@ -2679,10 +2726,18 @@ void P_DisplayWeapon(int snum)
|
||||||
looking_arc += rand()&3;
|
looking_arc += rand()&3;
|
||||||
}
|
}
|
||||||
gun_pos -= 16;
|
gun_pos -= 16;
|
||||||
|
guniqhudid = 0;
|
||||||
G_DrawWeaponTile(weapon_xoffset+210-(p->look_ang>>1),looking_arc+261-gun_pos,FREEZE+2,-32,o,pal);
|
G_DrawWeaponTile(weapon_xoffset+210-(p->look_ang>>1),looking_arc+261-gun_pos,FREEZE+2,-32,o,pal);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+210-(p->look_ang>>1),looking_arc+235-gun_pos,FREEZE+3+cat_frames[*kb%6],-32,o,pal);
|
G_DrawWeaponTile(weapon_xoffset+210-(p->look_ang>>1),looking_arc+235-gun_pos,FREEZE+3+cat_frames[*kb%6],-32,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
|
guniqhudid = cw;
|
||||||
|
G_DrawWeaponTile(weapon_xoffset+210-(p->look_ang>>1),looking_arc+261-gun_pos,FREEZE,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else G_DrawWeaponTile(weapon_xoffset+210-(p->look_ang>>1),looking_arc+261-gun_pos,FREEZE,gs,o,pal);
|
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
||||||
|
@ -2708,22 +2763,28 @@ void P_DisplayWeapon(int snum)
|
||||||
gun_pos += (rand()&3);
|
gun_pos += (rand()&3);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER+3+((*kb)&3),-32,
|
looking_arc+240-gun_pos,SHRINKER+3+((*kb)&3),-32,
|
||||||
o,2);
|
o,2);
|
||||||
|
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER-1,gs,o,pal);
|
looking_arc+240-gun_pos,SHRINKER-1,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER+2,
|
looking_arc+240-gun_pos,SHRINKER+2,
|
||||||
16-(sintable[p->random_club_frame&2047]>>10),
|
16-(sintable[p->random_club_frame&2047]>>10),
|
||||||
o,2);
|
o,2);
|
||||||
|
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER-2,gs,o,pal);
|
looking_arc+240-gun_pos,SHRINKER-2,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -2749,24 +2810,27 @@ void P_DisplayWeapon(int snum)
|
||||||
weapon_xoffset += rand()&3;
|
weapon_xoffset += rand()&3;
|
||||||
gun_pos += (rand()&3);
|
gun_pos += (rand()&3);
|
||||||
}
|
}
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER+3+((*kb)&3),-32,
|
looking_arc+240-gun_pos,SHRINKER+3+((*kb)&3),-32,
|
||||||
o,0);
|
o,0);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER+1,gs,o,pal);
|
looking_arc+240-gun_pos,SHRINKER+1,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
guniqhudid = cw<<1;
|
||||||
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+184-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER+2,
|
looking_arc+240-gun_pos,SHRINKER+2,
|
||||||
16-(sintable[p->random_club_frame&2047]>>10),
|
16-(sintable[p->random_club_frame&2047]>>10),
|
||||||
o,0);
|
o,0);
|
||||||
|
guniqhudid = cw;
|
||||||
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
G_DrawWeaponTile(weapon_xoffset+188-(p->look_ang>>1),
|
||||||
looking_arc+240-gun_pos,SHRINKER,gs,o,pal);
|
looking_arc+240-gun_pos,SHRINKER,gs,o,pal);
|
||||||
|
guniqhudid = 0;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
break;
|
break;
|
||||||
|
|
Loading…
Reference in a new issue