A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Field::ObjectDirector Class Reference

Description

Definition at line 13 of file ObjectDirector.hh.

Inheritance diagram for Field::ObjectDirector:

Public Member Functions

void init ()
 
void calc ()
 
void addObject (ObjectCollidable *obj)
 
void addObjectNoImpl (ObjectNoImpl *obj)
 
size_t checkKartObjectCollision (Kart::KartObject *kartObj, ObjectCollisionConvexHull *convexHull)
 
const ObjectFlowTableflowTable () const
 
const ObjectBasecollidingObject (size_t idx) const
 
Kart::Reaction reaction (size_t idx) const
 
const EGG::Vector3fhitDepth (size_t idx) const
 

Static Public Member Functions

static ObjectDirectorCreateInstance ()
 
static void DestroyInstance ()
 
static ObjectDirectorInstance ()
 

Private Member Functions

void createObjects ()
 
ObjectBasecreateObject (const System::MapdataGeoObj &params)
 
- Private Member Functions inherited from EGG::Disposer

Private Attributes

ObjectFlowTable m_flowTable
 
ObjectHitTable m_hitTableKart
 
ObjectHitTable m_hitTableKartObject
 
std::vector< ObjectBase * > m_objects
 All objects live here.
 
std::vector< ObjectBase * > m_calcObjects
 Objects needing calc() live here too.
 
std::vector< ObjectBase * > m_collisionObjects
 Objects having collision live here too.
 
std::array< ObjectBase *, MAX_UNIT_COUNT > m_collidingObjects
 Objects we are currently colliding with.
 
std::array< EGG::Vector3f, MAX_UNIT_COUNT > m_hitDepths
 
std::array< Kart::Reaction, MAX_UNIT_COUNT > m_reactions
 

Static Private Attributes

static constexpr size_t MAX_UNIT_COUNT = 0x100
 
static ObjectDirectors_instance = nullptr
 

Additional Inherited Members

- Static Private Member Functions inherited from EGG::Disposer
static constexpr u16 getLinkOffset ()
 

Constructor & Destructor Documentation

◆ ObjectDirector()

Field::ObjectDirector::ObjectDirector ( )
private0x8082A38C

Definition at line 126 of file ObjectDirector.cc.

Member Function Documentation

◆ ~ObjectDirector()

Field::ObjectDirector::~ObjectDirector ( )
overrideprivate0x8082A694

Definition at line 131 of file ObjectDirector.cc.

◆ addObject()

void Field::ObjectDirector::addObject ( ObjectCollidable * obj)
0x8082B0E8

Definition at line 37 of file ObjectDirector.cc.

◆ addObjectNoImpl()

void Field::ObjectDirector::addObjectNoImpl ( ObjectNoImpl * obj)

Definition at line 53 of file ObjectDirector.cc.

◆ calc()

void Field::ObjectDirector::calc ( )
0x8082A8F4

Definition at line 24 of file ObjectDirector.cc.

◆ checkKartObjectCollision()

size_t Field::ObjectDirector::checkKartObjectCollision ( Kart::KartObject * kartObj,
ObjectCollisionConvexHull * convexHull )
0x8082AB04

Definition at line 58 of file ObjectDirector.cc.

◆ collidingObject()

const ObjectBase * Field::ObjectDirector::collidingObject ( size_t idx) const
inlinenodiscard

Definition at line 27 of file ObjectDirector.hh.

◆ CreateInstance()

ObjectDirector * Field::ObjectDirector::CreateInstance ( )
static0x8082A784

Definition at line 104 of file ObjectDirector.cc.

◆ createObject()

ObjectBase * Field::ObjectDirector::createObject ( const System::MapdataGeoObj & params)
nodiscardprivate0x80821E14

Definition at line 174 of file ObjectDirector.cc.

◆ createObjects()

void Field::ObjectDirector::createObjects ( )
private0x80826E8C

Definition at line 143 of file ObjectDirector.cc.

◆ DestroyInstance()

void Field::ObjectDirector::DestroyInstance ( )
static0x8082A824

Definition at line 116 of file ObjectDirector.cc.

◆ flowTable()

const ObjectFlowTable & Field::ObjectDirector::flowTable ( ) const
inlinenodiscard

Definition at line 23 of file ObjectDirector.hh.

◆ hitDepth()

const EGG::Vector3f & Field::ObjectDirector::hitDepth ( size_t idx) const
inlinenodiscard

Definition at line 37 of file ObjectDirector.hh.

◆ init()

void Field::ObjectDirector::init ( )
0x8082A2B4

Definition at line 14 of file ObjectDirector.cc.

◆ Instance()

static ObjectDirector * Field::ObjectDirector::Instance ( )
inlinestaticnodiscard

Definition at line 45 of file ObjectDirector.hh.

◆ reaction()

Kart::Reaction Field::ObjectDirector::reaction ( size_t idx) const
inlinenodiscard

Definition at line 32 of file ObjectDirector.hh.

Member Data Documentation

◆ m_calcObjects

std::vector<ObjectBase *> Field::ObjectDirector::m_calcObjects
private

Objects needing calc() live here too.

Definition at line 61 of file ObjectDirector.hh.

◆ m_collidingObjects

std::array<ObjectBase *, MAX_UNIT_COUNT> Field::ObjectDirector::m_collidingObjects
private

Objects we are currently colliding with.

Definition at line 67 of file ObjectDirector.hh.

◆ m_collisionObjects

std::vector<ObjectBase *> Field::ObjectDirector::m_collisionObjects
private

Objects having collision live here too.

Definition at line 62 of file ObjectDirector.hh.

◆ m_flowTable

ObjectFlowTable Field::ObjectDirector::m_flowTable
private

Definition at line 56 of file ObjectDirector.hh.

◆ m_hitDepths

std::array<EGG::Vector3f, MAX_UNIT_COUNT> Field::ObjectDirector::m_hitDepths
private

Definition at line 68 of file ObjectDirector.hh.

◆ m_hitTableKart

ObjectHitTable Field::ObjectDirector::m_hitTableKart
private

Definition at line 57 of file ObjectDirector.hh.

◆ m_hitTableKartObject

ObjectHitTable Field::ObjectDirector::m_hitTableKartObject
private

Definition at line 58 of file ObjectDirector.hh.

◆ m_objects

std::vector<ObjectBase *> Field::ObjectDirector::m_objects
private

All objects live here.

Definition at line 60 of file ObjectDirector.hh.

◆ m_reactions

std::array<Kart::Reaction, MAX_UNIT_COUNT> Field::ObjectDirector::m_reactions
private

Definition at line 69 of file ObjectDirector.hh.

◆ MAX_UNIT_COUNT

size_t Field::ObjectDirector::MAX_UNIT_COUNT = 0x100
staticconstexprprivate

Definition at line 64 of file ObjectDirector.hh.

◆ s_instance

ObjectDirector * Field::ObjectDirector::s_instance = nullptr
staticprivate0x809C4330

Definition at line 71 of file ObjectDirector.hh.