A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
List.hh
1#pragma once
2
3#include "abstract/memory/Memory.hh"
4
5namespace Abstract::Memory {
6
8struct MEMLink {
9 void *m_prevObject;
10 void *m_nextObject;
11};
12
14struct MEMList {
15 MEMList(u16 offset);
16
17 void append(void *object);
18 void remove(void *object);
19 [[nodiscard]] void *getFirst();
20 [[nodiscard]] void *getNext(void *object);
21
22 void *m_headObject;
23 void *m_tailObject;
24 u16 m_numObjects;
25 u16 m_offset;
26
27private:
28 void setFirstObject(void *object);
29 [[nodiscard]] MEMLink *getLink(void *object);
30};
31
32} // namespace Abstract::Memory
Intrusive doubly-linked list. Links are placed within the corresponding object.
Definition List.hh:14