metaforce/Runtime/CPakFile.hpp

88 lines
2.7 KiB
C++
Raw Normal View History

2018-10-06 20:42:33 -07:00
#pragma once
2015-08-22 23:42:29 -07:00
#include <vector>
#include "RetroTypes.hpp"
#include "CStringExtras.hpp"
#include "CDvdFile.hpp"
#include "CDvdRequest.hpp"
2017-10-25 22:37:46 -07:00
#include "CFactoryMgr.hpp"
2015-08-22 23:42:29 -07:00
2016-03-04 15:04:53 -08:00
namespace urde
2015-08-22 23:42:29 -07:00
{
class CPakFile : public CDvdFile
{
friend class CResLoader;
public:
struct SResInfo
{
2017-10-25 22:37:46 -07:00
CAssetId x0_id;
bool x4_compressed : 1;
CFactoryMgr::ETypeTable x4_typeIdx : 7;
u32 x5_offsetDiv32 : 27;
u32 x7_sizeDiv32 : 27;
SResInfo(CAssetId id, FourCC fcc, u32 offset, u32 size, u32 flags)
: x0_id(id)
{
x4_compressed = flags != 0;
x4_typeIdx = CFactoryMgr::FourCCToTypeIdx(fcc);
x5_offsetDiv32 = offset / 32;
x7_sizeDiv32 = size / 32;
}
u32 GetOffset() const { return x5_offsetDiv32 * 32; }
u32 GetSize() const { return x7_sizeDiv32 * 32; }
FourCC GetType() const { return CFactoryMgr::TypeIdxToFourCC(x4_typeIdx); }
bool IsCompressed() const { return x4_compressed; }
CAssetId GetId() const { return x0_id; }
2015-08-22 23:42:29 -07:00
};
private:
2017-02-07 22:48:43 -08:00
union
{
struct
{
2017-04-14 22:32:25 -07:00
bool x28_24_buildDepList;
2017-02-07 22:48:43 -08:00
bool x28_25_aramFile;
bool x28_26_worldPak;
2017-10-27 03:10:32 -07:00
bool x28_27_stashedInARAM;
2017-02-07 22:48:43 -08:00
};
u32 _dummy = 0;
};
2015-11-20 17:16:07 -08:00
enum class EAsyncPhase
2015-08-22 23:42:29 -07:00
{
2015-11-20 17:16:07 -08:00
Warmup = 0,
InitialHeader = 1,
DataLoad = 2,
Loaded = 3
2017-10-25 22:37:46 -07:00
} x2c_asyncLoadPhase = EAsyncPhase::Warmup;
2017-04-14 22:32:25 -07:00
std::shared_ptr<IDvdRequest> x30_dvdReq; // Used to be auto_ptr
std::vector<u8> x38_headerData;
u32 x48_resTableOffset = 0;
u32 x4c_resTableCount = 0;
2017-10-25 22:37:46 -07:00
int x50_aramBase = -1;
2017-04-14 22:32:25 -07:00
std::vector<std::pair<std::string, SObjectTag>> x54_nameList;
2017-08-12 22:26:14 -07:00
std::vector<CAssetId> x64_depList;
2017-10-25 22:37:46 -07:00
std::vector<SResInfo> x74_resList;
mutable s32 x84_currentSeek = -1;
CAssetId m_mlvlId;
2017-10-25 22:37:46 -07:00
void LoadResourceTable(athena::io::MemoryReader& r);
void DataLoad();
void InitialHeaderLoad();
void Warmup();
2015-08-22 23:42:29 -07:00
public:
2017-11-12 22:19:18 -08:00
CPakFile(std::string_view filename, bool buildDepList, bool worldPak);
2018-05-07 22:10:24 -07:00
~CPakFile();
const std::vector<std::pair<std::string, SObjectTag>>& GetNameList() const { return x54_nameList; }
2017-08-12 22:26:14 -07:00
const std::vector<CAssetId>& GetDepList() const { return x64_depList; }
2017-11-12 22:19:18 -08:00
const SObjectTag* GetResIdByName(std::string_view name) const;
2017-10-25 22:37:46 -07:00
const SResInfo* GetResInfoForLoadPreferForward(CAssetId id) const;
const SResInfo* GetResInfoForLoadDirectionless(CAssetId id) const;
const SResInfo* GetResInfo(CAssetId id) const;
bool IsWorldPak() const { return x28_26_worldPak; }
2017-02-07 22:48:43 -08:00
u32 GetFakeStaticSize() const { return 0; }
void AsyncIdle();
CAssetId GetMLVLId() const { return m_mlvlId; }
2015-08-22 23:42:29 -07:00
};
}