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>
|
2016-03-26 00:51:59 +00:00
|
|
|
#include "ProjectResourceFactoryMP1.hpp"
|
2016-02-16 05:50:41 +00:00
|
|
|
#include "Runtime/CSimplePool.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
|
|
|
|
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;
|
2016-03-26 00:51:59 +00:00
|
|
|
ProjectResourceFactoryMP1 m_factoryMP1;
|
2016-03-04 23:04:53 +00:00
|
|
|
urde::CSimplePool 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);
|
2015-12-13 21:01:32 +00:00
|
|
|
|
2016-01-05 00:01:02 +00:00
|
|
|
bool saveProject();
|
|
|
|
|
2015-12-13 21:01:32 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2016-01-05 09:53:16 +00:00
|
|
|
#endif // URDE_PROJECT_MANAGER_HPP
|