raze/source/games/duke/src/actors_r.cpp

3983 lines
90 KiB
C++
Raw Normal View History

2020-05-07 12:55:04 +00:00
//-------------------------------------------------------------------------
/*
Copyright (C) 1996, 2003 - 3D Realms Entertainment
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
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"
#include "names_r.h"
2020-07-07 15:56:20 +00:00
#include "mapinfo.h"
#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-10-22 20:31:10 +00:00
void ballreturn(DDukeActor* spr);
void pinsectorresetdown(sectortype* sect);
int pinsectorresetup(sectortype* sect);
int checkpins(sectortype* sect);
void resetpins(sectortype* sect);
2020-05-08 22:34:48 +00:00
void resetlanepics(void);
2020-05-07 12:55:04 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
bool ceilingspace_r(sectortype* sectp)
2020-05-07 12:55:04 +00:00
{
if (sectp && (sectp->ceilingstat & CSTAT_SECTOR_SKY) && sectp->ceilingpal == 0)
2020-05-07 12:55:04 +00:00
{
switch(sectp->ceilingpicnum)
2020-05-07 12:55:04 +00:00
{
case MOONSKY1:
case BIGORBIT1:
return 1;
2020-05-07 12:55:04 +00:00
}
}
return 0;
}
2020-05-07 12:55:04 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
bool floorspace_r(sectortype* sectp)
2020-05-07 12:55:04 +00:00
{
if (sectp && (sectp->floorstat & CSTAT_SECTOR_SKY) && sectp->ceilingpal == 0)
2020-05-07 12:55:04 +00:00
{
switch(sectp->floorpicnum)
2020-05-07 12:55:04 +00:00
{
case MOONSKY1:
case BIGORBIT1:
return 1;
2020-05-07 12:55:04 +00:00
}
}
return 0;
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-10-22 17:08:10 +00:00
void check_fta_sounds_r(DDukeActor* actor)
2020-05-16 10:47:01 +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;
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void addweapon_r(player_struct* p, int weapon, bool wswitch)
2020-05-07 12:55:04 +00:00
{
int cw = p->curr_weapon;
2020-05-07 12:55:04 +00:00
if (p->OnMotorcycle || p->OnBoat)
{
p->gotweapon[weapon] = true;;
if (weapon == THROWSAW_WEAPON)
2020-05-07 12:55:04 +00:00
{
p->gotweapon[BUZZSAW_WEAPON] = true;
p->ammo_amount[BUZZSAW_WEAPON] = 1;
2020-05-07 12:55:04 +00:00
}
else if (weapon == CROSSBOW_WEAPON)
2020-05-07 12:55:04 +00:00
{
p->gotweapon[CHICKEN_WEAPON] = true;
p->gotweapon[DYNAMITE_WEAPON] = true;
2020-05-07 12:55:04 +00:00
}
else if (weapon == SLINGBLADE_WEAPON)
2020-05-07 12:55:04 +00:00
{
p->ammo_amount[SLINGBLADE_WEAPON] = 1;
2020-05-07 12:55:04 +00:00
}
return;
}
if (p->gotweapon[weapon] == 0)
{
p->gotweapon[weapon] = true;;
if (weapon == THROWSAW_WEAPON)
2020-05-07 12:55:04 +00:00
{
p->gotweapon[BUZZSAW_WEAPON] = true;
p->ammo_amount[BUZZSAW_WEAPON] = 1;
2020-05-07 12:55:04 +00:00
}
if (isRRRA())
{
if (weapon == CROSSBOW_WEAPON)
2020-05-07 12:55:04 +00:00
{
p->gotweapon[CHICKEN_WEAPON] = true;
2020-05-07 12:55:04 +00:00
}
if (weapon == SLINGBLADE_WEAPON)
2020-05-07 12:55:04 +00:00
{
p->ammo_amount[SLINGBLADE_WEAPON] = 50;
2020-05-07 12:55:04 +00:00
}
}
if (weapon == CROSSBOW_WEAPON)
{
p->gotweapon[DYNAMITE_WEAPON] = true;
}
2020-05-07 12:55:04 +00:00
if (weapon != DYNAMITE_WEAPON)
2020-05-07 12:55:04 +00:00
cw = weapon;
}
else
cw = weapon;
if (!wswitch) return;
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;
}
p->okickback_pic = p->kickback_pic = 0;
2020-05-07 12:55:04 +00:00
p->curr_weapon = cw;
p->wantweaponfire = -1;
2020-05-07 12:55:04 +00:00
switch (weapon)
{
case SLINGBLADE_WEAPON:
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:
case THROWINGDYNAMITE_WEAPON:
2020-05-07 12:55:04 +00:00
break;
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;
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;
default:
2020-11-02 19:23:05 +00:00
S_PlayActorSound(EJECT_CLIP, p->GetActor());
2020-05-07 12:55:04 +00:00
break;
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void hitradius_r(DDukeActor* actor, int r, int hp1, int hp2, int hp3, int hp4)
2020-05-07 12:55:04 +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 };
if (actor->spr.scale.X >= 0.17675 || !(actor->spr.picnum == RPG || ((isRRRA()) && actor->spr.picnum == RPG2)))
2020-05-07 12:55:04 +00:00
{
BFSSectorSearch search(actor->sector());
while (auto dasectp = search.GetNext())
2020-05-07 12:55:04 +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
{
auto wal = dasectp->firstWall();
double d = (wal->pos - actor->spr.pos.XY()).Sum();
if (d < radius)
fi.checkhitceiling(dasectp);
else
2020-05-07 12:55:04 +00:00
{
auto thirdpoint = wal->point2Wall()->point2Wall();
d = (thirdpoint->pos - actor->spr.pos.XY()).Sum();
if (d < radius)
fi.checkhitceiling(dasectp);
2020-05-07 12:55:04 +00:00
}
}
for (auto& wal : wallsofsector(dasectp))
{
if ((wal.pos - actor->spr.pos.XY()).Sum() < radius)
{
if (wal.twoSided())
{
search.Add(wal.nextSector());
}
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, &sect);
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);
}
}
}
}
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
auto Owner = actor->GetOwner();
for (int x = 0; x < 7; x++)
2020-05-07 12:55:04 +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)
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
fi.checkhitsprite(act2, actor);
2020-05-07 12:55:04 +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
{
continue;
}
2021-12-21 18:13:49 +00:00
if ((isRRRA()) && actor->spr.picnum == CHEERBOMB && act2 == Owner)
{
continue;
}
if (act2->spr.picnum == APLAYER) act2->spr.pos.Z -= gs.playerheight;
double dist = (actor->spr.pos - act2->spr.pos).Length();
if (act2->spr.picnum == APLAYER) act2->spr.pos.Z += gs.playerheight;
if (dist < radius && cansee(act2->spr.pos.plusZ(-8), act2->sector(), actor->spr.pos.plusZ(-12), actor->sector()))
{
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;
}
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)
act2->attackertype = RPG;
2021-12-21 18:56:46 +00:00
else if ((isRRRA()) && actor->spr.picnum == RPG2 && act2->spr.extra > 0)
act2->attackertype = RPG;
else
act2->attackertype = RADIUSEXPLOSION;
2020-05-07 12:55:04 +00:00
if (dist < radius / 3)
{
if (hp4 == hp3) hp4++;
act2->hitextra = hp3 + (krand() % (hp4 - hp3));
2020-05-07 12:55:04 +00:00
}
else if (dist < 2 * radius / 3)
2020-05-07 12:55:04 +00:00
{
if (hp3 == hp2) hp3++;
act2->hitextra = hp2 + (krand() % (hp3 - hp2));
2020-05-07 12:55:04 +00:00
}
else if (dist < radius)
2020-05-07 12:55:04 +00:00
{
if (hp2 == hp1) hp2++;
act2->hitextra = hp1 + (krand() % (hp2 - hp1));
2020-05-07 12:55:04 +00:00
}
2021-12-21 18:56:46 +00:00
int pic = act2->spr.picnum;
if ((isRRRA())?
(pic != HULK && pic != MAMA && pic != BILLYPLAY && pic != COOTPLAY && pic != MAMACLOUD) :
(pic != HULK && pic != SBMOVE))
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 12:55:04 +00:00
if (actorflag(act2, SFLAG_HITRADIUSCHECK))
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 &&
Owner && Owner->spr.statnum < MAXSTATUS)
{
2021-12-21 18:56:46 +00:00
if (act2->spr.picnum == APLAYER)
2020-05-07 12:55:04 +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
{
clearcamera(&ps[p]);
2020-05-07 12:55:04 +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
{
int bg = badguy(actor);
2020-05-07 12:55:04 +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);
return result.setNone();
2020-05-07 12:55:04 +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;
ppos.Z -= (tileHeight(actor->spr.picnum) * actor->spr.scale.Y) * 0.5;
2020-05-07 12:55:04 +00:00
if (bg)
{
if (actor->spr.scale.X > 0.9375 )
clipmove(ppos, &dasectp, change * 0.5, 64., 4., 4., cliptype, result);
else
2020-05-07 12:55:04 +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-09-13 18:09:29 +00:00
actor->spr.angle = randomAngle();
else if ((actor->temp_data[0] & 3) == 1)
2022-09-13 18:09:29 +00:00
actor->spr.angle = 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 = &sector[0];
return result.setSector(dasectp);
2020-05-07 12:55:04 +00:00
}
if ((result.type == kHitWall || result.type == kHitSprite) && (actor->cgg == 0)) actor->spr.angle += 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)
clipmove(ppos, &dasectp, change * 0.5, 0.5, 4., 4., cliptype, result);
2020-05-07 12:55:04 +00:00
else
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)
if ((dasectp != actor->sector()))
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;
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
return result.type;
2020-05-07 12:55:04 +00:00
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void lotsoffeathers_r(DDukeActor *actor, int n)
2020-05-07 12:55:04 +00:00
{
lotsofstuff(actor, n, MONEY);
2020-05-07 12:55:04 +00:00
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void guts_r(DDukeActor* actor, int gtype, int n, int p)
2020-05-07 12:55:04 +00:00
{
int j;
2022-10-07 16:51:29 +00:00
double scale;
2020-05-07 12:55:04 +00:00
uint8_t pal;
if (badguy(actor) && actor->spr.scale.X < 0.25)
2022-10-07 16:51:29 +00:00
scale = 0.0625;
else scale = 0.25;
2020-05-07 12:55:04 +00:00
2022-09-12 23:02:13 +00:00
double gutz = actor->spr.pos.Z - 8;
double floorz = getflorzofslopeptr(actor->sector(), actor->spr.pos);
2020-05-07 12:55:04 +00:00
2022-09-12 23:02:13 +00:00
if (gutz > floorz - 8)
gutz = floorz - 8;
2020-05-07 12:55:04 +00:00
2022-09-12 23:02:13 +00:00
gutz += gs.actorinfo[actor->spr.picnum].gutsoffset;
2021-12-21 18:56:46 +00:00
if (badguy(actor) && actor->spr.pal == 6)
2020-05-07 12:55:04 +00:00
pal = 6;
else
{
pal = 0;
if (isRRRA())
{
2021-12-21 18:56:46 +00:00
if (actor->spr.picnum == MINION && (actor->spr.pal == 8 || actor->spr.pal == 19)) pal = actor->spr.pal;
2020-05-07 12:55:04 +00:00
}
}
for (j = 0; j < n; j++)
{
// RANDCORRECT version from RR.
DAngle a = randomAngle();
double zvel = -2 - krandf(8);
double vel = 3 + krandf(2);
2022-09-12 23:02:13 +00:00
DVector3 offs;
offs.Z = gutz - krandf(16);
offs.Y = krandf(16) - 8;
offs.X = krandf(16) - 8;
2020-05-07 12:55:04 +00:00
// TRANSITIONAL: owned by a player???
2022-10-07 16:51:29 +00:00
auto spawned = CreateActor(actor->sector(), offs + actor->spr.pos.XY(), gtype, -32, DVector2(scale, scale), a, vel, zvel, ps[p].GetActor(), 5);
if (spawned && pal != 0)
spawned->spr.pal = pal;
2020-05-07 12:55:04 +00:00
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
int ifhitbyweapon_r(DDukeActor *actor)
2020-05-07 12:55:04 +00:00
{
int p;
auto hitowner = actor->GetHitOwner();
2020-05-07 12:55:04 +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
{
2021-12-21 18:13:49 +00:00
if (actor->spr.picnum == APLAYER)
2020-05-07 12:55:04 +00:00
{
if (ud.god) return -1;
2020-05-07 12:55:04 +00:00
p = actor->PlayerIndex();
2020-05-07 12:55:04 +00:00
if (hitowner &&
hitowner->spr.picnum == APLAYER &&
2020-05-07 12:55:04 +00:00
ud.coop == 1 &&
ud.ffire == 0)
return -1;
actor->spr.extra -= actor->hitextra;
2020-05-07 12:55:04 +00:00
if (hitowner)
2020-05-07 12:55:04 +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
ps[p].wackedbyactor = hitowner;
2020-05-07 12:55:04 +00:00
if (hitowner->spr.picnum == APLAYER && p != hitowner->PlayerIndex())
2020-05-07 12:55:04 +00:00
{
ps[p].frag_ps = hitowner->PlayerIndex();
2020-05-07 12:55:04 +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))
{
ps[p].vel.XY() += actor->hitang.ToVector() * actor->hitextra * 0.25;
2022-01-20 07:31:08 +00:00
}
else
{
ps[p].vel.XY() += actor->hitang.ToVector() * actor->hitextra * 0.125;
}
2020-05-07 12:55:04 +00:00
}
else
{
if (actor->hitextra == 0)
if (actor->spr.scale.X < 0.375)
2020-05-07 12:55:04 +00:00
return -1;
actor->spr.extra -= actor->hitextra;
2021-12-21 18:13:49 +00:00
if (actor->spr.picnum != RECON && actor->GetOwner() && actor->GetOwner()->spr.statnum < MAXSTATUS)
actor->SetOwner(hitowner);
2020-05-07 12:55:04 +00:00
}
actor->hitextra = -1;
return actor->attackertype;
2020-05-07 12:55:04 +00:00
}
}
actor->hitextra = -1;
2020-05-07 12:55:04 +00:00
return -1;
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void respawn_rrra(DDukeActor* oldact, DDukeActor* newact)
2020-05-07 12:55:04 +00:00
{
2021-12-21 18:56:46 +00:00
newact->spr.pal = oldact->spr.pal;
if (newact->spr.picnum == MAMA)
2020-05-07 12:55:04 +00:00
{
2021-12-21 18:56:46 +00:00
if (newact->spr.pal == 30)
2020-05-07 12:55:04 +00:00
{
newact->spr.scale = DVector2(0.40625, 0.40625);
newact->clipdist = 18.75;
2020-05-07 12:55:04 +00:00
}
2021-12-21 18:56:46 +00:00
else if (newact->spr.pal == 31)
2020-05-07 12:55:04 +00:00
{
newact->spr.scale = DVector2(0.5625, 0.5625);
newact->clipdist = 25;
2020-05-07 12:55:04 +00:00
}
2021-12-21 18:56:46 +00:00
else if (newact->spr.pal == 32)
2020-05-07 12:55:04 +00:00
{
newact->spr.scale = DVector2(0.78125, 0.78125);
newact->clipdist = 25;
2020-05-07 12:55:04 +00:00
}
else
{
newact->spr.scale = DVector2(0.78125, 0.78125);
newact->clipdist = 25;
2020-05-07 12:55:04 +00:00
}
}
2021-12-21 18:56:46 +00:00
if (newact->spr.pal == 8)
2020-05-07 12:55:04 +00:00
{
2021-12-21 18:56:46 +00:00
newact->spr.cstat |= CSTAT_SPRITE_TRANSLUCENT;
}
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (newact->spr.pal != 6)
{
deletesprite(oldact);
return;
2020-05-07 12:55:04 +00:00
}
oldact->spr.extra = (66 - 13);
2021-12-21 18:56:46 +00:00
newact->spr.pal = 0;
2020-05-07 12:55:04 +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
{
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;
DAngle saved_angle = act->spr.angle;
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
{
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;
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;
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
{
act->hitextra = 0;
2021-12-21 18:56:46 +00:00
act->spr.extra = x;
2020-05-07 12:55:04 +00:00
}
}
act->spr.angle = 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
}
double grav;
if (fi.floorspace(act->sector())) grav = 0;
2020-05-07 12:55:04 +00:00
else
{
if (fi.ceilingspace(act->sector()))
grav = gs.gravity / 6;
2020-05-07 12:55:04 +00:00
else
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
{
act->vel.Z += grav;
if (act->vel.Z > 24)
2022-09-11 17:28:45 +00:00
act->vel.Z = 24;
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);
for (int x = 0; x < j; x++) RANDOMSCRAP(act);
2020-10-22 17:31:06 +00:00
deletesprite(act);
2020-05-07 12:55:04 +00:00
}
}
}
}
}
//---------------------------------------------------------------------------
//
// split out of movestandables
//
//---------------------------------------------------------------------------
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
static void movecrack(DDukeActor* actor)
2020-05-07 12:55:04 +00:00
{
2021-12-21 18:56:46 +00:00
if (actor->spr.hitag > 0)
2020-05-07 12:55:04 +00:00
{
actor->temp_data[0] = actor->spr.cstat;
2022-09-13 18:11:45 +00:00
actor->temp_angle = actor->spr.angle;
int j = fi.ifhitbyweapon(actor);
if (gs.actorinfo[j].flags2 & SFLAG2_EXPLOSIVE)
2020-05-07 12:55:04 +00:00
{
DukeStatIterator it(STAT_STANDABLE);
while (auto a1 = it.Next())
2020-05-07 12:55:04 +00:00
{
if (actor->spr.hitag == a1->spr.hitag && actorflag(a1, SFLAG2_BRIGHTEXPLODE))
if (a1->spr.shade != -32)
a1->spr.shade = -32;
2020-05-07 12:55:04 +00:00
}
detonate(actor, EXPLOSION2);
}
else
{
actor->spr.cstat = ESpriteFlags::FromInt(actor->temp_data[0]);
2022-09-13 18:11:45 +00:00
actor->spr.angle = actor->temp_angle;
2021-12-21 18:56:46 +00:00
actor->spr.extra = 0;
2020-05-07 12:55:04 +00:00
}
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-10-22 17:46:42 +00:00
static void movebolt(DDukeActor* actor)
2020-05-07 12:55:04 +00:00
{
double xx;
auto sectp = actor->sector();
2020-05-07 12:55:04 +00:00
findplayer(actor, &xx);
if (xx > 1280) return;
2020-05-07 12:55:04 +00:00
if (actor->temp_data[3] == 0)
actor->temp_data[3] = sectp->floorshade;
2020-05-07 12:55:04 +00:00
CLEAR_THE_BOLT:
if (actor->temp_data[2])
2020-05-07 12:55:04 +00:00
{
actor->temp_data[2]--;
sectp->floorshade = 20;
sectp->ceilingshade = 20;
2020-05-07 12:55:04 +00:00
return;
}
if (actor->spr.scale.X == 0 && actor->spr.scale.Y == 0)
2020-05-07 12:55:04 +00:00
{
actor->spr.scale = DVector2(actor->temp_pos.X, actor->temp_pos.Y);
2020-05-07 12:55:04 +00:00
}
else if ((krand() & 8) == 0)
{
actor->temp_pos.X = actor->spr.scale.X;
actor->temp_pos.Y = actor->spr.scale.Y;
actor->temp_data[2] = global_random & 4;
actor->spr.scale = DVector2(0, 0);
2020-05-07 12:55:04 +00:00
goto CLEAR_THE_BOLT;
}
2021-12-21 18:56:46 +00:00
actor->spr.picnum++;
2020-05-07 12:55:04 +00:00
int l = global_random & 7;
2022-10-07 21:46:28 +00:00
actor->spr.scale.X = (0.125 + l * REPEAT_SCALE);
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (l & 1) actor->spr.cstat ^= CSTAT_SPRITE_TRANSLUCENT;
2020-05-07 12:55:04 +00:00
2022-01-21 13:02:59 +00:00
if (actor->spr.picnum == (BOLT1 + 1) && (krand() & 1) && (gs.tileinfo[sectp->floorpicnum].flags & TFLAG_ELECTRIC))
2020-10-22 17:46:42 +00:00
S_PlayActorSound(SHORT_CIRCUIT, actor);
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (actor->spr.picnum == BOLT1 + 4) actor->spr.picnum = BOLT1;
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (actor->spr.picnum & 1)
2020-05-07 12:55:04 +00:00
{
sectp->floorshade = 0;
sectp->ceilingshade = 0;
2020-05-07 12:55:04 +00:00
}
else
{
sectp->floorshade = 20;
sectp->ceilingshade = 20;
2020-05-07 12:55:04 +00:00
}
}
//---------------------------------------------------------------------------
//
// this has been broken up into lots of smaller subfunctions
//
//---------------------------------------------------------------------------
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
{
int picnum = act->spr.picnum;
2020-05-07 12:55:04 +00:00
if (!act->insector())
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
deletesprite(act);
2020-05-07 12:55:04 +00:00
continue;
}
2022-01-16 23:51:40 +00:00
if (act->GetClass() != RUNTIME_CLASS(DDukeActor))
{
CallTick(act);
continue;
}
2020-05-07 12:55:04 +00:00
else if (picnum >= CRACK1 && picnum <= CRACK1 + 3)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
movecrack(act);
2020-05-07 12:55:04 +00:00
}
else if (picnum == OOZFILTER || picnum == SEENINE || picnum == SEENINEDEAD || picnum == (SEENINEDEAD + 1))
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
moveooz(act, SEENINE, SEENINEDEAD, OOZFILTER, EXPLOSION2);
2020-05-07 12:55:04 +00:00
}
else if (picnum == MASTERSWITCH)
{
movemasterswitch(act);
2020-05-07 12:55:04 +00:00
}
else if (picnum == TRASH)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
movetrash(act);
2020-05-07 12:55:04 +00:00
}
else if (picnum >= BOLT1 && picnum <= BOLT1 + 3)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
movebolt(act);
2020-05-07 12:55:04 +00:00
}
else if (picnum == WATERDRIP)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
movewaterdrip(act, WATERDRIP);
2020-05-07 12:55:04 +00:00
}
else if (picnum == DOORSHOCK)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
movedoorshock(act);
2020-05-07 12:55:04 +00:00
}
else if (picnum == TOUCHPLATE)
{
2020-10-22 17:51:42 +00:00
movetouchplate(act, TOUCHPLATE);
2020-05-07 12:55:04 +00:00
}
else if (picnum == CANWITHSOMETHING)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:51:42 +00:00
movecanwithsomething(act);
2020-05-07 12:55:04 +00:00
}
else if (isIn(picnum,
2020-05-07 12:55:04 +00:00
EXPLODINGBARREL,
WOODENHORSE,
HORSEONSIDE,
FIREBARREL,
FIREVASE,
NUKEBARREL,
NUKEBARRELDENTED,
NUKEBARRELLEAKED,
TOILETWATER,
RUBBERCAN,
STEAM,
CEILINGSTEAM))
2020-05-07 12:55:04 +00:00
{
double x;
2020-10-23 15:44:45 +00:00
int p = findplayer(act, &x);
2020-10-22 17:51:42 +00:00
execute(act, p, x);
2020-05-07 12:55:04 +00:00
}
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-10-22 17:59:38 +00:00
static void chickenarrow(DDukeActor* actor)
2020-05-07 12:55:04 +00:00
{
2021-12-21 18:56:46 +00:00
actor->spr.hitag++;
if (actor->attackertype != BOSS2 && actor->spr.scale.X >= 0.15625 && actor->sector()->lotag != 2)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:59:38 +00:00
auto spawned = spawn(actor, SMALLSMOKE);
2022-02-06 21:56:25 +00:00
if (spawned) spawned->spr.pos.Z += 1;
if ((krand() & 15) == 2)
2020-05-07 12:55:04 +00:00
{
2020-10-22 17:59:38 +00:00
spawn(actor, MONEY);
}
}
DDukeActor* ts = actor->seek_actor;
if (!ts) return;
2020-10-22 17:59:38 +00:00
if (ts->spr.extra <= 0)
actor->seek_actor = nullptr;
2022-09-13 17:37:38 +00:00
2021-12-21 18:56:46 +00:00
if (actor->seek_actor && actor->spr.hitag > 5)
{
2022-09-13 19:15:30 +00:00
DAngle ang, ang2;
ang = (ts->spr.pos - actor->spr.pos).Angle();
2022-09-13 17:37:38 +00:00
ang2 = deltaangle(ang, actor->spr.angle);
// this was quite broken in the original code. Fixed so that it seeks properly
if (abs(ang2) < DAngle1 * 17.5)
{
actor->spr.angle = ang;
2020-05-07 12:55:04 +00:00
}
2022-09-13 17:37:38 +00:00
else if (ang2 > nullAngle)
{
2022-09-13 17:37:38 +00:00
actor->spr.angle -= DAngle1 * 9;
}
else
2022-09-13 17:37:38 +00:00
actor->spr.angle += DAngle1 * 9;
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (actor->spr.hitag > 180)
if (actor->vel.Z <= 0)
2022-09-11 17:28:45 +00:00
actor->vel.Z += 200 / 256;
}
}
2020-05-07 12:55:04 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
static bool weaponhitsprite(DDukeActor *proj, DDukeActor *targ, const DVector3 &oldpos)
{
if (isRRRA())
{
if (targ->spr.picnum == MINION
2021-12-21 18:56:46 +00:00
&& (proj->spr.picnum == RPG || proj->spr.picnum == RPG2)
&& targ->spr.pal == 19)
2020-05-07 12:55:04 +00:00
{
2020-10-22 18:07:05 +00:00
S_PlayActorSound(RPG_EXPLODE, proj);
2022-01-31 18:21:11 +00:00
auto spawned = spawn(proj, EXPLOSION2);
if (spawned)
spawned->spr.pos = oldpos;
return true;
}
}
2021-12-21 18:56:46 +00:00
else if (proj->spr.picnum == FREEZEBLAST && targ->spr.pal == 1)
if (badguy(targ) || targ->spr.picnum == APLAYER)
{
2020-10-22 18:07:05 +00:00
auto star = spawn(proj, TRANSPORTERSTAR);
if (star)
{
star->spr.pal = 1;
star->spr.scale = DVector2(0.5, 0.5);
}
2020-10-22 18:07:05 +00:00
deletesprite(proj);
return true;
}
2020-05-07 12:55:04 +00:00
fi.checkhitsprite(targ, proj);
2020-05-07 12:55:04 +00:00
if (targ->spr.picnum == APLAYER)
{
int p = targ->PlayerIndex();
2020-10-22 18:07:05 +00:00
S_PlayActorSound(PISTOL_BODYHIT, targ);
2021-12-21 18:56:46 +00:00
if (proj->spr.picnum == SPIT)
{
if (isRRRA() && proj->GetOwner() && proj->GetOwner()->spr.picnum == MAMA)
2020-05-07 12:55:04 +00:00
{
2020-10-22 18:07:05 +00:00
guts_r(proj, RABBITJIBA, 2, myconnectindex);
guts_r(proj, RABBITJIBB, 2, myconnectindex);
guts_r(proj, RABBITJIBC, 2, myconnectindex);
2020-05-07 12:55:04 +00:00
}
ps[p].horizon.addadjustment(DAngle::fromDeg(-14.04));
ps[p].sync.actions |= SB_CENTERVIEW;
2020-05-07 12:55:04 +00:00
if (ps[p].loogcnt == 0)
2020-05-07 12:55:04 +00:00
{
2020-10-22 18:07:05 +00:00
if (!S_CheckActorSoundPlaying(ps[p].GetActor(), DUKE_LONGTERM_PAIN))
S_PlayActorSound(DUKE_LONGTERM_PAIN, ps[p].GetActor());
2020-05-07 12:55:04 +00:00
2020-10-22 18:07:05 +00:00
int j = 3 + (krand() & 3);
ps[p].numloogs = j;
ps[p].loogcnt = 24 * 4;
for (int x = 0; x < j; x++)
2020-05-07 12:55:04 +00:00
{
ps[p].loogie[x].X = krand() % 320;
ps[p].loogie[x].Y = krand() % 200;
2020-05-07 12:55:04 +00:00
}
}
}
}
return false;
}
2020-05-07 12:55:04 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-05-07 12:55:04 +00:00
static bool weaponhitwall(DDukeActor *proj, walltype* wal, const DVector3& oldpos)
{
if (isRRRA() && proj->GetOwner() && proj->GetOwner()->spr.picnum == MAMA)
{
2020-10-22 18:07:05 +00:00
guts_r(proj, RABBITJIBA, 2, myconnectindex);
guts_r(proj, RABBITJIBB, 2, myconnectindex);
guts_r(proj, RABBITJIBC, 2, myconnectindex);
}
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (proj->spr.picnum != RPG && (!isRRRA() || proj->spr.picnum != RPG2) && proj->spr.picnum != FREEZEBLAST && proj->spr.picnum != SPIT && proj->spr.picnum != SHRINKSPARK && (wal->overpicnum == MIRROR || wal->picnum == MIRROR))
{
DAngle walang = wal->delta().Angle();
proj->spr.angle = walang * 2 - proj->spr.angle;
2020-10-22 18:07:05 +00:00
proj->SetOwner(proj);
spawn(proj, TRANSPORTERSTAR);
return true;
}
else
{
SetActor(proj, oldpos);
2022-08-23 20:39:07 +00:00
fi.checkhitwall(proj, wal, proj->spr.pos, proj->spr.picnum);
2021-12-21 18:56:46 +00:00
if (!isRRRA() && proj->spr.picnum == FREEZEBLAST)
{
if (wal->overpicnum != MIRROR && wal->picnum != MIRROR)
2020-05-07 12:55:04 +00:00
{
2021-12-21 18:56:46 +00:00
proj->spr.extra >>= 1;
if (proj->spr.scale.X > 0.125 )
2022-10-07 21:44:21 +00:00
proj->spr.scale.X += (-0.03125);
if (proj->spr.scale.Y > 0.125 )
2022-10-07 21:44:21 +00:00
proj->spr.scale.Y += (-0.03125);
proj->spr.yint--;
2020-05-07 12:55:04 +00:00
}
DAngle walang = wal->delta().Angle();
proj->spr.angle = walang * 2 - proj->spr.angle;
return true;
}
2021-12-21 18:56:46 +00:00
if (proj->spr.picnum == SHRINKSPARK)
{
if (wal->picnum >= RRTILE3643 && wal->picnum < RRTILE3643 + 3)
{
2020-10-22 18:07:05 +00:00
deletesprite(proj);
}
2021-12-21 18:56:46 +00:00
if (proj->spr.extra <= 0)
2020-05-07 12:55:04 +00:00
{
proj->spr.pos += proj->spr.angle.ToVector() * 8;
2020-10-22 18:07:05 +00:00
auto Owner = proj->GetOwner();
if (!isRRRA() || !Owner || (Owner->spr.picnum != CHEER && Owner->spr.picnum != CHEERSTAYPUT))
2020-05-07 12:55:04 +00:00
{
2020-10-22 18:07:05 +00:00
auto j = spawn(proj, CIRCLESTUCK);
if (j)
{
j->spr.scale = DVector2(0.125, 0.125);
j->spr.cstat = CSTAT_SPRITE_ALIGNMENT_WALL;
2022-09-14 20:57:42 +00:00
j->spr.angle += DAngle90;
j->clipdist = proj->spr.scale.X * tileWidth(proj->spr.picnum) * 0.125;
}
2020-05-07 12:55:04 +00:00
}
2020-10-22 18:07:05 +00:00
deletesprite(proj);
return true;
2020-05-07 12:55:04 +00:00
}
if (wal->overpicnum != MIRROR && wal->picnum != MIRROR)
{
2021-12-21 18:56:46 +00:00
proj->spr.extra -= 20;
proj->spr.yint--;
}
DAngle k = wal->delta().Angle();
2022-09-14 20:57:42 +00:00
proj->spr.angle = k * 2 - proj->spr.angle;
return true;
}
}
return false;
}
2020-05-07 12:55:04 +00:00
2020-10-22 18:07:05 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
bool weaponhitsector(DDukeActor *proj, const DVector3& oldpos)
{
SetActor(proj, oldpos);
if (isRRRA() && proj->GetOwner() && proj->GetOwner()->spr.picnum == MAMA)
{
2020-10-22 18:07:05 +00:00
guts_r(proj, RABBITJIBA, 2, myconnectindex);
guts_r(proj, RABBITJIBB, 2, myconnectindex);
guts_r(proj, RABBITJIBC, 2, myconnectindex);
}
if (proj->vel.Z < 0)
{
if (proj->sector()->ceilingstat & CSTAT_SECTOR_SKY)
if (proj->sector()->ceilingpal == 0)
2020-05-07 12:55:04 +00:00
{
2020-10-22 18:07:05 +00:00
deletesprite(proj);
return true;
}
2020-05-07 12:55:04 +00:00
fi.checkhitceiling(proj->sector());
}
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (!isRRRA() && proj->spr.picnum == FREEZEBLAST)
{
2020-10-22 18:07:05 +00:00
bounce(proj);
ssp(proj, CLIPMASK1);
2021-12-21 18:56:46 +00:00
proj->spr.extra >>= 1;
if (proj->spr.scale.X > 0.125 )
2022-10-07 21:44:21 +00:00
proj->spr.scale.X += (-0.03125);
if (proj->spr.scale.Y > 0.125 )
2022-10-07 21:44:21 +00:00
proj->spr.scale.Y += (-0.03125);
proj->spr.yint--;
return true;
}
return false;
}
2020-05-07 12:55:04 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-05-07 12:55:04 +00:00
2020-10-22 18:21:21 +00:00
static void weaponcommon_r(DDukeActor *proj)
{
2022-09-13 18:02:15 +00:00
double vel = proj->vel.X;
double velz = proj->vel.Z;
2020-05-07 12:55:04 +00:00
2022-09-13 18:02:15 +00:00
int p = -1;
if (proj->spr.picnum == RPG && proj->sector()->lotag == 2)
{
2022-09-13 18:02:15 +00:00
vel *= 0.5;
velz *= 0.5;
}
else if (isRRRA() && proj->spr.picnum == RPG2 && proj->sector()->lotag == 2)
{
2022-09-13 18:02:15 +00:00
vel *= 0.5;
velz *= 0.5;
}
2020-05-07 12:55:04 +00:00
2022-09-13 18:02:15 +00:00
auto oldpos = proj->spr.pos;
2020-05-07 12:55:04 +00:00
2020-10-22 18:21:21 +00:00
getglobalz(proj);
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
switch (proj->spr.picnum)
{
case RPG:
if (proj->attackertype != BOSS2 && proj->spr.scale.X >= 0.15625 && proj->sector()->lotag != 2)
{
auto spawned = spawn(proj, SMALLSMOKE);
2022-02-06 21:56:25 +00:00
if (spawned) spawned->spr.pos.Z += 1;
}
break;
case RPG2:
if (!isRRRA()) break;
2020-10-22 18:21:21 +00:00
chickenarrow(proj);
break;
2020-05-07 12:55:04 +00:00
case RRTILE1790:
if (!isRRRA()) break;
2021-12-21 18:56:46 +00:00
if (proj->spr.extra)
{
proj->vel.Z = -(proj->spr.extra * 250/256.); // 250 looks like a typo...
2021-12-21 18:56:46 +00:00
proj->spr.extra--;
}
else
2020-10-22 18:21:21 +00:00
makeitfall(proj);
if (proj->spr.scale.X >= 0.15625 && proj->sector()->lotag != 2)
{
auto spawned = spawn(proj, SMALLSMOKE);
2022-02-06 21:56:25 +00:00
if (spawned) spawned->spr.pos.Z += 1;
}
break;
}
2020-05-07 12:55:04 +00:00
Collision coll;
2022-09-13 18:02:15 +00:00
movesprite_ex(proj, DVector3(proj->spr.angle.ToVector() * vel, velz), CLIPMASK1, coll);
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if ((proj->spr.picnum == RPG || (isRRRA() && isIn(proj->spr.picnum, RPG2, RRTILE1790))) && proj->temp_actor != nullptr)
if ((proj->spr.pos.XY() - proj->temp_actor->spr.pos.XY()).Length() < 16)
coll.setSprite(proj->temp_actor);
2020-05-07 12:55:04 +00:00
if (!proj->insector()) // || (isRR() && proj->sector()->filler == 800))
{
2020-10-22 18:21:21 +00:00
deletesprite(proj);
return;
}
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (coll.type != kHitSprite && proj->spr.picnum != FREEZEBLAST)
{
2022-02-03 23:55:12 +00:00
if (proj->spr.pos.Z < proj->ceilingz)
{
coll.setSector(proj->sector());
2022-09-11 17:28:45 +00:00
proj->vel.Z -= 1/256.;
}
else
2022-02-03 23:55:12 +00:00
if (proj->spr.pos.Z > proj->floorz)
{
coll.setSector(proj->sector());
if (proj->sector()->lotag != 1)
2022-09-11 17:28:45 +00:00
proj->vel.Z += 1/256.;
}
}
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (proj->spr.picnum == FIRELASER)
{
2022-09-13 18:02:15 +00:00
for (int k = -3; k < 2; k++)
{
2022-09-13 18:02:15 +00:00
double zAdd = k * proj->vel.Z / 24;
auto x = CreateActor(proj->sector(), proj->spr.pos.plusZ(zAdd) + proj->spr.angle.ToVector() * k * 2.,
FIRELASER, -40 + (k << 2),
proj->spr.scale, nullAngle, 0., 0., proj->GetOwner(), 5);
if (x)
{
x->spr.cstat = CSTAT_SPRITE_YCENTER;
2021-12-21 18:56:46 +00:00
x->spr.pal = proj->spr.pal;
}
}
}
else if (proj->spr.picnum == SPIT) if (proj->vel.Z < 24)
2022-10-05 22:07:01 +00:00
proj->vel.Z += gs.gravity - 112/256.;
if (coll.type != 0)
{
if (coll.type == kHitSprite)
{
if (weaponhitsprite(proj, coll.actor(), oldpos)) return;
}
else if (coll.type == kHitWall)
{
if (weaponhitwall(proj, coll.hitWall, oldpos)) return;
}
else if (coll.type == kHitSector)
{
2020-10-22 18:21:21 +00:00
if (weaponhitsector(proj, oldpos)) return;
}
2020-05-07 12:55:04 +00:00
2021-12-21 18:56:46 +00:00
if (proj->spr.picnum != SPIT)
{
2021-12-21 18:56:46 +00:00
if (proj->spr.picnum == RPG) rpgexplode(proj, coll.type, oldpos, EXPLOSION2, -1, -1, RPG_EXPLODE);
else if (isRRRA() && proj->spr.picnum == RPG2) rpgexplode(proj, coll.type, oldpos, EXPLOSION2, -1, 150, 247);
else if (isRRRA() && proj->spr.picnum == RRTILE1790) rpgexplode(proj, coll.type, oldpos, EXPLOSION2, -1, 160, RPG_EXPLODE);
else if (proj->spr.picnum != FREEZEBLAST && proj->spr.picnum != FIRELASER && proj->spr.picnum != SHRINKSPARK)
{
auto spawned = spawn(proj, 1441);
if (spawned)
{
auto scale = proj->spr.scale.X * 0.5;
spawned->spr.scale = DVector2(scale, scale);
if (coll.type == kHitSector)
2020-05-07 12:55:04 +00:00
{
if (proj->vel.Z < 0)
{
spawned->spr.cstat |= CSTAT_SPRITE_YFLIP;
spawned->spr.pos.Z += 72;
}
2020-05-07 12:55:04 +00:00
}
}
}
}
2020-10-22 18:21:21 +00:00
deletesprite(proj);
return;
}
if ((proj->spr.picnum == RPG || (isRRRA() && proj->spr.picnum == RPG2)) && proj->sector()->lotag == 2 && proj->spr.scale.X >= 0.15625 && rnd(184))
2020-10-22 18:21:21 +00:00
spawn(proj, WATERBUBBLE);
}
2020-05-07 12:55:04 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-05-07 12:55:04 +00:00
void moveweapons_r(void)
{
2020-10-22 18:21:21 +00:00
DukeStatIterator it(STAT_PROJECTILE);
while (auto proj = it.Next())
{
if (!proj->insector())
{
2020-10-22 18:21:21 +00:00
deletesprite(proj);
continue;
}
2020-05-07 12:55:04 +00:00
switch (proj->spr.picnum)
{
case RADIUSEXPLOSION:
2020-10-22 18:21:21 +00:00
deletesprite(proj);
continue;
case TONGUE:
2020-10-22 18:21:21 +00:00
movetongue(proj, TONGUE, INNERJAW);
continue;
2020-05-07 12:55:04 +00:00
case FREEZEBLAST:
2022-09-14 17:29:29 +00:00
if (proj->spr.yint < 1 || proj->spr.extra < 2 || (proj->vel.X == 0 && proj->vel.Z == 0))
{
2020-10-22 18:21:21 +00:00
auto star = spawn(proj, TRANSPORTERSTAR);
if (star)
{
star->spr.pal = 1;
star->spr.scale = DVector2(0.5, 0.5);
}
2020-10-22 18:21:21 +00:00
deletesprite(proj);
continue;
2020-05-07 12:55:04 +00:00
}
[[fallthrough]];
case RPG2:
case RRTILE1790:
if (!isRRRA()) continue;
[[fallthrough]];
case SHRINKSPARK:
case RPG:
case FIRELASER:
case SPIT:
case COOLEXPLOSION1:
case OWHIP:
case UWHIP:
2020-10-22 18:21:21 +00:00
weaponcommon_r(proj);
2020-05-07 12:55:04 +00:00
continue;
case SHOTSPARK1:
{
double x;
2020-10-23 15:44:45 +00:00
int p = findplayer(proj, &x);
2020-10-22 18:21:21 +00:00
execute(proj, p, x);
continue;
2020-05-07 12:55:04 +00:00
}
}
2020-05-07 12:55:04 +00:00
}
}
2020-05-07 22:03:51 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void movetransports_r(void)
{
uint8_t warpdir = 0, warpspriteto;
int k, p, sectlotag;
int onfloorz;
double ll, ll2 = 0;
2020-10-22 19:42:02 +00:00
Collision coll;
2020-05-07 22:03:51 +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
{
auto sectp = act->sector();
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
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
{
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
{
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
for (k = connecthead; k >= 0; k = connectpoint2[k])
if (ps[k].cursector == Owner->sector())
2020-05-07 22:03:51 +00:00
{
ps[k].frag_ps = p;
ps[k].GetActor()->spr.extra = 0;
2020-05-07 22:03:51 +00:00
}
ps[p].angle.ang = Owner->spr.angle;
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-09-16 16:06:35 +00:00
ps[p].pos = Owner->spr.pos.plusZ(-gs.playerheight + 4);
ps[p].backupxyz();
ps[p].setbobpos();
2020-05-07 22:03:51 +00:00
ChangeActorSect(act2, Owner->sector());
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);
if (beam) S_PlayActorSound(TELEPORTER, beam);
2020-05-07 22:03:51 +00:00
break;
}
}
else break;
2022-02-06 19:02:58 +00:00
if (onfloorz == 0 && fabs(act->spr.pos.Z - ps[p].pos.Z) < 24)
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-02-05 12:35:02 +00:00
ps[p].pos.X += Owner->spr.pos.X - act->spr.pos.X;
ps[p].pos.Y += Owner->spr.pos.Y - act->spr.pos.Y;
ps[p].backupxy();
2020-05-07 22:03:51 +00:00
if (ps[p].jetpack_on && (PlayerInput(p, SB_JUMP) || ps[p].jetpack_on < 11))
2022-02-05 12:35:02 +00:00
ps[p].pos.Z = Owner->spr.pos.Z - 24;
else ps[p].pos.Z = Owner->spr.pos.Z + 24;
ps[p].backupz();
2020-05-07 22:03:51 +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-02-06 19:02:58 +00:00
if (onfloorz && sectlotag == 160 && ps[p].pos.Z > sectp->floorz - 48)
2020-05-07 22:03:51 +00:00
{
k = 2;
2022-02-05 12:35:02 +00:00
ps[p].pos.Z = Owner->sector()->ceilingz + 7;
ps[p].backupz();
2020-05-07 22:03:51 +00:00
}
2022-02-06 19:02:58 +00:00
if (onfloorz && sectlotag == 161 && ps[p].pos.Z < sectp->ceilingz + 6)
2020-05-07 22:03:51 +00:00
{
k = 2;
if (ps[p].GetActor()->spr.extra <= 0) break;
2022-02-05 12:35:02 +00:00
ps[p].pos.Z = Owner->sector()->floorz - 49;
ps[p].backupz();
2020-05-07 22:03:51 +00:00
}
}
2022-02-06 19:02:58 +00:00
if ((onfloorz && sectlotag == ST_1_ABOVE_WATER && ps[p].pos.Z > 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-02-05 12:35:02 +00:00
ps[p].pos.Z = Owner->sector()->ceilingz + 7;
ps[p].backupz();
2020-05-07 22:03:51 +00:00
if (ps[p].OnMotorcycle)
ps[p].moto_underwater = 1;
}
2022-02-06 19:02:58 +00:00
if (onfloorz && sectlotag == ST_2_UNDERWATER && ps[p].pos.Z < sectp->ceilingz + 6)
2020-05-07 22:03:51 +00:00
{
k = 1;
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-02-05 12:35:02 +00:00
ps[p].pos.Z = Owner->sector()->floorz - 7;
ps[p].backupz();
2020-05-07 22:03:51 +00:00
}
if (k == 1)
{
2022-02-05 12:35:02 +00:00
ps[p].pos.X += Owner->spr.pos.X - act->spr.pos.X;
ps[p].pos.Y += Owner->spr.pos.Y - act->spr.pos.Y;
ps[p].backupxy();
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
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-02-05 12:35:02 +00:00
ps[p].opos.X = ps[p].pos.X += Owner->spr.pos.X - act->spr.pos.X;
ps[p].opos.Y = ps[p].pos.Y += Owner->spr.pos.Y - act->spr.pos.Y;
ps[p].backupxy();
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
ChangeActorSect(act2, Owner->sector());
2020-05-07 22:03:51 +00:00
}
}
break;
case STAT_ACTOR:
2021-12-21 19:02:06 +00:00
if (act->spr.picnum == SHARK ||
(isRRRA() && (act->spr.picnum == CHEERBOAT || act->spr.picnum == HULKBOAT || act->spr.picnum == MINIONBOAT || act->spr.picnum == UFO1_RRRA)) ||
(!isRRRA() && (act->spr.picnum == UFO1_RR || act->spr.picnum == UFO2 || act->spr.picnum == UFO3 || act->spr.picnum == UFO4 || act->spr.picnum == UFO5))) continue;
[[fallthrough]];
2020-05-07 22:03:51 +00:00
case STAT_PROJECTILE:
case STAT_MISC:
case STAT_DUMMYPLAYER:
ll = abs(act2->vel.Z);
2020-05-07 22:03:51 +00:00
if (isRRRA())
{
if (act2->vel.Z >= 0)
2020-05-07 22:03:51 +00:00
warpdir = 2;
else
warpdir = 1;
}
{
warpspriteto = 0;
if (ll && sectlotag == ST_2_UNDERWATER && act2->spr.pos.Z < (sectp->ceilingz + ll))
2020-05-07 22:03:51 +00:00
warpspriteto = 1;
if (ll && sectlotag == ST_1_ABOVE_WATER && act2->spr.pos.Z > (sectp->floorz - ll))
2021-12-21 19:02:06 +00:00
if (!isRRRA() || (act2->spr.picnum != CHEERBOAT && act2->spr.picnum != HULKBOAT && act2->spr.picnum != MINIONBOAT))
2020-05-07 22:03:51 +00:00
warpspriteto = 1;
if (isRRRA())
{
if (ll && sectlotag == 161 && act2->spr.pos.Z < (sectp->ceilingz + ll) && warpdir == 1)
2020-05-07 22:03:51 +00:00
{
warpspriteto = 1;
ll2 = ll - abs(act2->spr.pos.Z - sectp->ceilingz);
2020-05-07 22:03:51 +00:00
}
else if (sectlotag == 161 && act2->spr.pos.Z < (sectp->ceilingz + 3.90625) && warpdir == 1)
2020-05-07 22:03:51 +00:00
{
warpspriteto = 1;
ll2 = zmaptoworld;
2020-05-07 22:03:51 +00:00
}
if (ll && sectlotag == 160 && act2->spr.pos.Z > (sectp->floorz - ll) && warpdir == 2)
2020-05-07 22:03:51 +00:00
{
warpspriteto = 1;
ll2 = ll - abs(sectp->floorz - act2->spr.pos.Z);
2020-05-07 22:03:51 +00:00
}
else if (sectlotag == 160 && act2->spr.pos.Z > (sectp->floorz - 3.90625) && warpdir == 2)
2020-05-07 22:03:51 +00:00
{
warpspriteto = 1;
ll2 = zmaptoworld;
2020-05-07 22:03:51 +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;
}
if (warpspriteto)
2020-05-07 22:03:51 +00:00
{
if (actorflag(act2, SFLAG_NOTELEPORT)) continue;
switch (act2->spr.picnum)
2020-05-07 22:03:51 +00:00
{
case PLAYERONWATER:
if (sectlotag == ST_2_UNDERWATER)
{
act2->spr.cstat &= ~CSTAT_SPRITE_INVISIBLE;
break;
}
[[fallthrough]];
default:
if (act2->spr.statnum == 5 && !(sectlotag == ST_1_ABOVE_WATER || sectlotag == ST_2_UNDERWATER || (isRRRA() && (sectlotag == 160 || sectlotag == 161))))
break;
[[fallthrough]];
2020-05-07 22:03:51 +00:00
case WATERBUBBLE:
if (rnd(192) && act2->spr.picnum == WATERBUBBLE)
break;
2020-05-07 22:03:51 +00:00
if (sectlotag > 0)
2020-05-07 22:03:51 +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;
spawned->spr.angle = act2->spr.angle;
ssp(spawned, CLIPMASK0);
}
2020-05-07 22:03:51 +00:00
}
switch (sectlotag)
2020-05-07 22:03:51 +00:00
{
case ST_0_NO_EFFECT:
if (onfloorz)
2020-05-07 22:03:51 +00:00
{
if (checkcursectnums(act->sector()) == -1 && checkcursectnums(Owner->sector()) == -1)
{
act2->spr.pos += (Owner->spr.pos - act->spr.pos.XY()).plusZ(-Owner->sector()->floorz);
act2->spr.angle = Owner->spr.angle;
2020-05-07 22:03:51 +00:00
act2->backupang();
2020-05-07 22:03:51 +00:00
auto beam = spawn(act, TRANSPORTERBEAM);
if (beam) S_PlayActorSound(TELEPORTER, beam);
2020-05-07 22:03:51 +00:00
beam = spawn(Owner, TRANSPORTERBEAM);
if (beam) S_PlayActorSound(TELEPORTER, beam);
2020-05-07 22:03:51 +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
}
}
else
{
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;
act2->backupz();
2020-05-07 22:03:51 +00:00
ChangeActorSect(act2, Owner->sector());
2020-05-07 22:03:51 +00:00
}
break;
case ST_1_ABOVE_WATER:
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
act2->spr.pos.Z = Owner->sector()->ceilingz + ll;
act2->backupz();
2020-05-07 22:03:51 +00:00
ChangeActorSect(act2, Owner->sector());
2020-05-07 22:03:51 +00:00
break;
case ST_2_UNDERWATER:
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
act2->spr.pos.Z = Owner->sector()->ceilingz - ll;
act2->backupz();
2020-05-07 22:03:51 +00:00
ChangeActorSect(act2, Owner->sector());
2020-05-07 22:03:51 +00:00
break;
2020-05-07 22:03:51 +00:00
case 160:
if (!isRRRA()) break;
act2->spr.pos.XY() += Owner->spr.pos.XY() - act->spr.pos.XY();
act2->spr.pos.Z = Owner->sector()->ceilingz + ll2;
act2->backupz();
2020-05-07 22:03:51 +00:00
ChangeActorSect(act2, Owner->sector());
2020-05-07 22:03:51 +00:00
2022-09-03 16:41:25 +00:00
movesprite_ex(act2, DVector3(act2->spr.angle.ToVector() * act2->vel.X, 0), CLIPMASK1, coll);
2020-05-07 22:03:51 +00:00
break;
case 161:
if (!isRRRA()) break;
act2->spr.pos += Owner->spr.pos.XY() - act->spr.pos.XY();
act2->spr.pos.Z = Owner->sector()->floorz - ll;
act2->backupz();
2020-05-07 22:03:51 +00:00
ChangeActorSect(act2, Owner->sector());
2020-05-07 22:03:51 +00:00
2022-09-03 16:41:25 +00:00
movesprite_ex(act2, DVector3(act2->spr.angle.ToVector() * act2->vel.X, 0), CLIPMASK1, coll);
2020-05-07 22:03:51 +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;
DukeStatIterator it(117);
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.hitag > 2)
act->spr.hitag = 0;
if ((act->spr.picnum == RRTILE8488 || act->spr.picnum == RRTILE8490) && act->spr.hitag != 2)
2020-05-08 22:34:48 +00:00
{
act->spr.hitag = 2;
act->spr.extra = -100;
2020-05-08 22:34:48 +00:00
}
if (act->spr.hitag == 0)
2020-05-08 22:34:48 +00:00
{
act->spr.extra++;
if (act->spr.extra >= 30)
act->spr.hitag = 1;
2020-05-08 22:34:48 +00:00
}
else if (act->spr.hitag == 1)
2020-05-08 22:34:48 +00:00
{
act->spr.extra--;
if (act->spr.extra <= -30)
act->spr.hitag = 0;
2020-05-08 22:34:48 +00:00
}
else if (act->spr.hitag == 2)
2020-05-08 22:34:48 +00:00
{
act->spr.extra--;
if (act->spr.extra <= -104)
2020-05-08 22:34:48 +00:00
{
spawn(act, act->spr.lotag);
2020-10-22 20:21:40 +00:00
deletesprite(act);
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 / 128.), CLIPMASK0, coll);
2020-05-08 22:34:48 +00:00
}
it.Reset(118);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.hitag > 1)
act->spr.hitag = 0;
if (act->spr.hitag == 0)
2020-05-08 22:34:48 +00:00
{
act->spr.extra++;
if (act->spr.extra >= 20)
act->spr.hitag = 1;
2020-05-08 22:34:48 +00:00
}
else if (act->spr.hitag == 1)
2020-05-08 22:34:48 +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
{
CompleteLevel(nullptr);
2020-05-08 22:34:48 +00:00
}
}
if (enemysizecheat > 0)
{
DukeSpriteIterator itr;
while (auto act = itr.Next())
2020-05-08 22:34:48 +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)
{
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)
{
act->spr.scale *= 0.5;
act->clipdist = act->spr.scale.X, tileHeight(act->spr.picnum) * 0.125;
2020-05-08 22:34:48 +00:00
}
break;
}
2020-05-08 22:34:48 +00:00
}
enemysizecheat = 0;
}
it.Reset(121);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
act->spr.extra++;
if (act->spr.extra < 100)
2020-05-08 22:34:48 +00:00
{
if (act->spr.extra == 90)
2020-05-08 22:34:48 +00:00
{
act->spr.picnum--;
if (act->spr.picnum < PIG + 7)
act->spr.picnum = PIG + 7;
act->spr.extra = 1;
2020-05-08 22:34:48 +00:00
}
2022-09-13 18:02:15 +00:00
movesprite_ex(act, DVector3(0, 0, -300/256.), CLIPMASK0, coll);
if (act->sector()->ceilingz+ 4 > act->spr.pos.Z)
2020-05-08 22:34:48 +00:00
{
act->spr.picnum = 0;
act->spr.extra = 100;
2020-05-08 22:34:48 +00:00
}
}
else if (act->spr.extra == 200)
2020-05-08 22:34:48 +00:00
{
// This was really 10 and not (10 << 8)!
SetActor(act, DVector3(act->spr.pos.X, act->spr.pos.Y, act->sector()->floorz - 10 * zmaptoworld));
act->spr.extra = 1;
act->spr.picnum = PIG + 11;
2020-10-22 20:21:40 +00:00
spawn(act, TRANSPORTERSTAR);
2020-05-08 22:34:48 +00:00
}
}
it.Reset(119);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.hitag > 0)
2020-05-08 22:34:48 +00:00
{
if (act->spr.extra == 0)
2020-05-08 22:34:48 +00:00
{
act->spr.hitag--;
act->spr.extra = 150;
2020-10-22 20:21:40 +00:00
spawn(act, RABBIT);
2020-05-08 22:34:48 +00:00
}
else
act->spr.extra--;
2020-05-08 22:34:48 +00:00
}
}
it.Reset(116);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.extra)
2020-05-08 22:34:48 +00:00
{
if (act->spr.extra == act->spr.lotag)
S_PlaySound(183);
act->spr.extra--;
2022-09-13 18:02:15 +00:00
int j = movesprite_ex(act, DVector3(act->spr.angle.ToVector() * act->spr.hitag / 16., act->spr.hitag / 128.), CLIPMASK0, coll);
2020-05-08 22:34:48 +00:00
if (j > 0)
{
2020-10-22 20:21:40 +00:00
S_PlayActorSound(PIPEBOMB_EXPLODE, act);
deletesprite(act);
2020-05-08 22:34:48 +00:00
}
if (act->spr.extra == 0)
2020-05-08 22:34:48 +00:00
{
S_PlaySound(215);
2020-10-22 20:21:40 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
earthquaketime = 32;
SetPlayerPal(&ps[myconnectindex], PalEntry(32, 32, 32, 48));
}
}
}
it.Reset(115);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.extra)
2020-05-08 22:34:48 +00:00
{
if (act->spr.picnum != RRTILE8162)
act->spr.picnum = RRTILE8162;
act->spr.extra--;
if (act->spr.extra == 0)
2020-05-08 22:34:48 +00:00
{
int rvar;
rvar = krand() & 127;
if (rvar < 96)
{
act->spr.picnum = RRTILE8162 + 3;
2020-05-08 22:34:48 +00:00
}
else if (rvar < 112)
{
if (ps[screenpeek].SlotWin & 1)
{
act->spr.picnum = RRTILE8162 + 3;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8162 + 2;
2020-10-22 20:21:40 +00:00
spawn(act, BATTERYAMMO);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 1;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(52, act);
2020-05-08 22:34:48 +00:00
}
}
else if (rvar < 120)
{
if (ps[screenpeek].SlotWin & 2)
{
act->spr.picnum = RRTILE8162 + 3;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8162 + 6;
spawn(act, DYNAMITE);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 2;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(52, act);
2020-05-08 22:34:48 +00:00
}
}
else if (rvar < 126)
{
if (ps[screenpeek].SlotWin & 4)
{
act->spr.picnum = RRTILE8162 + 3;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8162 + 5;
2020-10-22 20:21:40 +00:00
spawn(act, SIXPAK);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 4;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(52, act);
2020-05-08 22:34:48 +00:00
}
}
else
{
if (ps[screenpeek].SlotWin & 8)
{
act->spr.picnum = RRTILE8162 + 3;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8162 + 4;
2020-10-22 20:21:40 +00:00
spawn(act, ATOMICHEALTH);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 8;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(52, act);
2020-05-08 22:34:48 +00:00
}
}
}
}
}
it.Reset(122);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.extra)
2020-05-08 22:34:48 +00:00
{
if (act->spr.picnum != RRTILE8589)
act->spr.picnum = RRTILE8589;
act->spr.extra--;
if (act->spr.extra == 0)
2020-05-08 22:34:48 +00:00
{
int rvar;
rvar = krand() & 127;
if (rvar < 96)
{
act->spr.picnum = RRTILE8589 + 4;
2020-05-08 22:34:48 +00:00
}
else if (rvar < 112)
{
if (ps[screenpeek].SlotWin & 1)
{
act->spr.picnum = RRTILE8589 + 4;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8589 + 5;
2020-10-22 20:21:40 +00:00
spawn(act, BATTERYAMMO);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 1;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(342, act);
2020-05-08 22:34:48 +00:00
}
}
else if (rvar < 120)
{
if (ps[screenpeek].SlotWin & 2)
{
act->spr.picnum = RRTILE8589 + 4;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8589 + 6;
spawn(act, DYNAMITE);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 2;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(342, act);
2020-05-08 22:34:48 +00:00
}
}
else if (rvar < 126)
{
if (ps[screenpeek].SlotWin & 4)
{
act->spr.picnum = RRTILE8589 + 4;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8589 + 2;
2020-10-22 20:21:40 +00:00
spawn(act, SIXPAK);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 4;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(342, act);
2020-05-08 22:34:48 +00:00
}
}
else
{
if (ps[screenpeek].SlotWin & 8)
{
act->spr.picnum = RRTILE8589 + 4;
2020-05-08 22:34:48 +00:00
}
else
{
act->spr.picnum = RRTILE8589 + 3;
2020-10-22 20:21:40 +00:00
spawn(act, ATOMICHEALTH);
2020-05-08 22:34:48 +00:00
ps[screenpeek].SlotWin |= 8;
2020-10-22 20:21:40 +00:00
S_PlayActorSound(342, act);
2020-05-08 22:34:48 +00:00
}
}
}
}
}
it.Reset(123);
2020-10-22 20:21:40 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.lotag == 5)
2020-05-08 22:34:48 +00:00
if (!S_CheckSoundPlaying(330))
2020-10-22 20:21:40 +00:00
S_PlayActorSound(330, act);
2020-05-08 22:34:48 +00:00
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void rr_specialstats()
{
2020-10-22 20:24:55 +00:00
DukeStatIterator it(107);
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.hitag == 100)
2020-05-08 22:34:48 +00:00
{
2022-02-07 07:47:18 +00:00
act->spr.pos.Z += 4;
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= act->sector()->floorz + 59.25)
act->spr.pos.Z = act->sector()->floorz + 59.25;
2020-05-08 22:34:48 +00:00
}
if (act->spr.picnum == LUMBERBLADE)
2020-05-08 22:34:48 +00:00
{
act->spr.extra++;
if (act->spr.extra == 192)
2020-05-08 22:34:48 +00:00
{
act->spr.hitag = 0;
2022-08-20 18:11:01 +00:00
act->spr.pos.Z = act->sector()->floorz - 59.25;
act->spr.extra = 0;
act->spr.picnum = RRTILE3410;
2020-11-01 15:42:41 +00:00
DukeStatIterator it2(STAT_DEFAULT);
while (auto act2 = it2.Next())
2020-05-08 22:34:48 +00:00
{
if (act2->spr.picnum == 128)
if (act2->spr.hitag == 999)
act2->spr.picnum = 127;
2020-05-08 22:34:48 +00:00
}
}
}
}
if (chickenplant)
{
it.Reset(106);
2020-10-22 20:24:55 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
switch (act->spr.picnum)
2020-05-08 22:34:48 +00:00
{
case RRTILE285:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
spawn(act, RRTILE3190)->spr.angle = act->spr.angle;
act->spr.lotag = 128;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE286:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
spawn(act, RRTILE3192)->spr.angle = act->spr.angle;
act->spr.lotag = 256;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE287:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:24:55 +00:00
lotsoffeathers_r(act, (krand() & 3) + 4);
act->spr.lotag = 84;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE288:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:24:55 +00:00
auto j = spawn(act, RRTILE3132);
act->spr.lotag = 96;
if (j && !isRRRA()) S_PlayActorSound(472, j);
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE289:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
spawn(act, RRTILE3120)->spr.angle = act->spr.angle;
act->spr.lotag = 448;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE290:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
spawn(act, RRTILE3122)->spr.angle = act->spr.angle;
act->spr.lotag = 64;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE291:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
spawn(act, RRTILE3123)->spr.angle = act->spr.angle;
act->spr.lotag = 512;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE292:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
spawn(act, RRTILE3124)->spr.angle = act->spr.angle;
act->spr.lotag = 224;
2020-05-08 22:34:48 +00:00
}
break;
case RRTILE293:
act->spr.lotag--;
if (act->spr.lotag < 0)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:24:55 +00:00
fi.guts(act, JIBS1, 1, myconnectindex);
fi.guts(act, JIBS2, 1, myconnectindex);
fi.guts(act, JIBS3, 1, myconnectindex);
fi.guts(act, JIBS4, 1, myconnectindex);
act->spr.lotag = 256;
2020-05-08 22:34:48 +00:00
}
break;
}
}
}
it.Reset(STAT_BOWLING);
2020-10-22 20:24:55 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.picnum == BOWLINGPINSPOT)
if (act->spr.lotag == 100)
2020-05-08 22:34:48 +00:00
{
auto pst = pinsectorresetup(act->sector());
2020-05-08 22:34:48 +00:00
if (pst)
{
act->spr.lotag = 0;
if (act->spr.extra == 1)
2020-05-08 22:34:48 +00:00
{
pst = checkpins(act->sector());
2020-05-08 22:34:48 +00:00
if (!pst)
{
act->spr.extra = 2;
2020-05-08 22:34:48 +00:00
}
}
if (act->spr.extra == 2)
2020-05-08 22:34:48 +00:00
{
act->spr.extra = 0;
resetpins(act->sector());
2020-05-08 22:34:48 +00:00
}
}
}
}
it.Reset(108);
2020-10-22 20:24:55 +00:00
while (auto act = it.Next())
2020-05-08 22:34:48 +00:00
{
if (act->spr.picnum == RRTILE296)
2020-05-08 22:34:48 +00:00
{
double xx;
int p = findplayer(act, &xx);
if (xx < 128)
2020-05-08 22:34:48 +00:00
{
2020-11-01 15:42:41 +00:00
DukeStatIterator it2(108);
while (auto act2 = it2.Next())
2020-05-08 22:34:48 +00:00
{
if (act2->spr.picnum == RRTILE297)
2020-05-08 22:34:48 +00:00
{
ps[p].angle.ang = act2->spr.angle;
2022-09-16 16:06:35 +00:00
ps[p].pos = act2->spr.pos.plusZ(-36);
ps[p].backupxyz();
ps[p].setbobpos();
2020-10-22 20:24:55 +00:00
auto pact = ps[p].GetActor();
ChangeActorSect(pact, act2->sector());
2021-11-21 07:45:07 +00:00
ps[p].setCursector(pact->sector());
2020-10-22 20:24:55 +00:00
S_PlayActorSound(70, act2);
deletesprite(act2);
2020-05-08 22:34:48 +00:00
}
}
}
}
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-10-22 20:18:47 +00:00
static void heavyhbomb(DDukeActor *actor)
{
auto sectp = actor->sector();
int l;
double xx;
2020-10-22 20:18:47 +00:00
auto Owner = actor->GetOwner();
2021-12-21 19:02:06 +00:00
if ((actor->spr.cstat & CSTAT_SPRITE_INVISIBLE))
{
actor->temp_data[2]--;
if (actor->temp_data[2] <= 0)
{
2020-10-22 20:18:47 +00:00
S_PlayActorSound(TELEPORTER, actor);
spawn(actor, TRANSPORTERSTAR);
2021-12-21 19:02:06 +00:00
actor->spr.cstat = CSTAT_SPRITE_BLOCK_ALL;
}
return;
}
int p = findplayer(actor, &xx);
if (xx < 1220 / 16.) actor->spr.cstat &= ~CSTAT_SPRITE_BLOCK_ALL;
2021-12-21 19:02:06 +00:00
else actor->spr.cstat |= CSTAT_SPRITE_BLOCK_ALL;
if (actor->temp_data[3] == 0)
{
2020-10-22 20:18:47 +00:00
int j = fi.ifhitbyweapon(actor);
if (j >= 0)
{
actor->temp_data[3] = 1;
actor->temp_data[4] = 0;
l = 0;
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
goto DETONATEB;
}
}
2020-10-22 20:18:47 +00:00
makeitfall(actor);
if (sectp->lotag != 1 && (!isRRRA() || sectp->lotag != 160) && actor->spr.pos.Z >= actor->floorz - FOURSLEIGHT_F && actor->spr.yint < 3)
{
if (actor->spr.yint > 0 || (actor->spr.yint == 0 && actor->floorz == sectp->floorz))
{
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum != CHEERBOMB)
2020-10-22 20:18:47 +00:00
S_PlayActorSound(PIPEBOMB_BOUNCE, actor);
else
{
actor->temp_data[3] = 1;
actor->temp_data[4] = 1;
l = 0;
goto DETONATEB;
}
}
actor->vel.Z = -(4 - actor->spr.yint);
if (actor->sector()->lotag == 2)
2022-09-03 08:04:16 +00:00
actor->vel.Z *= 0.25;
actor->spr.yint++;
}
2022-02-03 23:55:12 +00:00
if (actor->spr.picnum != CHEERBOMB && actor->spr.pos.Z < actor->ceilingz + 16 && sectp->lotag != 2)
{
2022-02-03 23:55:12 +00:00
actor->spr.pos.Z = actor->ceilingz + 16;
2022-09-03 08:02:25 +00:00
actor->vel.Z = 0;
}
2020-10-22 20:18:47 +00:00
Collision coll;
2022-09-13 18:02:15 +00:00
movesprite_ex(actor, DVector3(actor->spr.angle.ToVector() * actor->vel.X, actor->vel.Z), CLIPMASK0, coll);
if (actor->sector()->lotag == 1 && actor->vel.Z == 0)
{
2022-02-03 23:55:12 +00:00
actor->spr.pos.Z += 32;
if (actor->temp_data[5] == 0)
{
actor->temp_data[5] = 1;
2020-10-22 20:18:47 +00:00
spawn(actor, WATERSPLASH2);
2021-12-21 19:02:06 +00:00
if (isRRRA() && actor->spr.picnum == MORTER)
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
}
}
else actor->temp_data[5] = 0;
if (actor->temp_data[3] == 0 && actor->spr.picnum == MORTER && (coll.type || xx < 844 / 16.))
{
actor->temp_data[3] = 1;
actor->temp_data[4] = 0;
l = 0;
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
goto DETONATEB;
}
if (actor->temp_data[3] == 0 && actor->spr.picnum == CHEERBOMB && (coll.type || xx < 844 / 16.))
{
actor->temp_data[3] = 1;
actor->temp_data[4] = 0;
l = 0;
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
goto DETONATEB;
}
if (Owner && Owner->spr.picnum == APLAYER)
2020-10-22 20:18:47 +00:00
l = Owner->PlayerIndex();
else l = -1;
if(actor->vel.X > 0)
{
2022-09-11 17:28:45 +00:00
actor->vel.X -= 5. / 16;
if (sectp->lotag == 2)
2022-09-11 17:28:45 +00:00
actor->vel.X -= 10. / 16;
if(actor->vel.X < 0)
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
if (int(actor->vel.X * 16) & 8) actor->spr.cstat ^= CSTAT_SPRITE_XFLIP;
}
2020-10-22 20:18:47 +00:00
if (coll.type == kHitWall)
{
auto wal = coll.hitWall;
2022-08-23 20:39:07 +00:00
fi.checkhitwall(actor, wal, actor->spr.pos, actor->spr.picnum);
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum == CHEERBOMB)
{
actor->temp_data[3] = 1;
actor->temp_data[4] = 0;
l = 0;
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
goto DETONATEB;
}
DAngle k = wal->delta().Angle();
2022-09-14 20:57:42 +00:00
actor->spr.angle = k * 2 - actor->spr.angle;
2022-09-03 08:04:16 +00:00
actor->vel.X *= 0.5;
}
DETONATEB:
if ((l >= 0 && ps[l].hbomb_on == 0) || actor->temp_data[3] == 1)
{
actor->temp_data[4]++;
if (actor->temp_data[4] == 2)
{
int x = actor->spr.extra;
int m = 0;
2021-12-21 19:02:06 +00:00
switch (actor->spr.picnum)
{
2022-01-19 09:48:18 +00:00
case POWDERKEG: m = gs.tripbombblastradius; break; // powder keg
case DYNAMITE: m = gs.pipebombblastradius; break;
case HBOMBAMMO: m = gs.pipebombblastradius; break;
case MORTER: m = gs.morterblastradius; break;
case CHEERBOMB: m = gs.morterblastradius; break;
}
if (actor->sector()->lotag != 800)
{
2020-10-22 20:18:47 +00:00
fi.hitradius(actor, m, x >> 2, x >> 1, x - (x >> 2), x);
spawn(actor, EXPLOSION2);
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum == CHEERBOMB)
2020-10-22 20:18:47 +00:00
spawn(actor, BURNING);
S_PlayActorSound(PIPEBOMB_EXPLODE, actor);
for (x = 0; x < 8; x++)
2020-10-22 20:18:47 +00:00
RANDOMSCRAP(actor);
}
}
if (actor->spr.scale.Y)
{
2022-10-07 21:46:28 +00:00
actor->spr.scale.Y = (0);
return;
}
if (actor->temp_data[4] > 20)
{
2020-10-22 20:18:47 +00:00
deletesprite(actor);
return;
}
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum == CHEERBOMB)
{
2020-10-22 20:18:47 +00:00
spawn(actor, BURNING);
deletesprite(actor);
return;
}
}
else if (actor->spr.picnum == DYNAMITE && xx < 788 / 16. && actor->temp_data[0] > 7 && actor->vel.X == 0)
2022-02-06 19:02:58 +00:00
if (cansee(actor->spr.pos.plusZ(-8), actor->sector(), ps[p].pos, ps[p].cursector))
if (ps[p].ammo_amount[DYNAMITE_WEAPON] < gs.max_ammo_amount[DYNAMITE_WEAPON])
2021-12-21 19:02:06 +00:00
if (actor->spr.pal == 0)
{
if (ud.coop >= 1)
{
2020-10-22 20:18:47 +00:00
for (int j = 0; j < ps[p].weapreccnt; j++)
2021-12-21 19:02:06 +00:00
if (ps[p].weaprecs[j] == actor->spr.picnum)
return;
if (ps[p].weapreccnt < 255)
2021-12-21 19:02:06 +00:00
ps[p].weaprecs[ps[p].weapreccnt++] = actor->spr.picnum;
}
addammo(DYNAMITE_WEAPON, &ps[p], 1);
addammo(CROSSBOW_WEAPON, &ps[p], 1);
2020-10-22 20:18:47 +00:00
S_PlayActorSound(DUKE_GET, ps[p].GetActor());
2020-10-22 20:18:47 +00:00
if (ps[p].gotweapon[DYNAMITE_WEAPON] == 0 || Owner == ps[p].GetActor())
fi.addweapon(&ps[p], DYNAMITE_WEAPON, true);
if (!Owner || Owner->spr.picnum != APLAYER)
{
SetPlayerPal(&ps[p], PalEntry(32, 0, 32, 0));
}
if (Owner && (Owner->attackertype != DYNAMITE || ud.respawn_items == 0 || Owner->spr.picnum == APLAYER))
{
if (actor->spr.picnum == DYNAMITE && Owner->spr.picnum != APLAYER && ud.coop)
return;
2020-10-22 20:18:47 +00:00
deletesprite(actor);
return;
}
else
{
actor->temp_data[2] = gs.respawnitemtime;
2020-10-22 20:18:47 +00:00
spawn(actor, RESPAWNMARKERRED);
2021-12-21 19:02:06 +00:00
actor->spr.cstat = CSTAT_SPRITE_INVISIBLE;
}
}
if (actor->temp_data[0] < 8) actor->temp_data[0]++;
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-10-22 20:31:10 +00:00
static int henstand(DDukeActor *actor)
{
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum == HENSTAND || actor->spr.picnum == HENSTAND + 1)
{
2021-12-21 19:02:06 +00:00
actor->spr.lotag--;
if (actor->spr.lotag == 0)
{
2020-10-22 20:31:10 +00:00
spawn(actor, HEN);
deletesprite(actor);
return 1;
}
}
if (actor->sector()->lotag == 900)
2022-09-03 08:02:25 +00:00
actor->vel.X = 0;
if(actor->vel.X != 0)
{
2020-10-22 20:31:10 +00:00
makeitfall(actor);
Collision coll;
2022-09-13 18:02:15 +00:00
movesprite_ex(actor, DVector3(actor->spr.angle.ToVector() * actor->vel.X, actor->vel.Z), CLIPMASK0, coll);
2020-10-22 20:31:10 +00:00
if (coll.type)
{
2020-10-22 20:31:10 +00:00
if (coll.type == kHitWall)
{
DAngle k = coll.hitWall->delta().Angle();
2022-09-14 20:57:42 +00:00
actor->spr.angle = k * 2 - actor->spr.angle;
}
2020-10-22 20:31:10 +00:00
else if (coll.type == kHitSprite)
{
auto hitact = coll.actor();
fi.checkhitsprite(actor, hitact);
if (hitact->spr.picnum == HEN)
{
2020-10-22 20:31:10 +00:00
auto ns = spawn(hitact, HENSTAND);
deletesprite(hitact);
if (ns)
{
2022-09-03 08:05:20 +00:00
ns->vel.X = 2;
ns->spr.lotag = 40;
ns->spr.angle = actor->spr.angle;
}
}
}
}
2022-09-11 17:28:45 +00:00
actor->vel.X -= 1/16.;
if(actor->vel.X < 0) actor->vel.X = 0;
2021-12-21 19:02:06 +00:00
actor->spr.cstat = CSTAT_SPRITE_BLOCK_ALL;
if (actor->spr.picnum == BOWLINGPIN)
{
actor->spr.cstat |= CSTAT_SPRITE_XFLIP & ESpriteFlags::FromInt(int(actor->vel.X * 16));
actor->spr.cstat |= CSTAT_SPRITE_YFLIP & ESpriteFlags::FromInt(int(actor->vel.X * 16));
if (krand() & 1)
2021-12-21 19:02:06 +00:00
actor->spr.picnum = BOWLINGPIN + 1;
}
2021-12-21 19:02:06 +00:00
else if (actor->spr.picnum == HENSTAND)
{
actor->spr.cstat |= CSTAT_SPRITE_XFLIP & ESpriteFlags::FromInt(int(actor->vel.X * 16));
actor->spr.cstat |= CSTAT_SPRITE_YFLIP & ESpriteFlags::FromInt(int(actor->vel.X * 16));
if (krand() & 1)
2021-12-21 19:02:06 +00:00
actor->spr.picnum = HENSTAND + 1;
2022-09-14 17:29:29 +00:00
if (actor->vel.X == 0)
2020-10-22 20:31:10 +00:00
return 2;//deletesprite(actor); still needs to run a script but should not do on a deleted object
}
2022-09-14 17:29:29 +00:00
if (actor->spr.picnum == BOWLINGPIN || (actor->spr.picnum == BOWLINGPIN + 1 && actor->vel.X == 0))
{
2020-10-22 20:31:10 +00:00
return 2;//deletesprite(actor); still needs to run a script but should not do on a deleted object
}
}
else if (actor->sector()->lotag == 900)
{
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum == BOWLINGBALL)
2020-10-22 20:31:10 +00:00
ballreturn(actor);
deletesprite(actor);
return 1;
}
return 0;
}
2020-05-09 18:27:06 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-05-08 22:34:48 +00:00
void moveactors_r(void)
{
double xx;
2020-10-22 20:48:51 +00:00
int p;
Collision coll;
dojaildoor();
moveminecart();
2020-05-08 22:34:48 +00:00
if (isRRRA())
{
rrra_specialstats();
}
rr_specialstats();
2020-10-22 20:48:51 +00:00
DukeStatIterator it(STAT_ACTOR);
while (auto act = it.Next())
{
bool deleteafterexecute = false; // taking a cue here from RedNukem to not run scripts on deleted sprites.
2020-05-08 22:34:48 +00:00
if( act->spr.scale.X == 0 || !act->insector())
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
auto sectp = act->sector();
2021-12-21 19:02:06 +00:00
switch(act->spr.picnum)
{
case RESPAWNMARKERRED:
case RESPAWNMARKERYELLOW:
case RESPAWNMARKERGREEN:
2020-10-22 20:48:51 +00:00
if (!respawnmarker(act, RESPAWNMARKERYELLOW, RESPAWNMARKERGREEN)) continue;
2020-05-08 22:34:48 +00:00
break;
case RAT:
2020-10-22 20:48:51 +00:00
if (!rat(act, !isRRRA())) continue;
break;
case RRTILE3190:
case RRTILE3191:
case RRTILE3192:
2020-10-22 20:48:51 +00:00
if (!chickenplant)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
if (sectp->lotag == 903)
2020-10-22 20:48:51 +00:00
makeitfall(act);
2022-09-03 16:41:25 +00:00
movesprite_ex(act, DVector3(act->spr.angle.ToVector() * act->vel.X, act->vel.Z), CLIPMASK0, coll);
switch (sectp->lotag)
{
case 901:
2021-12-21 19:02:06 +00:00
act->spr.picnum = RRTILE3191;
break;
case 902:
2021-12-21 19:02:06 +00:00
act->spr.picnum = RRTILE3192;
break;
case 903:
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= sectp->floorz - 8)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
break;
case 904:
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
break;
}
2020-10-22 20:48:51 +00:00
if (coll.type > kHitSector)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
break;
2020-05-08 22:34:48 +00:00
case RRTILE3120:
case RRTILE3122:
case RRTILE3123:
case RRTILE3124:
2020-10-22 20:48:51 +00:00
if (!chickenplant)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
2020-10-22 20:48:51 +00:00
makeitfall(act);
2022-09-03 16:41:25 +00:00
movesprite_ex(act, DVector3(act->spr.angle.ToVector() * act->vel.X, act->vel.Z), CLIPMASK0, coll);
2020-10-22 20:48:51 +00:00
if (coll.type > kHitSector)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
if (sectp->lotag == 903)
{
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= sectp->floorz - 4)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
}
else if (sectp->lotag == 904)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
break;
2020-05-08 22:34:48 +00:00
case RRTILE3132:
2020-10-22 20:48:51 +00:00
if (!chickenplant)
2020-05-08 22:34:48 +00:00
{
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
2020-10-22 20:48:51 +00:00
makeitfall(act);
2022-09-03 16:41:25 +00:00
movesprite_ex(act, DVector3(act->spr.angle.ToVector() * act->vel.X, act->vel.Z), CLIPMASK0, coll);
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= sectp->floorz - 8)
{
if (sectp->lotag == 1)
{
2020-10-22 20:48:51 +00:00
auto j = spawn(act, WATERSPLASH2);
2022-08-20 18:11:01 +00:00
if (j) j->spr.pos.Z = j->sector()->floorz;
}
2020-10-22 20:48:51 +00:00
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
break;
case BOWLINGBALL:
2022-09-03 16:41:25 +00:00
if (act->vel.X != 0)
{
if(!S_CheckSoundPlaying(356))
2020-10-22 20:48:51 +00:00
S_PlayActorSound(356,act);
}
else
{
2020-10-22 20:48:51 +00:00
spawn(act,BOWLINGBALLSPRITE);
deletesprite(act);
2020-05-08 22:34:48 +00:00
continue;
}
if (act->sector()->lotag == 900)
{
S_StopSound(356, nullptr);
}
[[fallthrough]];
case BOWLINGPIN:
case BOWLINGPIN+1:
case HENSTAND:
case HENSTAND+1:
{
2020-10-22 20:48:51 +00:00
int todo = henstand(act);
if (todo == 2) deleteafterexecute = true;
if (todo == 1) continue;
break;
}
2020-05-08 22:34:48 +00:00
case QUEBALL:
case STRIPEBALL:
2020-10-22 20:48:51 +00:00
if (!queball(act, POCKET, QUEBALL, STRIPEBALL)) continue;
break;
case FORCESPHERE:
2020-10-22 20:48:51 +00:00
forcesphere(act, FORCESPHERE);
continue;
case RECON:
case UFO1_RR:
case UFO2:
case UFO3:
case UFO4:
case UFO5:
recon(act, EXPLOSION2, FIRELASER, -1, -1, 457, 1, [](DDukeActor* act) ->int
2020-05-08 22:34:48 +00:00
{
if (isRRRA() && ufospawnsminion)
return MINION;
2021-12-21 19:02:06 +00:00
else if (act->spr.picnum == UFO1_RR)
2020-05-08 22:34:48 +00:00
return HEN;
2021-12-21 19:02:06 +00:00
else if (act->spr.picnum == UFO2)
2020-05-08 22:34:48 +00:00
return COOT;
2021-12-21 19:02:06 +00:00
else if (act->spr.picnum == UFO3)
2020-05-08 22:34:48 +00:00
return COW;
2021-12-21 19:02:06 +00:00
else if (act->spr.picnum == UFO4)
2020-05-08 22:34:48 +00:00
return PIG;
2021-12-21 19:02:06 +00:00
else if (act->spr.picnum == UFO5)
2020-05-08 22:34:48 +00:00
return BILLYRAY;
else return -1;
2020-05-08 22:34:48 +00:00
});
continue;
2020-05-08 22:34:48 +00:00
case OOZ:
2020-10-22 20:48:51 +00:00
ooz(act);
continue;
2020-05-08 22:34:48 +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);
if (sectp->lotag == 1)
{
SetActor(act, DVector3(act->spr.pos.X, act->spr.pos.Y, act->floorz + 16));
}
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);
break;
2020-05-08 22:34:48 +00:00
2022-01-19 09:48:18 +00:00
case POWDERKEG:
if (!isRRRA() || (sectp->lotag != 1 && sectp->lotag != 160))
2022-09-03 16:41:25 +00:00
if (act->vel.X != 0)
2020-05-08 22:34:48 +00:00
{
2022-09-03 16:41:25 +00:00
movesprite_ex(act, DVector3(act->spr.angle.ToVector()* act->vel.X, act->vel.Z), CLIPMASK0, coll);
act->vel.X -= 1. / 16.;
2020-05-08 22:34:48 +00:00
}
break;
2020-05-08 22:34:48 +00:00
case CHEERBOMB:
if (!isRRRA()) break;
[[fallthrough]];
2020-05-08 22:34:48 +00:00
case MORTER:
case DYNAMITE:
2020-10-22 20:48:51 +00:00
heavyhbomb(act);
continue;
case REACTORBURNT:
case REACTOR2BURNT:
continue;
case REACTOR:
case REACTOR2:
2020-10-22 20:48:51 +00:00
reactor(act, REACTOR, REACTOR2, REACTORBURNT, REACTOR2BURNT, REACTORSPARK, REACTOR2SPARK);
continue;
2020-05-08 22:34:48 +00:00
case CAMERA1:
2020-10-22 20:48:51 +00:00
camera(act);
continue;
}
2020-05-08 22:34:48 +00:00
// #ifndef VOLOMEONE
2020-10-22 20:48:51 +00:00
if( ud.multimode < 2 && badguy(act) )
{
if( actor_tog == 1)
{
2021-12-21 19:02:06 +00:00
act->spr.cstat = CSTAT_SPRITE_INVISIBLE;
continue;
}
2021-12-21 19:02:06 +00:00
else if(actor_tog == 2) act->spr.cstat = CSTAT_SPRITE_BLOCK_ALL;
}
2020-05-08 22:34:48 +00:00
// #endif
p = findplayer(act, &xx);
2020-05-08 22:34:48 +00:00
execute(act,p,xx);
2020-10-22 20:48:51 +00:00
if (deleteafterexecute) deletesprite(act);
}
2020-05-08 22:34:48 +00:00
}
2020-05-09 18:27:06 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void moveexplosions_r(void) // STATNUM 5
{
int p;
int * t;
double xx;
2020-05-09 18:27:06 +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
{
2020-10-22 20:51:51 +00:00
t = &act->temp_data[0];
auto sectp = act->sector();
2020-05-09 18:27:06 +00:00
if (!act->insector() || act->spr.scale.X == 0)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
2021-12-21 19:02:06 +00:00
switch (act->spr.picnum)
2020-05-09 18:27:06 +00:00
{
case SHOTGUNSPRITE:
if (act->sector()->lotag == 800)
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= act->sector()->floorz - 8)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
break;
case NEON1:
case NEON2:
case NEON3:
case NEON4:
case NEON5:
case NEON6:
2021-12-21 19:02:06 +00:00
if ((global_random / (act->spr.lotag + 1) & 31) > 4) act->spr.shade = -127;
else act->spr.shade = 127;
2020-05-09 18:27:06 +00:00
continue;
case BLOODSPLAT1:
case BLOODSPLAT2:
case BLOODSPLAT3:
case BLOODSPLAT4:
bloodsplats(act);
2020-05-09 18:27:06 +00:00
continue;
case FORCESPHERE:
2020-10-22 20:51:51 +00:00
forcesphereexplode(act);
2020-05-09 18:27:06 +00:00
continue;
case MUD:
act->temp_data[0]++;
if (act->temp_data[0] == 1)
2020-05-09 18:27:06 +00:00
{
if (sectp->floorpicnum != 3073)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
if (S_CheckSoundPlaying(22))
2020-10-22 20:51:51 +00:00
S_PlayActorSound(22, act);
2020-05-09 18:27:06 +00:00
}
if (act->temp_data[0] == 3)
2020-05-09 18:27:06 +00:00
{
act->temp_data[0] = 0;
act->temp_data[1]++;
2020-05-09 18:27:06 +00:00
}
if (act->temp_data[1] == 5)
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
case WATERSPLASH2:
2020-10-22 20:51:51 +00:00
watersplash2(act);
2020-05-09 18:27:06 +00:00
continue;
case FRAMEEFFECT1:
2020-10-22 20:51:51 +00:00
frameeffect1(act);
2020-05-09 18:27:06 +00:00
continue;
case INNERJAW:
case INNERJAW + 1:
p = findplayer(act, &xx);
if (xx < 32)
2020-05-09 18:27:06 +00:00
{
SetPlayerPal(&ps[p], PalEntry(32, 32, 0, 0));
ps[p].GetActor()->spr.extra -= 4;
2020-05-09 18:27:06 +00:00
}
[[fallthrough]];
2020-05-09 18:27:06 +00:00
case COOLEXPLOSION1:
case FIRELASER:
case OWHIP:
case UWHIP:
2021-12-21 19:02:06 +00:00
if (act->spr.extra != 999)
act->spr.extra = 999;
2020-05-09 18:27:06 +00:00
else
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
break;
case TONGUE:
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
2020-10-22 20:51:51 +00:00
case FEATHER + 1: // feather
act->spr.pos.Z = act->floorz = getflorzofslopeptr(act->sector(), act->spr.pos.X, act->spr.pos.Y);
if (act->sector()->lotag == 800)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
break;
2020-10-22 20:51:51 +00:00
case FEATHER:
if (!money(act, BLOODPOOL)) continue;
2020-05-09 18:27:06 +00:00
if (act->sector()->lotag == 800)
if (act->spr.pos.Z >= act->sector()->floorz - 8)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
break;
case RRTILE2460:
case RRTILE2465:
case BIKEJIBA:
case BIKEJIBB:
case BIKEJIBC:
case BIKERJIBA:
case BIKERJIBB:
case BIKERJIBC:
case BIKERJIBD:
case CHEERJIBA:
case CHEERJIBB:
case CHEERJIBC:
case CHEERJIBD:
case FBOATJIBA:
case FBOATJIBB:
case RABBITJIBA:
case RABBITJIBB:
case RABBITJIBC:
case MAMAJIBA:
case MAMAJIBB:
if (!isRRRA()) break;
[[fallthrough]];
2020-05-09 18:27:06 +00:00
case BILLYJIBA:
case BILLYJIBB:
case HULKJIBA:
case HULKJIBB:
case HULKJIBC:
case MINJIBA:
case MINJIBB:
case MINJIBC:
case COOTJIBA:
case COOTJIBB:
case COOTJIBC:
case JIBS1:
case JIBS2:
case JIBS3:
case JIBS4:
case JIBS5:
case JIBS6:
case DUKETORSO:
case DUKEGUN:
case DUKELEG:
2021-12-21 19:02:06 +00:00
if (!jibs(act, JIBS6, false, true, true, act->spr.picnum == DUKELEG || act->spr.picnum == DUKETORSO || act->spr.picnum == DUKEGUN,
isRRRA() && (act->spr.picnum == RRTILE2465 || act->spr.picnum == RRTILE2560))) continue;
if (act->sector()->lotag == 800)
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= act->sector()->floorz - 8)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
continue;
}
continue;
case BLOODPOOL:
2022-01-26 23:41:33 +00:00
if (!bloodpool(act, false)) continue;
2020-05-09 18:27:06 +00:00
if (act->sector()->lotag == 800)
2022-08-20 18:11:01 +00:00
if (act->spr.pos.Z >= act->sector()->floorz - 8)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
deletesprite(act);
2020-05-09 18:27:06 +00:00
}
continue;
case BURNING:
case WATERBUBBLE:
case SMALLSMOKE:
case EXPLOSION2:
case EXPLOSION3:
case BLOOD:
case FORCERIPPLE:
case TRANSPORTERSTAR:
case TRANSPORTERBEAM:
p = findplayer(act, &xx);
execute(act, p, xx);
2020-05-09 18:27:06 +00:00
continue;
case SHELL:
case SHOTGUNSHELL:
2020-10-22 20:51:51 +00:00
shell(act, false);
2020-05-09 18:27:06 +00:00
continue;
case GLASSPIECES:
case GLASSPIECES + 1:
case GLASSPIECES + 2:
case POPCORN:
2020-10-22 20:51:51 +00:00
glasspieces(act);
2020-05-09 18:27:06 +00:00
continue;
}
2021-12-21 19:02:06 +00:00
if (act->spr.picnum >= SCRAP6 && act->spr.picnum <= SCRAP5 + 3)
2020-05-09 18:27:06 +00:00
{
2020-10-22 20:51:51 +00:00
scrap(act, SCRAP1, SCRAP6);
2020-05-09 18:27:06 +00:00
}
}
}
2020-05-10 07:08:02 +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;
int k = sc->extra;
if (actor->temp_data[4] > 0)
{
actor->temp_data[4]--;
if (actor->temp_data[4] >= (k - (k >> 3)))
actor->vel.X -= (k >> 5) / 16.;
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;
if (actor->temp_data[4] < (k >> 1))
actor->vel.X += (k >> 5) / 16.;
if (actor->temp_data[4] < ((k >> 1) - (k >> 3)))
{
actor->temp_data[4] = 0;
actor->vel.X = k / 16.;
if ((!isRRRA() || lastlevel) && hulkspawn)
{
hulkspawn--;
auto ns = spawn(actor, HULK);
if (ns)
{
ns->spr.pos.Z = ns->sector()->ceilingz;
ns->spr.pal = 33;
}
if (!hulkspawn)
{
2022-10-07 16:51:29 +00:00
ns = CreateActor(actor->sector(), DVector3(actor->spr.pos.XY(), actor->sector()->ceilingz + 466.5), 3677, -8, DVector2(0.25, 0.25), nullAngle, 0., 0., actor, 5);
if (ns)
{
ns->spr.cstat = CSTAT_SPRITE_TRANS_FLIP | CSTAT_SPRITE_TRANSLUCENT;
ns->spr.pal = 7;
ns->spr.scale = DVector2(1.25, 3.984375);
}
ns = spawn(actor, 296);
if (ns)
{
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;
}
deletesprite(actor);
return;
}
}
}
}
else
{
actor->vel.X = k / 16.;
DukeSectIterator it(actor->sector());
while (auto a2 = it.Next())
{
if (a2->spr.picnum == UFOBEAM && ufospawn && ++ufocnt == 64)
{
int pn;
ufocnt = 0;
ufospawn--;
if (!isRRRA())
{
switch (krand() & 3)
{
default:
case 0:
pn = UFO1_RR;
break;
case 1:
pn = UFO2;
break;
case 2:
pn = UFO3;
break;
case 3:
pn = UFO4;
break;
}
}
else pn = UFO1_RRRA;
auto ns = spawn(actor, pn);
if (ns) ns->spr.pos.Z = ns->sector()->ceilingz;
}
}
}
DukeStatIterator it(STAT_EFFECTOR);
while (auto act2 = it.Next())
{
if ((act2->spr.lotag == SE_14_SUBWAY_CAR) && (sh == act2->spr.hitag) && (act2->temp_data[0] == actor->temp_data[0]))
{
act2->vel.X = actor->vel.X;
//if( actor->temp_data[4] == 1 )
{
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);
if (act2->spr.extra) x = -x;
actor->vel.X += x / 16.;
}
act2->temp_data[4] = actor->temp_data[4];
}
}
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();
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;
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;
2020-05-10 07:08:02 +00:00
case SE_6_SUBWAY:
2020-10-22 21:17:51 +00:00
handle_se06_r(act);
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:
2020-10-22 21:17:51 +00:00
handle_se05(act, FIRELASER);
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;
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;
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;
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:
2020-10-22 21:17:51 +00:00
handle_se16(act, REACTOR, REACTOR2);
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;
[[fallthrough]];
2020-05-10 07:08:02 +00:00
case SE_24_CONVEYOR:
2020-11-27 19:06:38 +00:00
case SE_34:
{
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-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
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:
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:
2020-05-10 07:08:02 +00:00
if (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
if (act->temp_data[0])
2020-05-10 07:08:02 +00:00
{
if (act->temp_data[0] == 1)
fi.shoot(act, sc->extra);
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;
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!
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
{
if (act->spr.lotag != SE_29_WAVES) continue;
2021-11-20 23:33:17 +00:00
auto sc = act->sector();
2020-05-10 07:08:02 +00:00
if (sc->wallnum != 4) continue;
2021-11-16 17:07:24 +00:00
auto wal = sc->firstWall() + 2;
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.
//
//---------------------------------------------------------------------------
double adjustfall(DDukeActor *actor, double c)
2020-05-13 22:04:14 +00:00
{
if ((actor->spr.picnum == BIKERB || actor->spr.picnum == CHEERB) && c == gs.gravity)
c = gs.gravity * 0.25;
else if (actor->spr.picnum == BIKERBV2 && c == gs.gravity)
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;
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)
goalang = (ps[pnum].opos.XY() - actor->spr.pos.XY()).Angle();
else goalang = (ps[pnum].pos.XY() - actor->spr.pos.XY()).Angle();
2022-09-15 15:39:01 +00:00
angdif = deltaangle(actor->spr.angle, goalang) * 0.25;
if (angdif > -DAngle22_5 / 8 && angdif < nullAngle) angdif = nullAngle;
actor->spr.angle += angdif;
2020-05-13 22:04:14 +00:00
}
if (a & spin)
2022-09-15 16:12:09 +00:00
actor->spr.angle += 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)
goalang = (ps[pnum].opos.XY() - actor->spr.pos.XY()).Angle();
else goalang = (ps[pnum].pos.XY() - actor->spr.pos.XY()).Angle();
2022-09-15 15:39:01 +00:00
angdif = DAngle22_5 * 0.25 * Sgn(deltaangle(actor->spr.angle, goalang).Degrees()); // this looks very wrong...
actor->spr.angle += 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)
goalang = ((ps[pnum].opos.XY() - actor->spr.pos.XY()).Angle() + DAngle180);
else goalang = ((ps[pnum].pos.XY() - actor->spr.pos.XY()).Angle() + DAngle180);
2022-09-15 15:39:01 +00:00
angdif = DAngle22_5 * 0.25 * Sgn(deltaangle(actor->spr.angle, goalang).Degrees()); // this looks very wrong...
actor->spr.angle += 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
{
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
{
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
{
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
{
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
{
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
{
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)
{
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)
{
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-09-15 15:39:01 +00:00
DVector2 newpos = ps[pnum].pos.XY() + (ps[pnum].vel.XY() * (4. / 3.));
goalang = (newpos - actor->spr.pos.XY()).Angle();
2022-09-15 15:39:01 +00:00
angdif = deltaangle(actor->spr.angle, goalang) * 0.25;
if (angdif > -DAngle22_5 / 16 && angdif < nullAngle) angdif = nullAngle;
actor->spr.angle += angdif;
2020-05-13 22:04:14 +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
{
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
{
if (actor->sector()->ceilingstat & CSTAT_SECTOR_SKY)
2020-05-13 22:04:14 +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
{
actor->spr.shade += (actor->sector()->ceilingshade - actor->spr.shade) >> 1;
2020-05-13 22:04:14 +00:00
}
}
else
{
actor->spr.shade += (actor->sector()->floorshade - actor->spr.shade) >> 1;
2020-05-13 22:04:14 +00:00
}
}
return;
}
auto moveptr = &ScriptCode[actor->temp_data[1]];
2020-05-13 22:04:14 +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
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum != APLAYER)
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
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
{
if (actor->vel.Z > 0)
2020-05-13 22:04:14 +00:00
{
double dist = isRRRA() ? 28 : 30;
double f = getflorzofslopeptr(actor->sector(), actor->spr.pos.X, actor->spr.pos.Y);
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
{
double c = getceilzofslopeptr(actor->sector(), actor->spr.pos.X, actor->spr.pos.Y);
actor->ceilingz = c;
if (actor->spr.pos.Z < c + 50)
2020-05-13 22:04:14 +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
}
}
}
if (actor->vel.Z > 0 && actor->floorz < actor->spr.pos.Z)
actor->spr.pos.Z = actor->floorz;
if (actor->vel.Z < 0)
2020-05-13 22:04:14 +00:00
{
double c = getceilzofslopeptr(actor->sector(), actor->spr.pos.X, actor->spr.pos.Y);
if (actor->spr.pos.Z < c + 66)
2020-05-13 22:04:14 +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
}
}
}
2021-12-21 19:02:06 +00:00
else if (actor->spr.picnum == APLAYER)
if ((actor->spr.pos.Z - actor->ceilingz) < 32)
actor->spr.pos.Z = actor->ceilingz + 32;
2020-05-13 22:04:14 +00:00
2022-09-15 15:39:01 +00:00
daxvel = actor->vel.X;
angdif = actor->spr.angle;
2020-05-13 22:04:14 +00:00
if (a)
{
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;
angdif = (ps[pnum].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
}
}
2021-12-21 19:02:06 +00:00
else if ((isRRRA() && actor->spr.picnum != DRONE && actor->spr.picnum != SHARK && actor->spr.picnum != UFO1_RRRA) ||
(!isRRRA() && actor->spr.picnum != DRONE && actor->spr.picnum != SHARK && actor->spr.picnum != UFO1_RR
&& actor->spr.picnum != UFO2 && actor->spr.picnum != UFO3 && actor->spr.picnum != UFO4 && actor->spr.picnum != UFO5))
2020-05-13 22:04:14 +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))
{
if ((actor->temp_data[0] & 1) || ps[pnum].actorsqu == actor) return;
2022-09-15 15:39:01 +00:00
else daxvel *= 2;
}
else
{
if ((actor->temp_data[0] & 3) || ps[pnum].actorsqu == actor) return;
2022-09-15 15:39:01 +00:00
else daxvel *= 4;
}
2020-05-13 22:04:14 +00:00
}
}
}
if (isRRRA())
{
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;
}
}
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)
{
if (actor->sector()->ceilingstat & CSTAT_SECTOR_SKY)
2020-05-13 22:04:14 +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
{
actor->spr.shade += (actor->sector()->ceilingshade - actor->spr.shade) >> 1;
2020-05-13 22:04:14 +00:00
}
}
else actor->spr.shade += (actor->sector()->floorshade - actor->spr.shade) >> 1;
2020-05-13 22:04:14 +00:00
if (actor->sector()->floorpicnum == MIRROR)
2020-10-22 21:41:07 +00:00
deletesprite(actor);
2020-05-13 22:04:14 +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:
spawn(actor, PIG);
2020-05-14 07:07:07 +00:00
break;
case 2:
spawn(actor, MINION);
2020-05-14 07:07:07 +00:00
break;
case 3:
spawn(actor, CHEER);
2020-05-14 07:07:07 +00:00
break;
case 4:
spawn(actor, VIXEN);
2020-11-02 18:54:20 +00:00
operateactivators(666, g_p);
2020-05-14 07:07:07 +00:00
break;
}
}
//---------------------------------------------------------------------------
//
// 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())
{
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
{
spawn(actor, ROCK2);
spawn(actor, ROCK2);
addspritetodelete();
2020-05-14 07:07:07 +00:00
}
return 0;
}
else if (actor->sector()->lotag == 802)
2020-05-14 07:07:07 +00:00
{
2022-02-03 23:55:12 +00:00
if (actor->spr.picnum != APLAYER && badguy(actor) && actor->spr.pos.Z == actor->floorz - FOURSLEIGHT_F)
2020-05-14 07:07:07 +00:00
{
2020-10-22 17:21:21 +00:00
fi.guts(actor, JIBS6, 5, playernum);
S_PlayActorSound(SQUISHED, actor);
addspritetodelete();
2020-05-14 07:07:07 +00:00
}
return 0;
}
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)
addspritetodelete();
2020-05-14 07:07:07 +00:00
return 0;
}
}
if (actor->sector()->lotag == 800)
2020-05-14 07:07:07 +00:00
{
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum == 40)
2020-05-14 07:07:07 +00:00
{
addspritetodelete();
2020-05-14 07:07:07 +00:00
return 0;
}
2021-12-21 19:02:06 +00:00
if (actor->spr.picnum != APLAYER && (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;
actor->spriteextra++;
2020-05-14 07:07:07 +00:00
sphit = 1;
}
2021-12-21 19:02:06 +00:00
else if (actor->spr.picnum != APLAYER)
2020-05-14 07:07:07 +00:00
{
if (!actor->spriteextra)
addspritetodelete();
2020-05-14 07:07:07 +00:00
return 0;
}
actor->attackertype = SHOTSPARK1;
actor->hitextra = 1;
2020-05-14 07:07:07 +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)
{
actor->attackertype = SHOTSPARK1;
actor->hitextra = 5;
2020-05-14 07:07:07 +00:00
}
}
}
return sphit;
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void fall_r(DDukeActor* ac, int g_p)
2020-05-14 07:07:07 +00:00
{
fall_common(ac, g_p, JIBS6, DRONE, BLOODPOOL, SHOTSPARK1, 69, 158, fallspecial);
2020-05-14 07:07:07 +00:00
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
2020-10-22 21:41:07 +00:00
void destroyit(DDukeActor *actor)
{
int lotag = 0, hitag = 0;
DDukeActor* spr = nullptr;
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())
{
if (a2->spr.picnum == RRTILE63)
{
lotag = a2->spr.lotag;
2020-10-22 21:41:07 +00:00
spr = a2;
if (a2->spr.hitag)
hitag = a2->spr.hitag;
}
}
2020-10-22 21:41:07 +00:00
DukeStatIterator it(STAT_DESTRUCT);
while (auto a2 = it.Next())
{
auto it_sect = a2->sector();
if (hitag && hitag == a2->spr.hitag)
2020-10-22 21:41:07 +00:00
{
DukeSectIterator its(it_sect);
while (auto a3 = its.Next())
{
if (a3->spr.picnum == DESTRUCTO)
{
a3->attackertype = SHOTSPARK1;
a3->hitextra = 1;
}
}
2020-10-22 21:41:07 +00:00
}
if (spr && spr->sector() != it_sect)
if (lotag == a2->spr.lotag)
{
auto sect = spr->sector();
2021-11-20 23:33:17 +00:00
auto destsect = spr->sector();
auto srcsect = it_sect;
2021-11-16 17:07:24 +00:00
auto destwal = destsect->firstWall();
auto srcwal = srcsect->firstWall();
for (int i = 0; i < destsect->wallnum; i++, srcwal++, destwal++)
{
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_;
if (isRRRA() && destwal->twoSided())
{
2021-11-16 17:07:24 +00:00
destwal->cstat = 0;
destwal->nextWall()->cstat = 0;
}
}
2022-08-20 18:11:01 +00:00
destsect->setfloorz(srcsect->floorz);
destsect->setceilingz(srcsect->ceilingz);
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;
destsect->keyinfo = srcsect->keyinfo;
destsect->lotag = srcsect->lotag;
destsect->hitag = srcsect->hitag;
destsect->extra = srcsect->extra;
2022-11-13 17:55:32 +00:00
destsect->dirty = EDirty::AllDirty;
}
}
it1.Reset(actor->sector());
while (auto a2 = it1.Next())
{
switch (a2->spr.picnum)
{
case DESTRUCTO:
case RRTILE63:
case TORNADO:
case APLAYER:
case COOT:
break;
default:
2020-10-22 21:41:07 +00:00
deletesprite(a2);
break;
}
}
}
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void mamaspawn(DDukeActor *actor)
{
if (mamaspawn_count)
{
mamaspawn_count--;
spawn(actor, RABBIT);
}
}
2020-05-14 17:23:36 +00:00
bool spawnweapondebris_r(int picnum, int dnum)
{
return dnum == SCRAP1;
}
void respawnhitag_r(DDukeActor *actor)
2020-05-14 17:23:36 +00:00
{
switch (actor->spr.picnum)
2020-05-14 17:23:36 +00:00
{
case FEM10:
case NAKED1:
case STATUE:
if (actor->spr.yint) fi.operaterespawns(actor->spr.yint);
2020-05-14 17:23:36 +00:00
break;
default:
if (actor->spr.hitag >= 0) fi.operaterespawns(actor->spr.hitag);
2020-05-14 17:23:36 +00:00
break;
}
}
2020-06-23 19:12:15 +00:00
//---------------------------------------------------------------------------
//
//
//
//---------------------------------------------------------------------------
void thunder(void);
void think_r(void)
{
thinktime.Reset();
thinktime.Clock();
recordoldspritepos();
2020-06-23 19:12:15 +00:00
movefta(); //ST 2
2020-06-23 19:12:15 +00:00
moveweapons_r(); //ST 4
movetransports_r(); //ST 9
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();
movefx(); //ST 11
if (numplayers < 2 && thunderon)
thunder();
thinktime.Unclock();
}
2020-05-07 12:55:04 +00:00
END_DUKE_NS