12#include <unordered_map>
18#define ASSET_MAGIC_NUMBER 0x4f435421
23#define ASSET_VERSION_BASE 1
24#define ASSET_VERSION_SCENE_EXTRA_DATA 2
25#define ASSET_VERSION_PARTICLE_RADIAL_SPAWN 3
26#define ASSET_VERSION_PROPERTY_EXTRA 4
27#define ASSET_VERSION_SCENE_SUB_SCENE_OVERRIDE 5
28#define ASSET_VERSION_FONT_TTF_FLAG 6
29#define ASSET_VERSION_TEXTURE_COOKED_PROPERTIES 7
30#define ASSET_VERSION_TEXTURE_LOW_QUALITY 8
31#define ASSET_VERSION_MATERIAL_LITE_TEXTURE_COUNT 9
32#define ASSET_VERSION_STATIC_MESH_3D_HAS_BAKED_LIGHTING 10
33#define ASSET_VERSION_SCENE_SUBSCENE_INSTANCE_COLORS 11
34#define ASSET_VERSION_UUID_SUPPORT 12
35#define ASSET_VERSION_UUID_WITH_NAME_FALLBACK 13
36#define ASSET_VERSION_NODE_PERSISTENT_UUID 14
37#define ASSET_VERSION_MATERIAL_LITE_NODE_GRAPH 15
38#define ASSET_VERSION_NODE_GRAPH_FUNCTIONS 16
39#define ASSET_VERSION_NODE_GRAPH_VARIABLES 17
40#define ASSET_VERSION_SCENE_ICON_OVERRIDE 18
41#define ASSET_VERSION_SCENE_MENU_OVERRIDE 19
42#define ASSET_VERSION_VOXEL3D 20
43#define ASSET_VERSION_VOXEL3D_ATLAS 21
44#define ASSET_VERSION_VOXEL3D_ATLAS_INT32 22
45#define ASSET_VERSION_TERRAIN3D 23
46#define ASSET_VERSION_TERRAIN3D_MATSLOTS 24
47#define ASSET_VERSION_TERRAIN3D_ATLAS 25
48#define ASSET_VERSION_TERRAIN3D_BAKE 26
49#define ASSET_VERSION_TERRAIN3D_BAKEDMAP 27
50#define ASSET_VERSION_TILESET_BASE 28
51#define ASSET_VERSION_TILEMAP_BASE 29
52#define ASSET_VERSION_TILESET_METADATA 30
53#define ASSET_VERSION_TILESET_AUTOTILE 31
54#define ASSET_VERSION_TRANSFORM_KEYFRAME_SIGNAL 32
55#define ASSET_VERSION_INPUT_PROMPT_MAP 33
56#define ASSET_VERSION_INPUT_PROMPT_STYLE 34
57#define ASSET_VERSION_MATERIAL_LITE_UV_SOURCE 35
58#define ASSET_VERSION_SKELETAL_MESH_SECTIONS 36
59#define ASSET_VERSION_BONE_MASK 37
60#define ASSET_VERSION_CURRENT 37
63#define DECLARE_ASSET(Base, Parent) DECLARE_FACTORY(Base, Asset); DECLARE_OBJECT(Base, Parent);
64#define DEFINE_ASSET(Base) DEFINE_FACTORY(Base, Asset); DEFINE_OBJECT(Base);
129 virtual void Create();
132 virtual void Copy(
Asset* srcAsset);
140 void ResetLoadedFlag();
142 const std::string& GetName()
const;
143 bool IsLoaded()
const;
144 bool IsRefCounted()
const;
145 int32_t GetRefCount()
const;
147 bool IsEmbedded()
const;
148 void SetEmbedded(
bool embed);
150 bool IsEngineAsset()
const;
151 void SetEngineAsset(
bool engineAsset);
153 void SetName(
const std::string& name);
154 void IncrementRefCount();
155 void DecrementRefCount();
159 void SaveFile(
const char* path,
Platform platform);
163 virtual bool Import(
const std::string& path,
ImportOptions* options =
nullptr);
166 virtual glm::vec4 GetTypeColor();
167 virtual const char* GetTypeName();
168 virtual const char* GetTypeImportExt();
177 bool IsTransient()
const;
178 void SetTransient(
bool transient);
180 uint64_t GetUuid()
const;
181 void SetUuid(uint64_t uuid);
185 void WriteHeader(
Stream& stream);
187 static std::string GetNameFromPath(
const std::string& path);
188 static std::string GetDirectoryFromPath(
const std::string& path);
190 static const char* GetNameFromTypeId(
TypeId id);
191 static TypeId GetTypeIdFromName(
const char* name);
195 uint32_t mVersion = 0;
198 bool mEmbedded =
false;
199 bool mLoaded =
false;
200 bool mEnableRefCount =
true;
201 bool mEngineAsset =
false;
202 bool mTransient =
false;
204 std::string mName =
"Asset";
205 int32_t mRefCount = 0;
209 void ClearDirtyFlag();
#define ASSET_MAGIC_NUMBER
Definition Asset.h:18
POLYPHASE_API bool HandleAssetPropChange(Datum *datum, uint32_t index, const void *newValue)
Definition Asset.cpp:33
AssetLoadState
Definition Asset.h:69
#define ASSET_VERSION_CURRENT
Definition Asset.h:60
#define INVALID_TYPE_ID
Definition Constants.h:40
Platform
Definition EngineTypes.h:31
uint32_t TypeId
Definition EngineTypes.h:71
@ PlatformBit_All
Definition EngineTypes.h:60
Export macros for Polyphase Engine symbols.
#define POLYPHASE_API
Definition PolyphaseAPI.h:31
virtual bool ShouldSnapshotForPie() const
Definition Asset.h:175
DECLARE_OBJECT(Asset, Object)
DECLARE_FACTORY(Asset, Asset)
DECLARE_FACTORY_MANAGER(Asset)
void SetOptionValue(const std::string &key, const Datum &value)
Definition Asset.cpp:62
Datum GetOptionValue(const std::string &key)
Definition Asset.cpp:51
bool HasOption(const std::string &key)
Definition Asset.cpp:44
std::unordered_map< std::string, Datum > mOptions
Definition Asset.h:115
virtual void GatherProperties(std::vector< Property > &props)
Definition Object.h:41
TypeId mType
Definition Asset.h:92
uint64_t mUuid
Definition Asset.h:94
bool mEmbed
Definition Asset.h:99
Asset * mAsset
Definition Asset.h:89
const EmbeddedFile * mEmbeddedData
Definition Asset.h:90
uint32_t mPlatformMask
Definition Asset.h:98
std::string mPath
Definition Asset.h:91
bool mEngineAsset
Definition Asset.h:93
Definition AssetManager.h:19
Definition EmbeddedFile.h:6