2021-11-25 20:42:49 +00:00
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2021-11-25 21:33:55 +00:00
|
|
|
#include "build.h"
|
|
|
|
#include "iterators.h"
|
2021-11-25 20:42:49 +00:00
|
|
|
|
|
|
|
class DCoreActor
|
|
|
|
{
|
|
|
|
// common part of the game actors
|
|
|
|
protected:
|
|
|
|
int index;
|
|
|
|
|
|
|
|
public:
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
spritetype& s() const
|
2021-11-25 20:42:49 +00:00
|
|
|
{
|
|
|
|
return sprite[index];
|
|
|
|
}
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
int GetIndex() const
|
2021-11-25 20:42:49 +00:00
|
|
|
{
|
|
|
|
// For error printing only! This is only identical with the sprite index for items spawned at map start.
|
|
|
|
return s().time;
|
|
|
|
}
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
int GetSpriteIndex() const
|
2021-11-25 20:42:49 +00:00
|
|
|
{
|
|
|
|
// this is only here to mark places that need changing later! It will be removed once the sprite array goes.
|
|
|
|
return index;
|
|
|
|
}
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
sectortype* sector() const
|
2021-11-25 20:42:49 +00:00
|
|
|
{
|
|
|
|
return s().sector();
|
|
|
|
}
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
bool insector() const
|
|
|
|
{
|
|
|
|
return s().insector();
|
|
|
|
}
|
2021-11-25 20:42:49 +00:00
|
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
// holds pointers to the game-side actors.
|
|
|
|
inline DCoreActor* actorArray[16384];
|
|
|
|
extern TArray<sectortype> sector;
|
|
|
|
extern TArray<walltype> wall;
|
|
|
|
|
|
|
|
|
|
|
|
// Masking these into the object index to keep it in 16 bit was probably the single most dumbest and pointless thing Build ever did.
|
|
|
|
// Gonna be fun to globally replace these to finally lift the limit this imposes on map size.
|
|
|
|
// Names taken from DukeGDX
|
|
|
|
enum EHitBits
|
|
|
|
{
|
|
|
|
kHitNone = 0,
|
|
|
|
kHitTypeMask = 0xC000,
|
|
|
|
kHitTypeMaskSW = 0x1C000, // SW has one more relevant bit
|
|
|
|
kHitIndexMask = 0x3FFF,
|
|
|
|
kHitSector = 0x4000,
|
|
|
|
kHitWall = 0x8000,
|
|
|
|
kHitSprite = 0xC000,
|
|
|
|
kHitVoid = 0x10000, // SW only
|
|
|
|
|
|
|
|
|
|
|
|
};
|
|
|
|
|
2021-11-25 22:28:28 +00:00
|
|
|
inline FSerializer& Serialize(FSerializer& arc, const char* keyname, DCoreActor*& w, DCoreActor** def)
|
|
|
|
{
|
|
|
|
int index = w ? w->GetSpriteIndex() : -1;
|
|
|
|
Serialize(arc, keyname, index, nullptr);
|
|
|
|
if (arc.isReading()) w = index == -1 ? nullptr : actorArray[index];
|
|
|
|
return arc;
|
|
|
|
}
|
|
|
|
|
2021-11-25 20:42:49 +00:00
|
|
|
// This serves as input/output for all functions dealing with collisions, hits, etc.
|
|
|
|
// Not all utilities use all variables.
|
|
|
|
struct HitInfoBase
|
|
|
|
{
|
|
|
|
vec3_t hitpos;
|
|
|
|
sectortype* hitSector;
|
|
|
|
walltype* hitWall;
|
2021-11-25 21:33:55 +00:00
|
|
|
DCoreActor* hitActor;
|
2021-11-25 20:42:49 +00:00
|
|
|
|
2021-11-26 12:41:15 +00:00
|
|
|
void clearObj()
|
|
|
|
{
|
|
|
|
hitSector = nullptr;
|
|
|
|
hitWall = nullptr;
|
|
|
|
hitActor = nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class T>
|
|
|
|
struct THitInfo : public HitInfoBase
|
|
|
|
{
|
|
|
|
T* actor() const { return static_cast<T*>(hitActor); }
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
struct CollisionBase
|
|
|
|
{
|
|
|
|
int type;
|
|
|
|
union
|
|
|
|
{
|
|
|
|
// can only have one at a time
|
|
|
|
sectortype* hitSector;
|
|
|
|
walltype* hitWall;
|
|
|
|
DCoreActor* hitActor;
|
|
|
|
};
|
2021-11-25 20:42:49 +00:00
|
|
|
|
|
|
|
void invalidate()
|
|
|
|
{
|
|
|
|
type = -1; // something invalid that's not a valid hit type.
|
2021-11-26 12:41:15 +00:00
|
|
|
hitSector = nullptr;
|
2021-11-25 20:42:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
int setNone()
|
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
return kHitNone;
|
|
|
|
}
|
|
|
|
|
|
|
|
int setSector(int num)
|
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
type = kHitSector;
|
|
|
|
hitSector = §or[num];
|
|
|
|
return kHitSector;
|
|
|
|
}
|
|
|
|
|
2021-11-26 00:01:16 +00:00
|
|
|
int setSector(sectortype* num)
|
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
type = kHitSector;
|
|
|
|
hitSector = num;
|
|
|
|
return kHitSector;
|
|
|
|
}
|
|
|
|
|
2021-11-25 20:42:49 +00:00
|
|
|
int setWall(int num)
|
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
type = kHitWall;
|
|
|
|
hitWall = &wall[num];
|
|
|
|
return kHitWall;
|
|
|
|
}
|
|
|
|
|
2021-11-26 00:01:16 +00:00
|
|
|
int setWall(walltype* num)
|
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
type = kHitWall;
|
|
|
|
hitWall = num;
|
|
|
|
return kHitWall;
|
|
|
|
}
|
|
|
|
|
2021-11-25 20:42:49 +00:00
|
|
|
int setSprite(int num)
|
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
type = kHitSprite;
|
2021-11-25 21:33:55 +00:00
|
|
|
hitActor = actorArray[num];
|
2021-11-25 20:42:49 +00:00
|
|
|
return kHitSprite;
|
|
|
|
}
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
int setSprite(DCoreActor* num)
|
2021-11-25 20:42:49 +00:00
|
|
|
{
|
|
|
|
*this = {};
|
|
|
|
type = kHitSprite;
|
|
|
|
hitActor = num;
|
|
|
|
return kHitSprite;
|
|
|
|
}
|
|
|
|
|
2021-11-26 12:41:15 +00:00
|
|
|
int setVoid()
|
|
|
|
{
|
|
|
|
hitSector = nullptr;
|
2021-11-25 20:42:49 +00:00
|
|
|
type = kHitVoid;
|
2021-11-26 12:41:15 +00:00
|
|
|
return kHitVoid;
|
2021-11-25 20:42:49 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
// this hack job needs to go. We still need it for the time being.
|
|
|
|
int setFromEngine(int value)
|
|
|
|
{
|
2021-11-26 12:41:15 +00:00
|
|
|
int type = value & kHitTypeMaskSW;
|
2021-11-25 20:42:49 +00:00
|
|
|
if (type == kHitSector) setSector(value & kHitIndexMask);
|
|
|
|
else if (type == kHitWall) setWall(value & kHitIndexMask);
|
|
|
|
else if (type == kHitSprite) setSprite(value & kHitIndexMask);
|
|
|
|
else setNone();
|
|
|
|
return type;
|
|
|
|
}
|
|
|
|
};
|
2021-11-25 21:33:55 +00:00
|
|
|
|
2021-11-26 12:00:33 +00:00
|
|
|
template<class T>
|
2021-11-26 12:41:15 +00:00
|
|
|
struct TCollision : public CollisionBase
|
2021-11-26 12:00:33 +00:00
|
|
|
{
|
2021-11-26 12:41:15 +00:00
|
|
|
T* actor() const { return static_cast<T*>(hitActor); }
|
2021-11-26 12:00:33 +00:00
|
|
|
};
|
2021-11-25 21:33:55 +00:00
|
|
|
|
2021-11-26 12:41:15 +00:00
|
|
|
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
// Iterator wrappers that return an actor pointer, not an index.
|
|
|
|
template<class TActor>
|
|
|
|
class TStatIterator : public StatIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TStatIterator(int stat) : StatIterator(stat)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TActor* Next()
|
|
|
|
{
|
|
|
|
int n = NextIndex();
|
|
|
|
return n >= 0 ? static_cast<TActor*>(actorArray[n]) : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TActor* Peek()
|
|
|
|
{
|
|
|
|
int n = PeekIndex();
|
|
|
|
return n >= 0 ? static_cast<TActor*>(actorArray[n]) : nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
template<class TActor>
|
|
|
|
class TSectIterator : public SectIterator
|
|
|
|
{
|
|
|
|
public:
|
|
|
|
TSectIterator(int stat) : SectIterator(stat)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TSectIterator(sectortype* stat) : SectIterator(stat)
|
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
TActor* Next()
|
|
|
|
{
|
|
|
|
int n = NextIndex();
|
|
|
|
return n >= 0 ? static_cast<TActor*>(actorArray[n]) : nullptr;
|
|
|
|
}
|
|
|
|
|
|
|
|
TActor* Peek()
|
|
|
|
{
|
|
|
|
int n = PeekIndex();
|
|
|
|
return n >= 0 ? static_cast<TActor*>(actorArray[n]) : nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// An iterator to iterate over all sprites.
|
|
|
|
template<class TActor>
|
|
|
|
class TSpriteIterator
|
|
|
|
{
|
|
|
|
TStatIterator<TActor> it;
|
|
|
|
int stat = 0;
|
|
|
|
|
|
|
|
public:
|
|
|
|
TSpriteIterator() : it(0) {}
|
|
|
|
|
|
|
|
TActor* Next()
|
|
|
|
{
|
|
|
|
while (stat < MAXSTATUS)
|
|
|
|
{
|
|
|
|
auto ac = it.Next();
|
|
|
|
if (ac) return ac;
|
|
|
|
stat++;
|
|
|
|
if (stat < MAXSTATUS) it.Reset(stat);
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
// For iterating linearly over map spawned sprites. Will later only be valid on map load
|
|
|
|
template<class TActor>
|
|
|
|
class TLinearSpriteIterator
|
|
|
|
{
|
|
|
|
int index = 0;
|
|
|
|
public:
|
|
|
|
|
|
|
|
void Reset()
|
|
|
|
{
|
|
|
|
index = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
TActor* Next()
|
|
|
|
{
|
|
|
|
while (index < MAXSPRITES)
|
|
|
|
{
|
|
|
|
auto p = static_cast<TActor*>(actorArray[index++]);
|
|
|
|
if (p->s().statnum != MAXSTATUS) return p;
|
|
|
|
}
|
|
|
|
return nullptr;
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
[[deprecated]]
|
|
|
|
inline int hitscan(const vec3_t* sv, int sectnum, int vx, int vy, int vz, hitdata_t* hitinfo, unsigned cliptype)
|
|
|
|
{
|
|
|
|
return hitscan_(sv, sectnum, vx, vy, vz, hitinfo, cliptype);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[deprecated]]
|
|
|
|
inline int hitscan(int x, int y, int z, int sectnum, int vx, int vy, int vz,
|
|
|
|
short* hitsect, short* hitwall, short* hitspr, int* hitx, int* hity, int* hitz, uint32_t cliptype)
|
|
|
|
{
|
|
|
|
vec3_t v{ x,y,z };
|
|
|
|
hitdata_t hd{};
|
|
|
|
int res = hitscan_(&v, sectnum, vx, vy, vz, &hd, cliptype);
|
|
|
|
if (hitsect) *hitsect = hd.sect;
|
|
|
|
if (hitwall) *hitwall = hd.wall;
|
|
|
|
if (hitspr) *hitspr = hd.sprite;
|
|
|
|
*hitx = hd.pos.x;
|
|
|
|
*hity = hd.pos.y;
|
|
|
|
*hitz = hd.pos.z;
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
2021-11-26 12:41:15 +00:00
|
|
|
[[deprecated]]
|
|
|
|
inline int clipmove(vec3_t* const pos, int* const sectnum, int xvect, int yvect,
|
|
|
|
int const walldist, int const ceildist, int const flordist, uint32_t const cliptype, int clipmoveboxtracenum = 3)
|
|
|
|
{
|
|
|
|
return clipmove_(pos, sectnum, xvect, yvect, walldist, ceildist, flordist, cliptype, clipmoveboxtracenum);
|
|
|
|
}
|
|
|
|
|
|
|
|
[[deprecated]]
|
|
|
|
inline int32_t clipmove(vec3_t* const pos, sectortype** const sect, int32_t xvect, int32_t yvect,
|
|
|
|
int32_t const walldist, int32_t const ceildist, int32_t const flordist, uint32_t const cliptype, int clipmoveboxtracenum = 3)
|
|
|
|
{
|
|
|
|
int sectno = *sect ? sector.IndexOf(*sect) : -1;
|
|
|
|
int res = clipmove_(pos, §no, xvect, yvect, walldist, ceildist, flordist, cliptype, clipmoveboxtracenum);
|
|
|
|
*sect = sectno == -1 ? nullptr : §or[sectno];
|
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
2021-11-25 21:33:55 +00:00
|
|
|
inline int hitscan(const vec3_t& start, const sectortype* startsect, const vec3_t& direction, HitInfoBase& hitinfo, unsigned cliptype)
|
|
|
|
{
|
|
|
|
hitdata_t hd{};
|
2021-11-25 22:28:28 +00:00
|
|
|
hd.pos.z = hitinfo.hitpos.z; // this can pass through unaltered.
|
2021-11-25 21:33:55 +00:00
|
|
|
int res = hitscan_(&start, sector.IndexOf(startsect), direction.x, direction.y, direction.z, &hd, cliptype);
|
|
|
|
hitinfo.hitpos = hd.pos;
|
|
|
|
hitinfo.hitSector = hd.sect == -1? nullptr : §or[hd.sect];
|
|
|
|
hitinfo.hitWall = hd.wall == -1? nullptr : &wall[hd.wall];
|
|
|
|
hitinfo.hitActor = hd.sprite == -1? nullptr : actorArray[hd.sprite];
|
|
|
|
return res;
|
|
|
|
}
|
2021-11-26 12:41:15 +00:00
|
|
|
|
|
|
|
inline int clipmove(vec3_t& pos, sectortype** const sect, int xvect, int yvect,
|
|
|
|
int const walldist, int const ceildist, int const flordist, unsigned const cliptype, CollisionBase& result, int clipmoveboxtracenum = 3)
|
|
|
|
{
|
|
|
|
int sectno = *sect ? sector.IndexOf(*sect) : -1;
|
|
|
|
int res = clipmove_(&pos, §no, xvect, yvect, walldist, ceildist, flordist, cliptype, clipmoveboxtracenum);
|
|
|
|
*sect = sectno == -1 ? nullptr : §or[sectno];
|
|
|
|
return result.setFromEngine(res);
|
|
|
|
}
|