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
11namespace Field {
12
14public:
15 ObjectBase(const System::MapdataGeoObj &params);
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
49protected:
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
A 3 x 4 matrix.
Definition Matrix.hh:8
Pertains to collision.
A 3D float vector.
Definition Vector.hh:83
A representation of the boundaries of an entity that has dynamic collision.