-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathasset.h
55 lines (47 loc) · 1.56 KB
/
asset.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
#pragma once
namespace Framework
{
class AssetPack : public RefCount
{
public:
struct FileInfo
{
std::string m_path; // Archive internal path
int m_offset; // Starting offset into m_data
int m_size; // Size in bytes
};
std::vector<byte> m_data; // Entire uncompressed archive
std::vector<FileInfo> m_files; // List of files in the archive
std::unordered_map<std::string, int> m_directory; // Mapping from internal path to index in m_files
std::unordered_set<std::string> m_manifest; // List of asset names in the pack
std::string m_path; // File path where the asset pack was loaded from
AssetPack();
bool LookupFile(const char * path, const char * suffix, void ** pDataOut, int * pSizeOut);
bool HasAsset(const char * path);
void Reset();
};
enum ACK // Asset Compile Kind
{
ACK_OBJMesh, // .obj mesh, compiled to vtx/idx buffers and mtl map
ACK_OBJMtlLib, // .mtl material library that goes alongside an .obj
ACK_TextureRaw, // Single RGBA8 image
ACK_TextureWithMips, // RGBA8 image, resampled up to pow2 and mips generated
ACK_Count
};
struct AssetCompileInfo
{
const char * m_pathSrc;
ACK m_ack;
};
// Load an asset pack file, checking that all its assets are present and up to date,
// and compiling any that aren't.
bool LoadAssetPackOrCompileIfOutOfDate(
const char * packPath,
const AssetCompileInfo * assets,
int numAssets,
AssetPack * pPackOut);
// Just load an asset pack file.
bool LoadAssetPack(
const char * packPath,
AssetPack * pPackOut);
}