2022-10-09 05:13:17 +00:00
|
|
|
#ifndef _CCOLLISIONINFO
|
|
|
|
#define _CCOLLISIONINFO
|
2022-09-29 23:55:38 +00:00
|
|
|
|
|
|
|
#include "types.h"
|
|
|
|
|
|
|
|
#include "Collision/CMaterialList.hpp"
|
|
|
|
|
|
|
|
#include "Kyoto/Math/CVector3f.hpp"
|
|
|
|
|
|
|
|
class CAABox;
|
|
|
|
|
|
|
|
class CCollisionInfo {
|
|
|
|
public:
|
|
|
|
enum EInvalid {
|
|
|
|
kI_Invalid,
|
|
|
|
kI_Valid,
|
|
|
|
};
|
2022-10-09 05:13:17 +00:00
|
|
|
enum ESwapMaterials { kSM_Swap };
|
2022-09-29 23:55:38 +00:00
|
|
|
|
|
|
|
CCollisionInfo(EInvalid valid = kI_Invalid);
|
2022-10-09 05:13:17 +00:00
|
|
|
CCollisionInfo(const CVector3f& point, const CMaterialList& leftMat,
|
|
|
|
const CMaterialList& rightMat, const CVector3f& normal);
|
|
|
|
CCollisionInfo(const CVector3f& point, const CMaterialList& leftMat,
|
|
|
|
const CMaterialList& rightMat, const CVector3f& leftNormal,
|
2022-10-07 04:23:10 +00:00
|
|
|
const CVector3f& rightNormal);
|
2022-10-09 05:13:17 +00:00
|
|
|
CCollisionInfo(const CAABox& aabox, const CMaterialList& leftMat, const CMaterialList& rightMat,
|
|
|
|
const CVector3f& leftNormal, const CVector3f& rightNormal);
|
2022-10-07 04:23:10 +00:00
|
|
|
CCollisionInfo(const CCollisionInfo& other, ESwapMaterials swap)
|
|
|
|
: x0_point(other.x0_point)
|
|
|
|
, xc_extentX(other.xc_extentX)
|
|
|
|
, x18_extentY(other.x18_extentY)
|
|
|
|
, x24_extentZ(other.x24_extentZ)
|
|
|
|
, x30_valid(other.x30_valid)
|
|
|
|
, x31_hasExtents(other.x31_hasExtents)
|
|
|
|
, x38_materialLeft(other.x40_materialRight)
|
|
|
|
, x40_materialRight(other.x38_materialLeft)
|
|
|
|
, x48_normalLeft(other.x54_normalRight)
|
|
|
|
, x54_normalRight(other.x48_normalLeft) {}
|
|
|
|
|
|
|
|
CCollisionInfo GetSwapped() const;
|
|
|
|
bool IsValid() const { return x30_valid; }
|
|
|
|
const CMaterialList& GetMaterialLeft() const { return x38_materialLeft; }
|
|
|
|
const CMaterialList& GetMaterialRight() const { return x40_materialRight; }
|
|
|
|
CVector3f GetExtreme() const;
|
|
|
|
void Swap();
|
|
|
|
const CVector3f& GetNormalLeft() const { return x48_normalLeft; }
|
|
|
|
const CVector3f& GetNormalRight() const { return x54_normalRight; }
|
|
|
|
const CVector3f& GetPoint() const { return x0_point; }
|
2022-09-29 23:55:38 +00:00
|
|
|
|
|
|
|
private:
|
|
|
|
CVector3f x0_point;
|
|
|
|
CVector3f xc_extentX;
|
|
|
|
CVector3f x18_extentY;
|
|
|
|
CVector3f x24_extentZ;
|
|
|
|
bool x30_valid;
|
|
|
|
bool x31_hasExtents;
|
|
|
|
CMaterialList x38_materialLeft;
|
|
|
|
CMaterialList x40_materialRight;
|
2022-10-07 04:23:10 +00:00
|
|
|
CVector3f x48_normalLeft;
|
|
|
|
CVector3f x54_normalRight;
|
2022-09-29 23:55:38 +00:00
|
|
|
};
|
|
|
|
CHECK_SIZEOF(CCollisionInfo, 0x60)
|
|
|
|
|
2022-10-09 05:13:17 +00:00
|
|
|
#endif // _CCOLLISIONINFO
|