summaryrefslogtreecommitdiff
path: root/src/KingSystem/Physics/RigidBody/Shape/Capsule/physCapsuleRigidBody.cpp
blob: b4a2663bc49b43c74fe09fb92ed367ad0381d320 (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
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
#include "KingSystem/Physics/RigidBody/Shape/Capsule/physCapsuleRigidBody.h"
#include <Havok/Physics2012/Dynamics/Entity/hkpRigidBody.h>
#include "KingSystem/Physics/RigidBody/Shape/Capsule/physCapsuleShape.h"
#include "KingSystem/Utils/SafeDelete.h"

namespace ksys::phys {

CapsuleRigidBody* CapsuleRigidBody::make(RigidBodyInstanceParam* param, sead::Heap* heap) {
    return createCapsule(param, heap);
}

CapsuleRigidBody::CapsuleRigidBody(hkpRigidBody* hk_body, CapsuleShape* shape,
                                   ContactLayerType layer_type, const sead::SafeString& name,
                                   bool set_flag_10, sead::Heap* heap)
    : RigidBodyFromShape(hk_body, layer_type, name, set_flag_10, heap), mShape(shape) {}

CapsuleRigidBody::~CapsuleRigidBody() {
    if (hasFlag(RigidBody::Flag::_10) && mShape) {
        util::safeDelete(mShape);
    }
}

void CapsuleRigidBody::setRadius(float radius) {
    if (mShape->setRadius(radius))
        updateShape();
}

void CapsuleRigidBody::setVertices(const sead::Vector3f& va, const sead::Vector3f& vb) {
    if (mShape->setVertices(va, vb))
        updateShape();
}

float CapsuleRigidBody::getRadius() const {
    return mShape->getRadius();
}

void CapsuleRigidBody::getVertices(sead::Vector3f* va, sead::Vector3f* vb) const {
    mShape->getVertices(va, vb);
}

void CapsuleRigidBody::transformVertices(sead::Vector3f* va, sead::Vector3f* vb) {
    lock();
    const hkTransform& transform = getHkBody()->getMotion()->getTransform();
    mShape->transformVertices(va, vb, transform);
    unlock();
}

void CapsuleRigidBody::setMaterialMask(const MaterialMask& mask) {
    mShape->setMaterialMask(mask);
}

const MaterialMask& CapsuleRigidBody::getMaterialMask() const {
    return mShape->material_mask;
}

float CapsuleRigidBody::getVolume() {
    return mShape->getVolume();
}

Shape* CapsuleRigidBody::getShape_() {
    return mShape;
}

const Shape* CapsuleRigidBody::getShape_() const {
    return mShape;
}

u32 CapsuleRigidBody::getCollisionMasks(RigidBody::CollisionMasks* masks, const u32* unk,
                                        const sead::Vector3f& contact_point) {
    masks->ignored_layers = ~mContactMask.getDirect();
    masks->collision_filter_info = getCollisionFilterInfo();
    masks->material_mask = getMaterialMask().getRawData();
    return 0;
}

}  // namespace ksys::phys