A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
ResFile.hh
1#pragma once
2
3#include "abstract/g3d/ResAnmChr.hh"
4#include "abstract/g3d/ResDic.hh"
5
6// Credit: kiwi515/ogws
7
8namespace Abstract {
9namespace g3d {
10
15class ResFile {
16public:
19 ResBlockHeaderData header;
20 ResDic::Data topLevel;
21 };
22
23 struct Data {
24 ResFileHeaderData header;
26 };
27
28 ResFile(const void *data) : m_data(reinterpret_cast<const Data *>(data)) {}
29
32 [[nodiscard]] ResAnmChr resAnmChr(const char *pName) const {
33 ResDic dic = ResDic(&m_data->dict.topLevel);
34 void *dicData = dic["AnmChr(NW4R)"];
35 ASSERT(dicData);
36 void *anmChrData = ResDic(dicData)[pName];
37 ASSERT(anmChrData);
38 return ResAnmChr(anmChrData);
39 }
40
41private:
42 const Data *m_data;
43};
44
45} // namespace g3d
46} // namespace Abstract
Represents the CHR0 file format, which pertains to model movement animations.
Definition ResAnmChr.hh:14
Essentially a lookup table to find different sections within the resource file.
Definition ResDic.hh:13
Represents a binary resource file which contains object models, textures, and animations.
Definition ResFile.hh:15
ResAnmChr resAnmChr(const char *pName) const
Retrieves the AnmChr section from the binary file.
Definition ResFile.hh:32
An abstraction of components from the nw4r and RVL libraries.
Definition Archive.cc:5
The "root" section of the file.
Definition ResFile.hh:18