2020-05-14 10:14:03 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1996, 2003 - 3D Realms Entertainment
|
|
|
|
Copyright (C) 2000, 2003 - Matt Saettler (EDuke Enhancements)
|
2020-06-28 07:03:31 +00:00
|
|
|
Copyright (C) 2020 - Christoph Oelckers
|
2020-05-14 10:14:03 +00:00
|
|
|
|
|
|
|
This file is part of Enhanced Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
|
|
|
|
Duke Nukem 3D is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
along with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Original Source: 1996 - Todd Replogle
|
|
|
|
Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
|
|
|
|
|
|
|
EDuke enhancements integrated: 04/13/2003 - Matt Saettler
|
|
|
|
|
|
|
|
Note: EDuke source was in transition. Changes are in-progress in the
|
|
|
|
source as it is released.
|
|
|
|
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
|
|
|
|
#include "ns.h"
|
|
|
|
#include "global.h"
|
2020-07-07 15:56:20 +00:00
|
|
|
#include "mapinfo.h"
|
2020-10-17 08:30:11 +00:00
|
|
|
#include "dukeactor.h"
|
2021-05-15 12:27:32 +00:00
|
|
|
#include "vm.h"
|
2020-05-14 10:14:03 +00:00
|
|
|
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
|
2020-07-15 16:10:31 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// callback for playercolor CVAR
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-08-23 18:48:48 +00:00
|
|
|
int playercolor2lookup(int color)
|
2020-07-15 16:10:31 +00:00
|
|
|
{
|
|
|
|
static int8_t player_pals[] = { 0, 9, 10, 11, 12, 13, 14, 15, 16, 21, 23, };
|
|
|
|
if (color >= 0 && color < 10) return player_pals[color];
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
void PlayerColorChanged(void)
|
|
|
|
{
|
|
|
|
if (ud.recstat != 0)
|
|
|
|
return;
|
|
|
|
|
2020-10-23 17:33:54 +00:00
|
|
|
auto& pp = ps[myconnectindex];
|
2020-07-15 16:10:31 +00:00
|
|
|
if (ud.multimode > 1)
|
|
|
|
{
|
|
|
|
//Net_SendClientInfo();
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-10-23 17:33:54 +00:00
|
|
|
pp.palookup = ud.user_pals[myconnectindex] = playercolor2lookup(playercolor);
|
2020-07-15 16:10:31 +00:00
|
|
|
}
|
2021-12-31 17:47:00 +00:00
|
|
|
if (pp.GetActor()->isPlayer() && pp.GetActor()->spr.pal != 1)
|
2021-12-21 17:19:45 +00:00
|
|
|
pp.GetActor()->spr.pal = ud.user_pals[myconnectindex];
|
2020-07-15 16:10:31 +00:00
|
|
|
}
|
|
|
|
|
2020-05-16 21:55:21 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2020-07-03 14:17:37 +00:00
|
|
|
// why is this such a mess?
|
2020-05-16 21:55:21 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-05 06:16:29 +00:00
|
|
|
int setpal(struct player_struct* p)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2020-07-03 14:17:37 +00:00
|
|
|
int palette;
|
2020-05-16 21:55:21 +00:00
|
|
|
if (p->DrugMode) palette = DRUGPAL;
|
2020-07-03 14:17:37 +00:00
|
|
|
else if (p->heat_on) palette = SLIMEPAL;
|
2021-11-21 07:45:07 +00:00
|
|
|
else if (!p->insector()) palette = BASEPAL; // don't crash if out of range.
|
2022-01-21 13:02:59 +00:00
|
|
|
else if (gs.tileinfo[p->cursector->ceilingpicnum].flags & TFLAG_SLIME) palette = SLIMEPAL;
|
2021-11-21 07:56:39 +00:00
|
|
|
else if (p->cursector->lotag == ST_2_UNDERWATER) palette = WATERPAL;
|
2020-05-16 21:55:21 +00:00
|
|
|
else palette = BASEPAL;
|
2020-11-05 06:16:29 +00:00
|
|
|
return palette;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void quickkill(struct player_struct* p)
|
|
|
|
{
|
|
|
|
SetPlayerPal(p, PalEntry(48, 48, 48, 48));
|
|
|
|
|
2020-10-23 17:50:18 +00:00
|
|
|
auto pa = p->GetActor();
|
2021-12-21 17:19:45 +00:00
|
|
|
pa->spr.extra = 0;
|
|
|
|
pa->spr.cstat |= CSTAT_SPRITE_INVISIBLE;
|
2020-10-23 17:50:18 +00:00
|
|
|
if (ud.god == 0) fi.guts(pa, TILE_JIBS6, 8, myconnectindex);
|
2020-05-16 21:55:21 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-09-20 10:01:05 +00:00
|
|
|
void forceplayerangle(int snum)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2020-09-20 10:01:05 +00:00
|
|
|
player_struct* p = &ps[snum];
|
2020-05-16 21:55:21 +00:00
|
|
|
int n;
|
|
|
|
|
|
|
|
n = 128 - (krand() & 255);
|
|
|
|
|
2022-05-30 10:35:41 +00:00
|
|
|
p->horizon.addadjustment(buildhoriz(64));
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions |= SB_CENTERVIEW;
|
2021-04-11 05:43:11 +00:00
|
|
|
p->angle.rotscrnang = p->angle.look_ang = buildang(n >> 1);
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void tracers(int x1, int y1, int z1, int x2, int y2, int z2, int n)
|
|
|
|
{
|
|
|
|
int i, xv, yv, zv;
|
2021-11-18 18:04:00 +00:00
|
|
|
sectortype* sect = nullptr;
|
2020-05-16 21:55:21 +00:00
|
|
|
|
|
|
|
i = n + 1;
|
|
|
|
xv = (x2 - x1) / i;
|
|
|
|
yv = (y2 - y1) / i;
|
|
|
|
zv = (z2 - z1) / i;
|
|
|
|
|
|
|
|
if ((abs(x1 - x2) + abs(y1 - y2)) < 3084)
|
|
|
|
return;
|
|
|
|
|
|
|
|
for (i = n; i > 0; i--)
|
|
|
|
{
|
|
|
|
x1 += xv;
|
|
|
|
y1 += yv;
|
|
|
|
z1 += zv;
|
|
|
|
updatesector(x1, y1, §);
|
2021-11-18 18:04:00 +00:00
|
|
|
if (sect)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2021-11-18 18:04:00 +00:00
|
|
|
if (sect->lotag == 2)
|
2020-11-02 19:23:48 +00:00
|
|
|
EGS(sect, x1, y1, z1, TILE_WATERBUBBLE, -32, 4 + (krand() & 3), 4 + (krand() & 3), krand() & 2047, 0, 0, ps[0].GetActor(), 5);
|
2020-05-16 21:55:21 +00:00
|
|
|
else
|
2020-11-02 19:23:48 +00:00
|
|
|
EGS(sect, x1, y1, z1, TILE_SMALLSMOKE, -32, 14, 14, 0, 0, 0, ps[0].GetActor(), 5);
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-23 17:33:54 +00:00
|
|
|
int hits(DDukeActor* actor)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
|
|
|
int zoff;
|
2021-12-06 11:24:22 +00:00
|
|
|
HitInfo hit{};
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2021-12-31 17:47:00 +00:00
|
|
|
if (actor->isPlayer()) zoff = isRR() ? PHEIGHT_RR : PHEIGHT_DUKE;
|
2020-05-16 21:55:21 +00:00
|
|
|
else zoff = 0;
|
|
|
|
|
2022-01-09 13:36:37 +00:00
|
|
|
hitscan(actor->spr.pos.withZOffset(-zoff), actor->sector(), { bcos(actor->spr.ang), bsin(actor->spr.ang), 0 }, hit, CLIPMASK1);
|
2021-12-26 10:44:32 +00:00
|
|
|
return (FindDistance2D(hit.hitpos.vec2 - actor->spr.pos.vec2));
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-23 17:33:54 +00:00
|
|
|
int hitasprite(DDukeActor* actor, DDukeActor** hitsp)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2021-11-25 23:08:59 +00:00
|
|
|
int zoff;
|
2021-12-06 11:24:22 +00:00
|
|
|
HitInfo hit{};
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2020-10-23 17:33:54 +00:00
|
|
|
if (badguy(actor))
|
2020-05-16 21:55:21 +00:00
|
|
|
zoff = (42 << 8);
|
2022-01-09 13:36:37 +00:00
|
|
|
else if (actor->spr.picnum == TILE_APLAYER) zoff = isRR() ? PHEIGHT_RR : PHEIGHT_DUKE;
|
2020-05-16 21:55:21 +00:00
|
|
|
else zoff = 0;
|
|
|
|
|
2022-01-09 13:36:37 +00:00
|
|
|
hitscan(actor->spr.pos.withZOffset(-zoff), actor->sector(), { bcos(actor->spr.ang), bsin(actor->spr.ang), 0 }, hit, CLIPMASK1);
|
2021-11-25 23:08:59 +00:00
|
|
|
if (hitsp) *hitsp = hit.actor();
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2021-12-18 14:11:21 +00:00
|
|
|
if (hit.hitWall != nullptr && (hit.hitWall->cstat & CSTAT_WALL_MASKED) && badguy(actor))
|
2020-05-16 21:55:21 +00:00
|
|
|
return((1 << 30));
|
|
|
|
|
2021-12-26 10:44:32 +00:00
|
|
|
return (FindDistance2D(hit.hitpos.vec2 - actor->spr.pos.vec2));
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2021-11-17 23:04:36 +00:00
|
|
|
int hitawall(struct player_struct* p, walltype** hitw)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2021-12-06 11:24:22 +00:00
|
|
|
HitInfo hit{};
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2021-11-25 23:08:59 +00:00
|
|
|
hitscan(p->pos, p->cursector, { p->angle.ang.bcos(), p->angle.ang.bsin(), 0 }, hit, CLIPMASK0);
|
|
|
|
if (hitw) *hitw = hit.hitWall;
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2021-12-26 10:44:32 +00:00
|
|
|
return (FindDistance2D(hit.hitpos.vec2 - p->pos.vec2));
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-01 19:57:02 +00:00
|
|
|
DDukeActor* aim(DDukeActor* actor, int aang)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2021-11-07 11:53:48 +00:00
|
|
|
bool gotshrinker, gotfreezer;
|
2020-11-01 19:57:02 +00:00
|
|
|
int a, k, cans;
|
2021-12-27 14:33:10 +00:00
|
|
|
static const int aimstats[] = { STAT_PLAYER, STAT_DUMMYPLAYER, STAT_ACTOR, STAT_ZOMBIEACTOR };
|
2020-05-16 21:55:21 +00:00
|
|
|
int dx1, dy1, dx2, dy2, dx3, dy3, smax, sdist;
|
|
|
|
int xv, yv;
|
|
|
|
|
2021-12-21 19:22:34 +00:00
|
|
|
a = actor->spr.ang;
|
2020-05-16 21:55:21 +00:00
|
|
|
|
|
|
|
// Autoaim from DukeGDX.
|
2021-12-31 17:47:00 +00:00
|
|
|
if (actor->isPlayer())
|
2020-07-26 07:06:08 +00:00
|
|
|
{
|
2021-12-27 14:33:10 +00:00
|
|
|
auto* plr = &ps[actor->spr.yvel];
|
2021-12-21 19:22:34 +00:00
|
|
|
int autoaim = Autoaim(actor->spr.yvel);
|
2020-11-29 08:00:00 +00:00
|
|
|
if (!autoaim)
|
2020-07-26 07:06:08 +00:00
|
|
|
{
|
2021-12-27 14:33:10 +00:00
|
|
|
// Some fudging to avoid aim randomization when autoaim is off.
|
|
|
|
// This is a reimplementation of how it was solved in RedNukem.
|
|
|
|
if (plr->curr_weapon == PISTOL_WEAPON && !isWW2GI())
|
|
|
|
{
|
|
|
|
int zvel = -plr->horizon.sum().asq16() >> 5;
|
|
|
|
|
|
|
|
HitInfo hit{};
|
|
|
|
hitscan(plr->pos.withZOffset(1024), actor->sector(), { bcos(actor->spr.ang), bsin(actor->spr.ang), zvel }, hit, CLIPMASK1);
|
|
|
|
|
|
|
|
if (hit.actor() != nullptr)
|
|
|
|
{
|
|
|
|
if (isIn(hit.actor()->spr.statnum, { STAT_PLAYER, STAT_DUMMYPLAYER, STAT_ACTOR, STAT_ZOMBIEACTOR }))
|
|
|
|
return hit.actor();
|
|
|
|
}
|
|
|
|
}
|
2020-07-26 07:06:08 +00:00
|
|
|
// The chickens in RRRA are homing and must always autoaim.
|
2021-12-27 14:33:10 +00:00
|
|
|
if (!isRRRA() || plr->curr_weapon != CHICKEN_WEAPON)
|
2020-11-01 19:57:02 +00:00
|
|
|
return nullptr;
|
2020-07-26 07:06:08 +00:00
|
|
|
}
|
2020-11-29 08:00:00 +00:00
|
|
|
else if (autoaim == 2)
|
2020-07-26 07:06:08 +00:00
|
|
|
{
|
|
|
|
int weap;
|
|
|
|
if (!isWW2GI())
|
|
|
|
{
|
2021-12-27 14:33:10 +00:00
|
|
|
weap = plr->curr_weapon;
|
2020-07-26 07:06:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-27 14:33:10 +00:00
|
|
|
weap = aplWeaponWorksLike(plr->curr_weapon, actor->spr.yvel);
|
2020-07-26 07:06:08 +00:00
|
|
|
}
|
|
|
|
if (weap > CHAINGUN_WEAPON || weap == KNEE_WEAPON)
|
|
|
|
{
|
2020-11-01 19:57:02 +00:00
|
|
|
return nullptr;
|
2020-07-26 07:06:08 +00:00
|
|
|
}
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2020-07-26 07:06:08 +00:00
|
|
|
}
|
|
|
|
}
|
2020-11-01 19:57:02 +00:00
|
|
|
DDukeActor* aimed = nullptr;
|
2021-12-31 17:47:00 +00:00
|
|
|
// if(actor->isPlayer() && ps[actor->spr.yvel].aim_mode) return -1;
|
2020-05-16 21:55:21 +00:00
|
|
|
|
|
|
|
if (isRR())
|
|
|
|
{
|
2021-11-07 11:53:48 +00:00
|
|
|
gotshrinker = false;
|
|
|
|
gotfreezer = false;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
else if (isWW2GI())
|
|
|
|
{
|
2021-12-31 17:47:00 +00:00
|
|
|
gotshrinker = actor->isPlayer() && aplWeaponWorksLike(ps[actor->spr.yvel].curr_weapon, actor->spr.yvel) == SHRINKER_WEAPON;
|
|
|
|
gotfreezer = actor->isPlayer() && aplWeaponWorksLike(ps[actor->spr.yvel].curr_weapon, actor->spr.yvel) == FREEZE_WEAPON;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-31 17:47:00 +00:00
|
|
|
gotshrinker = actor->isPlayer() && ps[actor->spr.yvel].curr_weapon == SHRINKER_WEAPON;
|
|
|
|
gotfreezer = actor->isPlayer() && ps[actor->spr.yvel].curr_weapon == FREEZE_WEAPON;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
smax = 0x7fffffff;
|
|
|
|
|
2020-11-14 21:32:00 +00:00
|
|
|
dx1 = bcos(a - aang);
|
|
|
|
dy1 = bsin(a - aang);
|
|
|
|
dx2 = bcos(a + aang);
|
|
|
|
dy2 = bsin(a + aang);
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2020-11-14 21:32:00 +00:00
|
|
|
dx3 = bcos(a);
|
|
|
|
dy3 = bsin(a);
|
2020-05-16 21:55:21 +00:00
|
|
|
|
|
|
|
for (k = 0; k < 4; k++)
|
|
|
|
{
|
2020-11-01 19:57:02 +00:00
|
|
|
if (aimed)
|
2020-05-16 21:55:21 +00:00
|
|
|
break;
|
2020-10-14 20:18:10 +00:00
|
|
|
|
2020-10-23 17:50:18 +00:00
|
|
|
DukeStatIterator it(aimstats[k]);
|
|
|
|
while (auto act = it.Next())
|
2020-10-14 20:18:10 +00:00
|
|
|
{
|
2021-12-21 19:22:34 +00:00
|
|
|
if (act->spr.xrepeat > 0 && act->spr.extra >= 0 && (act->spr.cstat & (CSTAT_SPRITE_BLOCK_ALL | CSTAT_SPRITE_INVISIBLE)) == CSTAT_SPRITE_BLOCK_ALL)
|
|
|
|
if (badguy(act) || k < 2)
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2021-12-31 17:47:00 +00:00
|
|
|
if (badguy(act) || act->isPlayer())
|
2020-05-16 21:55:21 +00:00
|
|
|
{
|
2021-12-31 17:47:00 +00:00
|
|
|
if (act->isPlayer() &&
|
2020-05-16 21:55:21 +00:00
|
|
|
(isRR() && ud.ffire == 0) &&
|
|
|
|
ud.coop == 1 &&
|
2021-12-31 17:47:00 +00:00
|
|
|
actor->isPlayer() &&
|
2021-12-21 19:22:34 +00:00
|
|
|
actor != act)
|
2020-05-16 21:55:21 +00:00
|
|
|
continue;
|
|
|
|
|
2022-01-17 23:54:10 +00:00
|
|
|
if (gotshrinker && act->spr.xrepeat < 30 && !actorflag(act, SFLAG_SHRINKAUTOAIM)) continue;
|
2021-12-21 19:22:34 +00:00
|
|
|
if (gotfreezer && act->spr.pal == 1) continue;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
2021-12-22 10:57:10 +00:00
|
|
|
xv = (act->spr.pos.X - actor->spr.pos.X);
|
2021-12-22 11:17:17 +00:00
|
|
|
yv = (act->spr.pos.Y - actor->spr.pos.Y);
|
2020-05-16 21:55:21 +00:00
|
|
|
|
|
|
|
if ((dy1 * xv) <= (dx1 * yv))
|
|
|
|
if ((dy2 * xv) >= (dx2 * yv))
|
|
|
|
{
|
2021-01-04 11:57:26 +00:00
|
|
|
sdist = MulScale(dx3, xv, 14) + MulScale(dy3, yv, 14);
|
2020-05-16 21:55:21 +00:00
|
|
|
if (sdist > 512 && sdist < smax)
|
|
|
|
{
|
2021-12-31 17:47:00 +00:00
|
|
|
if (actor->isPlayer())
|
2021-12-22 11:29:00 +00:00
|
|
|
a = (abs(Scale(act->spr.pos.Z - actor->spr.pos.Z, 10, sdist) - ps[actor->spr.yvel].horizon.sum().asbuild()) < 100);
|
2020-05-16 21:55:21 +00:00
|
|
|
else a = 1;
|
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
cans = cansee(act->spr.pos.X, act->spr.pos.Y, act->spr.pos.Z - (32 << 8) + gs.actorinfo[act->spr.picnum].aimoffset, act->sector(), actor->spr.pos.X, actor->spr.pos.Y, actor->spr.pos.Z - (32 << 8), actor->sector());
|
2020-05-16 21:55:21 +00:00
|
|
|
|
|
|
|
if (a && cans)
|
|
|
|
{
|
|
|
|
smax = sdist;
|
2020-11-01 19:57:02 +00:00
|
|
|
aimed = act;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-10-14 20:18:10 +00:00
|
|
|
}
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
2020-11-01 19:57:02 +00:00
|
|
|
return aimed;
|
2020-05-16 21:55:21 +00:00
|
|
|
}
|
|
|
|
|
2020-05-17 21:44:53 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-23 17:50:18 +00:00
|
|
|
void dokneeattack(int snum, const std::initializer_list<int> & respawnlist)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
|
|
|
|
|
|
|
if (p->knee_incs > 0)
|
|
|
|
{
|
|
|
|
p->knee_incs++;
|
2022-05-30 10:35:41 +00:00
|
|
|
p->horizon.addadjustment(buildhoriz(-48));
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions |= SB_CENTERVIEW;
|
2020-05-17 21:44:53 +00:00
|
|
|
if (p->knee_incs > 15)
|
|
|
|
{
|
|
|
|
p->knee_incs = 0;
|
|
|
|
p->holster_weapon = 0;
|
|
|
|
if (p->weapon_pos < 0)
|
|
|
|
p->weapon_pos = -p->weapon_pos;
|
2020-10-23 17:50:18 +00:00
|
|
|
if (p->actorsqu != nullptr && dist(p->GetActor(), p->actorsqu) < 1400)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2020-10-22 17:21:21 +00:00
|
|
|
fi.guts(p->actorsqu, TILE_JIBS6, 7, myconnectindex);
|
2020-10-23 17:50:18 +00:00
|
|
|
spawn(p->actorsqu, TILE_BLOODPOOL);
|
2020-07-25 07:32:54 +00:00
|
|
|
S_PlayActorSound(SQUISHED, p->actorsqu);
|
2021-12-21 17:19:45 +00:00
|
|
|
if (isIn(p->actorsqu->spr.picnum, respawnlist))
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (p->actorsqu->spr.yvel)
|
|
|
|
fi.operaterespawns(p->actorsqu->spr.yvel);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
|
2021-12-31 17:47:00 +00:00
|
|
|
if (p->actorsqu->isPlayer())
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
quickkill(&ps[p->actorsqu->spr.yvel]);
|
|
|
|
ps[p->actorsqu->spr.yvel].frag_ps = snum;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
2021-12-21 21:31:25 +00:00
|
|
|
else if (badguy(p->actorsqu))
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
|
|
|
deletesprite(p->actorsqu);
|
|
|
|
p->actors_killed++;
|
|
|
|
}
|
|
|
|
else deletesprite(p->actorsqu);
|
|
|
|
}
|
2020-10-17 08:30:11 +00:00
|
|
|
p->actorsqu = nullptr;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
int makepainsounds(int snum, int type)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-10-23 17:50:18 +00:00
|
|
|
auto actor = p->GetActor();
|
2020-05-17 21:44:53 +00:00
|
|
|
int k = 0;
|
|
|
|
|
|
|
|
switch (type)
|
|
|
|
{
|
|
|
|
case 0:
|
|
|
|
if (rnd(32))
|
|
|
|
{
|
|
|
|
if (p->boot_amount > 0)
|
|
|
|
k = 1;
|
|
|
|
else
|
|
|
|
{
|
2020-10-23 17:50:18 +00:00
|
|
|
if (!S_CheckActorSoundPlaying(actor, DUKE_LONGTERM_PAIN))
|
|
|
|
S_PlayActorSound(DUKE_LONGTERM_PAIN, actor);
|
2020-05-17 21:44:53 +00:00
|
|
|
SetPlayerPal(p, PalEntry(32, 64, 64, 64));
|
2021-12-21 19:22:34 +00:00
|
|
|
actor->spr.extra -= 1 + (krand() & 3);
|
2020-10-23 17:50:18 +00:00
|
|
|
if (!S_CheckActorSoundPlaying(actor, SHORT_CIRCUIT))
|
|
|
|
S_PlayActorSound(SHORT_CIRCUIT, actor);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 1:
|
|
|
|
if (rnd(16))
|
|
|
|
{
|
|
|
|
if (p->boot_amount > 0)
|
|
|
|
k = 1;
|
|
|
|
else
|
|
|
|
{
|
2020-10-23 17:50:18 +00:00
|
|
|
if (!S_CheckActorSoundPlaying(actor, DUKE_LONGTERM_PAIN))
|
|
|
|
S_PlayActorSound(DUKE_LONGTERM_PAIN, actor);
|
2020-05-17 21:44:53 +00:00
|
|
|
SetPlayerPal(p, PalEntry(32, 0, 8, 0));
|
2021-12-21 19:22:34 +00:00
|
|
|
actor->spr.extra -= 1 + (krand() & 3);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 2:
|
|
|
|
if (rnd(32))
|
|
|
|
{
|
|
|
|
if (p->boot_amount > 0)
|
|
|
|
k = 1;
|
|
|
|
else
|
|
|
|
{
|
2020-10-23 17:50:18 +00:00
|
|
|
if (!S_CheckActorSoundPlaying(actor, DUKE_LONGTERM_PAIN))
|
|
|
|
S_PlayActorSound(DUKE_LONGTERM_PAIN, actor);
|
2020-05-17 21:44:53 +00:00
|
|
|
SetPlayerPal(p, PalEntry(32, 8, 0, 0));
|
2021-12-21 19:22:34 +00:00
|
|
|
actor->spr.extra -= 1 + (krand() & 3);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
case 3:
|
|
|
|
if ((krand() & 3) == 1)
|
|
|
|
if (p->on_ground)
|
|
|
|
{
|
|
|
|
if (p->OnMotorcycle)
|
2021-12-21 19:22:34 +00:00
|
|
|
actor->spr.extra -= 2;
|
2020-05-17 21:44:53 +00:00
|
|
|
else
|
2021-12-21 19:22:34 +00:00
|
|
|
actor->spr.extra -= 4;
|
2020-10-23 17:50:18 +00:00
|
|
|
S_PlayActorSound(DUKE_LONGTERM_PAIN, actor);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
return k;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void footprints(int snum)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-10-23 17:50:18 +00:00
|
|
|
auto actor = p->GetActor();
|
2020-05-17 21:44:53 +00:00
|
|
|
|
|
|
|
if (p->footprintcount > 0 && p->on_ground)
|
2022-01-04 11:43:58 +00:00
|
|
|
if (p->insector() && (p->cursector->floorstat & CSTAT_SECTOR_SLOPE) != 2)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2020-10-23 17:50:18 +00:00
|
|
|
int j = -1;
|
2021-12-30 15:51:56 +00:00
|
|
|
DukeSectIterator it(actor->sector());
|
2020-10-23 17:50:18 +00:00
|
|
|
while (auto act = it.Next())
|
2020-10-14 19:16:54 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (act->spr.picnum == TILE_FOOTPRINTS || act->spr.picnum == TILE_FOOTPRINTS2 || act->spr.picnum == TILE_FOOTPRINTS3 || act->spr.picnum == TILE_FOOTPRINTS4)
|
2021-12-22 10:57:10 +00:00
|
|
|
if (abs(act->spr.pos.X - p->pos.X) < 384)
|
2021-12-22 11:17:17 +00:00
|
|
|
if (abs(act->spr.pos.Y - p->pos.Y) < 384)
|
2020-10-23 17:50:18 +00:00
|
|
|
{
|
|
|
|
j = 1;
|
2020-05-17 21:44:53 +00:00
|
|
|
break;
|
2020-10-23 17:50:18 +00:00
|
|
|
}
|
2020-10-14 19:16:54 +00:00
|
|
|
}
|
2020-05-17 21:44:53 +00:00
|
|
|
if (j < 0)
|
|
|
|
{
|
|
|
|
p->footprintcount--;
|
2021-11-21 07:56:39 +00:00
|
|
|
if (p->cursector->lotag == 0 && p->cursector->hitag == 0)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2020-10-23 17:50:18 +00:00
|
|
|
DDukeActor* fprint;
|
2020-05-17 21:44:53 +00:00
|
|
|
switch (krand() & 3)
|
|
|
|
{
|
2020-10-23 17:50:18 +00:00
|
|
|
case 0: fprint = spawn(actor, TILE_FOOTPRINTS); break;
|
|
|
|
case 1: fprint = spawn(actor, TILE_FOOTPRINTS2); break;
|
|
|
|
case 2: fprint = spawn(actor, TILE_FOOTPRINTS3); break;
|
|
|
|
default: fprint = spawn(actor, TILE_FOOTPRINTS4); break;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
2021-11-19 11:32:12 +00:00
|
|
|
if (fprint)
|
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
fprint->spr.pal = p->footprintpal;
|
|
|
|
fprint->spr.shade = (int8_t)p->footprintshade;
|
2021-11-19 11:32:12 +00:00
|
|
|
}
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-21 17:14:41 +00:00
|
|
|
inline void backupplayer(player_struct* p)
|
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
p->backuppos();
|
2020-10-21 17:14:41 +00:00
|
|
|
p->angle.backup();
|
|
|
|
p->horizon.backup();
|
|
|
|
}
|
|
|
|
|
2020-05-17 21:44:53 +00:00
|
|
|
void playerisdead(int snum, int psectlotag, int fz, int cz)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-10-23 17:50:18 +00:00
|
|
|
auto actor = p->GetActor();
|
2020-05-17 21:44:53 +00:00
|
|
|
|
|
|
|
if (p->dead_flag == 0)
|
|
|
|
{
|
2021-12-21 19:22:34 +00:00
|
|
|
if (actor->spr.pal != 1)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
|
|
|
SetPlayerPal(p, PalEntry(63, 63, 0, 0));
|
2021-12-22 09:41:47 +00:00
|
|
|
p->pos.Z -= (16 << 8);
|
2021-12-22 11:29:00 +00:00
|
|
|
actor->spr.pos.Z -= (16 << 8);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
#if 0
|
|
|
|
if (ud.recstat == 1 && ud.multimode < 2)
|
|
|
|
closedemowrite();
|
|
|
|
#endif
|
|
|
|
|
2021-12-21 19:22:34 +00:00
|
|
|
if (actor->spr.pal != 1)
|
2020-05-17 21:44:53 +00:00
|
|
|
p->dead_flag = (512 - ((krand() & 1) << 10) + (krand() & 255) - 512) & 2047;
|
|
|
|
|
|
|
|
p->jetpack_on = 0;
|
2020-10-21 08:48:38 +00:00
|
|
|
p->holoduke_on = nullptr;
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2020-10-23 17:50:18 +00:00
|
|
|
if (!isRR())S_StopSound(DUKE_JETPACK_IDLE, actor);
|
|
|
|
S_StopSound(-1, actor, CHAN_VOICE);
|
2020-05-17 21:44:53 +00:00
|
|
|
|
|
|
|
|
2021-12-21 19:22:34 +00:00
|
|
|
if (actor->spr.pal != 1 && (actor->spr.cstat & CSTAT_SPRITE_INVISIBLE) == 0) actor->spr.cstat = 0;
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2021-12-21 19:22:34 +00:00
|
|
|
if (ud.multimode > 1 && (actor->spr.pal != 1 || (actor->spr.cstat & CSTAT_SPRITE_INVISIBLE)))
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
|
|
|
if (p->frag_ps != snum)
|
|
|
|
{
|
|
|
|
ps[p->frag_ps].frag++;
|
2020-11-29 13:10:03 +00:00
|
|
|
ps[p->frag_ps].frags[snum]++;
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
auto pname = PlayerName(p->frag_ps);
|
2020-05-17 21:44:53 +00:00
|
|
|
if (snum == screenpeek)
|
|
|
|
{
|
2020-07-21 19:32:38 +00:00
|
|
|
Printf(PRINT_NOTIFY, "Killed by %s", pname);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-07-21 19:32:38 +00:00
|
|
|
Printf(PRINT_NOTIFY, "Killed %s", pname);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
else p->fraggedself++;
|
2020-05-16 21:55:21 +00:00
|
|
|
|
2020-05-17 21:44:53 +00:00
|
|
|
p->frag_ps = snum;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (psectlotag == ST_2_UNDERWATER)
|
|
|
|
{
|
|
|
|
if (p->on_warping_sector == 0)
|
|
|
|
{
|
2021-12-22 09:41:47 +00:00
|
|
|
if (abs(p->pos.Z - fz) > (gs.playerheight >> 1))
|
|
|
|
p->pos.Z += 348;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-22 11:29:00 +00:00
|
|
|
actor->spr.pos.Z -= 512;
|
2021-12-21 19:22:34 +00:00
|
|
|
actor->spr.zvel = -348;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
|
2021-11-06 19:46:08 +00:00
|
|
|
Collision coll;
|
2021-11-26 12:41:15 +00:00
|
|
|
clipmove(p->pos, &p->cursector, 0, 0, 164, (4 << 8), (4 << 8), CLIPMASK0, coll);
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-29 22:24:27 +00:00
|
|
|
backupplayer(p);
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2020-10-07 06:12:37 +00:00
|
|
|
p->horizon.horizoff = p->horizon.horiz = q16horiz(0);
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2021-12-22 09:40:26 +00:00
|
|
|
updatesector(p->pos.X, p->pos.Y, &p->cursector);
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2021-11-21 07:56:39 +00:00
|
|
|
pushmove(&p->pos, &p->cursector, 128L, (4 << 8), (20 << 8), CLIPMASK0);
|
2020-05-17 21:44:53 +00:00
|
|
|
|
2021-12-21 19:22:34 +00:00
|
|
|
if (fz > cz + (16 << 8) && actor->spr.pal != 1)
|
2021-12-22 09:41:47 +00:00
|
|
|
p->angle.rotscrnang = buildang(p->dead_flag + ((fz + p->pos.Z) >> 7));
|
2020-05-17 21:44:53 +00:00
|
|
|
|
|
|
|
p->on_warping_sector = 0;
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
int endoflevel(int snum)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
|
|
|
|
|
|
|
// the fist puching the end-of-level thing...
|
|
|
|
p->fist_incs++;
|
|
|
|
if (p->fist_incs == 28)
|
|
|
|
{
|
|
|
|
#if 0
|
|
|
|
if (ud.recstat == 1) closedemowrite();
|
|
|
|
#endif
|
2020-07-25 07:32:54 +00:00
|
|
|
S_PlaySound(PIPEBOMB_EXPLODE);
|
2020-05-17 21:44:53 +00:00
|
|
|
SetPlayerPal(p, PalEntry(48, 64, 64, 64));
|
|
|
|
}
|
|
|
|
if (p->fist_incs > 42)
|
|
|
|
{
|
2020-07-07 15:56:20 +00:00
|
|
|
setnextmap(!!p->buttonpalette);
|
2020-05-17 21:44:53 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-05-18 22:26:07 +00:00
|
|
|
int timedexit(int snum)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
|
|
|
p->timebeforeexit--;
|
|
|
|
if (p->timebeforeexit == 26 * 5)
|
|
|
|
{
|
|
|
|
FX_StopAllSounds();
|
|
|
|
if (p->customexitsound >= 0)
|
|
|
|
{
|
2020-07-25 07:32:54 +00:00
|
|
|
S_PlaySound(p->customexitsound);
|
2020-05-17 21:44:53 +00:00
|
|
|
FTA(102, p);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else if (p->timebeforeexit == 1)
|
|
|
|
{
|
2020-07-07 15:56:20 +00:00
|
|
|
setnextmap(false);
|
2020-05-18 22:26:07 +00:00
|
|
|
return true;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
2020-05-18 22:26:07 +00:00
|
|
|
return false;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
|
2020-05-18 06:26:09 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-05-17 21:44:53 +00:00
|
|
|
void playerCrouch(int snum)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
|
|
|
// crouching
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_CROUCH, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() == 0)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2021-12-22 09:41:47 +00:00
|
|
|
p->pos.Z += (2048 + 768);
|
2020-08-27 05:54:49 +00:00
|
|
|
p->crack_time = CRACK_TIME;
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void playerJump(int snum, int fz, int cz)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
|
|
|
if (p->jumping_toggle == 0 && p->jumping_counter == 0)
|
|
|
|
{
|
|
|
|
if ((fz - cz) > (56 << 8))
|
|
|
|
{
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_JUMP, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() == 0)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
|
|
|
p->jumping_counter = 1;
|
|
|
|
p->jumping_toggle = 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-07-17 01:00:43 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
void player_struct::apply_seasick(double factor)
|
2020-07-17 01:00:43 +00:00
|
|
|
{
|
2021-10-08 17:21:29 +00:00
|
|
|
if (isRRRA() && SeaSick && (dead_flag == 0 || (dead_flag && resurrected)))
|
2020-07-17 01:00:43 +00:00
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
if (SeaSick < 250)
|
2020-07-17 01:00:43 +00:00
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
if (SeaSick >= 180)
|
2021-04-21 10:41:04 +00:00
|
|
|
angle.rotscrnang += buildfang(24 * factor);
|
2020-11-29 08:00:00 +00:00
|
|
|
else if (SeaSick >= 130)
|
2021-04-21 10:41:04 +00:00
|
|
|
angle.rotscrnang -= buildfang(24 * factor);
|
2020-11-29 08:00:00 +00:00
|
|
|
else if (SeaSick >= 70)
|
2021-04-21 10:41:04 +00:00
|
|
|
angle.rotscrnang += buildfang(24 * factor);
|
2020-11-29 08:00:00 +00:00
|
|
|
else if (SeaSick >= 20)
|
2021-04-21 10:41:04 +00:00
|
|
|
angle.rotscrnang -= buildfang(24 * factor);
|
2020-07-17 01:00:43 +00:00
|
|
|
}
|
2020-11-29 08:00:00 +00:00
|
|
|
if (SeaSick < 250)
|
2021-04-21 10:41:04 +00:00
|
|
|
angle.look_ang = buildfang(((krand() & 255) - 128) * factor);
|
2020-08-05 12:57:47 +00:00
|
|
|
}
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
|
|
|
|
2020-07-17 01:00:43 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
void player_struct::backuppos(bool noclipping)
|
2020-07-29 22:24:27 +00:00
|
|
|
{
|
2020-07-29 22:49:01 +00:00
|
|
|
if (!noclipping)
|
2020-07-29 22:24:27 +00:00
|
|
|
{
|
2021-12-22 11:40:42 +00:00
|
|
|
opos.X = pos.X;
|
2021-12-22 11:42:06 +00:00
|
|
|
opos.Y = pos.Y;
|
2020-07-29 22:24:27 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-22 11:40:42 +00:00
|
|
|
pos.X = opos.X;
|
2021-12-22 11:42:06 +00:00
|
|
|
pos.Y = opos.Y;
|
2020-07-29 22:24:27 +00:00
|
|
|
}
|
|
|
|
|
2021-12-22 11:44:17 +00:00
|
|
|
opos.Z = pos.Z;
|
2021-12-30 11:57:39 +00:00
|
|
|
bobpos.X = pos.X;
|
2021-12-30 11:59:45 +00:00
|
|
|
bobpos.Y = pos.Y;
|
2020-11-29 08:00:00 +00:00
|
|
|
opyoff = pyoff;
|
2020-07-29 22:24:27 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
void player_struct::backupweapon()
|
2020-08-03 03:28:16 +00:00
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
oweapon_sway = weapon_sway;
|
|
|
|
oweapon_pos = weapon_pos;
|
|
|
|
okickback_pic = kickback_pic;
|
|
|
|
orandom_club_frame = random_club_frame;
|
|
|
|
ohard_landing = hard_landing;
|
2022-01-15 14:48:50 +00:00
|
|
|
ofistsign = fistsign;
|
2020-08-03 03:28:16 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
void player_struct::checkhardlanding()
|
2020-08-05 07:53:22 +00:00
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
if (hard_landing > 0)
|
2020-08-05 07:53:22 +00:00
|
|
|
{
|
2022-05-30 10:35:41 +00:00
|
|
|
horizon.addadjustment(buildhoriz(-(hard_landing << 4)));
|
2020-11-29 08:00:00 +00:00
|
|
|
hard_landing--;
|
2020-08-05 07:53:22 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
void player_struct::playerweaponsway(int xvel)
|
2020-08-05 10:04:14 +00:00
|
|
|
{
|
|
|
|
if (cl_weaponsway)
|
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
if (xvel < 32 || on_ground == 0 || bobcounter == 1024)
|
2020-08-05 10:04:14 +00:00
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
if ((weapon_sway & 2047) > (1024 + 96))
|
|
|
|
weapon_sway -= 96;
|
|
|
|
else if ((weapon_sway & 2047) < (1024 - 96))
|
|
|
|
weapon_sway += 96;
|
|
|
|
else oweapon_sway = weapon_sway = 1024;
|
2020-08-05 10:04:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
weapon_sway = bobcounter;
|
2020-08-05 10:04:14 +00:00
|
|
|
|
2020-11-29 08:00:00 +00:00
|
|
|
if ((bobcounter - oweapon_sway) > 256)
|
2020-08-05 10:04:14 +00:00
|
|
|
{
|
2020-11-29 08:00:00 +00:00
|
|
|
oweapon_sway = weapon_sway;
|
2020-08-05 10:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-05 07:53:22 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-08-29 11:32:14 +00:00
|
|
|
void checklook(int snum, ESyncBits actions)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2020-05-18 06:26:09 +00:00
|
|
|
auto p = &ps[snum];
|
2020-07-17 01:00:43 +00:00
|
|
|
|
2020-08-29 11:32:14 +00:00
|
|
|
if ((actions & SB_LOOK_LEFT) && !p->OnMotorcycle)
|
2020-05-17 21:44:53 +00:00
|
|
|
{
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_LOOKLEFT, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() != 0)
|
2020-07-16 15:59:25 +00:00
|
|
|
{
|
2020-09-21 07:00:07 +00:00
|
|
|
actions &= ~SB_LOOK_LEFT;
|
2020-07-16 15:59:25 +00:00
|
|
|
}
|
2020-07-17 01:00:43 +00:00
|
|
|
}
|
|
|
|
|
2020-08-29 11:32:14 +00:00
|
|
|
if ((actions & SB_LOOK_RIGHT) && !p->OnMotorcycle)
|
2020-07-17 01:00:43 +00:00
|
|
|
{
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_LOOKRIGHT, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() != 0)
|
2020-07-17 01:00:43 +00:00
|
|
|
{
|
2020-09-21 07:00:07 +00:00
|
|
|
actions &= ~SB_LOOK_RIGHT;
|
2020-07-17 01:00:43 +00:00
|
|
|
}
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
2020-10-07 12:13:21 +00:00
|
|
|
p->angle.backup();
|
2020-05-17 21:44:53 +00:00
|
|
|
}
|
2020-05-18 06:26:09 +00:00
|
|
|
|
2020-07-17 01:00:43 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-05-18 06:26:09 +00:00
|
|
|
void playerCenterView(int snum)
|
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_RETURNTOCENTER, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() == 0)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions |= SB_CENTERVIEW;
|
2020-09-20 10:01:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions &= ~SB_CENTERVIEW;
|
2020-05-18 06:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 22:57:07 +00:00
|
|
|
void playerLookUp(int snum, ESyncBits actions)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_LOOKUP, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() == 0)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions |= SB_CENTERVIEW;
|
2020-09-20 10:01:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions &= ~SB_LOOK_UP;
|
2020-05-18 06:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 22:57:07 +00:00
|
|
|
void playerLookDown(int snum, ESyncBits actions)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_LOOKDOWN, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() == 0)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions |= SB_CENTERVIEW;
|
2020-09-20 10:01:05 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions &= ~SB_LOOK_DOWN;
|
2020-05-18 06:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 22:57:07 +00:00
|
|
|
void playerAimUp(int snum, ESyncBits actions)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2020-11-01 16:57:40 +00:00
|
|
|
OnEvent(EVENT_AIMUP, snum, p->GetActor(), -1);
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() != 0)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions &= ~SB_AIM_UP;
|
2020-05-18 06:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-28 22:57:07 +00:00
|
|
|
void playerAimDown(int snum, ESyncBits actions)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2020-11-01 17:23:09 +00:00
|
|
|
SetGameVarID(g_iReturnVarID, 0, p->GetActor(), snum);
|
2021-01-30 22:42:44 +00:00
|
|
|
OnEvent(EVENT_AIMDOWN, snum, p->GetActor(), -1); // due to a typo in WW2GI's CON files this is the same as EVENT_AIMUP.
|
2021-12-05 16:36:57 +00:00
|
|
|
if (GetGameVarID(g_iReturnVarID, p->GetActor(), snum).value() != 0)
|
2020-05-18 06:26:09 +00:00
|
|
|
{
|
2020-09-24 14:09:31 +00:00
|
|
|
p->sync.actions &= ~SB_AIM_DOWN;
|
2020-05-18 06:26:09 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-08-05 09:24:32 +00:00
|
|
|
//---------------------------------------------------------------------------
|
2020-07-17 23:34:13 +00:00
|
|
|
//
|
|
|
|
// split out so that the weapon check can be done right.
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2021-01-02 00:04:03 +00:00
|
|
|
bool movementBlocked(player_struct *p)
|
2020-07-17 23:34:13 +00:00
|
|
|
{
|
|
|
|
auto blockingweapon = [=]()
|
|
|
|
{
|
|
|
|
if (isRR()) return false;
|
2021-12-05 12:43:31 +00:00
|
|
|
if (isWW2GI()) return aplWeaponWorksLike(p->curr_weapon, p->GetPlayerNum()) == TRIPBOMB_WEAPON;
|
2020-07-17 23:34:13 +00:00
|
|
|
else return p->curr_weapon == TRIPBOMB_WEAPON;
|
|
|
|
};
|
|
|
|
|
|
|
|
auto weapondelay = [=]()
|
|
|
|
{
|
2021-12-05 12:43:31 +00:00
|
|
|
if (isWW2GI()) return aplWeaponFireDelay(p->curr_weapon, p->GetPlayerNum());
|
2020-07-17 23:34:13 +00:00
|
|
|
else return 4;
|
|
|
|
};
|
|
|
|
|
|
|
|
return (p->fist_incs ||
|
|
|
|
p->transporter_hold > 2 ||
|
|
|
|
p->hard_landing ||
|
|
|
|
p->access_incs > 0 ||
|
|
|
|
p->knee_incs > 0 ||
|
|
|
|
(blockingweapon() && p->kickback_pic > 1 && p->kickback_pic < weapondelay()));
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-19 19:21:55 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2021-11-18 18:57:14 +00:00
|
|
|
int haskey(sectortype* sectp, int snum)
|
2020-05-19 19:21:55 +00:00
|
|
|
{
|
|
|
|
auto p = &ps[snum];
|
2022-01-05 07:05:15 +00:00
|
|
|
if (!sectp)
|
|
|
|
return 0;
|
2021-11-20 16:46:08 +00:00
|
|
|
if (!sectp->keyinfo)
|
2020-05-19 19:21:55 +00:00
|
|
|
return 1;
|
2021-11-20 16:46:08 +00:00
|
|
|
if (sectp->keyinfo > 6)
|
2020-05-19 19:21:55 +00:00
|
|
|
return 1;
|
2021-11-20 16:46:08 +00:00
|
|
|
int wk = sectp->keyinfo;
|
2020-05-19 19:21:55 +00:00
|
|
|
if (wk > 3)
|
|
|
|
wk -= 3;
|
|
|
|
|
|
|
|
if (p->keys[wk] == 1)
|
|
|
|
{
|
2021-11-20 16:46:08 +00:00
|
|
|
sectp->keyinfo = 0;
|
2020-05-19 19:21:55 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2020-10-20 23:03:38 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-23 17:50:18 +00:00
|
|
|
void shootbloodsplat(DDukeActor* actor, int p, int sx, int sy, int sz, int sa, int atwith, int BIGFORCE, int OOZFILTER, int NEWBEAST)
|
2020-10-20 23:03:38 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
auto sectp = actor->sector();
|
2020-10-20 23:03:38 +00:00
|
|
|
int zvel;
|
2021-12-06 11:24:22 +00:00
|
|
|
HitInfo hit{};
|
2020-10-20 23:03:38 +00:00
|
|
|
|
|
|
|
if (p >= 0)
|
|
|
|
sa += 64 - (krand() & 127);
|
|
|
|
else sa += 1024 + 64 - (krand() & 127);
|
|
|
|
zvel = 1024 - (krand() & 2047);
|
|
|
|
|
|
|
|
|
2021-11-25 23:08:59 +00:00
|
|
|
hitscan({ sx, sy, sz }, sectp, { bcos(sa), bsin(sa), zvel << 6 }, hit, CLIPMASK1);
|
2020-10-20 23:03:38 +00:00
|
|
|
|
|
|
|
// oh my...
|
2021-12-22 09:40:26 +00:00
|
|
|
if (FindDistance2D(sx - hit.hitpos.X, sy - hit.hitpos.Y) < 1024 &&
|
2021-11-25 23:08:59 +00:00
|
|
|
(hit.hitWall != nullptr && hit.hitWall->overpicnum != BIGFORCE) &&
|
|
|
|
((hit.hitWall->twoSided() && hit.hitSector != nullptr &&
|
|
|
|
hit.hitWall->nextSector()->lotag == 0 &&
|
|
|
|
hit.hitSector->lotag == 0 &&
|
|
|
|
(hit.hitSector->floorz - hit.hitWall->nextSector()->floorz) > (16 << 8)) ||
|
|
|
|
(!hit.hitWall->twoSided() && hit.hitSector->lotag == 0)))
|
2020-10-20 23:03:38 +00:00
|
|
|
{
|
2021-12-18 14:11:21 +00:00
|
|
|
if ((hit.hitWall->cstat & CSTAT_WALL_MASKED) == 0)
|
2020-10-20 23:03:38 +00:00
|
|
|
{
|
2021-11-25 23:08:59 +00:00
|
|
|
if (hit.hitWall->twoSided())
|
2020-10-20 23:03:38 +00:00
|
|
|
{
|
2021-11-25 23:08:59 +00:00
|
|
|
DukeSectIterator it(hit.hitWall->nextSector());
|
2020-10-23 17:50:18 +00:00
|
|
|
while (auto act2 = it.Next())
|
2020-10-20 23:03:38 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (act2->spr.statnum == STAT_EFFECTOR && act2->spr.lotag == SE_13_EXPLOSIVE)
|
2020-10-20 23:03:38 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-25 23:08:59 +00:00
|
|
|
if (hit.hitWall->twoSided() &&
|
|
|
|
hit.hitWall->nextWall()->hitag != 0)
|
2020-10-20 23:03:38 +00:00
|
|
|
return;
|
|
|
|
|
2021-11-25 23:08:59 +00:00
|
|
|
if (hit.hitWall->hitag == 0)
|
2020-10-20 23:03:38 +00:00
|
|
|
{
|
2020-10-23 20:06:02 +00:00
|
|
|
auto spawned = spawn(actor, atwith);
|
2021-11-19 11:32:12 +00:00
|
|
|
if (spawned)
|
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
spawned->spr.xvel = -12;
|
2021-11-25 23:08:59 +00:00
|
|
|
auto delta = hit.hitWall->delta();
|
2021-12-22 09:28:51 +00:00
|
|
|
spawned->spr.ang = getangle(-delta.X, -delta.Y) + 512; // note the '-' sign here!
|
2021-12-22 10:57:10 +00:00
|
|
|
spawned->spr.pos.X = hit.hitpos.X;
|
2021-12-22 11:17:17 +00:00
|
|
|
spawned->spr.pos.Y = hit.hitpos.Y;
|
2021-12-22 11:29:00 +00:00
|
|
|
spawned->spr.pos.Z = hit.hitpos.Z;
|
2021-12-21 17:19:45 +00:00
|
|
|
spawned->spr.cstat |= randomXFlip();
|
2021-11-19 11:32:12 +00:00
|
|
|
ssp(spawned, CLIPMASK0);
|
2021-12-21 17:19:45 +00:00
|
|
|
SetActor(spawned, spawned->spr.pos);
|
2021-12-21 19:22:34 +00:00
|
|
|
if (actor->spr.picnum == OOZFILTER || actor->spr.picnum == NEWBEAST)
|
2021-12-21 17:19:45 +00:00
|
|
|
spawned->spr.pal = 6;
|
2021-11-19 11:32:12 +00:00
|
|
|
}
|
2020-10-20 23:03:38 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-14 10:14:03 +00:00
|
|
|
END_DUKE_NS
|