2020-05-08 22:34:48 +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-08 22:34:48 +00:00
|
|
|
|
|
|
|
This file is part of Duke Nukem 3D version 1.5 - Atomic Edition
|
|
|
|
|
|
|
|
Duke Nukem 3D is free software; you can redistribute it and/or
|
|
|
|
modify it under the terms of the GNU General Public License
|
|
|
|
as published by the Free Software Foundation; either version 2
|
|
|
|
of the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
This program is distributed in the hope that it will be useful,
|
|
|
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
|
|
|
See the GNU General Public License for more details.
|
|
|
|
|
|
|
|
You should have received a copy of the GNU General Public License
|
|
|
|
aint with this program; if not, write to the Free Software
|
|
|
|
Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
|
|
|
|
|
|
|
|
Original Source: 1996 - Todd Replogle
|
|
|
|
Prepared for public release: 03/21/2003 - Charlie Wiederhold, 3D Realms
|
|
|
|
*/
|
|
|
|
//-------------------------------------------------------------------------
|
|
|
|
#include "ns.h"
|
|
|
|
#include "global.h"
|
2020-07-03 21:56:14 +00:00
|
|
|
#include "names_r.h"
|
2020-05-08 22:34:48 +00:00
|
|
|
#include "serializer.h"
|
2021-11-18 18:44:26 +00:00
|
|
|
#include "savegamehelp.h"
|
2020-10-22 16:55:45 +00:00
|
|
|
#include "dukeactor.h"
|
2022-01-04 16:10:32 +00:00
|
|
|
#include "interpolate.h"
|
2020-05-08 22:34:48 +00:00
|
|
|
|
|
|
|
BEGIN_DUKE_NS
|
|
|
|
|
|
|
|
static int torchcnt;
|
|
|
|
static int lightnincnt;
|
|
|
|
|
2021-11-18 18:44:26 +00:00
|
|
|
static sectortype* torchsector[64];
|
2020-05-08 22:34:48 +00:00
|
|
|
static short torchsectorshade[64];
|
|
|
|
static short torchtype[64];
|
|
|
|
|
2022-01-28 18:02:36 +00:00
|
|
|
struct jaildoor
|
|
|
|
{
|
|
|
|
sectortype* sect;
|
2022-10-12 17:00:29 +00:00
|
|
|
double dist;
|
|
|
|
double drag;
|
2022-01-28 18:02:36 +00:00
|
|
|
int speed;
|
|
|
|
int16_t direction;
|
|
|
|
int16_t sound;
|
|
|
|
int16_t open;
|
|
|
|
int16_t hitag;
|
|
|
|
};
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2022-01-28 17:47:53 +00:00
|
|
|
struct minecart
|
|
|
|
{
|
|
|
|
sectortype* sect;
|
|
|
|
sectortype* childsect;
|
2022-10-12 17:00:29 +00:00
|
|
|
double dist;
|
|
|
|
double drag;
|
2022-01-28 18:02:36 +00:00
|
|
|
int speed;
|
2022-01-28 17:47:53 +00:00
|
|
|
int16_t direction;
|
|
|
|
int16_t sound;
|
|
|
|
int16_t open;
|
|
|
|
};
|
|
|
|
|
2022-01-28 18:02:36 +00:00
|
|
|
static TArray<jaildoor> jaildoors;
|
2022-01-28 17:47:53 +00:00
|
|
|
static TArray<minecart> minecarts;
|
|
|
|
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2021-11-18 18:44:26 +00:00
|
|
|
static sectortype* lightninsector[64];
|
2020-05-08 22:34:48 +00:00
|
|
|
static short lightninsectorshade[64];
|
|
|
|
|
|
|
|
static uint8_t brightness;
|
|
|
|
|
|
|
|
static int thunderflash;
|
|
|
|
static int thundertime;
|
|
|
|
static int winderflash;
|
|
|
|
static int windertime;
|
|
|
|
|
|
|
|
|
|
|
|
void lava_cleararrays()
|
|
|
|
{
|
2022-05-21 11:57:47 +00:00
|
|
|
jaildoors.Clear();
|
2022-01-28 17:47:53 +00:00
|
|
|
minecarts.Clear();
|
2020-05-12 11:43:24 +00:00
|
|
|
torchcnt = 0;
|
|
|
|
lightnincnt = 0;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
2022-01-28 18:02:36 +00:00
|
|
|
FSerializer& Serialize(FSerializer& arc, const char* key, jaildoor& c, jaildoor* def)
|
|
|
|
{
|
|
|
|
if (arc.BeginObject(key))
|
|
|
|
{
|
|
|
|
arc("sect", c.sect)
|
|
|
|
("hitag", c.hitag)
|
|
|
|
("speed", c.speed)
|
|
|
|
("dist", c.dist)
|
|
|
|
("drag", c.drag)
|
|
|
|
("dir", c.direction)
|
|
|
|
("sound", c.sound)
|
|
|
|
("open", c.open)
|
|
|
|
.EndObject();
|
|
|
|
}
|
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
2022-01-28 17:47:53 +00:00
|
|
|
FSerializer& Serialize(FSerializer& arc, const char* key, minecart& c, minecart* def)
|
|
|
|
{
|
|
|
|
if (arc.BeginObject(key))
|
|
|
|
{
|
|
|
|
arc("sect", c.sect)
|
|
|
|
("childsect", c.childsect)
|
|
|
|
("speed", c.speed)
|
|
|
|
("dist", c.dist)
|
|
|
|
("drag", c.drag)
|
|
|
|
("dir", c.direction)
|
|
|
|
("sound", c.sound)
|
|
|
|
("open", c.open)
|
|
|
|
.EndObject();
|
|
|
|
}
|
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
2020-05-08 22:34:48 +00:00
|
|
|
void lava_serialize(FSerializer& arc)
|
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
arc("torchcnt", torchcnt)
|
2022-01-28 18:02:36 +00:00
|
|
|
("jaildoors", jaildoors)
|
|
|
|
("minecarts", minecarts)
|
2020-05-12 11:43:24 +00:00
|
|
|
("lightnincnt", lightnincnt);
|
|
|
|
|
|
|
|
if (torchcnt)
|
|
|
|
arc.Array("torchsector", torchsector, torchcnt)
|
|
|
|
.Array("torchsectorshade", torchsectorshade, torchcnt)
|
|
|
|
.Array("torchtype", torchtype, torchcnt);
|
|
|
|
|
|
|
|
if (lightnincnt)
|
|
|
|
arc.Array("lightninsector", lightninsector, lightnincnt)
|
|
|
|
.Array("lightninsectorshade", lightninsectorshade, lightnincnt);
|
|
|
|
|
|
|
|
arc("brightness", brightness)
|
|
|
|
("thunderflash", thunderflash)
|
|
|
|
("thundertime", thundertime)
|
|
|
|
("winderflash", winderflash)
|
|
|
|
("windertime", windertime);
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
2021-12-21 20:14:27 +00:00
|
|
|
void addtorch(DDukeActor* actor)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
if (torchcnt >= 64)
|
|
|
|
I_Error("Too many torch effects");
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
torchsector[torchcnt] = actor->sector();
|
|
|
|
torchsectorshade[torchcnt] = actor->sector()->floorshade;
|
2021-12-21 20:14:27 +00:00
|
|
|
torchtype[torchcnt] = actor->spr.lotag;
|
2020-05-12 11:43:24 +00:00
|
|
|
torchcnt++;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
2021-12-21 20:14:27 +00:00
|
|
|
void addlightning(DDukeActor* actor)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
if (lightnincnt >= 64)
|
|
|
|
I_Error("Too many lightnin effects");
|
2020-05-08 22:34:48 +00:00
|
|
|
|
2021-12-30 15:51:56 +00:00
|
|
|
lightninsector[lightnincnt] = actor->sector();
|
|
|
|
lightninsectorshade[lightnincnt] = actor->sector()->floorshade;
|
2020-05-12 11:43:24 +00:00
|
|
|
lightnincnt++;
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 18:44:26 +00:00
|
|
|
void addjaildoor(int p1, int p2, int iht, int jlt, int p3, sectortype* j)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2020-10-18 10:10:46 +00:00
|
|
|
if (jlt != 10 && jlt != 20 && jlt != 30 && jlt != 40)
|
|
|
|
{
|
2020-10-22 16:55:45 +00:00
|
|
|
Printf(PRINT_HIGH, "Bad direction %d for jail door with tag %d\n", jlt, iht);
|
2020-10-18 10:10:46 +00:00
|
|
|
return; // wouldn't work so let's skip it.
|
|
|
|
}
|
|
|
|
|
2022-01-28 18:02:36 +00:00
|
|
|
jaildoors.Reserve(1);
|
|
|
|
auto& jd = jaildoors.Last();
|
|
|
|
|
|
|
|
jd.dist = p1;
|
|
|
|
jd.speed = p2;
|
|
|
|
jd.hitag = iht;
|
|
|
|
jd.sect = j;
|
|
|
|
jd.drag = 0;
|
|
|
|
jd.open = 0;
|
|
|
|
jd.direction = jlt;
|
|
|
|
jd.sound = p3;
|
2022-01-04 16:10:32 +00:00
|
|
|
setsectinterpolate(j);
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
2021-11-18 18:44:26 +00:00
|
|
|
void addminecart(int p1, int p2, sectortype* i, int iht, int p3, sectortype* childsectnum)
|
2020-05-08 22:34:48 +00:00
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
minecarts.Reserve(1);
|
|
|
|
auto& mc = minecarts.Last();
|
|
|
|
mc.dist = p1;
|
2022-01-28 18:02:36 +00:00
|
|
|
mc.speed = p2;
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.sect = i;
|
|
|
|
mc.direction = i->hitag;
|
|
|
|
mc.drag = p1;
|
|
|
|
mc.open = 1;
|
|
|
|
mc.sound = p3;
|
|
|
|
mc.childsect = childsectnum;
|
2022-01-04 16:10:32 +00:00
|
|
|
setsectinterpolate(i);
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void dotorch(void)
|
|
|
|
{
|
2020-05-12 11:43:24 +00:00
|
|
|
int ds;
|
2021-11-07 15:58:48 +00:00
|
|
|
uint8_t shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
ds = krand()&8;
|
|
|
|
for (int i = 0; i < torchcnt; i++)
|
|
|
|
{
|
2021-11-18 18:44:26 +00:00
|
|
|
auto sect = torchsector[i];
|
2020-05-12 11:43:24 +00:00
|
|
|
shade = torchsectorshade[i] - ds;
|
|
|
|
switch (torchtype[i])
|
|
|
|
{
|
|
|
|
case 0:
|
2021-11-06 12:01:03 +00:00
|
|
|
sect->floorshade = shade;
|
|
|
|
sect->ceilingshade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2021-11-06 12:01:03 +00:00
|
|
|
sect->ceilingshade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2021-11-06 12:01:03 +00:00
|
|
|
sect->floorshade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 4:
|
2021-11-06 12:01:03 +00:00
|
|
|
sect->ceilingshade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 5:
|
2021-11-06 12:01:03 +00:00
|
|
|
sect->floorshade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2021-11-17 21:46:17 +00:00
|
|
|
for (auto& wal : wallsofsector(sect))
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2021-11-17 21:46:17 +00:00
|
|
|
if (wal.lotag != 1)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
switch (torchtype[i])
|
|
|
|
{
|
|
|
|
case 0:
|
2021-11-17 21:46:17 +00:00
|
|
|
wal.shade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 1:
|
2021-11-17 21:46:17 +00:00
|
|
|
wal.shade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 2:
|
2021-11-17 21:46:17 +00:00
|
|
|
wal.shade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 3:
|
2021-11-17 21:46:17 +00:00
|
|
|
wal.shade = shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void dojaildoor(void)
|
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
for(auto& jd : jaildoors)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
auto sectp = jd.sect;
|
2022-05-21 11:57:47 +00:00
|
|
|
if (!sectp) continue; // this is only for allowing old, broken savegames to work, this would crash otherwise.
|
2022-01-28 18:02:36 +00:00
|
|
|
double speed = max(2, jd.speed) * maptoworld;
|
|
|
|
|
|
|
|
if (jd.open == 1 || jd.open == 3)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.drag -= speed;
|
|
|
|
if (jd.drag <= 0)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.drag = 0;
|
|
|
|
jd.open ^= 3;
|
|
|
|
switch (jd.direction)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
case 10:
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.direction = 30;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 20:
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.direction = 40;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 30:
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.direction = 10;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 40:
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.direction = 20;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-17 21:46:17 +00:00
|
|
|
for (auto& wal : wallsofsector(sectp))
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
DVector2 vec = wal.pos;
|
|
|
|
switch (jd.direction)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
case 10:
|
2022-01-28 18:02:36 +00:00
|
|
|
vec.Y += speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 20:
|
2022-01-28 18:02:36 +00:00
|
|
|
vec.X -= speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 30:
|
2022-01-28 18:02:36 +00:00
|
|
|
vec.Y -= speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 40:
|
2022-01-28 18:02:36 +00:00
|
|
|
vec.X += speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-01-28 18:02:36 +00:00
|
|
|
dragpoint(&wal, vec);
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-28 18:02:36 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
void operatejaildoors(int hitag)
|
|
|
|
{
|
|
|
|
for (auto& jd : jaildoors)
|
|
|
|
{
|
|
|
|
if (jd.hitag == hitag)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
if (jd.open == 0)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.open = 1;
|
|
|
|
jd.drag = jd.dist;
|
|
|
|
if (!isRRRA() || jd.sound != 0)
|
|
|
|
S_PlayActorSound(jd.sound, ps[screenpeek].GetActor());
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
2022-01-28 18:02:36 +00:00
|
|
|
if (jd.open == 2)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
jd.open = 3;
|
|
|
|
jd.drag = jd.dist;
|
|
|
|
if (!isRRRA() || jd.sound != 0)
|
|
|
|
S_PlayActorSound(jd.sound, ps[screenpeek].GetActor());
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//
|
|
|
|
//---------------------------------------------------------------------------
|
|
|
|
|
|
|
|
void moveminecart(void)
|
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
for(auto& mc : minecarts)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
auto sectp = mc.sect;
|
2022-01-28 18:02:36 +00:00
|
|
|
double speed = max(2, mc.speed) * maptoworld;
|
2020-05-12 11:43:24 +00:00
|
|
|
|
2022-01-28 17:47:53 +00:00
|
|
|
if (mc.open == 1 || mc.open == 2)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.drag -= speed;
|
|
|
|
if (mc.drag <= 0)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.drag = mc.dist;
|
|
|
|
mc.open ^= 3;
|
|
|
|
switch (mc.direction)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
case 10:
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.direction = 30;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 20:
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.direction = 40;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 30:
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.direction = 10;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 40:
|
2022-01-28 17:47:53 +00:00
|
|
|
mc.direction = 20;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
2021-11-17 21:46:17 +00:00
|
|
|
for (auto& wal : wallsofsector(sectp))
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
auto pos = wal.pos;
|
|
|
|
switch (mc.direction)
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2021-11-14 14:03:50 +00:00
|
|
|
default: // make case of bad parameters well defined.
|
|
|
|
break;
|
2020-05-12 11:43:24 +00:00
|
|
|
case 10:
|
2022-01-28 17:47:53 +00:00
|
|
|
pos.Y += speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 20:
|
2022-01-28 17:47:53 +00:00
|
|
|
pos.X -= speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 30:
|
2022-01-28 17:47:53 +00:00
|
|
|
pos.Y -= speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
case 40:
|
2022-01-28 17:47:53 +00:00
|
|
|
pos.X += speed;
|
2020-05-12 11:43:24 +00:00
|
|
|
break;
|
|
|
|
}
|
2022-01-28 17:47:53 +00:00
|
|
|
dragpoint(&wal, pos);
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
2022-01-28 17:47:53 +00:00
|
|
|
|
|
|
|
auto csect = mc.childsect;
|
|
|
|
double max_x = INT32_MIN, max_y = INT32_MIN, min_x = INT32_MAX, min_y = INT32_MAX;
|
2021-11-17 21:46:17 +00:00
|
|
|
for (auto& wal : wallsofsector(csect))
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-28 17:47:53 +00:00
|
|
|
double x = wal.pos.X;
|
|
|
|
double y = wal.pos.Y;
|
2020-05-12 11:43:24 +00:00
|
|
|
if (x > max_x)
|
|
|
|
max_x = x;
|
|
|
|
if (y > max_y)
|
|
|
|
max_y = y;
|
|
|
|
if (x < min_x)
|
|
|
|
min_x = x;
|
|
|
|
if (y < min_y)
|
|
|
|
min_y = y;
|
|
|
|
}
|
2022-01-28 17:47:53 +00:00
|
|
|
double cx = (max_x + min_x) * 0.5;
|
|
|
|
double cy = (max_y + min_y) * 0.5;
|
2020-10-22 16:55:45 +00:00
|
|
|
DukeSectIterator it(csect);
|
|
|
|
while (auto a2 = it.Next())
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2021-12-21 19:04:37 +00:00
|
|
|
if (badguy(a2))
|
2022-02-05 09:16:50 +00:00
|
|
|
SetActor(a2, DVector3(cx, cy, a2->spr.pos.Z));
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
void thunder(void)
|
|
|
|
{
|
2022-02-07 10:04:19 +00:00
|
|
|
player_struct* p;
|
2020-05-12 11:43:24 +00:00
|
|
|
int r1, r2;
|
2021-11-17 21:23:54 +00:00
|
|
|
int i = 0;
|
2021-05-12 15:33:33 +00:00
|
|
|
uint8_t shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
|
|
|
|
p = &ps[screenpeek];
|
|
|
|
|
|
|
|
if (!thunderflash)
|
|
|
|
{
|
2022-01-28 18:02:36 +00:00
|
|
|
if (testgotpic(RRTHUNDERSKY, true))
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
2022-01-08 11:23:05 +00:00
|
|
|
g_relvisibility = 0;
|
2020-05-12 11:43:24 +00:00
|
|
|
if (krand() > 65000)
|
|
|
|
{
|
|
|
|
thunderflash = 1;
|
|
|
|
thundertime = 256;
|
2020-07-25 07:32:54 +00:00
|
|
|
S_PlaySound(351 + (rand() % 3));
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
brightness = ud.brightness >> 2;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
thundertime -= 4;
|
|
|
|
if (thundertime < 0)
|
|
|
|
{
|
|
|
|
thunderflash = 0;
|
|
|
|
brightness = ud.brightness >> 2;
|
2020-07-20 21:07:44 +00:00
|
|
|
thunder_brightness = brightness;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
if (!winderflash)
|
|
|
|
{
|
2021-05-09 07:05:42 +00:00
|
|
|
if (testgotpic(RRTILE2562, true))
|
2020-05-12 11:43:24 +00:00
|
|
|
{
|
|
|
|
if (krand() > 65000)
|
|
|
|
{
|
|
|
|
winderflash = 1;
|
|
|
|
windertime = 128;
|
2020-07-25 07:32:54 +00:00
|
|
|
S_PlaySound(351 + (rand() % 3));
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
windertime -= 4;
|
|
|
|
if (windertime < 0)
|
|
|
|
{
|
|
|
|
winderflash = 0;
|
|
|
|
for (i = 0; i < lightnincnt; i++)
|
|
|
|
{
|
2021-11-18 18:44:26 +00:00
|
|
|
auto sectp = lightninsector[i];
|
2021-11-06 22:49:12 +00:00
|
|
|
sectp->floorshade = (int8_t)lightninsectorshade[i];
|
|
|
|
sectp->ceilingshade = (int8_t)lightninsectorshade[i];
|
2021-11-17 21:46:17 +00:00
|
|
|
for (auto& wal : wallsofsector(sectp))
|
|
|
|
wal.shade = (int8_t)lightninsectorshade[i];
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
if (thunderflash == 1)
|
|
|
|
{
|
|
|
|
r1 = krand() & 4;
|
|
|
|
brightness += r1;
|
|
|
|
if (brightness > 8)
|
|
|
|
brightness = 0;
|
2020-07-20 21:07:44 +00:00
|
|
|
thunder_brightness = brightness;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
if (winderflash == 1)
|
|
|
|
{
|
|
|
|
r2 = krand() & 8;
|
|
|
|
shade = torchsectorshade[i] + r2;
|
|
|
|
for (i = 0; i < lightnincnt; i++)
|
|
|
|
{
|
2021-11-18 18:44:26 +00:00
|
|
|
auto sectp = lightninsector[i];
|
2021-11-06 22:49:12 +00:00
|
|
|
sectp->floorshade = lightninsectorshade[i] - shade;
|
|
|
|
sectp->ceilingshade = lightninsectorshade[i] - shade;
|
2021-11-17 21:46:17 +00:00
|
|
|
for (auto& wal : wallsofsector(sectp))
|
|
|
|
wal.shade = lightninsectorshade[i] - shade;
|
2020-05-12 11:43:24 +00:00
|
|
|
}
|
|
|
|
}
|
2020-05-08 22:34:48 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
END_DUKE_NS
|