A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ResDic.cc
1#include "ResDic.hh"
2
3namespace Abstract {
4namespace g3d {
5
6ResDic::ResDic(const void *data) : m_data(reinterpret_cast<const Data *>(data)) {}
7
9const ResDic::NodeData *ResDic::get(const char *pName, u32 len) const {
10 const NodeData *c = &m_data->data[0];
11 const NodeData *x = &m_data->data[parse<u16>(c->idxLeft)];
12
13 while (parse<u16>(c->ref) > parse<u16>(x->ref)) {
14 c = x;
15
16 u32 wd = parse<u16>(x->ref) >> 3;
17 u32 pos = parse<u16>(x->ref) & 7;
18
19 if (wd < len && (pName[wd] >> pos) & 1) {
20 x = &m_data->data[parse<u16>(x->idxRight)];
21 } else {
22 x = &m_data->data[parse<u16>(x->idxLeft)];
23 }
24 }
25
26 s32 stringOffset = parse<s32>(x->ofsString);
27
28 if (stringOffset != 0) {
29 const char *xName =
30 reinterpret_cast<const char *>(reinterpret_cast<uintptr_t>(m_data) + stringOffset);
31
32 if (std::strcmp(pName, xName) == 0) {
33 return x;
34 }
35 }
36
37 return nullptr;
38}
39
40} // namespace g3d
41} // namespace Abstract
An abstraction of components from the nw4r and RVL libraries.
Definition Archive.cc:5