1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
|
#pragma once
#include <math/seadVector.h>
#include <prim/seadTypedBitFlag.h>
#include <thread/seadAtomic.h>
#include "KingSystem/Physics/RigidBody/Shape/physShape.h"
#include "KingSystem/Physics/RigidBody/physRigidBody.h"
#include "KingSystem/Physics/RigidBody/physRigidBodyParam.h"
#include "KingSystem/Physics/physMaterialMask.h"
class hkTransformf;
class hkpBoxShape;
class hkpConvexTransformShape;
namespace ksys::phys {
class BoxParam;
class BoxRigidBody;
struct BoxShapeParam;
class BoxShape : public Shape {
SEAD_RTTI_OVERRIDE(BoxShape, Shape)
public:
enum class Flag {
/// Whether there is a pending change.
Dirty = 1 << 0,
/// Whether we have a transform (translation and/or rotation).
HasTransform = 1 << 1,
/// Whether there is a pending transform change.
DirtyTransform = 1 << 2,
};
static BoxShape* make(const BoxShapeParam& param, sead::Heap* heap);
BoxShape(const BoxShapeParam& param, hkpBoxShape* shape,
hkpConvexTransformShape* transform_shape);
~BoxShape() override;
BoxShape* clone(sead::Heap* heap) const;
BoxRigidBody* createBody(bool flag, const RigidBodyInstanceParam& params, sead::Heap* heap);
bool setExtents(const sead::Vector3f& extents);
bool setTranslate(const sead::Vector3f& translate);
void setMaterialMask(const MaterialMask& mask);
const MaterialMask& getMaterialMask() const { return mMaterialMask; }
ShapeType getType() const override { return ShapeType::Box; }
float getVolume() const override;
hkpShape* getHavokShape() override;
const hkpShape* getHavokShape() const override;
const hkpShape* updateHavokShape() override;
void setScale(float scale) override;
/// Get the transform's translation or mTranslate transformed by the matrix
/// (if we have a non-zero translation vector).
void getTranslate(sead::Vector3f* out, const hkTransformf& transform) const;
sead::Vector3f mExtents;
sead::TypedBitFlag<Flag, sead::Atomic<u32>> mFlags;
sead::Vector3f mTranslate;
sead::Vector3f mRotate;
hkpBoxShape* mHavokShape{};
MaterialMask mMaterialMask{};
hkpConvexTransformShape* mTransformShape{};
};
struct BoxShapeParam {
sead::Vector3f extents = {0.5, 0.5, 0.5};
sead::Vector3f translate = sead::Vector3f::zero;
sead::Vector3f rotate = sead::Vector3f::zero;
float convex_radius = 0.05;
CommonShapeParam common;
};
class BoxParam : public RigidBodyInstanceParam, public BoxShapeParam {
SEAD_RTTI_OVERRIDE(BoxParam, RigidBodyInstanceParam)
public:
BoxParam() : RigidBodyInstanceParam(ShapeType::Box) {}
};
} // namespace ksys::phys
|