A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Abstract::Memory::MEMList Struct Reference

#include <List.hh>

Description

Intrusive doubly-linked list. Links are placed within the corresponding object.

Definition at line 14 of file List.hh.

Public Member Functions

 MEMList (u16 offset)
 
void append (void *object)
 
void remove (void *object)
 
void * getFirst ()
 
void * getNext (void *object)
 

Public Attributes

void * m_headObject
 
void * m_tailObject
 
u16 m_numObjects
 
u16 m_offset
 

Private Member Functions

void setFirstObject (void *object)
 
MEMLinkgetLink (void *object)
 

Constructor & Destructor Documentation

◆ MEMList()

Abstract::Memory::MEMList::MEMList ( u16 offset)
0x80199BF0

Definition at line 6 of file List.cc.

Member Function Documentation

◆ append()

void Abstract::Memory::MEMList::append ( void * object)
0x80199C08

Definition at line 14 of file List.cc.

◆ getFirst()

void * Abstract::Memory::MEMList::getFirst ( )
nodiscard

Definition at line 54 of file List.cc.

◆ getLink()

MEMLink * Abstract::Memory::MEMList::getLink ( void * object)
nodiscardprivate

Definition at line 76 of file List.cc.

◆ getNext()

void * Abstract::Memory::MEMList::getNext ( void * object)
nodiscard0x80199CE4

Definition at line 59 of file List.cc.

◆ remove()

void Abstract::Memory::MEMList::remove ( void * object)
0x80199C78

Definition at line 32 of file List.cc.

◆ setFirstObject()

void Abstract::Memory::MEMList::setFirstObject ( void * object)
private

Definition at line 63 of file List.cc.

Member Data Documentation

◆ m_headObject

void* Abstract::Memory::MEMList::m_headObject

Definition at line 22 of file List.hh.

◆ m_numObjects

u16 Abstract::Memory::MEMList::m_numObjects

Definition at line 24 of file List.hh.

◆ m_offset

u16 Abstract::Memory::MEMList::m_offset

Definition at line 25 of file List.hh.

◆ m_tailObject

void* Abstract::Memory::MEMList::m_tailObject

Definition at line 23 of file List.hh.