2020-05-07 12:55:04 +00:00
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
/*
|
|
|
|
Copyright (C) 1996, 2003 - 3D Realms Entertainment
|
2020-05-07 20:30:19 +00:00
|
|
|
Copyright (C) 2017-2019 Nuke.YKT
|
2020-05-13 14:19:39 +00:00
|
|
|
Copyright (C) 2020 - Christoph Oelckers
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-05-07 20:30:19 +00:00
|
|
|
This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
|
2020-05-07 12:55:04 +00:00
|
|
|
|
|
|
|
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
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
|
|
|
|
#include "ns.h"
|
|
|
|
#include "global.h"
|
2020-07-03 21:56:14 +00:00
|
|
|
#include "names_r.h"
|
2020-07-07 15:56:20 +00:00
|
|
|
#include "mapinfo.h"
|
2020-10-21 17:14:41 +00:00
|
|
|
#include "dukeactor.h"
|
2020-05-07 12:55:04 +00:00
|
|
|
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
|
2020-05-08 22:34:48 +00:00
|
|
|
void dojaildoor();
|
|
|
|
void moveminecart();
|
|
|
|
|
2020-05-07 12:55:04 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-22 17:08:10 +00:00
|
|
|
void check_fta_sounds_r(DDukeActor* actor)
|
2020-05-16 10:47:01 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (actor->spr.extra > 0) switch (actor->spr.picnum)
|
2020-05-16 10:47:01 +00:00
|
|
|
{
|
|
|
|
case COOT: // LIZTROOP
|
|
|
|
if (!isRRRA() && (krand() & 3) == 2)
|
2020-10-22 17:08:10 +00:00
|
|
|
S_PlayActorSound(PRED_RECOG, actor);
|
2020-05-16 10:47:01 +00:00
|
|
|
break;
|
|
|
|
case BILLYCOCK:
|
|
|
|
case BILLYRAY:
|
|
|
|
case BRAYSNIPER: // PIGCOP
|
2020-10-22 17:08:10 +00:00
|
|
|
S_PlayActorSound(PIG_RECOG, actor);
|
2020-05-16 10:47:01 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2022-11-12 08:33:33 +00:00
|
|
|
void addweapon_r(player_struct* p, int weapon, bool wswitch)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-11-07 13:07:08 +00:00
|
|
|
int cw = p->curr_weapon;
|
2020-05-07 12:55:04 +00:00
|
|
|
if (p->OnMotorcycle || p->OnBoat)
|
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[weapon] = true;;
|
2020-05-09 09:44:50 +00:00
|
|
|
if (weapon == THROWSAW_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[BUZZSAW_WEAPON] = true;
|
2020-05-09 09:44:50 +00:00
|
|
|
p->ammo_amount[BUZZSAW_WEAPON] = 1;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2020-05-09 09:44:50 +00:00
|
|
|
else if (weapon == CROSSBOW_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[CHICKEN_WEAPON] = true;
|
|
|
|
p->gotweapon[DYNAMITE_WEAPON] = true;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2020-05-09 09:44:50 +00:00
|
|
|
else if (weapon == SLINGBLADE_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-09 09:44:50 +00:00
|
|
|
p->ammo_amount[SLINGBLADE_WEAPON] = 1;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
|
|
|
if (p->gotweapon[weapon] == 0)
|
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[weapon] = true;;
|
2020-05-09 09:44:50 +00:00
|
|
|
if (weapon == THROWSAW_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[BUZZSAW_WEAPON] = true;
|
2020-11-22 16:50:38 +00:00
|
|
|
p->ammo_amount[BUZZSAW_WEAPON] = 1;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
2020-05-09 09:44:50 +00:00
|
|
|
if (weapon == CROSSBOW_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[CHICKEN_WEAPON] = true;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2020-05-09 09:44:50 +00:00
|
|
|
if (weapon == SLINGBLADE_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-09 09:44:50 +00:00
|
|
|
p->ammo_amount[SLINGBLADE_WEAPON] = 50;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-24 18:43:36 +00:00
|
|
|
if (weapon == CROSSBOW_WEAPON)
|
|
|
|
{
|
2021-05-15 08:23:50 +00:00
|
|
|
p->gotweapon[DYNAMITE_WEAPON] = true;
|
2020-10-24 18:43:36 +00:00
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-05-09 09:44:50 +00:00
|
|
|
if (weapon != DYNAMITE_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
cw = weapon;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
cw = weapon;
|
|
|
|
|
2022-11-12 08:33:33 +00:00
|
|
|
if (!wswitch) return;
|
|
|
|
|
2020-05-09 09:44:50 +00:00
|
|
|
if (weapon == DYNAMITE_WEAPON)
|
2020-05-07 12:55:04 +00:00
|
|
|
p->last_weapon = -1;
|
|
|
|
|
|
|
|
p->random_club_frame = 0;
|
|
|
|
|
|
|
|
if (p->holster_weapon == 0)
|
|
|
|
{
|
|
|
|
p->weapon_pos = -1;
|
|
|
|
p->last_weapon = p->curr_weapon;
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
p->weapon_pos = 10;
|
|
|
|
p->holster_weapon = 0;
|
|
|
|
p->last_weapon = -1;
|
|
|
|
}
|
|
|
|
|
2020-09-16 11:01:09 +00:00
|
|
|
p->okickback_pic = p->kickback_pic = 0;
|
2020-05-07 12:55:04 +00:00
|
|
|
p->curr_weapon = cw;
|
2021-07-17 02:12:12 +00:00
|
|
|
p->wantweaponfire = -1;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
|
|
|
switch (weapon)
|
|
|
|
{
|
2020-05-09 09:44:50 +00:00
|
|
|
case SLINGBLADE_WEAPON:
|
2020-05-07 20:30:19 +00:00
|
|
|
if (!isRRRA()) break;
|
2020-05-07 12:55:04 +00:00
|
|
|
case KNEE_WEAPON:
|
2020-07-20 21:21:27 +00:00
|
|
|
case DYNAMITE_WEAPON:
|
2020-05-07 12:55:04 +00:00
|
|
|
case TRIPBOMB_WEAPON:
|
2020-05-20 08:38:56 +00:00
|
|
|
case THROWINGDYNAMITE_WEAPON:
|
2020-05-07 12:55:04 +00:00
|
|
|
break;
|
2020-05-12 11:43:24 +00:00
|
|
|
case SHOTGUN_WEAPON:
|
2020-11-02 19:23:05 +00:00
|
|
|
S_PlayActorSound(SHOTGUN_COCK, p->GetActor());
|
2020-05-07 12:55:04 +00:00
|
|
|
break;
|
2020-05-12 11:43:24 +00:00
|
|
|
case PISTOL_WEAPON:
|
2020-11-02 19:23:05 +00:00
|
|
|
S_PlayActorSound(INSERT_CLIP, p->GetActor());
|
2020-05-07 12:55:04 +00:00
|
|
|
break;
|
2020-05-12 11:43:24 +00:00
|
|
|
default:
|
2020-11-02 19:23:05 +00:00
|
|
|
S_PlayActorSound(EJECT_CLIP, p->GetActor());
|
2020-05-07 12:55:04 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-21 20:04:39 +00:00
|
|
|
void hitradius_r(DDukeActor* actor, int r, int hp1, int hp2, int hp3, int hp4)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-13 18:01:17 +00:00
|
|
|
double radius = r * inttoworld;
|
2020-05-07 12:55:04 +00:00
|
|
|
static const uint8_t statlist[] = { STAT_DEFAULT, STAT_ACTOR, STAT_STANDABLE, STAT_PLAYER, STAT_FALLER, STAT_ZOMBIEACTOR, STAT_MISC };
|
|
|
|
|
2022-10-07 21:33:37 +00:00
|
|
|
if (actor->spr.scale.X >= 0.17675 || !(actor->spr.picnum == RPG || ((isRRRA()) && actor->spr.picnum == RPG2)))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
BFSSectorSearch search(actor->sector());
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2021-11-21 07:42:36 +00:00
|
|
|
while (auto dasectp = search.GetNext())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-12 22:55:15 +00:00
|
|
|
if ((dasectp->ceilingz- actor->spr.pos.Z) < radius * 16) // what value range is this supposed to be? The check that was here did not multiply correctly
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-11-15 14:44:33 +00:00
|
|
|
auto wal = dasectp->walls.Data();
|
2022-09-12 22:55:15 +00:00
|
|
|
double d = (wal->pos - actor->spr.pos.XY()).Sum();
|
|
|
|
if (d < radius)
|
2021-11-18 16:55:08 +00:00
|
|
|
fi.checkhitceiling(dasectp);
|
2021-11-15 23:23:18 +00:00
|
|
|
else
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-11-16 16:43:19 +00:00
|
|
|
auto thirdpoint = wal->point2Wall()->point2Wall();
|
2022-09-12 22:55:15 +00:00
|
|
|
d = (thirdpoint->pos - actor->spr.pos.XY()).Sum();
|
|
|
|
if (d < radius)
|
2021-11-18 16:55:08 +00:00
|
|
|
fi.checkhitceiling(dasectp);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2020-05-07 20:30:19 +00:00
|
|
|
}
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2022-11-15 14:24:17 +00:00
|
|
|
for (auto& wal : dasectp->walls)
|
2021-11-16 16:45:41 +00:00
|
|
|
{
|
2022-09-12 22:55:15 +00:00
|
|
|
if ((wal.pos - actor->spr.pos.XY()).Sum() < radius)
|
2021-11-15 23:23:18 +00:00
|
|
|
{
|
2021-11-21 07:42:36 +00:00
|
|
|
if (wal.twoSided())
|
2021-11-15 23:23:18 +00:00
|
|
|
{
|
2021-11-21 07:42:36 +00:00
|
|
|
search.Add(wal.nextSector());
|
2021-11-15 23:23:18 +00:00
|
|
|
}
|
2022-08-22 16:39:33 +00:00
|
|
|
DVector3 w1(((wal.pos + wal.point2Wall()->pos) * 0.5 + actor->spr.pos) * 0.5, actor->spr.pos.Z); // half way between the actor and the wall's center.
|
|
|
|
sectortype* sect = wal.sectorp();
|
|
|
|
updatesector(w1, §);
|
|
|
|
|
|
|
|
if (sect && cansee(w1, sect, actor->spr.pos, actor->sector()))
|
2022-08-23 20:39:07 +00:00
|
|
|
fi.checkhitwall(actor, &wal, DVector3(wal.pos, actor->spr.pos.Z), actor->spr.picnum);
|
2021-11-15 23:23:18 +00:00
|
|
|
}
|
2021-11-16 16:45:41 +00:00
|
|
|
}
|
2021-11-15 23:23:18 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-08-22 16:39:33 +00:00
|
|
|
double q = zrand(32) - 24;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-10-21 20:04:39 +00:00
|
|
|
auto Owner = actor->GetOwner();
|
2021-11-16 16:45:41 +00:00
|
|
|
for (int x = 0; x < 7; x++)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-21 20:04:39 +00:00
|
|
|
DukeStatIterator it1(statlist[x]);
|
|
|
|
while (auto act2 = it1.Next())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-01-26 23:41:33 +00:00
|
|
|
if (x == 0 || x >= 5 || actorflag(act2, SFLAG_HITRADIUS_FLAG1))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:56:46 +00:00
|
|
|
if (act2->spr.cstat & CSTAT_SPRITE_BLOCK_ALL)
|
2022-09-13 18:01:17 +00:00
|
|
|
if ((actor->spr.pos - act2->spr.pos).Length() < radius)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-08-22 16:39:33 +00:00
|
|
|
if (badguy(act2) && !cansee(act2->spr.pos.plusZ(q), act2->sector(), actor->spr.pos.plusZ(q), actor->sector()))
|
2020-05-08 22:34:48 +00:00
|
|
|
continue;
|
2022-08-22 16:39:33 +00:00
|
|
|
|
2020-10-24 05:15:10 +00:00
|
|
|
fi.checkhitsprite(act2, actor);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
2022-01-18 22:09:42 +00:00
|
|
|
else if (act2->spr.extra >= 0 && act2 != actor && (actorflag(act2, SFLAG_HITRADIUS_FLAG2) || badguy(act2) || (act2->spr.cstat & CSTAT_SPRITE_BLOCK_ALL)))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:13:49 +00:00
|
|
|
if (actor->spr.picnum == MORTER && act2 == Owner)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-07 20:30:19 +00:00
|
|
|
continue;
|
|
|
|
}
|
2021-12-21 18:13:49 +00:00
|
|
|
if ((isRRRA()) && actor->spr.picnum == CHEERBOMB && act2 == Owner)
|
2020-05-07 20:30:19 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-11-24 08:37:39 +00:00
|
|
|
double dist = (actor->getPosWithOffsetZ() - act2->spr.pos).Length();
|
2020-05-07 20:30:19 +00:00
|
|
|
|
2022-09-13 18:01:17 +00:00
|
|
|
if (dist < radius && cansee(act2->spr.pos.plusZ(-8), act2->sector(), actor->spr.pos.plusZ(-12), actor->sector()))
|
2020-05-07 20:30:19 +00:00
|
|
|
{
|
2021-12-21 18:56:46 +00:00
|
|
|
if ((isRRRA()) && act2->spr.picnum == MINION && act2->spr.pal == 19)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2022-09-30 11:51:37 +00:00
|
|
|
act2->hitang = (act2->spr.pos - actor->spr.pos).Angle();
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2021-12-21 18:56:46 +00:00
|
|
|
if (actor->spr.picnum == RPG && act2->spr.extra > 0)
|
2021-12-27 22:52:16 +00:00
|
|
|
act2->attackertype = RPG;
|
2021-12-21 18:56:46 +00:00
|
|
|
else if ((isRRRA()) && actor->spr.picnum == RPG2 && act2->spr.extra > 0)
|
2021-12-27 22:52:16 +00:00
|
|
|
act2->attackertype = RPG;
|
2020-05-07 20:30:19 +00:00
|
|
|
else
|
2021-12-27 22:52:16 +00:00
|
|
|
act2->attackertype = RADIUSEXPLOSION;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-09-13 18:01:17 +00:00
|
|
|
if (dist < radius / 3)
|
2020-05-07 20:30:19 +00:00
|
|
|
{
|
|
|
|
if (hp4 == hp3) hp4++;
|
2022-01-23 23:10:25 +00:00
|
|
|
act2->hitextra = hp3 + (krand() % (hp4 - hp3));
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2022-09-13 18:01:17 +00:00
|
|
|
else if (dist < 2 * radius / 3)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-07 20:30:19 +00:00
|
|
|
if (hp3 == hp2) hp3++;
|
2022-01-23 23:10:25 +00:00
|
|
|
act2->hitextra = hp2 + (krand() % (hp3 - hp2));
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2022-09-13 18:01:17 +00:00
|
|
|
else if (dist < radius)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-07 20:30:19 +00:00
|
|
|
if (hp2 == hp1) hp2++;
|
2022-01-23 23:10:25 +00:00
|
|
|
act2->hitextra = hp1 + (krand() % (hp2 - hp1));
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2022-11-22 22:41:02 +00:00
|
|
|
if (!actorflag(act2, SFLAG2_NORADIUSPUSH) && !bossguy(act2))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-11 20:57:56 +00:00
|
|
|
if (act2->vel.X < 0) act2->vel.X = 0;
|
|
|
|
act2->vel.X += ((actor->spr.extra / 4.));
|
2020-05-07 20:30:19 +00:00
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-01-17 23:54:10 +00:00
|
|
|
if (actorflag(act2, SFLAG_HITRADIUSCHECK))
|
2020-10-24 05:15:10 +00:00
|
|
|
fi.checkhitsprite(act2, actor);
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2021-12-21 18:56:46 +00:00
|
|
|
if (act2->spr.picnum != RADIUSEXPLOSION &&
|
2021-12-21 17:19:45 +00:00
|
|
|
Owner && Owner->spr.statnum < MAXSTATUS)
|
2020-05-07 20:30:19 +00:00
|
|
|
{
|
2022-11-26 13:48:51 +00:00
|
|
|
if (act2->isPlayer())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-11-16 16:45:41 +00:00
|
|
|
int p = act2->PlayerIndex();
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ps[p].newOwner != nullptr)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-07 20:30:19 +00:00
|
|
|
clearcamera(&ps[p]);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-21 20:04:39 +00:00
|
|
|
act2->SetHitOwner(actor->GetOwner());
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2022-09-13 18:09:29 +00:00
|
|
|
int movesprite_ex_r(DDukeActor* actor, const DVector3& change, unsigned int cliptype, Collision &result)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-24 07:31:15 +00:00
|
|
|
int bg = badguy(actor);
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-10-07 21:33:37 +00:00
|
|
|
if (actor->spr.statnum == 5 || (bg && actor->spr.scale.X < 0.0625))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-13 18:09:29 +00:00
|
|
|
actor->spr.pos += change;
|
2020-05-07 12:55:04 +00:00
|
|
|
if (bg)
|
2022-02-06 21:45:47 +00:00
|
|
|
SetActor(actor, actor->spr.pos);
|
2020-10-24 07:31:15 +00:00
|
|
|
return result.setNone();
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
auto dasectp = actor->sector();
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-08-29 20:28:48 +00:00
|
|
|
auto ppos = actor->spr.pos;
|
2022-10-07 21:33:37 +00:00
|
|
|
ppos.Z -= (tileHeight(actor->spr.picnum) * actor->spr.scale.Y) * 0.5;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
|
|
|
if (bg)
|
|
|
|
{
|
2022-10-07 21:33:37 +00:00
|
|
|
if (actor->spr.scale.X > 0.9375 )
|
2022-09-30 15:57:22 +00:00
|
|
|
clipmove(ppos, &dasectp, change * 0.5, 64., 4., 4., cliptype, result);
|
2020-10-24 07:31:15 +00:00
|
|
|
else
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-30 15:57:22 +00:00
|
|
|
clipmove(ppos, &dasectp, change * 0.5, 12., 4., 4., cliptype, result);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2021-11-21 08:05:58 +00:00
|
|
|
if (dasectp == nullptr || (dasectp != nullptr && actor->actorstayput != nullptr && actor->actorstayput != dasectp))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-11-21 08:05:58 +00:00
|
|
|
if (dasectp && dasectp->lotag == ST_1_ABOVE_WATER)
|
2022-11-25 12:13:50 +00:00
|
|
|
actor->spr.Angles.Yaw = randomAngle();
|
2020-10-24 07:31:15 +00:00
|
|
|
else if ((actor->temp_data[0] & 3) == 1)
|
2022-11-25 12:13:50 +00:00
|
|
|
actor->spr.Angles.Yaw = randomAngle();
|
2022-02-06 21:45:47 +00:00
|
|
|
SetActor(actor, actor->spr.pos);
|
2021-11-21 08:05:58 +00:00
|
|
|
if (dasectp == nullptr) dasectp = §or[0];
|
|
|
|
return result.setSector(dasectp);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2022-11-25 12:13:50 +00:00
|
|
|
if ((result.type == kHitWall || result.type == kHitSprite) && (actor->cgg == 0)) actor->spr.Angles.Yaw += DAngle45 + DAngle90;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-21 18:13:49 +00:00
|
|
|
if (actor->spr.statnum == STAT_PROJECTILE)
|
2022-09-30 15:57:22 +00:00
|
|
|
clipmove(ppos, &dasectp, change * 0.5, 0.5, 4., 4., cliptype, result);
|
2020-05-07 12:55:04 +00:00
|
|
|
else
|
2022-10-04 17:06:49 +00:00
|
|
|
clipmove(ppos, &dasectp, change * 0.5, actor->clipdist, 4., 4., cliptype, result);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2022-08-29 20:28:48 +00:00
|
|
|
actor->spr.pos.XY() = ppos.XY();
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2021-11-21 08:05:58 +00:00
|
|
|
if (dasectp)
|
2021-12-30 15:51:56 +00:00
|
|
|
if ((dasectp != actor->sector()))
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(actor, dasectp);
|
2022-09-13 18:09:29 +00:00
|
|
|
double daz = actor->spr.pos.Z + change.Z * 0.5;
|
2022-02-03 23:45:24 +00:00
|
|
|
if (daz > actor->ceilingz && daz <= actor->floorz)
|
|
|
|
actor->spr.pos.Z = daz;
|
2021-11-06 19:46:08 +00:00
|
|
|
else if (result.type == kHitNone)
|
2021-11-21 08:05:58 +00:00
|
|
|
return result.setSector(dasectp);
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2021-11-06 19:46:08 +00:00
|
|
|
return result.type;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2021-11-07 13:07:08 +00:00
|
|
|
void lotsoffeathers_r(DDukeActor *actor, int n)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-11-21 07:15:41 +00:00
|
|
|
lotsofstuff(actor, n, FEATHER);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-21 19:41:14 +00:00
|
|
|
int ifhitbyweapon_r(DDukeActor *actor)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-21 19:41:14 +00:00
|
|
|
int p;
|
|
|
|
auto hitowner = actor->GetHitOwner();
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-01-23 23:10:25 +00:00
|
|
|
if (actor->hitextra >= 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:13:49 +00:00
|
|
|
if (actor->spr.extra >= 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-11-26 13:48:51 +00:00
|
|
|
if (actor->isPlayer())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-05-07 20:30:19 +00:00
|
|
|
if (ud.god) return -1;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-10-21 19:41:14 +00:00
|
|
|
p = actor->PlayerIndex();
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-10-21 19:41:14 +00:00
|
|
|
if (hitowner &&
|
2022-11-26 13:48:51 +00:00
|
|
|
hitowner->isPlayer() &&
|
2020-05-07 12:55:04 +00:00
|
|
|
ud.coop == 1 &&
|
|
|
|
ud.ffire == 0)
|
|
|
|
return -1;
|
|
|
|
|
2022-01-23 23:10:25 +00:00
|
|
|
actor->spr.extra -= actor->hitextra;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-10-21 19:41:14 +00:00
|
|
|
if (hitowner)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-27 22:52:16 +00:00
|
|
|
if (actor->spr.extra <= 0 && actor->attackertype != FREEZEBLAST)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:13:49 +00:00
|
|
|
actor->spr.extra = 0;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-10-21 19:41:14 +00:00
|
|
|
ps[p].wackedbyactor = hitowner;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-11-26 13:48:51 +00:00
|
|
|
if (hitowner->isPlayer() && p != hitowner->PlayerIndex())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-21 19:41:14 +00:00
|
|
|
ps[p].frag_ps = hitowner->PlayerIndex();
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2020-10-21 19:41:14 +00:00
|
|
|
actor->SetHitOwner(ps[p].GetActor());
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-20 07:31:08 +00:00
|
|
|
if (attackerflag(actor, SFLAG2_DOUBLEDMGTHRUST))
|
2020-05-07 20:30:19 +00:00
|
|
|
{
|
2022-09-11 22:40:33 +00:00
|
|
|
ps[p].vel.XY() += actor->hitang.ToVector() * actor->hitextra * 0.25;
|
2022-01-20 07:31:08 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-11 22:40:33 +00:00
|
|
|
ps[p].vel.XY() += actor->hitang.ToVector() * actor->hitextra * 0.125;
|
2020-05-07 20:30:19 +00:00
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-01-23 23:10:25 +00:00
|
|
|
if (actor->hitextra == 0)
|
2022-10-07 21:33:37 +00:00
|
|
|
if (actor->spr.scale.X < 0.375)
|
2020-05-07 12:55:04 +00:00
|
|
|
return -1;
|
|
|
|
|
2022-01-23 23:10:25 +00:00
|
|
|
actor->spr.extra -= actor->hitextra;
|
2022-11-28 17:57:50 +00:00
|
|
|
auto Owner = actor->GetOwner();
|
|
|
|
if (!actorflag(actor, SFLAG2_IGNOREHITOWNER) && Owner && Owner->spr.statnum < MAXSTATUS)
|
2020-10-21 19:41:14 +00:00
|
|
|
actor->SetOwner(hitowner);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2022-01-23 23:10:25 +00:00
|
|
|
actor->hitextra = -1;
|
2021-12-27 22:52:16 +00:00
|
|
|
return actor->attackertype;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-01-23 23:10:25 +00:00
|
|
|
actor->hitextra = -1;
|
2020-05-07 12:55:04 +00:00
|
|
|
return -1;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-05-07 20:30:19 +00:00
|
|
|
void movefallers_r(void)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-22 17:31:06 +00:00
|
|
|
DukeStatIterator it(STAT_FALLER);
|
|
|
|
while (auto act = it.Next())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
auto sectp = act->sector();
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-10-22 17:31:06 +00:00
|
|
|
if (act->temp_data[0] == 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-02-07 07:47:18 +00:00
|
|
|
act->spr.pos.Z -= 16;
|
2022-11-25 12:13:50 +00:00
|
|
|
DAngle saved_angle = act->spr.Angles.Yaw;
|
2021-12-21 18:56:46 +00:00
|
|
|
int x = act->spr.extra;
|
2020-10-22 17:31:06 +00:00
|
|
|
int j = fi.ifhitbyweapon(act);
|
|
|
|
if (j >= 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-01-19 18:15:23 +00:00
|
|
|
if (gs.actorinfo[j].flags2 & SFLAG2_EXPLOSIVE)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:56:46 +00:00
|
|
|
if (act->spr.extra <= 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-22 17:31:06 +00:00
|
|
|
act->temp_data[0] = 1;
|
2021-12-24 09:53:27 +00:00
|
|
|
DukeStatIterator itr(STAT_FALLER);
|
|
|
|
while (auto ac2 = itr.Next())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:56:46 +00:00
|
|
|
if (ac2->spr.hitag == act->spr.hitag)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-22 17:31:06 +00:00
|
|
|
ac2->temp_data[0] = 1;
|
2021-12-21 17:19:45 +00:00
|
|
|
ac2->spr.cstat &= ~CSTAT_SPRITE_ONE_SIDE;
|
|
|
|
if (ac2->spr.picnum == CEILINGSTEAM || ac2->spr.picnum == STEAM)
|
|
|
|
ac2->spr.cstat |= CSTAT_SPRITE_INVISIBLE;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-01-23 23:10:25 +00:00
|
|
|
act->hitextra = 0;
|
2021-12-21 18:56:46 +00:00
|
|
|
act->spr.extra = x;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-25 12:13:50 +00:00
|
|
|
act->spr.Angles.Yaw = saved_angle;
|
2022-02-07 07:47:18 +00:00
|
|
|
act->spr.pos.Z += 16;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2020-10-22 17:31:06 +00:00
|
|
|
else if (act->temp_data[0] == 1)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:56:46 +00:00
|
|
|
if (act->spr.lotag > 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 18:56:46 +00:00
|
|
|
act->spr.lotag -= 3;
|
2022-09-13 17:55:54 +00:00
|
|
|
act->vel.X = 4 + krandf(8);
|
|
|
|
act->vel.Z = -4 + krandf(4);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-14 17:29:29 +00:00
|
|
|
if (act->vel.X > 0)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-11 17:28:45 +00:00
|
|
|
act->vel.X -= 1/8.;
|
2020-10-22 17:31:06 +00:00
|
|
|
ssp(act, CLIPMASK0);
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2022-09-11 22:34:18 +00:00
|
|
|
double grav;
|
2022-11-25 16:43:13 +00:00
|
|
|
if (floorspace(act->sector())) grav = 0;
|
2020-05-07 12:55:04 +00:00
|
|
|
else
|
|
|
|
{
|
2022-11-25 16:43:13 +00:00
|
|
|
if (ceilingspace(act->sector()))
|
2022-09-11 22:34:18 +00:00
|
|
|
grav = gs.gravity / 6;
|
2020-05-07 12:55:04 +00:00
|
|
|
else
|
2022-09-11 22:34:18 +00:00
|
|
|
grav = gs.gravity;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
|
2022-08-20 18:11:01 +00:00
|
|
|
if (act->spr.pos.Z < sectp->floorz - 1)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-09-11 22:34:18 +00:00
|
|
|
act->vel.Z += grav;
|
2022-09-03 08:03:30 +00:00
|
|
|
if (act->vel.Z > 24)
|
2022-09-11 17:28:45 +00:00
|
|
|
act->vel.Z = 24;
|
2022-09-03 08:03:30 +00:00
|
|
|
act->spr.pos.Z += act->vel.Z;
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2022-08-20 18:11:01 +00:00
|
|
|
if ((sectp->floorz - act->spr.pos.Z) < 16)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-22 17:31:06 +00:00
|
|
|
int j = 1 + (krand() & 7);
|
2022-09-11 22:34:18 +00:00
|
|
|
for (int x = 0; x < j; x++) RANDOMSCRAP(act);
|
2022-11-20 18:25:23 +00:00
|
|
|
act->Destroy();
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-05-07 20:30:19 +00:00
|
|
|
void movestandables_r(void)
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2020-10-22 17:51:42 +00:00
|
|
|
DukeStatIterator it(STAT_STANDABLE);
|
|
|
|
while (auto act = it.Next())
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
int picnum = act->spr.picnum;
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2022-11-20 18:25:23 +00:00
|
|
|
if (!act->insector() || actorflag(act, SFLAG2_DIENOW))
|
2020-05-07 12:55:04 +00:00
|
|
|
{
|
2022-11-20 18:25:23 +00:00
|
|
|
act->Destroy();
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
2022-12-03 16:09:40 +00:00
|
|
|
else
|
2022-01-16 23:51:40 +00:00
|
|
|
{
|
|
|
|
CallTick(act);
|
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-18 08:42:26 +00:00
|
|
|
void moveweapons_r(void)
|
|
|
|
{
|
2020-10-22 18:21:21 +00:00
|
|
|
DukeStatIterator it(STAT_PROJECTILE);
|
2022-12-03 15:15:13 +00:00
|
|
|
while (auto act = it.Next())
|
2020-10-18 08:42:26 +00:00
|
|
|
{
|
2022-12-03 15:15:13 +00:00
|
|
|
if (!act->insector() || actorflag(act, SFLAG2_DIENOW))
|
2020-10-18 08:42:26 +00:00
|
|
|
{
|
2022-12-03 15:15:13 +00:00
|
|
|
act->Destroy();
|
2020-10-18 08:42:26 +00:00
|
|
|
}
|
2022-12-03 16:09:40 +00:00
|
|
|
else
|
2020-10-18 08:42:26 +00:00
|
|
|
{
|
2022-12-03 15:15:13 +00:00
|
|
|
CallTick(act);
|
2022-11-20 19:40:46 +00:00
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-07 22:03:51 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void movetransports_r(void)
|
|
|
|
{
|
2021-11-14 14:03:50 +00:00
|
|
|
uint8_t warpdir = 0, warpspriteto;
|
2021-11-07 11:43:00 +00:00
|
|
|
int k, p, sectlotag;
|
2022-08-20 16:46:45 +00:00
|
|
|
int onfloorz;
|
|
|
|
double ll, ll2 = 0;
|
2020-10-22 19:42:02 +00:00
|
|
|
Collision coll;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-08-14 19:49:12 +00:00
|
|
|
//Transporters
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
DukeStatIterator iti(STAT_TRANSPORT);
|
|
|
|
while (auto act = iti.Next())
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
auto sectp = act->sector();
|
2021-11-06 23:09:37 +00:00
|
|
|
sectlotag = sectp->lotag;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
auto Owner = act->GetOwner();
|
|
|
|
if (Owner == act || Owner == nullptr)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-11-01 13:56:23 +00:00
|
|
|
onfloorz = act->temp_data[4];
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-11-01 13:56:23 +00:00
|
|
|
if (act->temp_data[0] > 0) act->temp_data[0]--;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-21 00:10:50 +00:00
|
|
|
DukeSectIterator itj(act->sector());
|
2020-10-22 19:42:02 +00:00
|
|
|
while (auto act2 = itj.Next())
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
switch (act2->spr.statnum)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
case STAT_PLAYER: // Player
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
if (act2->GetOwner())
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-09-01 15:26:46 +00:00
|
|
|
p = act2->PlayerIndex();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
|
|
|
ps[p].on_warping_sector = 1;
|
|
|
|
|
|
|
|
if (ps[p].transporter_hold == 0 && ps[p].jumping_counter == 0)
|
|
|
|
{
|
|
|
|
if (ps[p].on_ground && sectlotag == 0 && onfloorz && ps[p].jetpack_on == 0)
|
|
|
|
{
|
2020-10-22 19:42:02 +00:00
|
|
|
spawn(act, TRANSPORTERBEAM);
|
|
|
|
S_PlayActorSound(TELEPORTER, act);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-23 18:07:26 +00:00
|
|
|
for (k = connecthead; k >= 0; k = connectpoint2[k])
|
2021-11-21 07:56:39 +00:00
|
|
|
if (ps[k].cursector == Owner->sector())
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
ps[k].frag_ps = p;
|
2021-12-21 17:19:45 +00:00
|
|
|
ps[k].GetActor()->spr.extra = 0;
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
|
2022-11-27 00:13:43 +00:00
|
|
|
ps[p].Angles.setYaw(Owner->spr.Angles.Yaw, true);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
if (Owner->GetOwner() != Owner)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2020-11-01 13:56:23 +00:00
|
|
|
act->temp_data[0] = 13;
|
2020-10-22 19:42:02 +00:00
|
|
|
Owner->temp_data[0] = 13;
|
2020-05-07 22:03:51 +00:00
|
|
|
ps[p].transporter_hold = 13;
|
|
|
|
}
|
|
|
|
|
2022-11-21 04:08:33 +00:00
|
|
|
ps[p].GetActor()->spr.pos = Owner->spr.pos.plusZ(4);
|
2022-11-15 08:27:07 +00:00
|
|
|
ps[p].GetActor()->backuppos();
|
2022-02-05 09:51:45 +00:00
|
|
|
ps[p].setbobpos();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2021-12-30 15:51:56 +00:00
|
|
|
ps[p].setCursector(act2->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
auto beam = spawn(Owner, TRANSPORTERBEAM);
|
2021-11-19 11:32:12 +00:00
|
|
|
if (beam) S_PlayActorSound(TELEPORTER, beam);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else break;
|
|
|
|
|
2022-11-21 04:20:08 +00:00
|
|
|
if (onfloorz == 0 && fabs(act->spr.pos.Z - ps[p].GetActor()->getOffsetZ()) < 24)
|
2020-08-28 20:51:05 +00:00
|
|
|
if ((ps[p].jetpack_on == 0) || (ps[p].jetpack_on && PlayerInput(p, SB_JUMP)) ||
|
|
|
|
(ps[p].jetpack_on && PlayerInput(p, SB_CROUCH)))
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-11-21 02:29:33 +00:00
|
|
|
ps[p].GetActor()->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
2022-11-21 02:14:14 +00:00
|
|
|
ps[p].GetActor()->backupvec2();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-08-28 20:51:05 +00:00
|
|
|
if (ps[p].jetpack_on && (PlayerInput(p, SB_JUMP) || ps[p].jetpack_on < 11))
|
2022-11-21 04:34:37 +00:00
|
|
|
ps[p].GetActor()->spr.pos.Z = Owner->spr.pos.Z - 24 + gs.playerheight;
|
|
|
|
else ps[p].GetActor()->spr.pos.Z = Owner->spr.pos.Z + 24 + gs.playerheight;
|
2022-11-21 02:15:13 +00:00
|
|
|
ps[p].GetActor()->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2021-11-21 07:45:07 +00:00
|
|
|
ps[p].setCursector(Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
|
|
|
|
k = 0;
|
|
|
|
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
2022-11-30 18:49:59 +00:00
|
|
|
if (onfloorz && sectlotag == ST_160_FLOOR_TELEPORT && ps[p].GetActor()->getOffsetZ() > sectp->floorz - 48)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
k = 2;
|
2022-11-21 04:34:37 +00:00
|
|
|
ps[p].GetActor()->spr.pos.Z = Owner->sector()->ceilingz + 7 + gs.playerheight;
|
2022-11-21 02:15:13 +00:00
|
|
|
ps[p].GetActor()->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
|
2022-11-30 18:49:59 +00:00
|
|
|
if (onfloorz && sectlotag == ST_161_CEILING_TELEPORT && ps[p].GetActor()->getOffsetZ() < sectp->ceilingz + 6)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
k = 2;
|
2021-12-21 17:19:45 +00:00
|
|
|
if (ps[p].GetActor()->spr.extra <= 0) break;
|
2022-11-21 04:34:37 +00:00
|
|
|
ps[p].GetActor()->spr.pos.Z = Owner->sector()->floorz - 49 + gs.playerheight;
|
2022-11-21 02:15:13 +00:00
|
|
|
ps[p].GetActor()->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-11-21 04:20:08 +00:00
|
|
|
if ((onfloorz && sectlotag == ST_1_ABOVE_WATER && ps[p].GetActor()->getOffsetZ() > sectp->floorz - 6) ||
|
2020-05-07 22:03:51 +00:00
|
|
|
(onfloorz && sectlotag == ST_1_ABOVE_WATER && ps[p].OnMotorcycle))
|
|
|
|
{
|
|
|
|
if (ps[p].OnBoat) break;
|
|
|
|
k = 1;
|
|
|
|
if (screenpeek == p)
|
|
|
|
{
|
|
|
|
FX_StopAllSounds();
|
|
|
|
}
|
2020-10-22 19:42:02 +00:00
|
|
|
S_PlayActorSound(DUKE_UNDERWATER, ps[p].GetActor());
|
2022-11-21 04:34:37 +00:00
|
|
|
ps[p].GetActor()->spr.pos.Z = Owner->sector()->ceilingz + 7 + gs.playerheight;
|
2022-11-21 02:15:13 +00:00
|
|
|
ps[p].GetActor()->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
if (ps[p].OnMotorcycle)
|
|
|
|
ps[p].moto_underwater = 1;
|
|
|
|
}
|
|
|
|
|
2022-11-21 04:20:08 +00:00
|
|
|
if (onfloorz && sectlotag == ST_2_UNDERWATER && ps[p].GetActor()->getOffsetZ() < sectp->ceilingz + 6)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
k = 1;
|
2021-12-21 17:19:45 +00:00
|
|
|
if (ps[p].GetActor()->spr.extra <= 0) break;
|
2020-05-07 22:03:51 +00:00
|
|
|
if (screenpeek == p)
|
|
|
|
{
|
|
|
|
FX_StopAllSounds();
|
|
|
|
}
|
2020-10-22 19:42:02 +00:00
|
|
|
S_PlayActorSound(DUKE_GASP, ps[p].GetActor());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-11-21 04:34:37 +00:00
|
|
|
ps[p].GetActor()->spr.pos.Z = Owner->sector()->floorz - 7 + gs.playerheight;
|
2022-11-21 02:15:13 +00:00
|
|
|
ps[p].GetActor()->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (k == 1)
|
|
|
|
{
|
2022-11-21 02:29:33 +00:00
|
|
|
ps[p].GetActor()->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
2022-11-21 02:14:14 +00:00
|
|
|
ps[p].GetActor()->backupvec2();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
if (Owner->GetOwner() != Owner)
|
2020-05-07 22:03:51 +00:00
|
|
|
ps[p].transporter_hold = -2;
|
2021-11-21 07:45:07 +00:00
|
|
|
ps[p].setCursector(Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
|
|
|
if ((krand() & 255) < 32)
|
2020-10-22 19:42:02 +00:00
|
|
|
spawn(ps[p].GetActor(), WATERSPLASH2);
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
else if (isRRRA() && k == 2)
|
|
|
|
{
|
2022-11-21 02:29:33 +00:00
|
|
|
ps[p].GetActor()->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
2022-11-21 02:14:14 +00:00
|
|
|
ps[p].GetActor()->backupvec2();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2020-10-22 19:42:02 +00:00
|
|
|
if (Owner->GetOwner() != Owner)
|
2020-05-07 22:03:51 +00:00
|
|
|
ps[p].transporter_hold = -2;
|
2021-11-21 07:45:07 +00:00
|
|
|
ps[p].setCursector(Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case STAT_ACTOR:
|
|
|
|
case STAT_PROJECTILE:
|
|
|
|
case STAT_MISC:
|
|
|
|
case STAT_DUMMYPLAYER:
|
2022-11-28 17:57:50 +00:00
|
|
|
if (actorflag(act, SFLAG2_DONTDIVE)) continue;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-09-03 08:03:30 +00:00
|
|
|
ll = abs(act2->vel.Z);
|
2020-05-07 22:03:51 +00:00
|
|
|
if (isRRRA())
|
|
|
|
{
|
2022-09-03 08:03:30 +00:00
|
|
|
if (act2->vel.Z >= 0)
|
2020-05-07 22:03:51 +00:00
|
|
|
warpdir = 2;
|
|
|
|
else
|
|
|
|
warpdir = 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
{
|
|
|
|
warpspriteto = 0;
|
2022-08-20 16:46:45 +00:00
|
|
|
if (ll && sectlotag == ST_2_UNDERWATER && act2->spr.pos.Z < (sectp->ceilingz + ll))
|
2020-05-07 22:03:51 +00:00
|
|
|
warpspriteto = 1;
|
|
|
|
|
2022-08-20 16:46:45 +00:00
|
|
|
if (ll && sectlotag == ST_1_ABOVE_WATER && act2->spr.pos.Z > (sectp->floorz - ll))
|
2022-11-28 17:57:50 +00:00
|
|
|
warpspriteto = 1;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
2022-11-30 18:49:59 +00:00
|
|
|
if (ll && sectlotag == ST_161_CEILING_TELEPORT && act2->spr.pos.Z < (sectp->ceilingz + ll) && warpdir == 1)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
warpspriteto = 1;
|
2022-08-20 16:46:45 +00:00
|
|
|
ll2 = ll - abs(act2->spr.pos.Z - sectp->ceilingz);
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
2022-11-30 18:49:59 +00:00
|
|
|
else if (sectlotag == ST_161_CEILING_TELEPORT && act2->spr.pos.Z < (sectp->ceilingz + 3.90625) && warpdir == 1)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
warpspriteto = 1;
|
2022-08-20 16:46:45 +00:00
|
|
|
ll2 = zmaptoworld;
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
2022-11-30 18:49:59 +00:00
|
|
|
if (ll && sectlotag == ST_160_FLOOR_TELEPORT && act2->spr.pos.Z > (sectp->floorz - ll) && warpdir == 2)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
warpspriteto = 1;
|
2022-08-20 16:46:45 +00:00
|
|
|
ll2 = ll - abs(sectp->floorz - act2->spr.pos.Z);
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
2022-11-30 18:49:59 +00:00
|
|
|
else if (sectlotag == ST_160_FLOOR_TELEPORT && act2->spr.pos.Z > (sectp->floorz - 3.90625) && warpdir == 2)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
|
|
|
warpspriteto = 1;
|
2022-08-20 16:46:45 +00:00
|
|
|
ll2 = zmaptoworld;
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-08-20 16:46:45 +00:00
|
|
|
if (sectlotag == 0 && (onfloorz || abs(act2->spr.pos.Z - act->spr.pos.Z) < 16))
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (Owner->GetOwner() != Owner && onfloorz && act->temp_data[0] > 0 && act2->spr.statnum != 5)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2020-11-01 13:56:23 +00:00
|
|
|
act->temp_data[0]++;
|
2020-05-08 22:34:48 +00:00
|
|
|
continue;
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
warpspriteto = 1;
|
|
|
|
}
|
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
if (warpspriteto)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-01-19 07:20:40 +00:00
|
|
|
if (actorflag(act2, SFLAG_NOTELEPORT)) continue;
|
|
|
|
switch (act2->spr.picnum)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-01-19 07:20:40 +00:00
|
|
|
case PLAYERONWATER:
|
|
|
|
if (sectlotag == ST_2_UNDERWATER)
|
|
|
|
{
|
|
|
|
act2->spr.cstat &= ~CSTAT_SPRITE_INVISIBLE;
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
[[fallthrough]];
|
|
|
|
default:
|
2022-11-30 18:49:59 +00:00
|
|
|
if (act2->spr.statnum == 5 && !(sectlotag == ST_1_ABOVE_WATER || sectlotag == ST_2_UNDERWATER || (isRRRA() && (sectlotag == ST_160_FLOOR_TELEPORT || sectlotag == ST_161_CEILING_TELEPORT))))
|
2022-01-19 07:20:40 +00:00
|
|
|
break;
|
|
|
|
[[fallthrough]];
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
case WATERBUBBLE:
|
|
|
|
if (rnd(192) && act2->spr.picnum == WATERBUBBLE)
|
|
|
|
break;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
if (sectlotag > 0)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-01-19 07:20:40 +00:00
|
|
|
auto spawned = spawn(act2, WATERSPLASH2);
|
|
|
|
if (spawned && sectlotag == 1 && act2->spr.statnum == 4)
|
|
|
|
{
|
2022-09-13 17:55:54 +00:00
|
|
|
spawned->vel.X = act2->vel.X * 0.5;
|
2022-11-25 12:13:50 +00:00
|
|
|
spawned->spr.Angles.Yaw = act2->spr.Angles.Yaw;
|
2022-01-19 07:20:40 +00:00
|
|
|
ssp(spawned, CLIPMASK0);
|
|
|
|
}
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
switch (sectlotag)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-01-19 07:20:40 +00:00
|
|
|
case ST_0_NO_EFFECT:
|
|
|
|
if (onfloorz)
|
2020-05-07 22:03:51 +00:00
|
|
|
{
|
2022-01-19 07:20:40 +00:00
|
|
|
if (checkcursectnums(act->sector()) == -1 && checkcursectnums(Owner->sector()) == -1)
|
|
|
|
{
|
2022-08-20 16:46:45 +00:00
|
|
|
act2->spr.pos += (Owner->spr.pos - act->spr.pos.XY()).plusZ(-Owner->sector()->floorz);
|
2022-11-25 12:13:50 +00:00
|
|
|
act2->spr.Angles.Yaw = Owner->spr.Angles.Yaw;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
act2->backupang();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
auto beam = spawn(act, TRANSPORTERBEAM);
|
|
|
|
if (beam) S_PlayActorSound(TELEPORTER, beam);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
beam = spawn(Owner, TRANSPORTERBEAM);
|
|
|
|
if (beam) S_PlayActorSound(TELEPORTER, beam);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
if (Owner->GetOwner() != Owner)
|
|
|
|
{
|
|
|
|
act->temp_data[0] = 13;
|
|
|
|
Owner->temp_data[0] = 13;
|
|
|
|
}
|
|
|
|
|
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
2022-01-19 07:20:40 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-08-20 16:46:45 +00:00
|
|
|
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
2022-02-04 08:50:40 +00:00
|
|
|
act2->spr.pos.Z = Owner->spr.pos.Z + 16;
|
2022-01-19 07:20:40 +00:00
|
|
|
act2->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
}
|
2022-01-19 07:20:40 +00:00
|
|
|
break;
|
|
|
|
case ST_1_ABOVE_WATER:
|
2022-08-20 16:46:45 +00:00
|
|
|
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
|
|
|
act2->spr.pos.Z = Owner->sector()->ceilingz + ll;
|
2021-12-30 16:10:08 +00:00
|
|
|
act2->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2021-11-26 20:52:01 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
break;
|
|
|
|
case ST_2_UNDERWATER:
|
2022-08-20 16:46:45 +00:00
|
|
|
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
|
|
|
act2->spr.pos.Z = Owner->sector()->ceilingz - ll;
|
2022-01-19 07:20:40 +00:00
|
|
|
act2->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
break;
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
case 160:
|
|
|
|
if (!isRRRA()) break;
|
2022-08-20 16:46:45 +00:00
|
|
|
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
|
|
|
|
act2->spr.pos.Z = Owner->sector()->ceilingz + ll2;
|
2022-01-19 07:20:40 +00:00
|
|
|
act2->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-11-25 12:13:50 +00:00
|
|
|
movesprite_ex(act2, DVector3(act2->spr.Angles.Yaw.ToVector() * act2->vel.X, 0), CLIPMASK1, coll);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
break;
|
|
|
|
case 161:
|
|
|
|
if (!isRRRA()) break;
|
2022-08-20 16:46:45 +00:00
|
|
|
act2->spr.pos += Owner->spr.pos.XY() - act->spr.pos.XY();
|
|
|
|
act2->spr.pos.Z = Owner->sector()->floorz - ll;
|
2022-01-19 07:20:40 +00:00
|
|
|
act2->backupz();
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
ChangeActorSect(act2, Owner->sector());
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-11-25 12:13:50 +00:00
|
|
|
movesprite_ex(act2, DVector3(act2->spr.Angles.Yaw.ToVector() * act2->vel.X, 0), CLIPMASK1, coll);
|
2020-05-07 22:03:51 +00:00
|
|
|
|
2022-01-19 07:20:40 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-05-07 22:03:51 +00:00
|
|
|
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 22:34:48 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
static void rrra_specialstats()
|
|
|
|
{
|
2020-10-22 20:21:40 +00:00
|
|
|
Collision coll;
|
2022-12-02 16:34:44 +00:00
|
|
|
DukeStatIterator it(STAT_BOBBING);
|
2020-10-22 20:21:40 +00:00
|
|
|
while (auto act = it.Next())
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2021-12-21 18:16:52 +00:00
|
|
|
if (act->spr.hitag > 1)
|
|
|
|
act->spr.hitag = 0;
|
|
|
|
if (act->spr.hitag == 0)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2021-12-21 18:16:52 +00:00
|
|
|
act->spr.extra++;
|
|
|
|
if (act->spr.extra >= 20)
|
|
|
|
act->spr.hitag = 1;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
2021-12-21 18:16:52 +00:00
|
|
|
else if (act->spr.hitag == 1)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2021-12-21 18:16:52 +00:00
|
|
|
act->spr.extra--;
|
|
|
|
if (act->spr.extra <= -20)
|
|
|
|
act->spr.hitag = 0;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
2022-09-13 18:02:15 +00:00
|
|
|
movesprite_ex(act, DVector3(0, 0, act->spr.extra / 256.), CLIPMASK0, coll);
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 07:07:07 +00:00
|
|
|
if (ps[screenpeek].MamaEnd > 0)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2020-05-14 07:07:07 +00:00
|
|
|
ps[screenpeek].MamaEnd--;
|
|
|
|
if (ps[screenpeek].MamaEnd == 0)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2020-09-03 21:10:28 +00:00
|
|
|
CompleteLevel(nullptr);
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
if (enemysizecheat > 0)
|
|
|
|
{
|
2021-12-24 09:53:27 +00:00
|
|
|
DukeSpriteIterator itr;
|
|
|
|
while (auto act = itr.Next())
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2021-12-21 18:16:52 +00:00
|
|
|
switch (act->spr.picnum)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
|
|
|
//case 4049:
|
|
|
|
//case 4050:
|
|
|
|
case BILLYCOCK:
|
|
|
|
case BILLYRAY:
|
|
|
|
case BILLYRAYSTAYPUT:
|
|
|
|
case BRAYSNIPER:
|
|
|
|
case DOGRUN:
|
|
|
|
case LTH:
|
|
|
|
case HULKJUMP:
|
|
|
|
case HULK:
|
|
|
|
case HULKSTAYPUT:
|
|
|
|
case HEN:
|
|
|
|
case DRONE:
|
|
|
|
case PIG:
|
|
|
|
case MINION:
|
|
|
|
case MINIONSTAYPUT:
|
|
|
|
case UFO1_RRRA:
|
|
|
|
case UFO2:
|
|
|
|
case UFO3:
|
|
|
|
case UFO4:
|
|
|
|
case UFO5:
|
|
|
|
case COOT:
|
|
|
|
case COOTSTAYPUT:
|
|
|
|
case VIXEN:
|
|
|
|
case BIKERB:
|
|
|
|
case BIKERBV2:
|
|
|
|
case BIKER:
|
|
|
|
case MAKEOUT:
|
|
|
|
case CHEERB:
|
|
|
|
case CHEER:
|
|
|
|
case CHEERSTAYPUT:
|
|
|
|
case COOTPLAY:
|
|
|
|
case BILLYPLAY:
|
|
|
|
case MINIONBOAT:
|
|
|
|
case HULKBOAT:
|
|
|
|
case CHEERBOAT:
|
|
|
|
case RABBIT:
|
|
|
|
case MAMA:
|
|
|
|
if (enemysizecheat == 3)
|
|
|
|
{
|
2022-10-07 21:41:15 +00:00
|
|
|
act->spr.scale *= 2;
|
2022-09-09 16:16:29 +00:00
|
|
|
act->setClipDistFromTile();
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
else if (enemysizecheat == 2)
|
|
|
|
{
|
2022-10-07 21:41:15 +00:00
|
|
|
act->spr.scale *= 0.5;
|
2022-10-07 21:33:37 +00:00
|
|
|
act->clipdist = act->spr.scale.X, tileHeight(act->spr.picnum) * 0.125;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
}
|
2020-10-12 20:20:56 +00:00
|
|
|
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
enemysizecheat = 0;
|
|
|
|
}
|
|
|
|
|
2022-11-20 10:58:19 +00:00
|
|
|
it.Reset(STAT_RABBITSPAWN);
|
2020-10-22 20:21:40 +00:00
|
|
|
while (auto act = it.Next())
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2022-11-20 10:58:19 +00:00
|
|
|
CallTick(act);
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2022-11-20 21:07:10 +00:00
|
|
|
// this one's a hack. Can only be replaced with something better when
|
|
|
|
// the switch code has been redone.
|
2020-05-08 22:34:48 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2022-11-20 21:07:10 +00:00
|
|
|
void resetswitch(int tag)
|
|
|
|
{
|
|
|
|
DukeStatIterator it2(STAT_DEFAULT);
|
|
|
|
while (auto act2 = it2.Next())
|
|
|
|
{
|
2022-11-25 09:03:15 +00:00
|
|
|
if (act2->spr.picnum == DIPSWITCH3ON)
|
2022-11-20 21:07:10 +00:00
|
|
|
if (act2->spr.hitag == tag)
|
|
|
|
act2->spr.picnum = DIPSWITCH3;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-08 22:34:48 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void moveactors_r(void)
|
|
|
|
{
|
2022-09-14 20:49:01 +00:00
|
|
|
double xx;
|
2020-10-22 20:48:51 +00:00
|
|
|
int p;
|
|
|
|
Collision coll;
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-05-12 11:43:24 +00:00
|
|
|
dojaildoor();
|
|
|
|
moveminecart();
|
2020-05-08 22:34:48 +00:00
|
|
|
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
|
|
|
rrra_specialstats();
|
|
|
|
}
|
2022-12-02 16:10:50 +00:00
|
|
|
tickstat(STAT_LUMBERMILL);
|
|
|
|
if (ud.chickenplant) tickstat(STAT_CHICKENPLANT);
|
|
|
|
tickstat(STAT_BOWLING);
|
|
|
|
tickstat(STAT_TELEPORT);
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2020-10-22 20:48:51 +00:00
|
|
|
DukeStatIterator it(STAT_ACTOR);
|
|
|
|
while (auto act = it.Next())
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-11-20 18:25:23 +00:00
|
|
|
if( act->spr.scale.X == 0 || !act->insector() || actorflag(act, SFLAG2_DIENOW))
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2022-11-20 18:25:23 +00:00
|
|
|
act->Destroy();
|
2020-05-08 22:34:48 +00:00
|
|
|
continue;
|
|
|
|
}
|
2022-12-03 15:15:13 +00:00
|
|
|
if (monsterCheatCheck(act) && badguy(act))
|
|
|
|
{
|
|
|
|
continue;
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
auto sectp = act->sector();
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2022-01-21 00:04:08 +00:00
|
|
|
if (act->GetClass() != RUNTIME_CLASS(DDukeActor))
|
|
|
|
{
|
|
|
|
CallTick(act);
|
2022-12-01 10:55:35 +00:00
|
|
|
continue;
|
2022-01-21 00:04:08 +00:00
|
|
|
}
|
|
|
|
else switch(act->spr.picnum)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
case EMPTYBIKE:
|
2020-05-08 22:34:48 +00:00
|
|
|
if (!isRRRA()) break;
|
2020-10-22 20:48:51 +00:00
|
|
|
makeitfall(act);
|
|
|
|
getglobalz(act);
|
2021-11-06 23:09:37 +00:00
|
|
|
if (sectp->lotag == 1)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-02-05 09:51:45 +00:00
|
|
|
SetActor(act, DVector3(act->spr.pos.X, act->spr.pos.Y, act->floorz + 16));
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
|
|
|
case EMPTYBOAT:
|
2020-05-08 22:34:48 +00:00
|
|
|
if (!isRRRA()) break;
|
2020-10-22 20:48:51 +00:00
|
|
|
makeitfall(act);
|
|
|
|
getglobalz(act);
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2022-01-19 09:48:18 +00:00
|
|
|
case POWDERKEG:
|
2022-11-30 18:49:59 +00:00
|
|
|
if (!isRRRA() || (sectp->lotag != ST_1_ABOVE_WATER && sectp->lotag != ST_160_FLOOR_TELEPORT))
|
2022-09-03 16:41:25 +00:00
|
|
|
if (act->vel.X != 0)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2022-11-25 12:13:50 +00:00
|
|
|
movesprite_ex(act, DVector3(act->spr.Angles.Yaw.ToVector()* act->vel.X, act->vel.Z), CLIPMASK0, coll);
|
2022-09-03 16:41:25 +00:00
|
|
|
act->vel.X -= 1. / 16.;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
2022-09-14 20:49:01 +00:00
|
|
|
p = findplayer(act, &xx);
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2022-09-14 20:49:01 +00:00
|
|
|
execute(act,p,xx);
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
|
|
|
|
}
|
|
|
|
|
2020-05-09 18:27:06 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void moveexplosions_r(void) // STATNUM 5
|
|
|
|
{
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-10-22 20:51:51 +00:00
|
|
|
DukeStatIterator it(STAT_MISC);
|
|
|
|
while (auto act = it.Next())
|
2020-05-09 18:27:06 +00:00
|
|
|
{
|
2022-12-03 15:15:13 +00:00
|
|
|
if (act->spr.scale.X == 0 || act->spr.sectp == nullptr || actorflag(act, SFLAG2_DIENOW))
|
2020-05-09 18:27:06 +00:00
|
|
|
{
|
2022-11-20 18:25:23 +00:00
|
|
|
act->Destroy();
|
2020-05-09 18:27:06 +00:00
|
|
|
}
|
2022-12-03 16:09:40 +00:00
|
|
|
else
|
2022-11-14 22:55:46 +00:00
|
|
|
{
|
|
|
|
CallTick(act);
|
|
|
|
}
|
2020-05-09 18:27:06 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-22 20:55:53 +00:00
|
|
|
void handle_se06_r(DDukeActor *actor)
|
|
|
|
{
|
2021-11-20 23:33:17 +00:00
|
|
|
auto sc = actor->sector();
|
2021-12-21 19:02:06 +00:00
|
|
|
int sh = actor->spr.hitag;
|
2020-10-22 20:55:53 +00:00
|
|
|
|
|
|
|
int k = sc->extra;
|
|
|
|
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[4] > 0)
|
2020-10-22 20:55:53 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
actor->temp_data[4]--;
|
|
|
|
if (actor->temp_data[4] >= (k - (k >> 3)))
|
2022-09-11 19:01:38 +00:00
|
|
|
actor->vel.X -= (k >> 5) / 16.;
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[4] > ((k >> 1) - 1) && actor->temp_data[4] < (k - (k >> 3)))
|
2022-09-03 08:02:25 +00:00
|
|
|
actor->vel.X = 0;
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[4] < (k >> 1))
|
2022-09-11 19:01:38 +00:00
|
|
|
actor->vel.X += (k >> 5) / 16.;
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[4] < ((k >> 1) - (k >> 3)))
|
2020-10-22 20:55:53 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
actor->temp_data[4] = 0;
|
2022-09-11 19:01:38 +00:00
|
|
|
actor->vel.X = k / 16.;
|
2020-10-22 20:55:53 +00:00
|
|
|
if ((!isRRRA() || lastlevel) && hulkspawn)
|
|
|
|
{
|
|
|
|
hulkspawn--;
|
|
|
|
auto ns = spawn(actor, HULK);
|
2021-11-19 11:32:12 +00:00
|
|
|
if (ns)
|
|
|
|
{
|
2022-08-20 18:57:54 +00:00
|
|
|
ns->spr.pos.Z = ns->sector()->ceilingz;
|
2021-12-21 17:19:45 +00:00
|
|
|
ns->spr.pal = 33;
|
2021-11-19 11:32:12 +00:00
|
|
|
}
|
2020-10-22 20:55:53 +00:00
|
|
|
if (!hulkspawn)
|
|
|
|
{
|
2022-12-01 19:54:41 +00:00
|
|
|
ns = CreateActor(actor->sector(), DVector3(actor->spr.pos.XY(), actor->sector()->ceilingz + 466.5), UFOLIGHT, -8, DVector2(0.25, 0.25), nullAngle, 0., 0., actor, 5);
|
2021-11-19 08:47:17 +00:00
|
|
|
if (ns)
|
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
ns->spr.cstat = CSTAT_SPRITE_TRANS_FLIP | CSTAT_SPRITE_TRANSLUCENT;
|
|
|
|
ns->spr.pal = 7;
|
2022-10-07 21:52:29 +00:00
|
|
|
ns->spr.scale = DVector2(1.25, 3.984375);
|
2021-11-19 08:47:17 +00:00
|
|
|
}
|
2020-10-22 20:55:53 +00:00
|
|
|
ns = spawn(actor, 296);
|
2021-11-19 11:32:12 +00:00
|
|
|
if (ns)
|
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
ns->spr.cstat = 0;
|
|
|
|
ns->spr.cstat |= CSTAT_SPRITE_INVISIBLE;
|
2022-08-20 18:11:01 +00:00
|
|
|
ns->spr.pos.Z = actor->sector()->floorz - 24;
|
2021-11-19 11:32:12 +00:00
|
|
|
}
|
2022-11-20 18:25:23 +00:00
|
|
|
actor->Destroy();
|
2020-10-22 20:55:53 +00:00
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-11 19:01:38 +00:00
|
|
|
actor->vel.X = k / 16.;
|
2021-11-20 23:41:52 +00:00
|
|
|
DukeSectIterator it(actor->sector());
|
2020-10-22 20:55:53 +00:00
|
|
|
while (auto a2 = it.Next())
|
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (a2->spr.picnum == UFOBEAM && ufospawn && ++ufocnt == 64)
|
2020-10-22 20:55:53 +00:00
|
|
|
{
|
|
|
|
ufocnt = 0;
|
|
|
|
ufospawn--;
|
2022-11-28 17:57:50 +00:00
|
|
|
const char* pn;
|
2020-10-22 20:55:53 +00:00
|
|
|
if (!isRRRA())
|
|
|
|
{
|
|
|
|
switch (krand() & 3)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
case 0:
|
2022-11-28 17:57:50 +00:00
|
|
|
pn = "RedneckUfo1";
|
2020-10-22 20:55:53 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2022-11-28 17:57:50 +00:00
|
|
|
pn = "RedneckUfo2";
|
2020-10-22 20:55:53 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2022-11-28 17:57:50 +00:00
|
|
|
pn = "RedneckUfo3";
|
2020-10-22 20:55:53 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2022-11-28 17:57:50 +00:00
|
|
|
pn = "RedneckUfo4";
|
2020-10-22 20:55:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2022-11-28 17:57:50 +00:00
|
|
|
else pn = "RedneckUfoRRRA";
|
|
|
|
auto ns = spawn(actor, PClass::FindActor(pn));
|
2022-08-20 18:57:54 +00:00
|
|
|
if (ns) ns->spr.pos.Z = ns->sector()->ceilingz;
|
2020-10-22 20:55:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
DukeStatIterator it(STAT_EFFECTOR);
|
|
|
|
while (auto act2 = it.Next())
|
|
|
|
{
|
2022-09-11 18:46:21 +00:00
|
|
|
if ((act2->spr.lotag == SE_14_SUBWAY_CAR) && (sh == act2->spr.hitag) && (act2->temp_data[0] == actor->temp_data[0]))
|
2020-10-22 20:55:53 +00:00
|
|
|
{
|
2022-09-11 18:46:21 +00:00
|
|
|
act2->vel.X = actor->vel.X;
|
|
|
|
//if( actor->temp_data[4] == 1 )
|
2020-10-22 20:55:53 +00:00
|
|
|
{
|
2022-09-11 19:01:38 +00:00
|
|
|
if (act2->temp_pos.X == 0)
|
|
|
|
act2->temp_pos.X = (act2->spr.pos - actor->spr.pos).LengthSquared();
|
|
|
|
int x = Sgn((act2->spr.pos - actor->spr.pos).LengthSquared() - act2->temp_pos.X);
|
2021-12-21 17:19:45 +00:00
|
|
|
if (act2->spr.extra) x = -x;
|
2022-09-11 18:46:21 +00:00
|
|
|
actor->vel.X += x / 16.;
|
2020-10-22 20:55:53 +00:00
|
|
|
}
|
2021-12-23 15:20:32 +00:00
|
|
|
act2->temp_data[4] = actor->temp_data[4];
|
2020-10-22 20:55:53 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
handle_se14(actor, false, RPG, JIBS6);
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
void moveeffectors_r(void) //STATNUM 3
|
|
|
|
{
|
|
|
|
clearfriction();
|
|
|
|
|
2020-10-22 21:17:51 +00:00
|
|
|
DukeStatIterator it(STAT_EFFECTOR);
|
|
|
|
while (auto act = it.Next())
|
2020-05-10 07:08:02 +00:00
|
|
|
{
|
2021-11-20 23:33:17 +00:00
|
|
|
auto sc = act->sector();
|
2021-12-21 17:19:45 +00:00
|
|
|
int st = act->spr.lotag;
|
2020-05-10 07:08:02 +00:00
|
|
|
|
|
|
|
switch (st)
|
|
|
|
{
|
|
|
|
case SE_0_ROTATING_SECTOR:
|
2022-01-19 09:48:18 +00:00
|
|
|
handle_se00(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
case SE_1_PIVOT: //Nothing for now used as the pivot
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se01(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
case SE_6_SUBWAY:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se06_r(act);
|
2020-11-03 19:21:30 +00:00
|
|
|
break;
|
2020-05-10 07:08:02 +00:00
|
|
|
|
|
|
|
case SE_14_SUBWAY_CAR:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se14(act, false, RPG, JIBS6);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_30_TWO_WAY_TRAIN:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se30(act, JIBS6);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
case SE_2_EARTHQUAKE:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se02(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
//Flashing sector lights after reactor EXPLOSION2
|
|
|
|
case SE_3_RANDOM_LIGHTS_AFTER_SHOT_OUT:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se03(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_4_RANDOM_LIGHTS:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se04(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
//BOSS
|
|
|
|
case SE_5_BOSS:
|
2022-11-29 14:12:35 +00:00
|
|
|
handle_se05(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_8_UP_OPEN_DOOR_LIGHTS:
|
|
|
|
case SE_9_DOWN_OPEN_DOOR_LIGHTS:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se08(act, true);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_10_DOOR_AUTO_CLOSE:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se10(act, nullptr);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2020-10-22 21:17:51 +00:00
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
case SE_11_SWINGING_DOOR:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se11(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
case SE_12_LIGHT_SWITCH:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se12(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_47_LIGHT_SWITCH:
|
2020-10-22 21:17:51 +00:00
|
|
|
if (isRRRA()) handle_se12(act, 1);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
case SE_48_LIGHT_SWITCH:
|
2020-10-22 21:17:51 +00:00
|
|
|
if (isRRRA()) handle_se12(act, 2);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2021-12-30 09:30:21 +00:00
|
|
|
|
2020-05-10 07:08:02 +00:00
|
|
|
|
|
|
|
case SE_13_EXPLOSIVE:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se13(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_15_SLIDING_DOOR:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se15(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_16_REACTOR:
|
2022-12-02 22:26:55 +00:00
|
|
|
handle_se16(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_17_WARP_ELEVATOR:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se17(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_18_INCREMENTAL_SECTOR_RISE_FALL:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se18(act, true);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_19_EXPLOSION_LOWERS_CEILING:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se19(act, BIGFORCE);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_20_STRETCH_BRIDGE:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se20(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_21_DROP_FLOOR:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se21(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_22_TEETH_DOOR:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se22(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2022-09-12 19:59:34 +00:00
|
|
|
case SE_156_CONVEYOR_NOSCROLL:
|
2020-05-10 07:08:02 +00:00
|
|
|
if (!isRRRA()) break;
|
2021-11-14 11:25:25 +00:00
|
|
|
[[fallthrough]];
|
2020-05-10 07:08:02 +00:00
|
|
|
case SE_24_CONVEYOR:
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_34:
|
2020-10-14 18:49:43 +00:00
|
|
|
{
|
2022-09-12 19:59:34 +00:00
|
|
|
handle_se24(act, st != SE_156_CONVEYOR_NOSCROLL, 0.5);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2020-10-14 18:49:43 +00:00
|
|
|
}
|
2020-10-21 22:50:01 +00:00
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_35:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se35(act, SMALLSMOKE, EXPLOSION2);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_25_PISTON: //PISTONS
|
2021-12-23 15:20:32 +00:00
|
|
|
if (act->temp_data[4] == 0) break;
|
2022-09-12 21:35:48 +00:00
|
|
|
handle_se25(act, isRRRA() ? 371 : -1, isRRRA() ? 167 : -1);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_26:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se26(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SE_27_DEMO_CAM:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se27(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_29_WAVES:
|
2022-09-11 21:51:48 +00:00
|
|
|
handle_se29(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_31_FLOOR_RISE_FALL: // True Drop Floor
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se31(act, false);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_32_CEILING_RISE_FALL: // True Drop Ceiling
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se32(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_33_QUAKE_DEBRIS:
|
2022-11-30 16:15:44 +00:00
|
|
|
if (ud.earthquaketime > 0 && (krand() & 7) == 0)
|
2020-10-22 21:17:51 +00:00
|
|
|
RANDOMSCRAP(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_36_PROJ_SHOOTER:
|
2020-05-10 07:08:02 +00:00
|
|
|
|
2021-12-23 15:20:32 +00:00
|
|
|
if (act->temp_data[0])
|
2020-05-10 07:08:02 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (act->temp_data[0] == 1)
|
2022-11-29 12:06:42 +00:00
|
|
|
fi.shoot(act, sc->extra, nullptr);
|
2021-12-23 15:20:32 +00:00
|
|
|
else if (act->temp_data[0] == 26 * 5)
|
|
|
|
act->temp_data[0] = 0;
|
|
|
|
act->temp_data[0]++;
|
2020-05-10 07:08:02 +00:00
|
|
|
}
|
|
|
|
break;
|
|
|
|
|
2021-11-15 22:32:41 +00:00
|
|
|
case SE_128_GLASS_BREAKING:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se128(act);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_130:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se130(act, 80, EXPLOSION2);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
2020-11-27 19:06:38 +00:00
|
|
|
case SE_131:
|
2020-10-22 21:17:51 +00:00
|
|
|
handle_se130(act, 40, EXPLOSION2);
|
2020-05-10 07:08:02 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//Sloped sin-wave floors!
|
2020-10-14 18:24:31 +00:00
|
|
|
it.Reset(STAT_EFFECTOR);
|
2020-10-22 21:17:51 +00:00
|
|
|
while (auto act = it.Next())
|
2020-05-10 07:08:02 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (act->spr.lotag != SE_29_WAVES) continue;
|
2021-11-20 23:33:17 +00:00
|
|
|
auto sc = act->sector();
|
2022-11-15 13:59:28 +00:00
|
|
|
if (sc->walls.Size() != 4) continue;
|
2022-11-15 14:31:52 +00:00
|
|
|
auto wal = &sc->walls[2];
|
2022-09-12 19:26:17 +00:00
|
|
|
if (wal->nextSector()) alignflorslope(act->sector(), DVector3(wal->pos, wal->nextSector()->floorz));
|
2020-05-10 07:08:02 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-07 12:55:04 +00:00
|
|
|
|
2020-05-13 22:04:14 +00:00
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
// game specific part of makeitfall.
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2022-09-11 22:34:18 +00:00
|
|
|
double adjustfall(DDukeActor *actor, double c)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if ((actor->spr.picnum == BIKERB || actor->spr.picnum == CHEERB) && c == gs.gravity)
|
2022-09-11 22:34:18 +00:00
|
|
|
c = gs.gravity * 0.25;
|
2021-12-21 17:19:45 +00:00
|
|
|
else if (actor->spr.picnum == BIKERBV2 && c == gs.gravity)
|
2022-09-11 22:34:18 +00:00
|
|
|
c = gs.gravity * 0.125;
|
2020-05-13 22:04:14 +00:00
|
|
|
return c;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-01 14:56:50 +00:00
|
|
|
void move_r(DDukeActor *actor, int pnum, int xvel)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-09-15 15:39:01 +00:00
|
|
|
DAngle goalang, angdif;
|
|
|
|
double daxvel;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2021-12-21 19:02:06 +00:00
|
|
|
int a = actor->spr.hitag;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
|
|
|
if (a == -1) a = 0;
|
|
|
|
|
2021-12-23 15:20:32 +00:00
|
|
|
actor->temp_data[0]++;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
|
|
|
if (a & face_player)
|
|
|
|
{
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ps[pnum].newOwner != nullptr)
|
2022-11-20 09:00:26 +00:00
|
|
|
goalang = (ps[pnum].GetActor()->opos.XY() - actor->spr.pos.XY()).Angle();
|
2022-11-20 08:07:23 +00:00
|
|
|
else goalang = (ps[pnum].GetActor()->spr.pos.XY() - actor->spr.pos.XY()).Angle();
|
2022-11-25 12:13:50 +00:00
|
|
|
angdif = deltaangle(actor->spr.Angles.Yaw, goalang) * 0.25;
|
2022-11-24 12:08:28 +00:00
|
|
|
if (angdif > -DAngle22_5 / 16 && angdif < nullAngle) angdif = nullAngle;
|
2022-11-25 12:13:50 +00:00
|
|
|
actor->spr.Angles.Yaw += angdif;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (a & spin)
|
2022-11-25 12:13:50 +00:00
|
|
|
actor->spr.Angles.Yaw += DAngle45 * BobVal(actor->temp_data[0] << 3);
|
2020-05-13 22:04:14 +00:00
|
|
|
|
|
|
|
if (a & face_player_slow)
|
|
|
|
{
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ps[pnum].newOwner != nullptr)
|
2022-11-20 09:00:26 +00:00
|
|
|
goalang = (ps[pnum].GetActor()->opos.XY() - actor->spr.pos.XY()).Angle();
|
2022-11-20 08:07:23 +00:00
|
|
|
else goalang = (ps[pnum].GetActor()->spr.pos.XY() - actor->spr.pos.XY()).Angle();
|
2022-11-25 12:13:50 +00:00
|
|
|
angdif = DAngle22_5 * 0.25 * Sgn(deltaangle(actor->spr.Angles.Yaw, goalang).Degrees()); // this looks very wrong...
|
|
|
|
actor->spr.Angles.Yaw += angdif;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
|
|
|
if (a & antifaceplayerslow)
|
|
|
|
{
|
2020-11-02 23:20:51 +00:00
|
|
|
if (ps[pnum].newOwner != nullptr)
|
2022-11-20 09:00:26 +00:00
|
|
|
goalang = ((ps[pnum].GetActor()->opos.XY() - actor->spr.pos.XY()).Angle() + DAngle180);
|
2022-11-20 08:07:23 +00:00
|
|
|
else goalang = ((ps[pnum].GetActor()->spr.pos.XY() - actor->spr.pos.XY()).Angle() + DAngle180);
|
2022-11-25 12:13:50 +00:00
|
|
|
angdif = DAngle22_5 * 0.25 * Sgn(deltaangle(actor->spr.Angles.Yaw, goalang).Degrees()); // this looks very wrong...
|
|
|
|
actor->spr.Angles.Yaw += angdif;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if ((a & jumptoplayer) == jumptoplayer)
|
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum == CHEER)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 16)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 1.6;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 16)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 2;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a & justjump1)
|
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum == RABBIT)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 8)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 2.133;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
2021-12-21 19:02:06 +00:00
|
|
|
else if (actor->spr.picnum == MAMA)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 8)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 1.83;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a & justjump2)
|
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum == RABBIT)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 8)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 2.667;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
2021-12-21 19:02:06 +00:00
|
|
|
else if (actor->spr.picnum == MAMA)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 8)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 2.286;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (a & windang)
|
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 8)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4) * 2.667);
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else if ((a & jumptoplayer) == jumptoplayer)
|
|
|
|
{
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[0] < 16)
|
2022-09-13 18:17:50 +00:00
|
|
|
actor->vel.Z -= BobVal(512 + (actor->temp_data[0] << 4)) * 2;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if (a & face_player_smart)
|
|
|
|
{
|
2022-11-20 08:07:23 +00:00
|
|
|
DVector2 newpos = ps[pnum].GetActor()->spr.pos.XY() + (ps[pnum].vel.XY() * (4. / 3.));
|
2022-09-30 11:38:21 +00:00
|
|
|
goalang = (newpos - actor->spr.pos.XY()).Angle();
|
2022-11-25 12:13:50 +00:00
|
|
|
angdif = deltaangle(actor->spr.Angles.Yaw, goalang) * 0.25;
|
2022-09-15 15:39:01 +00:00
|
|
|
if (angdif > -DAngle22_5 / 16 && angdif < nullAngle) angdif = nullAngle;
|
2022-11-25 12:13:50 +00:00
|
|
|
actor->spr.Angles.Yaw += angdif;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
2021-12-23 15:20:32 +00:00
|
|
|
if (actor->temp_data[1] == 0 || a == 0)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-02-03 21:06:09 +00:00
|
|
|
if ((badguy(actor) && actor->spr.extra <= 0) || (actor->opos.X != actor->spr.pos.X) || (actor->opos.Y != actor->spr.pos.Y))
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-11-26 13:48:51 +00:00
|
|
|
if (!actor->isPlayer()) actor->backupvec2();
|
2022-02-06 21:45:47 +00:00
|
|
|
SetActor(actor, actor->spr.pos);
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
2021-12-21 19:02:06 +00:00
|
|
|
if (badguy(actor) && actor->spr.extra <= 0)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->ceilingstat & CSTAT_SECTOR_SKY)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->shadedsector == 1)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
actor->spr.shade += (16 - actor->spr.shade) >> 1;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
actor->spr.shade += (actor->sector()->ceilingshade - actor->spr.shade) >> 1;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
actor->spr.shade += (actor->sector()->floorshade - actor->spr.shade) >> 1;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
|
2021-12-23 15:20:32 +00:00
|
|
|
auto moveptr = &ScriptCode[actor->temp_data[1]];
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2022-11-14 17:48:31 +00:00
|
|
|
if (a & geth) actor->vel.X += (moveptr[0] / 16. - actor->vel.X) * 0.5;
|
|
|
|
if (a & getv) actor->vel.Z += (moveptr[1] / 16. - actor->vel.Z) * 0.5;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
|
|
|
if (a & dodgebullet)
|
2020-10-22 21:41:07 +00:00
|
|
|
dodge(actor);
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2022-11-26 13:48:51 +00:00
|
|
|
if (!actor->isPlayer())
|
2020-11-01 14:56:50 +00:00
|
|
|
alterang(a, actor, pnum);
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2022-09-11 20:57:56 +00:00
|
|
|
if (abs(actor->vel.X) < 6 / 16.) actor->vel.X = 0;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2020-10-22 21:41:07 +00:00
|
|
|
a = badguy(actor);
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2022-09-03 08:03:30 +00:00
|
|
|
if (actor->vel.X != 0 || actor->vel.Z != 0)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
|
|
|
if (a)
|
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum == DRONE && actor->spr.extra > 0)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-09-03 08:03:30 +00:00
|
|
|
if (actor->vel.Z > 0)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-02-03 23:45:00 +00:00
|
|
|
double dist = isRRRA() ? 28 : 30;
|
2022-09-27 11:59:57 +00:00
|
|
|
double f = getflorzofslopeptr(actor->sector(), actor->spr.pos.X, actor->spr.pos.Y);
|
2022-02-03 23:45:00 +00:00
|
|
|
actor->floorz = f;
|
|
|
|
if (actor->spr.pos.Z > f - dist)
|
|
|
|
actor->spr.pos.Z = f - dist;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-27 11:59:57 +00:00
|
|
|
double c = getceilzofslopeptr(actor->sector(), actor->spr.pos.X, actor->spr.pos.Y);
|
2022-02-03 23:45:00 +00:00
|
|
|
actor->ceilingz = c;
|
|
|
|
if (actor->spr.pos.Z < c + 50)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-02-03 23:45:00 +00:00
|
|
|
actor->spr.pos.Z = c + 50;
|
2022-09-03 08:02:25 +00:00
|
|
|
actor->vel.Z = 0;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-09-03 08:03:30 +00:00
|
|
|
if (actor->vel.Z > 0 && actor->floorz < actor->spr.pos.Z)
|
2022-02-03 23:45:00 +00:00
|
|
|
actor->spr.pos.Z = actor->floorz;
|
2022-09-03 08:03:30 +00:00
|
|
|
if (actor->vel.Z < 0)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-09-27 11:59:57 +00:00
|
|
|
double c = getceilzofslopeptr(actor->sector(), actor->spr.pos.X, actor->spr.pos.Y);
|
2022-02-03 23:45:00 +00:00
|
|
|
if (actor->spr.pos.Z < c + 66)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-02-03 23:45:00 +00:00
|
|
|
actor->spr.pos.Z = c + 66;
|
2022-09-03 08:04:16 +00:00
|
|
|
actor->vel.Z *= 0.5;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2022-09-15 15:39:01 +00:00
|
|
|
daxvel = actor->vel.X;
|
2022-11-25 12:13:50 +00:00
|
|
|
angdif = actor->spr.Angles.Yaw;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
|
|
|
if (a)
|
|
|
|
{
|
2022-10-07 21:33:37 +00:00
|
|
|
if (xvel < 960 && actor->spr.scale.X > 0.25 )
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
|
|
|
|
2022-09-15 15:39:01 +00:00
|
|
|
daxvel = -(1024 - xvel) * maptoworld;
|
2022-11-20 08:07:23 +00:00
|
|
|
angdif = (ps[pnum].GetActor()->spr.pos.XY() - actor->spr.pos.XY()).Angle();
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2020-11-01 14:56:50 +00:00
|
|
|
if (xvel < 512)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-09-11 22:08:42 +00:00
|
|
|
ps[pnum].vel.X = 0;
|
|
|
|
ps[pnum].vel.Y = 0;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2022-09-11 22:08:42 +00:00
|
|
|
ps[pnum].vel.XY() *= gs.playerfriction - 0.125;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
2022-11-28 17:57:50 +00:00
|
|
|
else if (!actorflag(actor, SFLAG2_FLOATING))
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-11-12 15:53:56 +00:00
|
|
|
if (!*(moveptr + 1))
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2022-02-03 21:06:09 +00:00
|
|
|
if (actor->opos.Z != actor->spr.pos.Z || (ud.multimode < 2 && ud.player_skill < 2))
|
2021-11-12 15:53:56 +00:00
|
|
|
{
|
|
|
|
if ((actor->temp_data[0] & 1) || ps[pnum].actorsqu == actor) return;
|
2022-09-15 15:39:01 +00:00
|
|
|
else daxvel *= 2;
|
2021-11-12 15:53:56 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
if ((actor->temp_data[0] & 3) || ps[pnum].actorsqu == actor) return;
|
2022-09-15 15:39:01 +00:00
|
|
|
else daxvel *= 4;
|
2021-11-12 15:53:56 +00:00
|
|
|
}
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->lotag != 1)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
switch (actor->spr.picnum)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
|
|
|
case MINIONBOAT:
|
|
|
|
case HULKBOAT:
|
|
|
|
case CHEERBOAT:
|
2022-09-15 15:39:01 +00:00
|
|
|
daxvel *= 0.5;
|
2020-05-13 22:04:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
else if (actor->sector()->lotag == 1)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
switch (actor->spr.picnum)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
|
|
|
case BIKERB:
|
|
|
|
case BIKERBV2:
|
|
|
|
case CHEERB:
|
2022-09-15 15:39:01 +00:00
|
|
|
daxvel *= 0.5;
|
2020-05-13 22:04:14 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-10-22 21:41:07 +00:00
|
|
|
Collision coll;
|
2022-09-15 15:39:01 +00:00
|
|
|
actor->movflag = movesprite_ex(actor, DVector3(angdif.ToVector() * daxvel, actor->vel.Z), CLIPMASK0, coll);
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
if (a)
|
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->ceilingstat & CSTAT_SECTOR_SKY)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->shadedsector == 1)
|
2020-05-13 22:04:14 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
actor->spr.shade += (16 - actor->spr.shade) >> 1;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
actor->spr.shade += (actor->sector()->ceilingshade - actor->spr.shade) >> 1;
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
else actor->spr.shade += (actor->sector()->floorshade - actor->spr.shade) >> 1;
|
2020-05-13 22:04:14 +00:00
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->floorpicnum == MIRROR)
|
2022-11-20 18:25:23 +00:00
|
|
|
actor->Destroy();
|
2020-05-13 22:04:14 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2020-11-01 16:57:40 +00:00
|
|
|
void fakebubbaspawn(DDukeActor *actor, int g_p)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
|
|
|
fakebubba_spawn++;
|
|
|
|
switch (fakebubba_spawn)
|
|
|
|
{
|
|
|
|
default:
|
|
|
|
break;
|
|
|
|
case 1:
|
2020-11-01 16:57:40 +00:00
|
|
|
spawn(actor, PIG);
|
2020-05-14 07:07:07 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2020-11-01 16:57:40 +00:00
|
|
|
spawn(actor, MINION);
|
2020-05-14 07:07:07 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2020-11-01 16:57:40 +00:00
|
|
|
spawn(actor, CHEER);
|
2020-05-14 07:07:07 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2020-11-01 16:57:40 +00:00
|
|
|
spawn(actor, VIXEN);
|
2022-11-19 14:40:35 +00:00
|
|
|
operateactivators(666, &ps[g_p]);
|
2020-05-14 07:07:07 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
2020-05-17 16:04:45 +00:00
|
|
|
// special checks in fall that only apply to RR.
|
2020-05-14 07:07:07 +00:00
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-11-01 09:49:50 +00:00
|
|
|
static int fallspecial(DDukeActor *actor, int playernum)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
|
|
|
int sphit = 0;
|
|
|
|
if (isRRRA())
|
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->lotag == 801)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum == ROCK)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2020-10-22 16:51:20 +00:00
|
|
|
spawn(actor, ROCK2);
|
|
|
|
spawn(actor, ROCK2);
|
|
|
|
addspritetodelete();
|
2020-05-14 07:07:07 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
else if (actor->sector()->lotag == 802)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2022-11-26 13:48:51 +00:00
|
|
|
if (!actor->isPlayer() && badguy(actor) && actor->spr.pos.Z == actor->floorz - FOURSLEIGHT_F)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2022-11-22 22:21:45 +00:00
|
|
|
spawnguts(actor, PClass::FindActor("DukeJibs6"), 5);
|
2020-10-22 16:51:20 +00:00
|
|
|
S_PlayActorSound(SQUISHED, actor);
|
|
|
|
addspritetodelete();
|
2020-05-14 07:07:07 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
else if (actor->sector()->lotag == 803)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum == ROCK2)
|
2020-10-22 16:51:20 +00:00
|
|
|
addspritetodelete();
|
2020-05-14 07:07:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
if (actor->sector()->lotag == 800)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2022-12-02 15:26:31 +00:00
|
|
|
if (actor->spr.picnum == AMMO)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2020-10-22 16:51:20 +00:00
|
|
|
addspritetodelete();
|
2020-05-14 07:07:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2022-11-26 13:48:51 +00:00
|
|
|
if (!actor->isPlayer() && (badguy(actor) || actor->spr.picnum == HEN || actor->spr.picnum == COW || actor->spr.picnum == PIG || actor->spr.picnum == DOGRUN || actor->spr.picnum == RABBIT) && (!isRRRA() || actor->spriteextra < 128))
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2022-02-03 23:55:12 +00:00
|
|
|
actor->spr.pos.Z = actor->floorz - FOURSLEIGHT_F;
|
2022-09-11 17:28:45 +00:00
|
|
|
actor->vel.Z = 8000 / 256.;
|
2021-12-21 19:02:06 +00:00
|
|
|
actor->spr.extra = 0;
|
2020-10-22 16:51:20 +00:00
|
|
|
actor->spriteextra++;
|
2020-05-14 07:07:07 +00:00
|
|
|
sphit = 1;
|
|
|
|
}
|
2022-11-26 13:48:51 +00:00
|
|
|
else if (!actor->isPlayer())
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2020-10-22 16:51:20 +00:00
|
|
|
if (!actor->spriteextra)
|
|
|
|
addspritetodelete();
|
2020-05-14 07:07:07 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2021-12-27 22:52:16 +00:00
|
|
|
actor->attackertype = SHOTSPARK1;
|
2022-01-23 23:10:25 +00:00
|
|
|
actor->hitextra = 1;
|
2020-05-14 07:07:07 +00:00
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
else if (isRRRA() && (actor->sector()->floorpicnum == RRTILE7820 || actor->sector()->floorpicnum == RRTILE7768))
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2021-12-21 19:02:06 +00:00
|
|
|
if (actor->spr.picnum != MINION && actor->spr.pal != 19)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
|
|
|
if ((krand() & 3) == 1)
|
|
|
|
{
|
2021-12-27 22:52:16 +00:00
|
|
|
actor->attackertype = SHOTSPARK1;
|
2022-01-23 23:10:25 +00:00
|
|
|
actor->hitextra = 5;
|
2020-05-14 07:07:07 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
return sphit;
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-22 21:45:49 +00:00
|
|
|
void fall_r(DDukeActor* ac, int g_p)
|
2020-05-14 07:07:07 +00:00
|
|
|
{
|
2020-10-22 21:45:49 +00:00
|
|
|
fall_common(ac, g_p, JIBS6, DRONE, BLOODPOOL, SHOTSPARK1, 69, 158, fallspecial);
|
2020-05-14 07:07:07 +00:00
|
|
|
}
|
|
|
|
|
2020-05-14 10:14:03 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-22 21:41:07 +00:00
|
|
|
void destroyit(DDukeActor *actor)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-11-14 12:33:35 +00:00
|
|
|
int lotag = 0, hitag = 0;
|
2021-06-11 21:20:50 +00:00
|
|
|
DDukeActor* spr = nullptr;
|
2020-05-14 10:14:03 +00:00
|
|
|
|
2021-11-21 08:05:58 +00:00
|
|
|
DukeSectIterator it1(actor->sector());
|
2020-10-22 21:41:07 +00:00
|
|
|
while (auto a2 = it1.Next())
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (a2->spr.picnum == RRTILE63)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
lotag = a2->spr.lotag;
|
2020-10-22 21:41:07 +00:00
|
|
|
spr = a2;
|
2021-12-21 17:19:45 +00:00
|
|
|
if (a2->spr.hitag)
|
|
|
|
hitag = a2->spr.hitag;
|
2020-05-14 10:14:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-22 21:41:07 +00:00
|
|
|
DukeStatIterator it(STAT_DESTRUCT);
|
|
|
|
while (auto a2 = it.Next())
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
auto it_sect = a2->sector();
|
2021-12-21 17:19:45 +00:00
|
|
|
if (hitag && hitag == a2->spr.hitag)
|
2020-10-22 21:41:07 +00:00
|
|
|
{
|
|
|
|
DukeSectIterator its(it_sect);
|
|
|
|
while (auto a3 = its.Next())
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
if (a3->spr.picnum == DESTRUCTO)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-27 22:52:16 +00:00
|
|
|
a3->attackertype = SHOTSPARK1;
|
2022-01-23 23:10:25 +00:00
|
|
|
a3->hitextra = 1;
|
2020-05-14 10:14:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-10-22 21:41:07 +00:00
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
if (spr && spr->sector() != it_sect)
|
2021-12-21 17:19:45 +00:00
|
|
|
if (lotag == a2->spr.lotag)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-30 15:51:56 +00:00
|
|
|
auto sect = spr->sector();
|
2021-11-06 11:54:24 +00:00
|
|
|
|
2021-11-20 23:33:17 +00:00
|
|
|
auto destsect = spr->sector();
|
2021-11-18 19:17:47 +00:00
|
|
|
auto srcsect = it_sect;
|
2021-11-06 11:54:24 +00:00
|
|
|
|
2022-11-15 14:44:33 +00:00
|
|
|
auto destwal = destsect->walls.Data();
|
|
|
|
auto srcwal = srcsect->walls.Data();
|
2022-11-15 13:59:28 +00:00
|
|
|
for (unsigned i = 0; i < destsect->walls.Size(); i++, srcwal++, destwal++)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-11-16 17:07:24 +00:00
|
|
|
destwal->picnum = srcwal->picnum;
|
|
|
|
destwal->overpicnum = srcwal->overpicnum;
|
|
|
|
destwal->shade = srcwal->shade;
|
2022-10-07 22:02:10 +00:00
|
|
|
destwal->xrepeat = srcwal->xrepeat;
|
|
|
|
destwal->yrepeat = srcwal->yrepeat;
|
2021-11-16 17:07:24 +00:00
|
|
|
destwal->xpan_ = srcwal->xpan_;
|
|
|
|
destwal->ypan_ = srcwal->ypan_;
|
2021-11-21 07:42:36 +00:00
|
|
|
if (isRRRA() && destwal->twoSided())
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-11-16 17:07:24 +00:00
|
|
|
destwal->cstat = 0;
|
|
|
|
destwal->nextWall()->cstat = 0;
|
2020-05-14 10:14:03 +00:00
|
|
|
}
|
|
|
|
}
|
2022-08-20 18:11:01 +00:00
|
|
|
destsect->setfloorz(srcsect->floorz);
|
|
|
|
destsect->setceilingz(srcsect->ceilingz);
|
2021-11-06 11:54:24 +00:00
|
|
|
destsect->ceilingstat = srcsect->ceilingstat;
|
|
|
|
destsect->floorstat = srcsect->floorstat;
|
|
|
|
destsect->ceilingpicnum = srcsect->ceilingpicnum;
|
|
|
|
destsect->ceilingheinum = srcsect->ceilingheinum;
|
|
|
|
destsect->ceilingshade = srcsect->ceilingshade;
|
|
|
|
destsect->ceilingpal = srcsect->ceilingpal;
|
|
|
|
destsect->ceilingxpan_ = srcsect->ceilingxpan_;
|
|
|
|
destsect->ceilingypan_ = srcsect->ceilingypan_;
|
|
|
|
destsect->floorpicnum = srcsect->floorpicnum;
|
|
|
|
destsect->floorheinum = srcsect->floorheinum;
|
|
|
|
destsect->floorshade = srcsect->floorshade;
|
|
|
|
destsect->floorpal = srcsect->floorpal;
|
|
|
|
destsect->floorxpan_ = srcsect->floorxpan_;
|
|
|
|
destsect->floorypan_ = srcsect->floorypan_;
|
|
|
|
destsect->visibility = srcsect->visibility;
|
2021-11-20 16:46:08 +00:00
|
|
|
destsect->keyinfo = srcsect->keyinfo;
|
2021-11-06 11:54:24 +00:00
|
|
|
destsect->lotag = srcsect->lotag;
|
|
|
|
destsect->hitag = srcsect->hitag;
|
|
|
|
destsect->extra = srcsect->extra;
|
2022-11-13 17:55:32 +00:00
|
|
|
destsect->dirty = EDirty::AllDirty;
|
2020-05-14 10:14:03 +00:00
|
|
|
}
|
|
|
|
}
|
2021-12-30 15:51:56 +00:00
|
|
|
it1.Reset(actor->sector());
|
2020-11-04 20:53:56 +00:00
|
|
|
while (auto a2 = it1.Next())
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
2021-12-21 17:19:45 +00:00
|
|
|
switch (a2->spr.picnum)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
|
|
|
case DESTRUCTO:
|
|
|
|
case RRTILE63:
|
|
|
|
case TORNADO:
|
2020-05-14 19:42:11 +00:00
|
|
|
case APLAYER:
|
2020-05-14 10:14:03 +00:00
|
|
|
case COOT:
|
|
|
|
break;
|
|
|
|
default:
|
2022-11-20 18:25:23 +00:00
|
|
|
a2->Destroy();
|
2020-05-14 10:14:03 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
2020-10-22 21:45:49 +00:00
|
|
|
void mamaspawn(DDukeActor *actor)
|
2020-05-14 10:14:03 +00:00
|
|
|
{
|
|
|
|
if (mamaspawn_count)
|
|
|
|
{
|
|
|
|
mamaspawn_count--;
|
2020-10-22 21:45:49 +00:00
|
|
|
spawn(actor, RABBIT);
|
2020-05-14 10:14:03 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-14 17:23:36 +00:00
|
|
|
|
2022-11-14 22:55:46 +00:00
|
|
|
bool spawnweapondebris_r(int picnum)
|
2020-05-14 17:23:36 +00:00
|
|
|
{
|
2022-11-14 22:55:46 +00:00
|
|
|
return true;
|
2020-05-14 17:23:36 +00:00
|
|
|
}
|
|
|
|
|
2020-06-23 19:12:15 +00:00
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void thunder(void);
|
|
|
|
|
|
|
|
void think_r(void)
|
|
|
|
{
|
|
|
|
thinktime.Reset();
|
|
|
|
thinktime.Clock();
|
|
|
|
|
2022-01-02 14:44:52 +00:00
|
|
|
movefta(); //ST 2
|
2020-06-23 19:12:15 +00:00
|
|
|
moveweapons_r(); //ST 4
|
|
|
|
moveplayers(); //ST 10
|
|
|
|
movefallers_r(); //ST 12
|
|
|
|
moveexplosions_r(); //ST 5
|
|
|
|
|
|
|
|
actortime.Reset();
|
|
|
|
actortime.Clock();
|
|
|
|
moveactors_r(); //ST 1
|
|
|
|
actortime.Unclock();
|
|
|
|
|
|
|
|
moveeffectors_r(); //ST 3
|
|
|
|
movestandables_r(); //ST 6
|
|
|
|
doanimations();
|
2022-11-20 21:07:10 +00:00
|
|
|
tickstat(STAT_FX); //ST 11
|
2020-06-23 19:12:15 +00:00
|
|
|
|
|
|
|
if (numplayers < 2 && thunderon)
|
|
|
|
thunder();
|
|
|
|
|
|
|
|
thinktime.Unclock();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-05-07 12:55:04 +00:00
|
|
|
END_DUKE_NS
|