A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ScopeLock.hh
1#pragma once
2
3#include <Common.hh>
4
5#include <egg/core/ExpHeap.hh>
6
7template <typename T>
9
10template <>
11class ScopeLock<GroupID> {
12public:
15 ScopeLock(GroupID newID) {
16 EGG::ExpHeap *heap = EGG::Heap::dynamicCastToExp(EGG::Heap::getCurrentHeap());
17 ASSERT(heap);
18 GroupID prevID = static_cast<GroupID>(heap->getGroupID());
19
20 if (prevID != GroupID::None) {
21 WARN("Overwriting non-default group ID! Replacing %d with %d", prevID, newID);
22 }
23
24 heap->setGroupID(static_cast<u16>(newID));
25 }
26
27 ~ScopeLock() {
28 EGG::ExpHeap *heap = EGG::Heap::dynamicCastToExp(EGG::Heap::getCurrentHeap());
29 ASSERT(heap);
30 heap->setGroupID(static_cast<u16>(GroupID::None));
31 }
32};
This header houses common data types such as our integral types and enums.
High-level implementation of a memory heap for managing dynamic memory allocation....
Definition ExpHeap.hh:15
ScopeLock(GroupID newID)
Temporarily changes the group ID of a given heap to better track memory allocation.
Definition ScopeLock.hh:15