From 4ecee598af219b65159cbf250133c4241cf10b3d Mon Sep 17 00:00:00 2001 From: Christoph Oelckers Date: Tue, 19 May 2020 09:54:52 +0200 Subject: [PATCH] - P_ProcessWeapon transitioned. --- source/games/duke/src/dispatch.cpp | 4 + source/games/duke/src/game.h | 3 +- source/games/duke/src/player_d.cpp | 163 +-- source/games/duke/src/player_r.cpp | 129 ++- source/games/duke/src/zz_game.cpp | 1 + source/games/duke/src/zz_player.cpp | 1606 +-------------------------- 6 files changed, 175 insertions(+), 1731 deletions(-) diff --git a/source/games/duke/src/dispatch.cpp b/source/games/duke/src/dispatch.cpp index b45d3cf7e..c6e4112a0 100644 --- a/source/games/duke/src/dispatch.cpp +++ b/source/games/duke/src/dispatch.cpp @@ -103,6 +103,8 @@ int doincrements_d(struct player_struct* p); int doincrements_r(struct player_struct* p); void checkweapons_d(struct player_struct* p); void checkweapons_r(struct player_struct* p); +void processinput_d(int snum); +void processinput_r(int snum); @@ -151,6 +153,7 @@ void SetDispatcher() selectweapon_d, doincrements_d, checkweapons_d, + processinput_d, }; } else @@ -194,6 +197,7 @@ void SetDispatcher() selectweapon_r, doincrements_r, checkweapons_r, + processinput_r }; } } diff --git a/source/games/duke/src/game.h b/source/games/duke/src/game.h index 6f9773204..d2642a18f 100644 --- a/source/games/duke/src/game.h +++ b/source/games/duke/src/game.h @@ -531,8 +531,7 @@ struct Dispatcher void (*selectweapon)(int snum, int j); int (*doincrements)(struct player_struct* p); void (*checkweapons)(struct player_struct* p); - - + void (*processinput)(int snum); }; diff --git a/source/games/duke/src/player_d.cpp b/source/games/duke/src/player_d.cpp index 431135dc1..0fcaefc30 100644 --- a/source/games/duke/src/player_d.cpp +++ b/source/games/duke/src/player_d.cpp @@ -2498,6 +2498,87 @@ static void operateweapon(int snum, int sb_snum, int psect) } } +//--------------------------------------------------------------------------- +// +// this function exists because gotos suck. :P +// +//--------------------------------------------------------------------------- + +static void processweapon(int snum, int sb_snum, int psect) +{ + auto p = &ps[snum]; + int pi = p->i; + auto s = &sprite[pi]; + int shrunk = (s->yrepeat < 32); + + if (isNamWW2GI() && (sb_snum & SKB_HOLSTER)) // 'Holster Weapon + { + if (isWW2GI()) + { + SetGameVarID(g_iReturnVarID, 0, pi, snum); + SetGameVarID(g_iWeaponVarID, p->curr_weapon, pi, snum); + SetGameVarID(g_iWorksLikeVarID, aplWeaponWorksLike[p->curr_weapon][snum], pi, snum); + OnEvent(EVENT_HOLSTER, pi, snum, -1); + if (GetGameVarID(g_iReturnVarID, pi, snum) == 0) + { + + // now it uses the game definitions... + if (aplWeaponFlags[p->curr_weapon][snum] & WEAPON_FLAG_HOLSTER_CLEARS_CLIP) + { + if (p->ammo_amount[p->curr_weapon] > aplWeaponClip[p->curr_weapon][snum] + && (p->ammo_amount[p->curr_weapon] % aplWeaponClip[p->curr_weapon][snum]) != 0) + { + // throw away the remaining clip + p->ammo_amount[p->curr_weapon] -= + p->ammo_amount[p->curr_weapon] % aplWeaponClip[p->curr_weapon][snum]; + // p->kickback_pic = aplWeaponFireDelay[p->curr_weapon][snum]+1; // animate, but don't shoot... + p->kickback_pic = aplWeaponTotalTime[p->curr_weapon][snum] + 1; // animate, but don't shoot... + sb_snum &= ~SKB_FIRE; // not firing... + } + return; + } + } + } + else if (p->curr_weapon == PISTOL_WEAPON) + { + if (p->ammo_amount[PISTOL_WEAPON] > 20) + { + // throw away the remaining clip + p->ammo_amount[PISTOL_WEAPON] -= p->ammo_amount[PISTOL_WEAPON] % 20; + p->kickback_pic = 3; // animate, but don't shoot... + sb_snum &= ~SKB_FIRE; // not firing... + } + return; + } + } + + + if (isWW2GI() && (aplWeaponFlags[p->curr_weapon][snum] & WEAPON_FLAG_GLOWS)) + p->random_club_frame += 64; // Glowing + + if (!isWW2GI() && (p->curr_weapon == SHRINKER_WEAPON || p->curr_weapon == GROW_WEAPON)) + p->random_club_frame += 64; // Glowing + + if (p->rapid_fire_hold == 1) + { + if (sb_snum & SKB_FIRE) return; + p->rapid_fire_hold = 0; + } + + if (shrunk || p->tipincs || p->access_incs) + sb_snum &= ~SKB_FIRE; + else if (shrunk == 0 && (sb_snum & SKB_FIRE) && p->kickback_pic == 0 && p->fist_incs == 0 && + p->last_weapon == -1 && (p->weapon_pos == 0 || p->holster_weapon == 1)) + { + if (!isWW2GI()) fireweapon(snum); + else fireweapon_ww(snum); + } + else if (p->kickback_pic) + { + if (!isWW2GI()) operateweapon(snum, sb_snum, psect); + else operateweapon_ww(snum, sb_snum, psect); + } +} //--------------------------------------------------------------------------- // // @@ -2670,8 +2751,8 @@ void processinput_d(int snum) fi.doincrements(p); - if (isWW2GI() && aplWeaponWorksLike[p->curr_weapon][snum] == HANDREMOTE_WEAPON) goto SHOOTINCODE; - if (!isWW2GI() && p->curr_weapon == HANDREMOTE_WEAPON) goto SHOOTINCODE; + if (isWW2GI() && aplWeaponWorksLike[p->curr_weapon][snum] == HANDREMOTE_WEAPON) processweapon(snum, sb_snum, psect); + if (!isWW2GI() && p->curr_weapon == HANDREMOTE_WEAPON) processweapon(snum, sb_snum, psect); return; } @@ -3082,80 +3163,12 @@ HORIZONLY: } // HACKS - -SHOOTINCODE: - //g_kb = p->kickback_pic; - //g_currentweapon = p->curr_weapon; - //#define WEAPON2_CLIP 20 - // reload clip - if (isNamWW2GI() && (sb_snum & SKB_HOLSTER)) // 'Holster Weapon - { - if (isWW2GI()) - { - SetGameVarID(g_iReturnVarID, 0, pi, snum); - SetGameVarID(g_iWeaponVarID, p->curr_weapon, pi, snum); - SetGameVarID(g_iWorksLikeVarID, aplWeaponWorksLike[p->curr_weapon][snum], pi, snum); - OnEvent(EVENT_HOLSTER, pi, snum, -1); - if (GetGameVarID(g_iReturnVarID, pi, snum) == 0) - { - - // now it uses the game definitions... - if (aplWeaponFlags[p->curr_weapon][snum] & WEAPON_FLAG_HOLSTER_CLEARS_CLIP) - { - if (p->ammo_amount[p->curr_weapon] > aplWeaponClip[p->curr_weapon][snum] - && (p->ammo_amount[p->curr_weapon] % aplWeaponClip[p->curr_weapon][snum]) != 0) - { - // throw away the remaining clip - p->ammo_amount[p->curr_weapon] -= - p->ammo_amount[p->curr_weapon] % aplWeaponClip[p->curr_weapon][snum]; - // p->kickback_pic = aplWeaponFireDelay[p->curr_weapon][snum]+1; // animate, but don't shoot... - p->kickback_pic = aplWeaponTotalTime[p->curr_weapon][snum] + 1; // animate, but don't shoot... - sb_snum &= ~SKB_FIRE; // not firing... - } - return; - } - } - } - else if (p->curr_weapon == PISTOL_WEAPON) - { - if (p->ammo_amount[PISTOL_WEAPON] > 20) - { - // throw away the remaining clip - p->ammo_amount[PISTOL_WEAPON] -= p->ammo_amount[PISTOL_WEAPON] % 20; - p->kickback_pic = 3; // animate, but don't shoot... - sb_snum &= ~SKB_FIRE; // not firing... - } - return; - } - } - - - if (isWW2GI() && (aplWeaponFlags[p->curr_weapon][snum] & WEAPON_FLAG_GLOWS)) - p->random_club_frame += 64; // Glowing - - if (!isWW2GI() && (p->curr_weapon == SHRINKER_WEAPON || p->curr_weapon == GROW_WEAPON)) - p->random_club_frame += 64; // Glowing - - if (p->rapid_fire_hold == 1) - { - if (sb_snum & SKB_FIRE) return; - p->rapid_fire_hold = 0; - } - - if (shrunk || p->tipincs || p->access_incs) - sb_snum &= ~SKB_FIRE; - else if (shrunk == 0 && (sb_snum & SKB_FIRE) && p->kickback_pic == 0 && p->fist_incs == 0 && - p->last_weapon == -1 && (p->weapon_pos == 0 || p->holster_weapon == 1)) - { - if (!isWW2GI()) fireweapon(snum); - else fireweapon_ww(snum); - } - else if (p->kickback_pic) - { - if (!isWW2GI()) operateweapon(snum, sb_snum, psect); - else operateweapon_ww(snum, sb_snum, psect); - } + processweapon(snum, sb_snum, psect); } +void processweapon_d(int s, int ss, int p) +{ + processweapon(s, ss, p); +} END_DUKE_NS diff --git a/source/games/duke/src/player_r.cpp b/source/games/duke/src/player_r.cpp index 636b6aaa7..20ff75b98 100644 --- a/source/games/duke/src/player_r.cpp +++ b/source/games/duke/src/player_r.cpp @@ -1620,29 +1620,29 @@ static void onMotorcycle(int snum, int &sb_snum) if (!A_CheckSoundPlaying(pi, 189) && !A_CheckSoundPlaying(pi, 187)) A_PlaySound(187, pi); } - if (sb_snum & SK_AIM_UP) + if (sb_snum & SKB_AIM_UP) { var6c = 1; - sb_snum &= ~SK_AIM_UP; + sb_snum &= ~SKB_AIM_UP; } else var6c = 0; - if (sb_snum & SK_AIM_DOWN) + if (sb_snum & SKB_AIM_DOWN) { var70 = 1; var74 = 1; - sb_snum &= ~SK_AIM_DOWN; + sb_snum &= ~SKB_AIM_DOWN; } else { var70 = 0; var74 = 0; } - if (sb_snum & SK_LOOK_LEFT) + if (sb_snum & SKB_LOOK_LEFT) { var78 = 1; var7c = 1; - sb_snum &= ~SK_LOOK_LEFT; + sb_snum &= ~SKB_LOOK_LEFT; } else { @@ -3118,7 +3118,7 @@ static void operateweapon(int snum, int sb_snum, int psect) if (p->kickback_pic == 1) { - p->ammo_amount[SHRINKER_WEAPON]--; + p->ammo_amount[THROWSAW_WEAPON]--; fi.shoot(pi, SHRINKSPARK); checkavailweapon(p); } @@ -3361,6 +3361,67 @@ static void operateweapon(int snum, int sb_snum, int psect) } +//--------------------------------------------------------------------------- +// +// this function exists because gotos suck. :P +// +//--------------------------------------------------------------------------- + +static void processweapon(int snum, int sb_snum, int psect) +{ + auto p = &ps[snum]; + int pi = p->i; + auto s = &sprite[pi]; + int shrunk = (s->yrepeat < 8); + + if (sb_snum & SKB_FIRE) + { + int a = 0; + } + + if (p->detonate_count > 0) + { + if (ud.god) + { + p->detonate_time = 45; + p->detonate_count = 0; + } + else if (p->detonate_time <= 0 && p->kickback_pic < 5) + { + sound(14); + quickkill(p); + } + } + + + if (isRRRA() && (p->curr_weapon == KNEE_WEAPON || p->curr_weapon == SLINGBLADE_WEAPON)) + p->random_club_frame += 64; + + if (p->curr_weapon == THROWSAW_WEAPON || p->curr_weapon == BUZZSAW_WEAPON) + p->random_club_frame += 64; // Glowing + + if (p->curr_weapon == TRIPBOMB_WEAPON || p->curr_weapon == BOWLING_WEAPON) + p->random_club_frame += 64; + + if (p->rapid_fire_hold == 1) + { + if (sb_snum & SKB_FIRE) return; + p->rapid_fire_hold = 0; + } + + if (shrunk || p->tipincs || p->access_incs) + sb_snum &= ~SKB_FIRE; + else if (shrunk == 0 && (sb_snum & SKB_FIRE) && p->kickback_pic == 0 && p->fist_incs == 0 && + p->last_weapon == -1 && (p->weapon_pos == 0 || p->holster_weapon == 1)) + { + fireweapon(snum); + } + else if (p->kickback_pic) + { + operateweapon(snum, sb_snum, psect); + } +} + //--------------------------------------------------------------------------- // // @@ -3375,7 +3436,6 @@ void processinput_r(int snum) short psect, psectlotag, tempsect, pi; struct player_struct* p; spritetype* s; - short unk1, unk2; p = &ps[snum]; pi = p->i; @@ -3632,8 +3692,7 @@ void processinput_r(int snum) fi.doincrements(p); - if (p->curr_weapon == HANDREMOTE_WEAPON) goto SHOOTINCODE; - + if (p->curr_weapon == HANDREMOTE_WEAPON) processweapon(snum, sb_snum, psect); return; } @@ -4200,53 +4259,13 @@ HORIZONLY: else p->weapon_pos--; } - // HACKS + processweapon(snum, sb_snum, psect); -SHOOTINCODE: +} - if (p->at57e > 0) - { - if (ud.god) - { - p->at57c = 45; - p->at57e = 0; - } - else if (p->at57c <= 0 && p->kickback_pic < 5) - { - sound(14); - quickkill(p); - } - } - -#ifdef RRRA - - if (p->curr_weapon == KNEE_WEAPON || p->curr_weapon == SLINGBLADE_WEAPON) - p->random_club_frame += 64; -#endif - - if (p->curr_weapon == SHRINKER_WEAPON || p->curr_weapon == GROW_WEAPON) - p->random_club_frame += 64; // Glowing - - if (p->curr_weapon == TRIPBOMB_WEAPON || p->curr_weapon == BOWLING_WEAPON) - p->random_club_frame += 64; - - if (p->rapid_fire_hold == 1) - { - if (sb_snum & SKB_FIRE) return; - p->rapid_fire_hold = 0; - } - - if (shrunk || p->tipincs || p->access_incs) - sb_snum &= ~SKB_FIRE; - else if (shrunk == 0 && (sb_snum & SKB_FIRE) && p->kickback_pic == 0 && p->fist_incs == 0 && - p->last_weapon == -1 && (p->weapon_pos == 0 || p->holster_weapon == 1)) - { - fireweapon(snum); - } - else if (p->kickback_pic) - { - operateweapon(snum, sb_snum, psect); - } +void processweapon_r(int s, int ss, int p) +{ + processweapon(s, ss, p); } END_DUKE_NS diff --git a/source/games/duke/src/zz_game.cpp b/source/games/duke/src/zz_game.cpp index b4666a70c..4c37607d0 100644 --- a/source/games/duke/src/zz_game.cpp +++ b/source/games/duke/src/zz_game.cpp @@ -4364,6 +4364,7 @@ int G_DoMoveThings(void) if (ud.pause_on == 0) { P_ProcessInput(i); + //fi.processinput(i); fi.checksectors(i); } } diff --git a/source/games/duke/src/zz_player.cpp b/source/games/duke/src/zz_player.cpp index d7f573606..d341b6a32 100644 --- a/source/games/duke/src/zz_player.cpp +++ b/source/games/duke/src/zz_player.cpp @@ -2706,89 +2706,6 @@ int16_t WeaponPickupSprites[MAX_WEAPONS] = { KNEE__STATIC, FIRSTGUNSPRITE__STATI CHAINGUNSPRITE__STATIC, RPGSPRITE__STATIC, HEAVYHBOMB__STATIC, SHRINKERSPRITE__STATIC, DEVISTATORSPRITE__STATIC, TRIPBOMBSPRITE__STATIC, FREEZESPRITE__STATIC, HEAVYHBOMB__STATIC, SHRINKERSPRITE__STATIC }; -// this is used for player deaths -void checkweapons(DukePlayer_t* const pPlayer) -{ - int playerNum = sprite[pPlayer->i].yvel; - int const currentWeapon = WW2GI ? PWEAPON(playerNum, pPlayer->curr_weapon, WorksLike) : pPlayer->curr_weapon; - - if (RRRA && (g_netServer || numplayers > 1)) - { - if (pPlayer->OnMotorcycle) - { - int const newSprite = fi.spawn(pPlayer->i, TILE_EMPTYBIKE); - sprite[newSprite].ang = fix16_to_int(pPlayer->q16ang); - sprite[newSprite].owner = pPlayer->ammo_amount[MOTORCYCLE_WEAPON]; - pPlayer->OnMotorcycle = 0; - pPlayer->gotweapon.Clear(MOTORCYCLE_WEAPON); - pPlayer->q16horiz = F16(100); - pPlayer->moto_do_bump = 0; - pPlayer->MotoSpeed = 0; - pPlayer->TiltStatus = 0; - pPlayer->moto_drink = 0; - pPlayer->VBumpTarget = 0; - pPlayer->VBumpNow = 0; - pPlayer->TurbCount = 0; - } - else if (pPlayer->OnBoat) - { - int const newSprite = fi.spawn(pPlayer->i, TILE_EMPTYBOAT); - sprite[newSprite].ang = fix16_to_int(pPlayer->q16ang); - sprite[newSprite].owner = pPlayer->ammo_amount[BOAT_WEAPON]; - pPlayer->OnBoat = 0; - pPlayer->gotweapon.Clear(BOAT_WEAPON); - pPlayer->q16horiz = F16(100); - pPlayer->moto_do_bump = 0; - pPlayer->MotoSpeed = 0; - pPlayer->TiltStatus = 0; - pPlayer->moto_drink = 0; - pPlayer->VBumpTarget = 0; - pPlayer->VBumpNow = 0; - pPlayer->TurbCount = 0; - } - } - - if (currentWeapon == KNEE_WEAPON || (unsigned)currentWeapon >= MAX_WEAPONS) - return; - - if (krand2() & 1) - fi.spawn(pPlayer->i, WeaponPickupSprites[currentWeapon]); - else - switch (DYNAMICWEAPONMAP(currentWeapon)) - { - case CHICKEN_WEAPON__STATIC: - if (!RRRA) break; - fallthrough__; - case RPG_WEAPON__STATIC: - case HANDBOMB_WEAPON__STATIC: fi.spawn(pPlayer->i, TILE_EXPLOSION2); break; - } - - if (RR) - { - for (bssize_t key = 0; key < 5; key++) - { - if (pPlayer->keys[key] == 1) - { - int const newSprite = fi.spawn(pPlayer->i, TILE_ACCESSCARD); - switch (key) - { - case 1: - sprite[newSprite].lotag = 100; - break; - case 2: - sprite[newSprite].lotag = 101; - break; - case 3: - sprite[newSprite].lotag = 102; - break; - case 4: - sprite[newSprite].lotag = 103; - break; - } - } - } - } -} void P_AddAmmo(DukePlayer_t * const pPlayer, int const weaponNum, int const addAmount) { @@ -3052,1524 +2969,15 @@ void P_FragPlayer(int playerNum) # define PIPEBOMB_CONTROL(playerNum) (Gv_GetVarByLabel("PIPEBOMB_CONTROL", PIPEBOMB_REMOTE, -1, playerNum)) +void processweapon_d(int s, int ss, int p); +void processweapon_r(int s, int ss, int p); + static void P_ProcessWeapon(int playerNum) { - DukePlayer_t *const pPlayer = g_player[playerNum].ps; - uint8_t *const weaponFrame = &pPlayer->kickback_pic; - int const playerShrunk = (sprite[pPlayer->i].yrepeat < (RR ? 8 : 32)); - uint32_t playerBits = g_player[playerNum].input->bits; - int const sectorLotag = sector[pPlayer->cursectnum].lotag; - - if (RR) - { - if (pPlayer->detonate_count > 0) - { - if (ud.god) - { - pPlayer->detonate_time = 45; - pPlayer->detonate_count = 0; - } - else if (pPlayer->detonate_time <= 0 && (*weaponFrame) < 5) - { - S_PlaySound(PIPEBOMB_EXPLODE); - quickkill(pPlayer); - } - } - } -#define WEAPON2_CLIP 20 - if (NAM_WW2GI && TEST_SYNC_KEY(playerBits, SK_HOLSTER)) // 'Holster Weapon - { - if (NAM) - { - if (pPlayer->curr_weapon == PISTOL_WEAPON) - { - if (pPlayer->ammo_amount[PISTOL_WEAPON] > WEAPON2_CLIP) - { - // throw away the remaining clip - pPlayer->ammo_amount[PISTOL_WEAPON] -= pPlayer->ammo_amount[PISTOL_WEAPON] % WEAPON2_CLIP; - (*weaponFrame) = 3; - playerBits &= ~BIT(SK_FIRE); - } - return; - } - } - else - { - P_SetWeaponGamevars(playerNum, pPlayer); - - if (VM_OnEvent(EVENT_HOLSTER, pPlayer->i, playerNum) == 0) - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_HOLSTER_CLEARS_CLIP) - { - int const weap = pPlayer->curr_weapon, clipcnt = PWEAPON(playerNum, weap, Clip); - - if (pPlayer->ammo_amount[weap] > clipcnt && (pPlayer->ammo_amount[weap] % clipcnt) != 0) - { - pPlayer->ammo_amount[weap] -= pPlayer->ammo_amount[weap] % clipcnt; - *weaponFrame = PWEAPON(playerNum, weap, TotalTime)+1; - playerBits &= ~BIT(SK_FIRE); // not firing... - } - - return; - } - } - } - } -#undef WEAPON2_CLIP - if (WW2GI ? PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_GLOWS : - (pPlayer->curr_weapon == SHRINKER_WEAPON || pPlayer->curr_weapon == GROW_WEAPON - || (RR && (pPlayer->curr_weapon == TRIPBOMB_WEAPON || pPlayer->curr_weapon == BOWLING_WEAPON)) - || (RRRA && (pPlayer->curr_weapon == KNEE_WEAPON || pPlayer->curr_weapon == SLINGBLADE_WEAPON)))) - { - pPlayer->random_club_frame += 64; // Glowing - -#ifdef POLYMER - if (pPlayer->kickback_pic == 0 && !RR) - { - spritetype *const pSprite = &sprite[pPlayer->i]; - int const glowXOffset = ((sintable[(pSprite->ang + 512) & 2047]) >> 7); - int const glowYOffset = ((sintable[(pSprite->ang) & 2047]) >> 7); - int const glowRange = 1024 + (sintable[pPlayer->random_club_frame & 2047] >> 3); - int const flashColor = (pPlayer->curr_weapon == GROW_WEAPON) ? 216+(52<<8)+(20<<16) : 176+(252<<8)+(120<<16); - - pSprite->x += glowXOffset; - pSprite->y += glowYOffset; - - G_AddGameLight(0, pPlayer->i, PHEIGHT, max(glowRange, 0), flashColor, PR_LIGHT_PRIO_HIGH_GAME); - - actor[pPlayer->i].lightcount = 2; - - pSprite->x -= glowXOffset; - pSprite->y -= glowYOffset; - } -#endif - } - - if (pPlayer->rapid_fire_hold == 1) - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE)) - return; - pPlayer->rapid_fire_hold = 0; - } - - if (playerShrunk || pPlayer->tipincs || pPlayer->access_incs) - playerBits &= ~BIT(SK_FIRE); - else if (playerShrunk == 0 && (playerBits & (1 << 2)) && (*weaponFrame) == 0 && pPlayer->fist_incs == 0 && - pPlayer->last_weapon == -1 && (pPlayer->weapon_pos == 0 || pPlayer->holster_weapon == 1)) - { - pPlayer->crack_time = 777; - - if (pPlayer->holster_weapon == 1) - { - if (pPlayer->last_pissed_time <= (GAMETICSPERSEC * 218) && pPlayer->weapon_pos == WEAPON_POS_LOWER) - { - pPlayer->holster_weapon = 0; - pPlayer->weapon_pos = WEAPON_POS_RAISE; - P_DoQuote(QUOTE_WEAPON_RAISED, pPlayer); - } - } - else - { - P_SetWeaponGamevars(playerNum, pPlayer); - if (VM_OnEvent(EVENT_FIRE, pPlayer->i, playerNum) == 0) - { - switch (DYNAMICWEAPONMAP(WW2GI ? PWEAPON(playerNum, pPlayer->curr_weapon, WorksLike) : pPlayer->curr_weapon)) - { - case HANDBOMB_WEAPON__STATIC: - pPlayer->hbomb_hold_delay = 0; - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case HANDREMOTE_WEAPON__STATIC: - pPlayer->hbomb_hold_delay = 0; - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - break; - - case PISTOL_WEAPON__STATIC: - if (pPlayer->ammo_amount[PISTOL_WEAPON] > 0) - { - if (!WW2GI) - pPlayer->ammo_amount[PISTOL_WEAPON]--; - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case SHOTGUN_WEAPON__STATIC: - if (pPlayer->ammo_amount[SHOTGUN_WEAPON] > 0 && pPlayer->random_club_frame == 0) - { - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case TRIPBOMB_WEAPON__STATIC: - case BOWLINGBALL_WEAPON__STATIC: - if (RR) - { - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - //pPlayer->ammo_amount[pPlayer->curr_weapon]--; - (*weaponFrame) = 1; - } - break; - } - if (pPlayer->curr_weapon == TILE_BOWLINGBALL) - break; - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - hitdata_t hitData; - - hitscan((const vec3_t *)pPlayer, pPlayer->cursectnum, sintable[(fix16_to_int(pPlayer->q16ang) + 512) & 2047], - sintable[fix16_to_int(pPlayer->q16ang) & 2047], fix16_to_int(F16(100) - pPlayer->q16horiz - pPlayer->q16horizoff) * 32, &hitData, - CLIPMASK1); - - if ((hitData.sect < 0 || hitData.sprite >= 0) || - (hitData.wall >= 0 && sector[hitData.sect].lotag > 2)) - break; - - if (hitData.wall >= 0 && wall[hitData.wall].overpicnum >= 0) - if (wall[hitData.wall].overpicnum == TILE_BIGFORCE) - break; - - int spriteNum = headspritesect[hitData.sect]; - while (spriteNum >= 0) - { - if (sprite[spriteNum].picnum == TILE_TRIPBOMB && klabs(sprite[spriteNum].z - hitData.pos.z) < ZOFFSET4 && - ((sprite[spriteNum].x - hitData.pos.x) * (sprite[spriteNum].x - hitData.pos.x) + - (sprite[spriteNum].y - hitData.pos.y) * (sprite[spriteNum].y - hitData.pos.y)) < (290 * 290)) - break; - spriteNum = nextspritesect[spriteNum]; - } - - // ST_2_UNDERWATER - if (spriteNum == -1 && hitData.wall >= 0 && (wall[hitData.wall].cstat & 16) == 0) - if ((wall[hitData.wall].nextsector >= 0 && sector[wall[hitData.wall].nextsector].lotag <= 2) || - (wall[hitData.wall].nextsector == -1 && sector[hitData.sect].lotag <= 2)) - if (((hitData.pos.x - pPlayer->pos.x) * (hitData.pos.x - pPlayer->pos.x) + - (hitData.pos.y - pPlayer->pos.y) * (hitData.pos.y - pPlayer->pos.y)) < (290 * 290)) - { - pPlayer->pos.z = pPlayer->opos.z; - pPlayer->vel.z = 0; - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - { - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - } - } - break; - - case SHRINKER_WEAPON__STATIC: - if (pPlayer->ammo_amount[SHRINKER_WEAPON] > 0) - { - (*weaponFrame) = 1; - if (!WW2GI) - A_PlaySound(SHRINKER_FIRE, pPlayer->i); - else if (PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case GROW_WEAPON__STATIC: - if (pPlayer->ammo_amount[GROW_WEAPON] > 0) - { - (*weaponFrame) = 1; - if (!WW2GI) - A_PlaySound(RR ? 431 : EXPANDERSHOOT, pPlayer->i); - else if (PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case FREEZE_WEAPON__STATIC: - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - (*weaponFrame) = 1; - if (!RR) - { - if (!WW2GI) - A_PlaySound(CAT_FIRE, pPlayer->i); - else if (PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - } - break; - - case RPG_WEAPON__STATIC: - case CHAINGUN_WEAPON__STATIC: - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case DEVISTATOR_WEAPON__STATIC: - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - (*weaponFrame) = 1; - pPlayer->hbomb_hold_delay = !pPlayer->hbomb_hold_delay; - if (!RR) - { - if (!WW2GI) - A_PlaySound(CAT_FIRE, pPlayer->i); - else if (PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - } - break; - - case KNEE_WEAPON__STATIC: - case SLINGBLADE_WEAPON__STATIC: - if (RRRA) - { - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0 && !pPlayer->quick_kick) - (*weaponFrame) = 1; - break; - } - if (RRRA && pPlayer->curr_weapon == TILE_SLINGBLADE) break; - if (pPlayer->quick_kick == 0) - { - (*weaponFrame) = 1; - if (WW2GI && PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, InitialSound), pPlayer->i); - } - break; - - case CHICKEN_WEAPON__STATIC: - case MOTORCYCLE_WEAPON__STATIC: - case BOAT_WEAPON__STATIC: - if (!RRRA) break; - if (pPlayer->ammo_amount[pPlayer->curr_weapon] > 0) - { - (*weaponFrame) = 1; - } - break; - } - } - } - } - else if (*weaponFrame) - { - int spriteNum; - int flashColor = 0; - - if (RR) - { - switch (DYNAMICWEAPONMAP(pPlayer->curr_weapon)) - { - case HANDBOMB_WEAPON__STATIC: - if (*weaponFrame == 1) - S_PlaySound(401); - - if ((*weaponFrame) == 6 && TEST_SYNC_KEY(playerBits, SK_FIRE)) - pPlayer->rapid_fire_hold = 1; - - if (++(*weaponFrame) > 19) - { - *weaponFrame = 0; - pPlayer->curr_weapon = DYNAMITE_WEAPON; - pPlayer->last_weapon = -1; - pPlayer->weapon_pos = WEAPON_POS_RAISE; - pPlayer->detonate_time = 45; - pPlayer->detonate_count = 1; - S_PlaySound(402); - } - break; - - case HANDREMOTE_WEAPON__STATIC: - (*weaponFrame)++; - - if (pPlayer->detonate_time < 0) - pPlayer->hbomb_on = 0; - - if ((*weaponFrame) == 39) - { - pPlayer->hbomb_on = 0; - pPlayer->noise_radius = 8192; - madenoise(playerNum); - } - if ((*weaponFrame) == 12) - { - pPlayer->ammo_amount[DYNAMITE_WEAPON]--; - if (pPlayer->ammo_amount[CROSSBOW_WEAPON]) - pPlayer->ammo_amount[CROSSBOW_WEAPON]--; - - //if (numplayers < 2 || g_netServer) - { - int pipeBombZvel; - int pipeBombFwdVel; - - if (pPlayer->on_ground && TEST_SYNC_KEY(playerBits, SK_CROUCH)) - { - pipeBombFwdVel = 15; - pipeBombZvel = (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - else - { - pipeBombFwdVel = 140; - pipeBombZvel = -512 - (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - - int pipeSpriteNum = A_InsertSprite(pPlayer->cursectnum, - pPlayer->pos.x+(sintable[(fix16_to_int(pPlayer->q16ang)+512)&2047]>>6), - pPlayer->pos.y+(sintable[fix16_to_int(pPlayer->q16ang)&2047]>>6), - pPlayer->pos.z,TILE_HEAVYHBOMB,-16,9,9, - fix16_to_int(pPlayer->q16ang),(pipeBombFwdVel+(pPlayer->hbomb_hold_delay<<5))*2,pipeBombZvel,pPlayer->i,1); - - if (pipeBombFwdVel == 15) - { - sprite[pipeSpriteNum].yvel = 3; - sprite[pipeSpriteNum].z += ZOFFSET3; - } - - if (hits(pPlayer->i) < 512) - { - sprite[pipeSpriteNum].ang += 1024; - sprite[pipeSpriteNum].zvel /= 3; - sprite[pipeSpriteNum].xvel /= 3; - } - } - - pPlayer->hbomb_on = 1; - } - else if (*weaponFrame < 12 && TEST_SYNC_KEY(playerBits, SK_FIRE)) - pPlayer->hbomb_hold_delay++; - - if (*weaponFrame == 40) - { - (*weaponFrame) = 0; - pPlayer->curr_weapon = HANDBOMB_WEAPON; - pPlayer->last_weapon = -1; - pPlayer->detonate_count = 0; - pPlayer->detonate_time = 45; - if (pPlayer->ammo_amount[HANDBOMB_WEAPON] > 0) - { - P_AddWeapon(pPlayer, HANDBOMB_WEAPON); - pPlayer->weapon_pos = WEAPON_POS_LOWER; - } - else - P_CheckWeapon(pPlayer); - } - break; - - case PISTOL_WEAPON__STATIC: - if ((*weaponFrame) == 1) - { - fi.shoot(pPlayer->i, TILE_SHOTSPARK1); - A_PlaySound(PISTOL_FIRE, pPlayer->i); - pPlayer->noise_radius = 8192; - madenoise(playerNum); - - lastvisinc = (int32_t) totalclock+32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - if (sectorLotag != 857) - { - pPlayer->vel.x -= sintable[(fix16_to_int(pPlayer->q16ang) + 512) & 2047] << 4; - pPlayer->vel.y -= sintable[fix16_to_int(pPlayer->q16ang) & 2047] << 4; - } - } - else if ((*weaponFrame) == 2 && pPlayer->ammo_amount[PISTOL_WEAPON] <= 0) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - - if (++(*weaponFrame) >= 22) - { - if (pPlayer->ammo_amount[PISTOL_WEAPON] <= 0) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - break; - } - else if ((pPlayer->ammo_amount[PISTOL_WEAPON]%6) == 0) - { - switch ((*weaponFrame)) - { - case 24: - A_PlaySound(EJECT_CLIP, pPlayer->i); - break; - case 30: - A_PlaySound(INSERT_CLIP, pPlayer->i); - break; - } - } - else - (*weaponFrame) = 38; - } - - if ((*weaponFrame) == 38) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - break; - - case SHOTGUN_WEAPON__STATIC: - - if (++(*weaponFrame) == 6 && pPlayer->shotgun_state[0] == 0 && pPlayer->ammo_amount[SHOTGUN_WEAPON] > 1 && TEST_SYNC_KEY(playerBits, SK_FIRE)) - pPlayer->shotgun_state[1] = 1; - if ((*weaponFrame) == 4) - { - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - - pPlayer->ammo_amount[SHOTGUN_WEAPON]--; - - A_PlaySound(SHOTGUN_FIRE, pPlayer->i); - - pPlayer->noise_radius = 8192; - madenoise(playerNum); - - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - } - - if ((*weaponFrame) == 7) - { - if (pPlayer->shotgun_state[1]) - { - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - - pPlayer->ammo_amount[SHOTGUN_WEAPON]--; - - A_PlaySound(SHOTGUN_FIRE, pPlayer->i); - if (sectorLotag != 857) - { - pPlayer->vel.x -= sintable[(fix16_to_int(pPlayer->q16ang) + 512) & 2047] << 5; - pPlayer->vel.y -= sintable[fix16_to_int(pPlayer->q16ang) & 2047] << 5; - } - } else if (sectorLotag != 857) - { - pPlayer->vel.x -= sintable[(fix16_to_int(pPlayer->q16ang) + 512) & 2047] << 4; - pPlayer->vel.y -= sintable[fix16_to_int(pPlayer->q16ang) & 2047] << 4; - } - flashColor = 255+(95<<8); - } - - if (pPlayer->shotgun_state[0]) - { - switch (*weaponFrame) - { - case 16: - P_CheckWeapon(pPlayer); - break; - case 17: - A_PlaySound(SHOTGUN_COCK, pPlayer->i); - break; - case 28: - *weaponFrame = 0; - pPlayer->shotgun_state[0] = 0; - pPlayer->shotgun_state[1] = 0; - break; - } - } - else if (pPlayer->shotgun_state[1]) - { - switch (*weaponFrame) - { - case 26: - P_CheckWeapon(pPlayer); - break; - case 27: - A_PlaySound(SHOTGUN_COCK, pPlayer->i); - break; - case 38: - *weaponFrame = 0; - pPlayer->shotgun_state[0] = 0; - pPlayer->shotgun_state[1] = 0; - break; - } - } - else - { - switch (*weaponFrame) - { - case 16: - P_CheckWeapon(pPlayer); - *weaponFrame = 0; - pPlayer->shotgun_state[0] = 1; - pPlayer->shotgun_state[1] = 0; - break; - } - } - break; - - case CHAINGUN_WEAPON__STATIC: - pPlayer->q16horiz += F16(1); - pPlayer->recoil++; - if (++(*weaponFrame) <= 12) - { - if (((*weaponFrame) % 3) == 0) - { - pPlayer->ammo_amount[CHAINGUN_WEAPON]--; - - if (((*weaponFrame) % 3) == 0) - { - spriteNum = fi.spawn(pPlayer->i, TILE_SHELL); - - sprite[spriteNum].ang += 1024; - sprite[spriteNum].ang &= 2047; - sprite[spriteNum].xvel += 32; - sprite[spriteNum].z += (3 << 8); - A_SetSprite(spriteNum, CLIPMASK0); - } - - A_PlaySound(CHAINGUN_FIRE, pPlayer->i); - fi.shoot(pPlayer->i, TILE_CHAINGUN); - pPlayer->noise_radius = 8192; - madenoise(playerNum); - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - if (sectorLotag != 857) - { - pPlayer->vel.x -= sintable[(fix16_to_int(pPlayer->q16ang) + 512) & 2047] << 4; - pPlayer->vel.y -= sintable[fix16_to_int(pPlayer->q16ang) & 2047] << 4; - } - P_CheckWeapon(pPlayer); - - if (!TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - (*weaponFrame) = 0; - break; - } - } - } - else if ((*weaponFrame) > 10) - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - (*weaponFrame) = 1; - } - else - { - (*weaponFrame) = 0; - } - } - - break; - - case GROW_WEAPON__STATIC: - if ((*weaponFrame) > 3) - { - (*weaponFrame) = 0; - if (screenpeek == playerNum) - { - pus = 1; - } - - fi.shoot(pPlayer->i, TILE_GROWSPARK); - - pPlayer->noise_radius = 1024; - madenoise(playerNum); - P_CheckWeapon(pPlayer); - } - else - { - (*weaponFrame)++; - } - break; - - case SHRINKER_WEAPON__STATIC: - if ((*weaponFrame) == 1) - { - pPlayer->ammo_amount[SHRINKER_WEAPON]--; - - fi.shoot(pPlayer->i, TILE_SHRINKSPARK); - P_CheckWeapon(pPlayer); - } - if (++(*weaponFrame) > 20) - (*weaponFrame) = 0; - break; - - case DEVISTATOR_WEAPON__STATIC: - (*weaponFrame)++; - if ((*weaponFrame) == 2 || (*weaponFrame) == 4) - { - pPlayer->visibility = 0; - flashColor = 255 + (95 << 8); - lastvisinc = (int32_t) totalclock + 32; - A_PlaySound(CHAINGUN_FIRE, pPlayer->i); - fi.shoot(pPlayer->i, TILE_SHOTSPARK1); - pPlayer->noise_radius = 16384; - madenoise(playerNum); - pPlayer->ammo_amount[DEVISTATOR_WEAPON]--; - P_CheckWeapon(pPlayer); - } - if ((*weaponFrame) == 2) - { - pPlayer->q16ang += F16(16); - } - else if ((*weaponFrame) == 4) - { - pPlayer->q16ang -= F16(16); - } - if ((*weaponFrame) > 4) - (*weaponFrame) = 1; - if (!TEST_SYNC_KEY(playerBits, SK_FIRE)) - (*weaponFrame) = 0; - break; - - case MOTORCYCLE_WEAPON__STATIC: - if (!RRRA) break; - (*weaponFrame)++; - if ((*weaponFrame) == 2 || (*weaponFrame) == 4) - { - pPlayer->visibility = 0; - flashColor = 255 + (95 << 8); - lastvisinc = (int32_t) totalclock + 32; - A_PlaySound(CHAINGUN_FIRE, pPlayer->i); - fi.shoot(pPlayer->i, TILE_CHAINGUN); - pPlayer->noise_radius = 16384; - madenoise(playerNum); - pPlayer->ammo_amount[MOTORCYCLE_WEAPON]--; - if (pPlayer->ammo_amount[MOTORCYCLE_WEAPON] <= 0) - *weaponFrame = 0; - else - P_CheckWeapon(pPlayer); - } - if ((*weaponFrame) == 2) - { - pPlayer->q16ang += F16(4); - } - else if ((*weaponFrame) == 4) - { - pPlayer->q16ang -= F16(4); - } - if ((*weaponFrame) > 4) - (*weaponFrame) = 1; - if (!TEST_SYNC_KEY(playerBits, SK_FIRE)) - (*weaponFrame) = 0; - break; - - case BOAT_WEAPON__STATIC: - if (!RRRA) break; - if (*weaponFrame == 3) - { - pPlayer->MotoSpeed -= 20; - pPlayer->ammo_amount[BOAT_WEAPON]--; - fi.shoot(pPlayer->i, TILE_RRTILE1790); - } - (*weaponFrame)++; - if ((*weaponFrame) > 20) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - if (pPlayer->ammo_amount[BOAT_WEAPON] <= 0) - (*weaponFrame) = 0; - else - P_CheckWeapon(pPlayer); - break; - - case FREEZE_WEAPON__STATIC: - (*weaponFrame)++; - if ((*weaponFrame) >= 7 && (*weaponFrame) <= 11) - fi.shoot(pPlayer->i, TILE_FIRELASER); - - if ((*weaponFrame) == 5) - { - A_PlaySound(CAT_FIRE, pPlayer->i); - pPlayer->noise_radius = 2048; - madenoise(playerNum); - } - else if ((*weaponFrame) == 9) - { - pPlayer->ammo_amount[FREEZE_WEAPON]--; - pPlayer->visibility = 0; - flashColor = 72 + (88 << 8) + (140 << 16); - lastvisinc = (int32_t) totalclock + 32; - P_CheckWeapon(pPlayer); - } - else if ((*weaponFrame) == 12) - { - pPlayer->vel.x -= sintable[(fix16_to_int(pPlayer->q16ang) + 512) & 2047] << 4; - pPlayer->vel.y -= sintable[fix16_to_int(pPlayer->q16ang) & 2047] << 4; - pPlayer->q16horiz += F16(20); - pPlayer->recoil += 20; - } - if ((*weaponFrame) > 20) - (*weaponFrame) = 0; - break; - - case TRIPBOMB_WEAPON__STATIC: - if ((*weaponFrame) == 3) - { - int Zvel; - int FwdVel; - - if (playerNum == screenpeek) - pus = 1; - pPlayer->ammo_amount[TRIPBOMB_WEAPON]--; - pPlayer->gotweapon.Clear(TRIPBOMB_WEAPON); - if (pPlayer->on_ground && TEST_SYNC_KEY(playerBits, SK_CROUCH) && (!RRRA || !pPlayer->OnMotorcycle)) - { - FwdVel = 15; - Zvel = (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - else - { - FwdVel = 32; - Zvel = -512 - (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - - A_InsertSprite(pPlayer->cursectnum, - pPlayer->pos.x+(sintable[(fix16_to_int(pPlayer->q16ang)+512)&2047]>>6), - pPlayer->pos.y+(sintable[fix16_to_int(pPlayer->q16ang)&2047]>>6), - pPlayer->pos.z,TILE_TRIPBOMBSPRITE,-16,9,9, - fix16_to_int(pPlayer->q16ang),FwdVel*2,Zvel,pPlayer->i,1); - } - (*weaponFrame)++; - if ((*weaponFrame) > 20) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - break; - - case BOWLINGBALL_WEAPON__STATIC: - if ((*weaponFrame) == 30) - { - pPlayer->ammo_amount[BOWLING_WEAPON]--; - A_PlaySound(354, pPlayer->i); - fi.shoot(pPlayer->i, TILE_BOWLINGBALL); - pPlayer->noise_radius = 1024; - madenoise(playerNum); - } - if ((*weaponFrame) < 30) - P_Thrust(pPlayer, 4); - (*weaponFrame)++; - if ((*weaponFrame) > 40) - { - (*weaponFrame) = 0; - pPlayer->gotweapon.Clear(BOWLING_WEAPON); - P_CheckWeapon(pPlayer); - } - break; - - case KNEE_WEAPON__STATIC: - if (++(*weaponFrame) == 3) - A_PlaySound(426, pPlayer->i); - - if ((*weaponFrame) == 12) - { - fi.shoot(pPlayer->i, TILE_KNEE); - pPlayer->noise_radius = 1024; - madenoise(playerNum); - } - else if ((*weaponFrame) == 16) - (*weaponFrame) = 0; - - if (pPlayer->wantweaponfire >= 0) - P_CheckWeapon(pPlayer); - break; - - case SLINGBLADE_WEAPON__STATIC: - if (!RRRA) break; - if (++(*weaponFrame) == 3) - A_PlaySound(252, pPlayer->i); - - if ((*weaponFrame) == 8) - { - fi.shoot(pPlayer->i, TILE_SLINGBLADE); - pPlayer->noise_radius = 1024; - madenoise(playerNum); - } - else if ((*weaponFrame) == 16) - (*weaponFrame) = 0; - - if (pPlayer->wantweaponfire >= 0) - P_CheckWeapon(pPlayer); - break; - - case RPG_WEAPON__STATIC: - if (++(*weaponFrame) == 4) - { - pPlayer->ammo_amount[CROSSBOW_WEAPON]--; - if (pPlayer->ammo_amount[DYNAMITE_WEAPON]) - pPlayer->ammo_amount[DYNAMITE_WEAPON]--; - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - fi.shoot(pPlayer->i, TILE_RPG); - pPlayer->noise_radius = 32768; - madenoise(playerNum); - P_CheckWeapon(pPlayer); - } - else if ((*weaponFrame) == 16) - A_PlaySound(450, pPlayer->i); - else if ((*weaponFrame) == 34) - (*weaponFrame) = 0; - break; - - case CHICKEN_WEAPON__STATIC: - if (!RRRA) break; - if (++(*weaponFrame) == 4) - { - pPlayer->ammo_amount[CHICKEN_WEAPON]--; - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - fi.shoot(pPlayer->i, TILE_RPG2); - pPlayer->noise_radius = 32768; - madenoise(playerNum); - P_CheckWeapon(pPlayer); - } - else if ((*weaponFrame) == 16) - A_PlaySound(450, pPlayer->i); - else if ((*weaponFrame) == 34) - (*weaponFrame) = 0; - break; - } - } - else if (WW2GI) - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, WorksLike) == HANDBOMB_WEAPON) - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, HoldDelay) && ((*weaponFrame) == PWEAPON(playerNum, pPlayer->curr_weapon, FireDelay)) && TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - pPlayer->rapid_fire_hold = 1; - return; - } - - if (++(*weaponFrame) == PWEAPON(playerNum, pPlayer->curr_weapon, HoldDelay)) - { - pPlayer->ammo_amount[pPlayer->curr_weapon]--; - - //int pipeBombType; - int pipeBombZvel; - int pipeBombFwdVel; - - if (pPlayer->on_ground && TEST_SYNC_KEY(playerBits, SK_CROUCH)) - { - pipeBombFwdVel = 15; - pipeBombZvel = (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - else - { - pipeBombFwdVel = 140; - pipeBombZvel = -512 - (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - - int pipeSpriteNum = A_InsertSprite(pPlayer->cursectnum, - pPlayer->pos.x+(sintable[(fix16_to_int(pPlayer->q16ang)+512)&2047]>>6), - pPlayer->pos.y+(sintable[fix16_to_int(pPlayer->q16ang)&2047]>>6), - pPlayer->pos.z,PWEAPON(playerNum, pPlayer->curr_weapon, Shoots),-16,9,9, - fix16_to_int(pPlayer->q16ang),(pipeBombFwdVel+(pPlayer->hbomb_hold_delay<<5)),pipeBombZvel,pPlayer->i,1); - - int pipeLifeTime = GetGameVar("GRENADE_LIFETIME", NAM_GRENADE_LIFETIME, -1, playerNum); - int pipeLifeVariance = GetGameVar("GRENADE_LIFETIME_VAR", NAM_GRENADE_LIFETIME_VAR, -1, playerNum); - sprite[pipeSpriteNum].extra = pipeLifeTime - + mulscale14(krand2(), pipeLifeVariance) - - pipeLifeVariance; - - if (pipeBombFwdVel == 15) - { - sprite[pipeSpriteNum].yvel = 3; - sprite[pipeSpriteNum].z += ZOFFSET3; - } - - if (hits(pPlayer->i) < 512) - { - sprite[pipeSpriteNum].ang += 1024; - sprite[pipeSpriteNum].zvel /= 3; - sprite[pipeSpriteNum].xvel /= 3; - } - - pPlayer->hbomb_on = 1; - } - else if ((*weaponFrame) < PWEAPON(playerNum, pPlayer->curr_weapon, HoldDelay) && TEST_SYNC_KEY(playerBits, SK_FIRE)) - pPlayer->hbomb_hold_delay++; - else if ((*weaponFrame) > PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime)) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - } - else if (PWEAPON(playerNum, pPlayer->curr_weapon, WorksLike) == HANDREMOTE_WEAPON) - { - if (++(*weaponFrame) == PWEAPON(playerNum, pPlayer->curr_weapon, FireDelay)) - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_BOMB_TRIGGER) - pPlayer->hbomb_on = 0; - - if (PWEAPON(playerNum, pPlayer->curr_weapon, Shoots) != 0) - { - if (!(PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_NOVISIBLE)) - { - lastvisinc = (int32_t) totalclock+32; - pPlayer->visibility = 0; - } - - P_SetWeaponGamevars(playerNum, pPlayer); - fi.shoot(pPlayer->i, PWEAPON(playerNum, pPlayer->curr_weapon, Shoots)); - } - } - - if ((*weaponFrame) >= PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime)) - { - (*weaponFrame) = 0; - if (pPlayer->ammo_amount[HANDBOMB_WEAPON] > 0) - P_AddWeapon(pPlayer, HANDBOMB_WEAPON); - else P_CheckWeapon(pPlayer); - } - } - else - { - // the basic weapon... - (*weaponFrame)++; - - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_CHECKATRELOAD) - { - if (*weaponFrame == PWEAPON(playerNum, pPlayer->curr_weapon, Reload)) - P_CheckWeapon(pPlayer); - } - - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_STANDSTILL - && *weaponFrame < (PWEAPON(playerNum, pPlayer->curr_weapon, FireDelay)+1)) - { - pPlayer->pos.z = pPlayer->opos.z; - pPlayer->vel.z = 0; - } - - if (*weaponFrame == PWEAPON(playerNum, pPlayer->curr_weapon, Sound2Time)) - if (PWEAPON(playerNum, pPlayer->curr_weapon, Sound2Sound) > 0) - A_PlaySound(PWEAPON(playerNum, pPlayer->curr_weapon, Sound2Sound),pPlayer->i); - - if (*weaponFrame == PWEAPON(playerNum, pPlayer->curr_weapon, SpawnTime)) - P_DoWeaponSpawn(playerNum); - - if (*weaponFrame == PWEAPON(playerNum, pPlayer->curr_weapon, FireDelay)) - P_FireWeapon(playerNum); - - if (*weaponFrame > PWEAPON(playerNum, pPlayer->curr_weapon, FireDelay) - && *weaponFrame < PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime)) - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_AUTOMATIC) - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE) == 0) - *weaponFrame = PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime); - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_FIREEVERYTHIRD) - { - if (((*(weaponFrame))%3) == 0) - { - P_FireWeapon(playerNum); - P_DoWeaponSpawn(playerNum); - } - } - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_FIREEVERYOTHER) - { - P_FireWeapon(playerNum); - P_DoWeaponSpawn(playerNum); - } - } - } - else if (*weaponFrame >= PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime)) - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, Reload) > PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime) && pPlayer->ammo_amount[pPlayer->curr_weapon] > 0 - && PWEAPON(playerNum, pPlayer->curr_weapon, Clip) && pPlayer->ammo_amount[pPlayer->curr_weapon] % PWEAPON(playerNum, pPlayer->curr_weapon, Clip) == 0) - { - int const weaponReloadTime = PWEAPON(playerNum, pPlayer->curr_weapon, Reload) - - PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime); - - if ((*weaponFrame) == (PWEAPON(playerNum, pPlayer->curr_weapon, TotalTime)+1)) - { - A_PlaySound(EJECT_CLIP, pPlayer->i); - } - else if ((*weaponFrame) == - (PWEAPON(playerNum, pPlayer->curr_weapon, Reload) - (weaponReloadTime / 3))) - { - A_PlaySound(INSERT_CLIP, pPlayer->i); - } - if ((*weaponFrame) >= (PWEAPON(playerNum, pPlayer->curr_weapon, Reload))) - { - *weaponFrame = 0; - } - } - else - { - if (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_AUTOMATIC) - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - *weaponFrame = - (PWEAPON(playerNum, pPlayer->curr_weapon, Flags) & WEAPON_RANDOMRESTART) ? 1 + (krand2() & 3) : 1; - } - else *weaponFrame = 0; - } - else *weaponFrame = 0; - } - } - } - } - else - { - switch (DYNAMICWEAPONMAP(pPlayer->curr_weapon)) - { - case HANDBOMB_WEAPON__STATIC: - if ((*weaponFrame) == 6 && TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - pPlayer->rapid_fire_hold = 1; - break; - } - - if (++(*weaponFrame) == 12) - { - pPlayer->ammo_amount[pPlayer->curr_weapon]--; - - //if (numplayers < 2 || g_netServer) - { - int pipeBombZvel; - int pipeBombFwdVel; - - if (pPlayer->on_ground && TEST_SYNC_KEY(playerBits, SK_CROUCH)) - { - pipeBombFwdVel = 15; - pipeBombZvel = (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - else - { - pipeBombFwdVel = 140; - pipeBombZvel = -512 - (fix16_to_int(pPlayer->q16horiz + pPlayer->q16horizoff - F16(100)) * 20); - } - - int pipeSpriteNum = A_InsertSprite(pPlayer->cursectnum, - pPlayer->pos.x+(sintable[(fix16_to_int(pPlayer->q16ang)+512)&2047]>>6), - pPlayer->pos.y+(sintable[fix16_to_int(pPlayer->q16ang)&2047]>>6), - pPlayer->pos.z,TILE_HEAVYHBOMB,-16,9,9, - fix16_to_int(pPlayer->q16ang),(pipeBombFwdVel+(pPlayer->hbomb_hold_delay<<5)),pipeBombZvel,pPlayer->i,1); - - if (NAM) - sprite[pipeSpriteNum].extra = mulscale(krand2(), 30, 14)+90; - - if (pipeBombFwdVel == 15) - { - sprite[pipeSpriteNum].yvel = 3; - sprite[pipeSpriteNum].z += ZOFFSET3; - } - - if (hits(pPlayer->i) < 512) - { - sprite[pipeSpriteNum].ang += 1024; - sprite[pipeSpriteNum].zvel /= 3; - sprite[pipeSpriteNum].xvel /= 3; - } - } - - pPlayer->hbomb_on = 1; - } - else if ((*weaponFrame) < 12 && TEST_SYNC_KEY(playerBits, SK_FIRE)) - pPlayer->hbomb_hold_delay++; - else if ((*weaponFrame) > 19) - { - (*weaponFrame) = 0; - if (NAM) - { - // don't change to remote when in NAM: grenades are timed - P_CheckWeapon(pPlayer); - } - else - { - pPlayer->weapon_pos = WEAPON_POS_RAISE; - pPlayer->curr_weapon = HANDREMOTE_WEAPON; - pPlayer->last_weapon = -1; - } - } - break; - - case HANDREMOTE_WEAPON__STATIC: - if (++(*weaponFrame) == 2) - { - pPlayer->hbomb_on = 0; - } - - if ((*weaponFrame) == 10) - { - (*weaponFrame) = 0; - /// WHAT THE HELL DOES THIS DO....????????????? - int weapon = NAM ? TRIPBOMB_WEAPON : HANDBOMB_WEAPON; - if (pPlayer->ammo_amount[weapon] > 0) - { - P_AddWeapon(pPlayer, weapon); - } - else - { - P_CheckWeapon(pPlayer); - } - } - break; - - case PISTOL_WEAPON__STATIC: - if ((*weaponFrame) == 1) - { - fi.shoot(pPlayer->i, TILE_SHOTSPARK1); - A_PlaySound(PISTOL_FIRE, pPlayer->i); - lastvisinc = (int32_t) totalclock+32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - } - else if ((*weaponFrame) == 2) - { - fi.spawn(pPlayer->i, TILE_SHELL); - } - - if (++(*weaponFrame) >= 5) - { - if (pPlayer->ammo_amount[PISTOL_WEAPON] <= 0 || (pPlayer->ammo_amount[PISTOL_WEAPON]%(NAM ? 20 : 12))) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - else - { - switch ((*weaponFrame)) - { - case 5: - A_PlaySound(EJECT_CLIP, pPlayer->i); - break; - case 8: - A_PlaySound(INSERT_CLIP, pPlayer->i); - break; - } - } - } - - if ((*weaponFrame) == (NAM ? 50 : 27)) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - } - break; - - case SHOTGUN_WEAPON__STATIC: - if (++(*weaponFrame) == 4) - { - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - fi.shoot(pPlayer->i, TILE_SHOTGUN); - - pPlayer->ammo_amount[SHOTGUN_WEAPON]--; - - A_PlaySound(SHOTGUN_FIRE, pPlayer->i); - - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - } - - switch ((*weaponFrame)) - { - case 13: - P_CheckWeapon(pPlayer); - break; - case 15: - A_PlaySound(SHOTGUN_COCK, pPlayer->i); - break; - case 17: - case 20: - pPlayer->kickback_pic++; - break; - case 24: - spriteNum = fi.spawn(pPlayer->i, TILE_SHOTGUNSHELL); - sprite[spriteNum].ang += 1024; - A_SetSprite(spriteNum, CLIPMASK0); - sprite[spriteNum].ang += 1024; - pPlayer->kickback_pic++; - break; - case 31: - (*weaponFrame) = 0; - return; - } - break; - - case CHAINGUN_WEAPON__STATIC: - if (++(*weaponFrame) <= 12) - { - if (((*weaponFrame) % 3) == 0) - { - pPlayer->ammo_amount[CHAINGUN_WEAPON]--; - - if (((*weaponFrame) % 3) == 0) - { - spriteNum = fi.spawn(pPlayer->i, TILE_SHELL); - - sprite[spriteNum].ang += 1024; - sprite[spriteNum].ang &= 2047; - sprite[spriteNum].xvel += 32; - sprite[spriteNum].z += (3 << 8); - A_SetSprite(spriteNum, CLIPMASK0); - } - - A_PlaySound(CHAINGUN_FIRE, pPlayer->i); - fi.shoot(pPlayer->i, TILE_CHAINGUN); - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - P_CheckWeapon(pPlayer); - - if (!TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - (*weaponFrame) = 0; - break; - } - } - } - else if ((*weaponFrame) > 10) - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - (*weaponFrame) = 1; - } - else - { - (*weaponFrame) = 0; - } - } - - break; - - case GROW_WEAPON__STATIC: - if ((!NAM && (*weaponFrame) > 3) || (NAM && ++(*weaponFrame) == 3)) - { - if (NAM) - { - (*weaponFrame)++; - if (pPlayer->ammo_amount[GROW_WEAPON] <= 1) - (*weaponFrame) = 0; - } - else - (*weaponFrame) = 0; - if (screenpeek == playerNum) - { - pus = 1; - } - - pPlayer->ammo_amount[GROW_WEAPON]--; - - fi.shoot(pPlayer->i, TILE_GROWSPARK); - - pPlayer->visibility = 0; - flashColor = 216+(52<<8)+(20<<16); - lastvisinc = (int32_t) totalclock + 32; - P_CheckWeapon(pPlayer); - } - else if (!NAM) - { - (*weaponFrame)++; - } - if (NAM && (*weaponFrame) > 30) - { - // reload now... - (*weaponFrame) = 0; - - pPlayer->visibility = 0; - flashColor = 216+(52<<8)+(20<<16); - lastvisinc = (int32_t) totalclock + 32; - P_CheckWeapon(pPlayer); - P_CheckWeapon(pPlayer); - } - break; - - case SHRINKER_WEAPON__STATIC: - if ((!NAM && (*weaponFrame) > 10) || (NAM && (*weaponFrame) == 10)) - { - if (NAM) - { - // fire now, but wait for reload... - (*weaponFrame)++; - } - else - (*weaponFrame) = 0; - - pPlayer->ammo_amount[SHRINKER_WEAPON]--; - - fi.shoot(pPlayer->i, TILE_SHRINKER); - - if (!NAM) - { - pPlayer->visibility = 0; - flashColor = 176+(252<<8)+(120<<16); - lastvisinc = (int32_t) totalclock + 32; - P_CheckWeapon(pPlayer); - } - } - else if (NAM && (*weaponFrame) > 30) - { - (*weaponFrame) = 0; - pPlayer->visibility = 0; - flashColor = 176+(252<<8)+(120<<16); - lastvisinc = (int32_t) totalclock + 32; - P_CheckWeapon(pPlayer); - } - else - { - (*weaponFrame)++; - } - break; - - case DEVISTATOR_WEAPON__STATIC: - if ((*weaponFrame) > 0) - { - if (++(*weaponFrame) & 1) - { - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - lastvisinc = (int32_t) totalclock + 32; - fi.shoot(pPlayer->i, TILE_RPG); - pPlayer->ammo_amount[DEVISTATOR_WEAPON]--; - P_CheckWeapon(pPlayer); - } - if ((*weaponFrame) > 5) - { - (*weaponFrame) = 0; - } - } - break; - - case FREEZE_WEAPON__STATIC: - if ((*weaponFrame) < 4) - { - if (++(*weaponFrame) == 3) - { - pPlayer->ammo_amount[FREEZE_WEAPON]--; - pPlayer->visibility = 0; - flashColor = 72+(88<<8)+(140<<16); - lastvisinc = (int32_t) totalclock + 32; - fi.shoot(pPlayer->i, TILE_FREEZEBLAST); - P_CheckWeapon(pPlayer); - } - if (sprite[pPlayer->i].xrepeat < 32) - { - (*weaponFrame) = 0; - } - } - else - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - (*weaponFrame) = 1; - A_PlaySound(CAT_FIRE, pPlayer->i); - } - else - { - (*weaponFrame) = 0; - } - } - break; - - case TRIPBOMB_WEAPON__STATIC: - if ((*weaponFrame) < 4) - { - pPlayer->pos.z = pPlayer->opos.z; - pPlayer->vel.z = 0; - if ((*weaponFrame) == 3) - { - fi.shoot(pPlayer->i, TILE_HANDHOLDINGLASER); - } - } - if ((*weaponFrame) == 16) - { - (*weaponFrame) = 0; - P_CheckWeapon(pPlayer); - pPlayer->weapon_pos = WEAPON_POS_LOWER; - } - else - { - (*weaponFrame)++; - } - break; - - case KNEE_WEAPON__STATIC: - if (++(*weaponFrame) == 7) - { - fi.shoot(pPlayer->i, TILE_KNEE); - } - else if ((*weaponFrame) == 14) - { - if (TEST_SYNC_KEY(playerBits, SK_FIRE)) - { - (*weaponFrame) = 1+(krand2()&3); - } - else - { - (*weaponFrame) = 0; - } - } - - if (pPlayer->wantweaponfire >= 0) - { - P_CheckWeapon(pPlayer); - } - break; - - case RPG_WEAPON__STATIC: - if (++(*weaponFrame) == 4) - { - pPlayer->ammo_amount[RPG_WEAPON]--; - lastvisinc = (int32_t) totalclock + 32; - pPlayer->visibility = 0; - flashColor = 255+(95<<8); - fi.shoot(pPlayer->i, TILE_RPG); - P_CheckWeapon(pPlayer); - } - else if ((*weaponFrame) == 20) - { - (*weaponFrame) = 0; - } - break; - } - } -#ifdef POLYMER - if (flashColor) - { - spritetype *s = &sprite[pPlayer->i]; - int32_t x = ((sintable[(s->ang + 512) & 2047]) >> 7), y = ((sintable[(s->ang) & 2047]) >> 7); - - s->x += x; - s->y += y; - G_AddGameLight(0, pPlayer->i, PHEIGHT, 8192, flashColor, PR_LIGHT_PRIO_MAX_GAME); - actor[pPlayer->i].lightcount = 2; - s->x -= x; - s->y -= y; - } -#endif // POLYMER - } + DukePlayer_t* const pPlayer = g_player[playerNum].ps; + uint32_t playerBits = g_player[playerNum].input->bits; + if (RR) processweapon_r(playerNum, playerBits, pPlayer->cursectnum); + else processweapon_d(playerNum, playerBits, pPlayer->cursectnum); } void P_EndLevel(void)