mirror of
https://github.com/DarkflameUniverse/DarkflameServer.git
synced 2025-04-26 16:46:31 +00:00

* Removed some unneccessary indirection and added const-correctness * improved packed asset bundle error messages * rephrase the string_view initialization to satisfy microsoft * change forward slashes to back slashes and let us never speak of this again * make crc32b function static * remove redundant 'static' --------- Co-authored-by: jadebenn <9892985+jadebenn@users.noreply.github.com>
41 lines
778 B
C++
41 lines
778 B
C++
#pragma once
|
|
|
|
#include <vector>
|
|
#include <string>
|
|
#include <filesystem>
|
|
#include <fstream>
|
|
|
|
#pragma pack(push, 1)
|
|
struct PackRecord {
|
|
uint32_t m_Crc;
|
|
int32_t m_LowerCrc;
|
|
int32_t m_UpperCrc;
|
|
uint32_t m_UncompressedSize;
|
|
char m_UncompressedHash[32];
|
|
uint32_t m_Padding1;
|
|
uint32_t m_CompressedSize;
|
|
char m_CompressedHash[32];
|
|
uint32_t m_Padding2;
|
|
uint32_t m_FilePointer;
|
|
uint32_t m_IsCompressed; // u32 bool
|
|
};
|
|
#pragma pack(pop)
|
|
|
|
class Pack {
|
|
public:
|
|
Pack(const std::filesystem::path& filePath);
|
|
|
|
[[nodiscard]]
|
|
bool HasFile(uint32_t crc) const;
|
|
|
|
[[nodiscard]]
|
|
bool ReadFileFromPack(uint32_t crc, char** data, uint32_t* len) const;
|
|
private:
|
|
std::ifstream m_FileStream;
|
|
std::filesystem::path m_FilePath;
|
|
|
|
char m_Version[7];
|
|
|
|
std::vector<PackRecord> m_Records;
|
|
};
|