Grindstone Game Engine v0.2.0
An open source game engine and toolkit.
Loading...
Searching...
No Matches
MetaFile.hpp
1#pragma once
2
3#include <filesystem>
4
5#include <Common/ResourcePipeline/AssetType.hpp>
6#include <Editor/AssetRegistry.hpp>
7
8#include "Uuid.hpp"
9
10namespace Grindstone::Editor {
11 class MetaFile {
12 public:
13 struct Subasset {
14 std::string displayName;
15 std::string subassetIdentifier;
16 std::string address;
17 AssetType assetType = AssetType::Undefined;
18 Uuid uuid;
19
20 Subasset() = default;
22 std::string_view subassetIdentifier,
23 std::string_view displayName,
24 std::string_view address,
25 Uuid uuid,
26 AssetType type
27 ) : subassetIdentifier(subassetIdentifier),
28 displayName(displayName),
29 address(address),
30 uuid(uuid),
31 assetType(type) {}
32 };
33
34 public:
35 MetaFile() = default;
36 MetaFile(AssetRegistry& assetRegistry, const std::filesystem::path&);
37
38 void Load(AssetRegistry& assetRegistry, const std::filesystem::path&);
39 void Save();
40 bool TryGetDefaultSubasset(Subasset& subasset) const;
41 Uuid GetOrCreateDefaultSubassetUuid(std::string& subassetName, AssetType assetType);
42 Uuid GetOrCreateSubassetUuid(std::string& subassetName, AssetType assetType);
43 size_t GetSubassetCount() const;
44 bool TryGetDefaultSubassetUuid(Uuid& outUuid) const;
45 bool TryGetSubassetUuid(std::string& subassetName, Uuid& outUuid) const;
46 bool IsValid() const;
47 bool IsOutdatedVersion() const;
48 public:
49 using Iterator = std::vector<Subasset>::iterator;
50 using ConstIterator = std::vector<Subasset>::const_iterator;
51
52 Iterator begin() noexcept;
53 ConstIterator begin() const noexcept;
54
55 Iterator end() noexcept;
56 ConstIterator end() const noexcept;
57 private:
58 std::string MakeDefaultAddress(std::string_view subassetName) const;
59
60 bool isValid = true;
61 uint32_t version = 0;
62 AssetRegistry& assetRegistry;
63 Subasset defaultSubasset;
64 std::vector<Subasset> subassets;
65 std::filesystem::path metaFilePath;
66 std::filesystem::path baseAssetPath;
67 std::filesystem::path mountedAssetPath;
68 };
69}
Definition AssetRegistry.hpp:14
Definition MetaFile.hpp:11
Definition Uuid.hpp:6
Definition MetaFile.hpp:13