A reimplementation of Mario Kart Wii's physics engine in C++
Loading...
Searching...
No Matches
EGG::Archive Class Reference

Description

Definition at line 10 of file Archive.hh.

Inheritance diagram for EGG::Archive:

Public Member Functions

 ~Archive ()
 Removes the archive from the static list.
 
void unmount ()
 
s32 convertPathToEntryId (const char *path) const
 
void * getFileFast (s32 entryId, Abstract::ArchiveHandle::FileInfo &info) const
 

Static Public Member Functions

static ArchiveFindArchive (void *archiveStart)
 Checks to see if a given archive is already mounted.
 
static ArchiveMount (void *archiveStart)
 Creates a new Archive object or increments the ref count for an already existing Archive.
 

Private Member Functions

 Archive (void *archiveStart)
 
- Private Member Functions inherited from EGG::Disposer

Private Attributes

Abstract::ArchiveHandle m_handle
 
s32 m_refCount = 1
 

Static Private Attributes

static std::list< Archive * > s_archiveList
 The linked list of all mounted archives.
 

Additional Inherited Members

- Static Private Member Functions inherited from EGG::Disposer
static constexpr u16 getLinkOffset ()
 

Constructor & Destructor Documentation

◆ ~Archive()

EGG::Archive::~Archive ( )
0x8020f6ec

Removes the archive from the static list.

Called when the archive's reference count becomes 0.

Definition at line 11 of file Archive.cc.

◆ Archive()

EGG::Archive::Archive ( void * archiveStart)
privateInlined in 0x8020F768

Definition at line 72 of file Archive.cc.

Member Function Documentation

◆ convertPathToEntryId()

s32 EGG::Archive::convertPathToEntryId ( const char * path) const
nodiscard0x8020fa78

Definition at line 26 of file Archive.cc.

◆ FindArchive()

Archive * EGG::Archive::FindArchive ( void * archiveStart)
staticnodiscardInlined in 0x8020F768

Checks to see if a given archive is already mounted.

Parameters
archiveStartThe address of the archive to search for.
Returns
The archive if it is already mounted, or nullptr if it is not.

Definition at line 40 of file Archive.cc.

◆ getFileFast()

void * EGG::Archive::getFileFast ( s32 entryId,
Abstract::ArchiveHandle::FileInfo & info ) const
0x8020fa80

Definition at line 31 of file Archive.cc.

◆ Mount()

Archive * EGG::Archive::Mount ( void * archiveStart)
staticnodiscard0x8020F768

Creates a new Archive object or increments the ref count for an already existing Archive.

Parameters
archiveStartThe address of the archive to mount.
Returns
The Archive, regardless if it is new or already exists.

Definition at line 56 of file Archive.cc.

◆ unmount()

void EGG::Archive::unmount ( )
0x8020fa38

Definition at line 19 of file Archive.cc.

Member Data Documentation

◆ m_handle

Abstract::ArchiveHandle EGG::Archive::m_handle
private

Definition at line 24 of file Archive.hh.

◆ m_refCount

s32 EGG::Archive::m_refCount = 1
private

Definition at line 25 of file Archive.hh.

◆ s_archiveList

std::list< Archive * > EGG::Archive::s_archiveList
staticprivate

The linked list of all mounted archives.

Definition at line 27 of file Archive.hh.