re3/src/core/Collision.h

174 lines
5.8 KiB
C
Raw Normal View History

2019-05-15 16:52:37 +02:00
#pragma once
#include "templates.h"
#include "Game.h" // for eLevelName
2020-04-15 18:19:45 +02:00
// If you spawn many tanks at once, you will see that collisions of two entity exceeds 32.
#ifdef FIX_BUGS
#define MAX_COLLISION_POINTS 64
#else
#define MAX_COLLISION_POINTS 32
#endif
2020-05-06 17:56:38 +02:00
struct CSphere
2019-05-15 16:52:37 +02:00
{
CVector center;
float radius;
2020-05-06 17:56:38 +02:00
void Set(float radius, const CVector &center) { this->center = center; this->radius = radius; }
};
struct CBox
{
CVector min;
CVector max;
CVector GetSize(void) { return max - min; }
void Set(const CVector &min, const CVector &max) { this->min = min; this->max = max; }
};
struct CColSphere : public CSphere
{
2019-05-15 16:52:37 +02:00
uint8 surface;
uint8 piece;
void Set(float radius, const CVector &center, uint8 surf, uint8 piece);
2020-06-13 22:39:14 +02:00
bool IntersectRay(CVector const &from, CVector const &dir, CVector &entry, CVector &exit);
2020-05-06 17:56:38 +02:00
using CSphere::Set;
2019-05-15 16:52:37 +02:00
};
2020-05-06 17:56:38 +02:00
struct CColBox : public CBox
2019-05-15 16:52:37 +02:00
{
uint8 surface;
uint8 piece;
void Set(const CVector &min, const CVector &max, uint8 surf, uint8 piece);
2020-05-06 17:56:38 +02:00
using CBox::Set;
2019-05-15 16:52:37 +02:00
};
struct CColLine
{
CVector p0;
int pad0;
CVector p1;
int pad1;
CColLine(void) { };
CColLine(const CVector &p0, const CVector &p1) { this->p0 = p0; this->p1 = p1; };
void Set(const CVector &p0, const CVector &p1);
};
struct CColTriangle
{
uint16 a;
uint16 b;
uint16 c;
uint8 surface;
void Set(const CVector *v, int a, int b, int c, uint8 surf, uint8 piece);
};
struct CColTrianglePlane
{
CVector normal;
float dist;
uint8 dir;
void Set(const CVector *v, CColTriangle &tri);
void GetNormal(CVector &n) const { n = normal; }
float CalcPoint(const CVector &v) const { return DotProduct(normal, v) - dist; };
};
struct CColPoint
{
CVector point;
int pad1;
// the surface normal on the surface of point
CVector normal;
int pad2;
uint8 surfaceA;
uint8 pieceA;
uint8 surfaceB;
uint8 pieceB;
float depth;
CColPoint& operator=(const CColPoint& other);
2019-05-15 16:52:37 +02:00
};
struct CStoredCollPoly
{
CVector verts[3];
bool valid;
};
2020-05-06 17:56:38 +02:00
//--MIAMI: done struct
2019-05-15 16:52:37 +02:00
struct CColModel
{
2020-05-06 17:56:38 +02:00
CSphere boundingSphere;
CBox boundingBox;
int16 numSpheres;
int16 numBoxes;
int16 numTriangles;
2020-05-06 17:56:38 +02:00
int8 numLines;
2020-05-05 18:06:38 +02:00
uint8 level; // colstore slot but probably still named level
2019-05-15 16:52:37 +02:00
bool ownsCollisionVolumes;
CColSphere *spheres;
CColLine *lines;
CColBox *boxes;
CVector *vertices;
CColTriangle *triangles;
CColTrianglePlane *trianglePlanes;
CColModel(void);
~CColModel(void);
void RemoveCollisionVolumes(void);
void CalculateTrianglePlanes(void);
void RemoveTrianglePlanes(void);
CLink<CColModel*> *GetLinkPtr(void);
void SetLinkPtr(CLink<CColModel*>*);
void GetTrianglePoint(CVector &v, int i) const;
2019-06-25 00:42:23 +02:00
CColModel& operator=(const CColModel& other);
2019-05-15 16:52:37 +02:00
};
class CCollision
{
public:
2020-04-15 18:19:45 +02:00
static eLevelName ms_collisionInMemory;
static CLinkList<CColModel*> ms_colModelCache;
2019-05-15 16:52:37 +02:00
static void Init(void);
2019-06-28 19:23:28 +02:00
static void Shutdown(void);
2019-05-15 16:52:37 +02:00
static void Update(void);
static void LoadCollisionWhenINeedIt(bool changeLevel);
2019-06-25 00:42:23 +02:00
static void SortOutCollisionAfterLoad(void);
2019-06-28 19:23:28 +02:00
static void LoadCollisionScreen(eLevelName level);
2019-05-15 16:52:37 +02:00
static void DrawColModel(const CMatrix &mat, const CColModel &colModel);
static void DrawColModel_Coloured(const CMatrix &mat, const CColModel &colModel, int32 id);
static void CalculateTrianglePlanes(CColModel *model);
// all these return true if there's a collision
2020-05-06 17:56:38 +02:00
static bool TestSphereSphere(const CSphere &s1, const CSphere &s2);
static bool TestSphereBox(const CSphere &sph, const CBox &box);
static bool TestLineBox(const CColLine &line, const CBox &box);
static bool TestVerticalLineBox(const CColLine &line, const CBox &box);
2019-05-15 16:52:37 +02:00
static bool TestLineTriangle(const CColLine &line, const CVector *verts, const CColTriangle &tri, const CColTrianglePlane &plane);
static bool TestLineSphere(const CColLine &line, const CColSphere &sph);
static bool TestSphereTriangle(const CColSphere &sphere, const CVector *verts, const CColTriangle &tri, const CColTrianglePlane &plane);
2020-05-24 15:14:27 +02:00
static bool TestLineOfSight(const CColLine &line, const CMatrix &matrix, CColModel &model, bool ignoreSeeThrough, bool ignoreShootThrough);
2019-05-15 16:52:37 +02:00
static bool ProcessSphereSphere(const CColSphere &s1, const CColSphere &s2, CColPoint &point, float &mindistsq);
static bool ProcessSphereBox(const CColSphere &sph, const CColBox &box, CColPoint &point, float &mindistsq);
static bool ProcessLineBox(const CColLine &line, const CColBox &box, CColPoint &point, float &mindist);
static bool ProcessVerticalLineTriangle(const CColLine &line, const CVector *verts, const CColTriangle &tri, const CColTrianglePlane &plane, CColPoint &point, float &mindist, CStoredCollPoly *poly);
static bool ProcessLineTriangle(const CColLine &line , const CVector *verts, const CColTriangle &tri, const CColTrianglePlane &plane, CColPoint &point, float &mindist);
static bool ProcessLineSphere(const CColLine &line, const CColSphere &sphere, CColPoint &point, float &mindist);
static bool ProcessSphereTriangle(const CColSphere &sph, const CVector *verts, const CColTriangle &tri, const CColTrianglePlane &plane, CColPoint &point, float &mindistsq);
2020-05-24 15:14:27 +02:00
static bool ProcessLineOfSight(const CColLine &line, const CMatrix &matrix, CColModel &model, CColPoint &point, float &mindist, bool ignoreSeeThrough, bool ignoreShootThrough);
static bool ProcessVerticalLine(const CColLine &line, const CMatrix &matrix, CColModel &model, CColPoint &point, float &mindist, bool ignoreSeeThrough, bool ignoreShootThrough, CStoredCollPoly *poly);
2019-07-09 09:57:44 +02:00
static int32 ProcessColModels(const CMatrix &matrixA, CColModel &modelA, const CMatrix &matrixB, CColModel &modelB, CColPoint *spherepoints, CColPoint *linepoints, float *linedists);
2019-09-14 19:58:09 +02:00
static bool IsStoredPolyStillValidVerticalLine(const CVector &pos, float z, CColPoint &point, CStoredCollPoly *poly);
2019-05-15 16:52:37 +02:00
static float DistToLine(const CVector *l0, const CVector *l1, const CVector *point);
static float DistToLine(const CVector *l0, const CVector *l1, const CVector *point, CVector &closest);
};