metaforce/Editor/ProjectManager.hpp

58 lines
1.4 KiB
C++
Raw Normal View History

2016-01-05 09:53:16 +00:00
#ifndef URDE_PROJECT_MANAGER_HPP
#define URDE_PROJECT_MANAGER_HPP
2015-12-13 21:01:32 +00:00
2016-03-04 23:04:53 +00:00
#include <hecl/Database.hpp>
#include <athena/DNAYaml.hpp>
#include "ProjectResourceFactoryMP1.hpp"
2016-02-16 05:50:41 +00:00
#include "Runtime/CSimplePool.hpp"
2016-04-04 02:32:57 +00:00
#include "hecl/Runtime.hpp"
2015-12-13 21:01:32 +00:00
2016-03-05 00:03:41 +00:00
namespace urde
2015-12-13 21:01:32 +00:00
{
2016-01-04 05:31:02 +00:00
class ViewManager;
2015-12-13 21:01:32 +00:00
2016-03-04 23:04:53 +00:00
using ConfigReader = athena::io::YAMLDocReader;
using ConfigWriter = athena::io::YAMLDocWriter;
2016-01-05 00:01:02 +00:00
class ProjectResourcePool : public CSimplePool
{
class ProjectManager& m_parent;
public:
ProjectResourcePool(IFactory& factory, ProjectManager& parent)
: CSimplePool(factory), m_parent(parent) {}
CToken GetObj(char const*);
CToken GetObj(char const*, const CVParamTransfer&);
};
2015-12-13 21:01:32 +00:00
class ProjectManager
{
2016-01-04 05:31:02 +00:00
ViewManager& m_vm;
2016-03-04 23:04:53 +00:00
std::unique_ptr<hecl::Database::Project> m_proj;
2016-01-04 05:31:02 +00:00
static bool m_registeredSpecs;
hecl::ClientProcess m_clientProc;
ProjectResourceFactoryMP1 m_factoryMP1;
ProjectResourcePool m_objStore;
2016-02-16 05:50:41 +00:00
2015-12-13 21:01:32 +00:00
public:
2016-01-04 05:31:02 +00:00
ProjectManager(ViewManager& vm);
operator bool() const {return m_proj.operator bool();}
2016-03-04 23:04:53 +00:00
hecl::Database::Project* project() {return m_proj.get();}
2016-01-07 00:40:27 +00:00
2016-03-04 23:04:53 +00:00
bool newProject(const hecl::SystemString& path);
bool openProject(const hecl::SystemString& path);
bool extractGame(const hecl::SystemString& path);
2016-01-05 00:01:02 +00:00
bool saveProject();
void asyncIdle() {m_factoryMP1.AsyncIdle();}
void shutdown()
{
m_clientProc.shutdown();
m_factoryMP1.Shutdown();
}
2015-12-13 21:01:32 +00:00
};
}
2016-01-05 09:53:16 +00:00
#endif // URDE_PROJECT_MANAGER_HPP