summaryrefslogtreecommitdiff
path: root/assetFactory/assetFactory.h
blob: 9d79827dda11e2fa6ace7bd634a0799a2725cc9f (plain)
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
#pragma once

#include "factoryMesh.h"
#include "persistence.h"
#include "shape.h"
#include <filesystem>
#include <stdTypeDefs.hpp>

class Asset : public Persistence::Persistable, public StdTypeDefs<Asset> {
public:
	std::string id;
	std::string name;

	FactoryMesh::Collection meshes;

private:
	friend Persistence::SelectionPtrBase<std::shared_ptr<Asset>, true>;
	bool persist(Persistence::PersistenceStore & store) override;
};

class AssetFactory : public Persistence::Persistable {
public:
	using Shapes = std::map<std::string, Shape::Ptr, std::less<>>;
	using Assets = std::map<std::string, Asset::Ptr, std::less<>>;

	AssetFactory();
	[[nodiscard]] static std::shared_ptr<AssetFactory> loadXML(const std::filesystem::path &);

	Shapes shapes;
	Assets assets;

private:
	friend Persistence::SelectionPtrBase<std::shared_ptr<AssetFactory>, true>;
	bool persist(Persistence::PersistenceStore & store) override;
};