summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/RigidBody/Shape/Box/physBoxRigidBody.h
blob: 2e92404b17076158560b6fd03c9bf290d3420320 (plain)
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
#pragma once

#include "KingSystem/Physics/RigidBody/physRigidBodyFromShape.h"

namespace ksys::phys {

class BoxShape;
struct RigidBodyInstanceParam;

class BoxRigidBody : public RigidBodyFromShape {
    SEAD_RTTI_OVERRIDE(BoxRigidBody, RigidBodyFromShape)
public:
    static BoxRigidBody* make(RigidBodyInstanceParam* param, sead::Heap* heap);

    BoxRigidBody(hkpRigidBody* hk_body, BoxShape* shape, ContactLayerType layer_type,
                 const sead::SafeString& name, bool set_flag_10, sead::Heap* heap);
    ~BoxRigidBody() override;

    /// Set the box extents and trigger a shape update.
    void setExtents(const sead::Vector3f& extents);
    /// Set the box translation and trigger a shape update.
    void setTranslate(const sead::Vector3f& translate);

    const sead::Vector3f& getExtents() const;
    const sead::Vector3f& getTranslate() const;
    void getTransformedTranslate(sead::Vector3f* translate);

    void setMaterialMask(const MaterialMask& mask);
    const MaterialMask& getMaterialMask() const;

    float getVolume() override;

protected:
    Shape* getShape_() override;
    const Shape* getShape_() const override;
    u32 getCollisionMasks(RigidBody::CollisionMasks* masks, const u32* unk,
                          const sead::Vector3f& contact_point) override;

    BoxShape* mShape;
};

}  // namespace ksys::phys