-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathasset-internal.h
108 lines (93 loc) · 3.3 KB
/
asset-internal.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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
#pragma once
#define MINIZ_HEADER_FILE_ONLY
#include "miniz.c"
namespace Framework
{
// Infrastructure for compiling art source files (such as Wavefront .obj meshes, and
// textures in .bmp/.psd/whatever) to engine-friendly data (such as vertex/index buffers,
// and RGBA8 pixel data with pre-generated mipmaps).
//
// * Takes a list of source files to compile. Current assumption is 1 source file == 1 asset.
//
// * Compiled data is stored as a set of files in a .zip. The source file path is used
// as a directory name in the .zip. For example, source file "foo/bar/baz.obj" will
// result in a directory "foo/bar/baz.obj/" with files in it for verts, indices, etc.
//
// * Compiled data is considered out-of-date and recompiled if the mod time of the source
// file is newer than the mod time of the asset pack (the .zip).
//
// * Version numbers for the whole pack system and each asset type are also stored in the
// .zip, and mismatches will trigger recompilation.
//
// !!!UNDONE: build the list of sources to compile by following dependencies from some root.
namespace AssetCompiler
{
enum PACKVER
{
PACKVER_Current = 3,
};
enum MESHVER
{
MESHVER_Current = 5,
};
enum MTLVER
{
MTLVER_Current = 4,
};
enum TEXVER
{
TEXVER_Current = 1,
};
struct VersionInfo
{
PACKVER m_packver;
MESHVER m_meshver;
MTLVER m_mtlver;
TEXVER m_texver;
};
// Load an asset pack file from a zip stream (can be in memory or a file).
bool LoadAssetPackFromZip(
mz_zip_archive * pZip,
AssetPack * pPackOut);
// Ensure that filenames are printable-ASCII-only, lowercase, and there are no backslashes
// (this should really be generalized to allow UTF-8 printable chars)
bool NormalizePath(char * path);
// Write a memory buffer out to an asset pack .zip file.
bool WriteAssetDataToZip(
const char * assetPath,
const char * assetSuffix,
const void * pData,
size_t sizeBytes,
mz_zip_archive * pZipOut);
// Parse an asset pack manifest (newline-delimited list of names) into a set structure.
void ParseManifest(
const char * manifest,
int manifestSize,
const char * path,
std::unordered_set<std::string> * pManifestOut);
// Compile an entire asset pack from scratch, to a .zip file on disk.
bool CompileFullAssetPackToFile(
const char * packPath,
const AssetCompileInfo * assets,
int numAssets);
// Compile an entire asset pack from scratch, to a zip stream (can be in memory or a file).
bool CompileFullAssetPackToZip(
const AssetCompileInfo * assets,
int numAssets,
mz_zip_archive * pZipOut);
// Check if any assets in a pack are out of date by version number or mod time,
// returning a list of ones that need updating (as indices into the assets array).
bool FindOutOfDateAssets(
const char * packPath,
const AssetCompileInfo * assets,
int numAssets,
std::vector<int> * pAssetsToUpdateOut);
// Update an asset pack in-place by recompiling some assets,
// preserving any other data already in the pack for others.
bool UpdateAssetPack(
const char * packPath,
const AssetCompileInfo * assets,
int numAssets,
std::vector<int> const & assetsToUpdate);
}
}