Kinoko
A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ObjectBase.hh
1
#pragma once
2
3
#include "game/field/BoxColManager.hh"
4
#include "game/field/RailInterpolator.hh"
5
#include "game/field/obj/ObjectId.hh"
6
7
#include "game/system/map/MapdataGeoObj.hh"
8
9
#include <egg/math/Matrix.hh>
10
11
namespace
Field
{
12
13
class
ObjectBase
{
14
public
:
15
ObjectBase
(
const
System::MapdataGeoObj
¶ms);
16
virtual
~ObjectBase
();
17
18
virtual
void
init() {}
19
virtual
void
calc() {}
20
virtual
void
calcModel();
21
virtual
void
load() = 0;
22
virtual
void
createCollision() = 0;
23
virtual
void
loadRail();
24
virtual
void
calcCollisionTransform() = 0;
25
27
[[nodiscard]]
virtual
u32 loadFlags()
const
{
28
// TODO: This references LOD to determine load flags
29
return
0;
30
}
31
32
[[nodiscard]]
virtual
const
char
*getKclName()
const
;
33
35
[[nodiscard]]
virtual
const
EGG::Vector3f
&getPosition()
const
{
36
return
m_pos;
37
}
38
40
[[nodiscard]]
virtual
f32 getCollisionRadius()
const
{
41
return
100.0f;
42
}
43
45
[[nodiscard]] ObjectId id()
const
{
46
return
m_id;
47
}
48
49
protected
:
50
void
calcTransform();
51
52
ObjectId m_id;
53
RailInterpolator
*m_railInterpolator;
54
BoxColUnit
*m_boxColUnit;
55
u16
m_flags;
56
EGG::Vector3f
m_pos;
57
EGG::Vector3f
m_rot;
58
EGG::Vector3f
m_scale;
59
EGG::Matrix34f
m_transform;
60
const
System::MapdataGeoObj
*m_mapObj;
61
};
62
63
}
// namespace Field
EGG::Matrix34f
A 3 x 4 matrix.
Definition
Matrix.hh:8
Field::ObjectBase
Definition
ObjectBase.hh:13
Field::RailInterpolator
Definition
RailInterpolator.hh:13
System::MapdataGeoObj
Definition
MapdataGeoObj.hh:9
uint16_t
Field
Pertains to collision.
Definition
BoxColManager.cc:8
EGG::Vector3f
A 3D float vector.
Definition
Vector.hh:83
Field::BoxColUnit
A representation of the boundaries of an entity that has dynamic collision.
Definition
BoxColManager.hh:32
game
field
obj
ObjectBase.hh
Made by
Malleo
. Logo by
vabold
. Website generated by
Doxygen
1.12.0