A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
main.cc
1#include "host/KReplaySystem.hh"
2#include "host/KTestSystem.hh"
3#include "host/Option.hh"
4
5#include <egg/core/ExpHeap.hh>
6
7#if defined(__arm64__) || defined(__aarch64__)
8static void FlushDenormalsToZero() {
9 uint64_t fpcr;
10 asm("mrs %0, fpcr" : "=r"(fpcr));
11 asm("msr fpcr, %0" ::"r"(fpcr | (1 << 24)));
12}
13#elif defined(__x86_64__) || defined(_M_X64) || defined(__i386__) || defined(_M_IX86)
14#include <immintrin.h>
15
16static void FlushDenormalsToZero() {
17 _MM_SET_DENORMALS_ZERO_MODE(_MM_DENORMALS_ZERO_ON);
18}
19#endif
20
21static void *s_memorySpace = nullptr;
22static EGG::Heap *s_rootHeap = nullptr;
23
24static void InitMemory() {
25 constexpr size_t MEMORY_SPACE_SIZE = 0x1000000;
27 opt.setBit(Abstract::Memory::MEMiHeapHead::eOptFlag::ZeroFillAlloc);
28
29#ifdef BUILD_DEBUG
30 opt.setBit(Abstract::Memory::MEMiHeapHead::eOptFlag::DebugFillAlloc);
31#endif
32
33 s_memorySpace = malloc(MEMORY_SPACE_SIZE);
34 s_rootHeap = EGG::ExpHeap::create(s_memorySpace, MEMORY_SPACE_SIZE, opt);
35 s_rootHeap->setName("EGGRoot");
36 s_rootHeap->becomeCurrentHeap();
37
38 EGG::SceneManager::SetRootHeap(s_rootHeap);
39}
40
41int main(int argc, char **argv) {
42 FlushDenormalsToZero();
43 InitMemory();
44
45 // The hashmap cannot be constexpr, as it heap-allocates
46 // Therefore, it cannot be static, as memory needs to be initialized first
47 // TODO: Allow memory initialization before any other static initializers
48 const std::unordered_map<std::string, std::function<KSystem *()>> modeMap = {
49 {"test", []() -> KSystem * { return KTestSystem::CreateInstance(); }},
50 {"replay", []() -> KSystem * { return KReplaySystem::CreateInstance(); }},
51 };
52
53 if (argc < 3) {
54 PANIC("Too few arguments!");
55 }
56
57 // The first argument is the executable, so we ignore it
58 // The second argument is the mode flag
59 // The third argument is the mode arg
60 // TODO: Iterate until we find the index of the mode flag
61 std::optional<Host::EOption> flag = Host::Option::CheckFlag(argv[1]);
62 if (!flag) {
63 PANIC("Not a flag!");
64 }
65
66 if (*flag != Host::EOption::Mode) {
67 PANIC("First flag expected to be mode!");
68 }
69
70 KSystem *sys = nullptr;
71 const std::string mode = argv[2];
72
73 auto it = modeMap.find(mode);
74 if (it != modeMap.end()) {
75 sys = it->second();
76 } else {
77 PANIC("Invalid mode!");
78 }
79
80 sys->parseOptions(argc - 3, argv + 3);
81 sys->init();
82 return sys->run() ? 0 : 1;
83}
A high-level representation of a memory heap for managing dynamic memory allocation....
Definition Heap.hh:16
Base interface for a Kinoko system.
Definition KSystem.hh:6
virtual void init()=0
Initializes the system.
virtual void parseOptions(int argc, char **argv)=0
Parses non-generic command line options.
virtual bool run()=0
Executes a run.
constexpr TBitFlag< T, E > & setBit(Es... es)
Sets the corresponding bits for the provided enum values.
Definition BitFlag.hh:57