A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
Archive.hh
1#pragma once
2
3#include <Common.hh>
4
5#include <abstract/Archive.hh>
6
8namespace EGG {
9
11public:
12 ~Archive();
13
14 void unmount();
15 [[nodiscard]] s32 convertPathToEntryId(const char *path) const;
16 void *getFileFast(s32 entryId, Abstract::ArchiveHandle::FileInfo &info) const;
17
18 [[nodiscard]] static Archive *FindArchive(void *archiveStart);
19 [[nodiscard]] static Archive *Mount(void *archiveStart);
20
21private:
22 Archive(void *archiveStart);
23
25 s32 m_refCount = 1;
26
27 static std::list<Archive *> s_archiveList;
28};
29
30} // namespace EGG
This header houses common data types such as our integral types and enums.
static std::list< Archive * > s_archiveList
The linked list of all mounted archives.
Definition Archive.hh:27
static Archive * FindArchive(void *archiveStart)
Checks to see if a given archive is already mounted.
Definition Archive.cc:40
~Archive()
Removes the archive from the static list.
Definition Archive.cc:11
static Archive * Mount(void *archiveStart)
Creates a new Archive object or increments the ref count for an already existing Archive.
Definition Archive.cc:56
An interface for ensuring certain structures and classes are destroyed with the heap.
Definition Disposer.hh:11
EGG core library.
Definition Archive.cc:6