metaforce/Editor/ProjectManager.cpp

190 lines
4.7 KiB
C++
Raw Normal View History

2015-12-13 21:01:32 +00:00
#include "ProjectManager.hpp"
2016-01-04 05:31:02 +00:00
#include "ViewManager.hpp"
#include "../DataSpecRegistry.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-03-04 23:04:53 +00:00
static logvisor::Module Log("URDE::ProjectManager");
2016-01-04 05:31:02 +00:00
2016-04-11 03:59:54 +00:00
CToken ProjectResourcePool::GetObj(const char* name)
{
CToken ret = CSimplePool::GetObj(name);
if (ret)
return ret;
hecl::ProjectPath path(*m_parent.project(), name);
SObjectTag tag = static_cast<ProjectResourceFactoryBase&>(x30_factory).
TagFromPath(path, hecl::SharedBlenderToken);
if (tag)
return CSimplePool::GetObj(tag);
return {};
}
2016-04-11 03:59:54 +00:00
CToken ProjectResourcePool::GetObj(const char* name, const CVParamTransfer& pvxfer)
{
CToken ret = CSimplePool::GetObj(name, pvxfer);
if (ret)
return ret;
hecl::ProjectPath path(*m_parent.project(), name);
SObjectTag tag = static_cast<ProjectResourceFactoryBase&>(x30_factory).
TagFromPath(path, hecl::SharedBlenderToken);
if (tag)
return CSimplePool::GetObj(tag, pvxfer);
return {};
}
2016-01-04 05:31:02 +00:00
bool ProjectManager::m_registeredSpecs = false;
ProjectManager::ProjectManager(ViewManager &vm)
: m_vm(vm), m_clientProc(1), m_factoryMP1(m_clientProc), m_objStore(m_factoryMP1, *this)
2016-01-04 05:31:02 +00:00
{
if (!m_registeredSpecs)
{
HECLRegisterDataSpecs();
m_registeredSpecs = true;
}
}
2016-03-04 23:04:53 +00:00
bool ProjectManager::newProject(const hecl::SystemString& path)
2016-01-04 05:31:02 +00:00
{
2016-03-04 23:04:53 +00:00
hecl::ProjectRootPath projPath = hecl::SearchForProject(path);
2016-01-04 05:31:02 +00:00
if (projPath)
{
2016-03-04 23:04:53 +00:00
Log.report(logvisor::Warning, _S("project already exists at '%s'"), path.c_str());
2016-01-04 05:31:02 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
hecl::MakeDir(path.c_str());
m_proj.reset(new hecl::Database::Project(path));
2016-01-04 05:31:02 +00:00
if (!*m_proj)
{
m_proj.reset();
return false;
}
2016-03-07 03:12:32 +00:00
m_vm.ProjectChanged(*m_proj);
2016-01-05 00:01:02 +00:00
m_vm.SetupEditorView();
saveProject();
2016-03-07 03:12:32 +00:00
hecl::SystemString windowTitle(m_proj->getProjectRootPath().getLastComponent());
windowTitle += _S(" - URDE");
m_vm.m_mainWindow->setTitle(windowTitle.c_str());
2016-01-05 00:01:02 +00:00
m_vm.DismissSplash();
m_vm.FadeInEditors();
2016-01-04 05:31:02 +00:00
return true;
}
2016-03-04 23:04:53 +00:00
bool ProjectManager::openProject(const hecl::SystemString& path)
2016-01-04 05:31:02 +00:00
{
2016-03-04 23:04:53 +00:00
hecl::ProjectRootPath projPath = hecl::SearchForProject(path);
2016-01-04 05:31:02 +00:00
if (!projPath)
{
2016-03-04 23:04:53 +00:00
Log.report(logvisor::Warning, _S("project doesn't exist at '%s'"), path.c_str());
2016-01-04 05:31:02 +00:00
return false;
}
2016-03-04 23:04:53 +00:00
m_proj.reset(new hecl::Database::Project(projPath));
2016-01-04 05:31:02 +00:00
if (!*m_proj)
{
m_proj.reset();
return false;
}
2016-03-04 23:04:53 +00:00
hecl::ProjectPath urdeSpacesPath(*m_proj, _S(".hecl/urde_spaces.yaml"));
FILE* fp = hecl::Fopen(urdeSpacesPath.getAbsolutePath().c_str(), _S("r"));
2016-01-05 00:01:02 +00:00
2016-03-04 23:04:53 +00:00
athena::io::YAMLDocReader r;
2016-01-05 00:01:02 +00:00
if (!fp)
goto makeDefault;
yaml_parser_set_input_file(r.getParser(), fp);
if (!r.ValidateClassType("UrdeSpacesState"))
2016-01-04 05:31:02 +00:00
{
2016-01-05 00:01:02 +00:00
fclose(fp);
goto makeDefault;
}
2016-01-04 05:31:02 +00:00
2016-01-05 00:01:02 +00:00
r.reset();
fseek(fp, 0, SEEK_SET);
yaml_parser_set_input_file(r.getParser(), fp);
if (!r.parse())
{
fclose(fp);
goto makeDefault;
2016-01-04 05:31:02 +00:00
}
2016-01-05 00:01:02 +00:00
fclose(fp);
2016-03-07 03:12:32 +00:00
m_vm.ProjectChanged(*m_proj);
2016-01-05 00:01:02 +00:00
m_vm.SetupEditorView(r);
m_factoryMP1.IndexMP1Resources(*m_proj);
2016-02-16 05:50:41 +00:00
m_vm.BuildTestPART(m_objStore);
2016-03-07 03:12:32 +00:00
{
hecl::SystemString windowTitle(m_proj->getProjectRootPath().getLastComponent());
windowTitle += _S(" - URDE");
m_vm.m_mainWindow->setTitle(windowTitle.c_str());
}
2016-01-05 00:01:02 +00:00
m_vm.DismissSplash();
m_vm.FadeInEditors();
2016-01-16 03:58:11 +00:00
m_vm.pushRecentProject(m_proj->getProjectRootPath().getAbsolutePath());
2016-01-05 00:01:02 +00:00
return true;
makeDefault:
2016-03-07 03:12:32 +00:00
m_vm.ProjectChanged(*m_proj);
2016-01-05 00:01:02 +00:00
m_vm.SetupEditorView();
saveProject();
2016-03-07 03:12:32 +00:00
{
hecl::SystemString windowTitle(m_proj->getProjectRootPath().getLastComponent());
windowTitle += _S(" - URDE");
m_vm.m_mainWindow->setTitle(windowTitle.c_str());
}
2016-01-05 00:01:02 +00:00
m_vm.DismissSplash();
m_vm.FadeInEditors();
2016-01-04 05:31:02 +00:00
return true;
}
2016-03-04 23:04:53 +00:00
bool ProjectManager::extractGame(const hecl::SystemString& path)
2016-01-04 05:31:02 +00:00
{
return false;
}
2015-12-13 21:01:32 +00:00
2016-01-05 00:01:02 +00:00
bool ProjectManager::saveProject()
{
if (!m_proj)
return false;
2016-03-04 23:04:53 +00:00
hecl::ProjectPath oldSpacesPath(*m_proj, _S(".hecl/~urde_spaces.yaml"));
FILE* fp = hecl::Fopen(oldSpacesPath.getAbsolutePath().c_str(), _S("w"));
2016-01-05 00:01:02 +00:00
if (!fp)
return false;
2016-03-04 23:04:53 +00:00
athena::io::YAMLDocWriter w("UrdeSpacesState");
2016-01-05 00:01:02 +00:00
yaml_emitter_set_output_file(w.getEmitter(), fp);
m_vm.SaveEditorView(w);
if (!w.finish())
{
fclose(fp);
return false;
}
fclose(fp);
2016-03-04 23:04:53 +00:00
hecl::ProjectPath newSpacesPath(*m_proj, _S(".hecl/urde_spaces.yaml"));
2016-01-05 00:01:02 +00:00
2016-03-04 23:04:53 +00:00
hecl::Unlink(newSpacesPath.getAbsolutePath().c_str());
hecl::Rename(oldSpacesPath.getAbsolutePath().c_str(),
2016-01-05 00:01:02 +00:00
newSpacesPath.getAbsolutePath().c_str());
2016-01-16 03:58:11 +00:00
m_vm.pushRecentProject(m_proj->getProjectRootPath().getAbsolutePath());
2016-01-05 00:01:02 +00:00
return true;
}
2015-12-13 21:01:32 +00:00
}