metaforce/Editor/ViewManager.cpp

290 lines
9.1 KiB
C++
Raw Normal View History

#include "ViewManager.hpp"
2015-12-07 20:27:35 -08:00
#include "Specter/Control.hpp"
#include "Specter/Space.hpp"
2016-01-28 15:55:38 -08:00
#include "Specter/Menu.hpp"
2015-12-23 19:32:21 -08:00
#include "SplashScreen.hpp"
2015-12-30 19:20:52 -08:00
#include "locale/locale.hpp"
2016-01-06 16:40:27 -08:00
#include "ResourceBrowser.hpp"
2016-01-18 15:33:23 -08:00
#include "icons/icons.hpp"
2016-02-16 21:20:34 -08:00
#include "Runtime/Particle/CGenDescription.hpp"
#include "Runtime/Particle/CElectricDescription.hpp"
#include "Runtime/Particle/CSwooshDescription.hpp"
#include "Runtime/CModel.hpp"
#include "Runtime/CGraphics.hpp"
2016-01-15 19:58:11 -08:00
#include <cstdio>
using YAMLNode = Athena::io::YAMLNode;
2016-01-05 01:53:16 -08:00
namespace URDE
{
void ViewManager::BuildTestPART(pshag::IObjectStore& objStore)
{
//m_partGenDesc = objStore.GetObj({HECL::FOURCC('PART'), 0x972A5CD2});
2016-02-27 17:35:45 -08:00
m_partGenDesc = objStore.GetObj("BusterSparks");
m_partGen.reset(new pshag::CElementGen(m_partGenDesc,
pshag::CElementGen::EModelOrientationType::Normal,
pshag::CElementGen::EOptionalSystemFlags::None));
2016-02-24 18:55:38 -08:00
m_partGen->SetGlobalScale({5.f, 5.f, 5.f});
m_particleView.reset(new ParticleView(*this, m_viewResources, *m_rootView));
m_lineRenderer.reset(new pshag::CLineRenderer(pshag::CLineRenderer::EPrimitiveMode::LineStrip, 4, nullptr, true));
2016-02-24 21:09:45 -08:00
//m_rootView->accessContentViews().clear();
m_rootView->accessContentViews().push_back(m_particleView.get());
m_rootView->updateSize();
}
void ViewManager::ParticleView::resized(const boo::SWindowRect& root, const boo::SWindowRect& sub)
{
Specter::View::resized(root, sub);
pshag::CGraphics::SetViewportResolution({sub.size[0], sub.size[1]});
}
void ViewManager::ParticleView::draw(boo::IGraphicsCommandQueue *gfxQ)
{
if (m_vm.m_partGen)
{
m_vm.m_partGen->Update(1.0 / 60.0);
2016-02-24 22:23:35 -08:00
if (m_vm.m_partGen->IsSystemDeletable())
m_vm.m_partGen->Reset();
pshag::CGraphics::SetModelMatrix(Zeus::CTransform::Identity());
pshag::CGraphics::SetViewPointMatrix(Zeus::CTransform::Identity() + Zeus::CVector3f(0.f, -10.f, 0.f));
boo::SWindowRect windowRect = m_vm.m_mainWindow->getWindowFrame();
float aspect = windowRect.size[0] / float(windowRect.size[1]);
pshag::CGraphics::SetPerspective(55.0, aspect, 0.001f, 1000.f);
//gfxQ->clearTarget(false, true);
m_vm.m_partGen->Render();
/*
m_vm.m_lineRenderer->Reset();
m_vm.m_lineRenderer->AddVertex({-0.5f, 0.f, -0.5f}, Zeus::CColor::skBlue, 1.f);
m_vm.m_lineRenderer->AddVertex({-0.5f, 0.f, 0.5f}, Zeus::CColor::skBlue, 1.f);
m_vm.m_lineRenderer->AddVertex({0.5f, 10.f, 0.5f}, Zeus::CColor::skRed, 3.f);
m_vm.m_lineRenderer->AddVertex({0.5f, 0.f, -0.5f}, Zeus::CColor::skBlue, 1.f);
m_vm.m_lineRenderer->Render();
*/
}
}
2016-01-10 18:17:08 -08:00
Specter::View* ViewManager::BuildSpaceViews()
{
2016-01-10 18:17:08 -08:00
m_rootSpaceView = m_rootSpace->buildSpaceView(m_viewResources);
2016-01-04 16:01:02 -08:00
return m_rootSpaceView;
}
2016-01-04 16:01:02 -08:00
Specter::RootView* ViewManager::SetupRootView()
{
m_rootView.reset(new Specter::RootView(*this, m_viewResources, m_mainWindow.get()));
2015-12-12 18:27:34 -08:00
m_rootView->setBackground(Zeus::CColor::skBlack);
2016-01-04 16:01:02 -08:00
return m_rootView.get();
2015-12-12 18:27:34 -08:00
}
2016-01-04 16:01:02 -08:00
SplashScreen* ViewManager::SetupSplashView()
2015-12-12 18:27:34 -08:00
{
m_splash.reset(new SplashScreen(*this, m_viewResources));
2016-01-04 16:01:02 -08:00
if (!m_showSplash)
m_splash->close(true);
return m_splash.get();
2015-12-12 18:27:34 -08:00
}
2016-01-10 18:17:08 -08:00
void ViewManager::RootSpaceViewBuilt(Specter::View *view)
{
std::vector<Specter::View*>& cViews = m_rootView->accessContentViews();
cViews.clear();
cViews.push_back(view);
cViews.push_back(m_splash.get());
m_rootView->updateSize();
}
2015-12-12 18:27:34 -08:00
void ViewManager::SetupEditorView()
{
m_rootSpace.reset(new RootSpace(*this));
2016-01-10 18:17:08 -08:00
SplitSpace* split = new SplitSpace(*this, nullptr, Specter::SplitView::Axis::Horizontal);
m_rootSpace->setChild(std::unique_ptr<Space>(split));
split->setChildSlot(0, std::make_unique<ResourceBrowser>(*this, split));
split->setChildSlot(1, std::make_unique<ResourceBrowser>(*this, split));
2016-01-04 16:01:02 -08:00
2016-01-10 18:17:08 -08:00
BuildSpaceViews();
2016-01-03 21:31:02 -08:00
}
2016-01-04 16:01:02 -08:00
void ViewManager::SetupEditorView(ConfigReader& r)
2016-01-03 21:31:02 -08:00
{
m_rootSpace.reset(Space::NewRootSpaceFromConfigStream(*this, r));
2016-01-10 18:17:08 -08:00
BuildSpaceViews();
2016-01-04 16:01:02 -08:00
}
void ViewManager::SaveEditorView(ConfigWriter& w)
{
if (!m_rootSpace)
return;
m_rootSpace->saveState(w);
}
void ViewManager::DismissSplash()
{
if (!m_showSplash)
return;
2016-01-03 21:31:02 -08:00
m_showSplash = false;
2016-01-04 16:01:02 -08:00
m_splash->close();
}
2015-12-12 18:27:34 -08:00
ViewManager::ViewManager(HECL::Runtime::FileStoreManager& fileMgr, HECL::CVarManager& cvarMgr)
2016-01-03 21:31:02 -08:00
: m_fileStoreManager(fileMgr), m_cvarManager(cvarMgr), m_projManager(*this),
2016-01-15 19:58:11 -08:00
m_fontCache(fileMgr), m_translator(URDE::SystemLocaleOrEnglish()),
m_recentProjectsPath(HECL::SysFormat(_S("%s/recent_projects.txt"), fileMgr.getStoreRoot().c_str())),
m_recentFilesPath(HECL::SysFormat(_S("%s/recent_files.txt"), fileMgr.getStoreRoot().c_str()))
{
2016-02-01 12:04:55 -08:00
Space::SpaceMenuNode::InitializeStrings(*this);
2016-01-15 19:58:11 -08:00
char path[2048];
HECL::Sstat theStat;
FILE* fp = HECL::Fopen(m_recentProjectsPath.c_str(), _S("r"), HECL::FileLockType::Read);
if (fp)
{
while (fgets(path, 2048, fp))
{
std::string pathStr(path);
pathStr.pop_back();
HECL::SystemStringView pathStrView(pathStr);
if (!HECL::Stat(pathStrView.c_str(), &theStat) && S_ISDIR(theStat.st_mode))
m_recentProjects.push_back(pathStrView);
}
fclose(fp);
}
fp = HECL::Fopen(m_recentFilesPath.c_str(), _S("r"), HECL::FileLockType::Read);
if (fp)
{
while (fgets(path, 2048, fp))
{
std::string pathStr(path);
pathStr.pop_back();
HECL::SystemStringView pathStrView(pathStr);
if (!HECL::Stat(pathStrView.c_str(), &theStat) && S_ISDIR(theStat.st_mode))
m_recentFiles.push_back(pathStrView);
}
fclose(fp);
}
}
2015-12-12 18:27:34 -08:00
ViewManager::~ViewManager() {}
2016-01-01 18:27:46 -08:00
void ViewManager::pushRecentProject(const HECL::SystemString& path)
{
2016-01-15 19:58:11 -08:00
for (HECL::SystemString& testPath : m_recentProjects)
{
if (path == testPath)
return;
}
2016-01-01 18:27:46 -08:00
m_recentProjects.push_back(path);
2016-01-15 19:58:11 -08:00
FILE* fp = HECL::Fopen(m_recentProjectsPath.c_str(), _S("w"), HECL::FileLockType::Write);
if (fp)
{
for (HECL::SystemString& pPath : m_recentProjects)
fprintf(fp, "%s\n", HECL::SystemUTF8View(pPath).c_str());
fclose(fp);
}
2016-01-01 18:27:46 -08:00
}
void ViewManager::pushRecentFile(const HECL::SystemString& path)
{
2016-01-15 19:58:11 -08:00
for (HECL::SystemString& testPath : m_recentFiles)
{
if (path == testPath)
return;
}
2016-01-01 18:27:46 -08:00
m_recentFiles.push_back(path);
2016-01-15 19:58:11 -08:00
FILE* fp = HECL::Fopen(m_recentFilesPath.c_str(), _S("w"), HECL::FileLockType::Write);
if (fp)
{
for (HECL::SystemString& pPath : m_recentFiles)
fprintf(fp, "%s\n", HECL::SystemUTF8View(pPath).c_str());
fclose(fp);
}}
2016-01-01 18:27:46 -08:00
void ViewManager::init(boo::IApplication* app)
{
2016-02-23 19:20:07 -08:00
m_mainWindow = std::unique_ptr<boo::IWindow>(app->newWindow(_S("URDE"), 1));
m_mainWindow->showWindow();
m_mainWindow->setWaitCursor(true);
2015-12-12 18:27:34 -08:00
float pixelFactor = 1.0;
boo::IGraphicsDataFactory* gf = m_mainWindow->getMainContextDataFactory();
m_viewResources.init(gf, &m_fontCache, &m_themeData, pixelFactor);
2016-01-18 15:33:23 -08:00
m_iconsToken = InitializeIcons(m_viewResources);
2015-12-12 18:27:34 -08:00
m_viewResources.prepFontCacheAsync(m_mainWindow.get());
2016-01-04 16:01:02 -08:00
Specter::RootView* root = SetupRootView();
m_showSplash = true;
root->accessContentViews().push_back(SetupSplashView());
root->updateSize();
m_mainWindow->setWaitCursor(false);
2016-02-15 21:50:41 -08:00
2016-02-24 18:55:38 -08:00
pshag::CGraphics::InitializeBoo(gf, m_mainWindow->getCommandQueue(), root->renderTex());
2016-02-15 21:50:41 -08:00
pshag::CElementGen::Initialize();
pshag::CLineRenderer::Initialize();
}
bool ViewManager::proc()
{
boo::IGraphicsCommandQueue* gfxQ = m_mainWindow->getCommandQueue();
if (m_rootView->isDestroyed())
return false;
2016-01-04 16:01:02 -08:00
2015-12-08 17:04:50 -08:00
if (m_updatePf)
{
m_viewResources.resetPixelFactor(m_reqPf);
2016-01-04 16:01:02 -08:00
Specter::RootView* root = SetupRootView();
if (m_rootSpace)
2016-01-10 18:17:08 -08:00
BuildSpaceViews();
else
{
std::vector<Specter::View*>& cViews = m_rootView->accessContentViews();
cViews.push_back(SetupSplashView());
}
2016-01-04 16:01:02 -08:00
root->updateSize();
2015-12-08 17:04:50 -08:00
m_updatePf = false;
}
2016-01-04 16:01:02 -08:00
m_rootView->dispatchEvents();
2016-01-30 17:08:31 -08:00
m_rootView->internalThink();
2016-01-04 16:01:02 -08:00
if (m_rootSpace)
m_rootSpace->think();
if (m_splash)
2015-12-12 18:27:34 -08:00
m_splash->think();
2016-01-04 16:01:02 -08:00
2016-01-10 18:17:08 -08:00
if (m_deferSplit)
{
2016-01-11 16:46:27 -08:00
SplitSpace* ss = static_cast<SplitSpace*>(m_deferSplit->spaceSplit(m_deferSplitAxis, m_deferSplitThisSlot));
m_rootView->startSplitDrag(ss->splitView(), m_deferSplitCoord);
2016-01-10 18:17:08 -08:00
m_deferSplit = nullptr;
}
2016-01-04 16:01:02 -08:00
++m_editorFrames;
if (m_rootSpaceView && m_editorFrames <= 30)
m_rootSpaceView->setMultiplyColor(Zeus::CColor::lerp({1,1,1,0}, {1,1,1,1}, m_editorFrames / 30.0));
m_rootView->draw(gfxQ);
gfxQ->execute();
m_mainWindow->waitForRetrace();
return true;
}
void ViewManager::stop()
{
2016-02-16 11:42:24 -08:00
pshag::CElementGen::Shutdown();
pshag::CLineRenderer::Shutdown();
2016-02-24 13:21:09 -08:00
m_iconsToken.doDestroy();
m_viewResources.destroyResData();
m_fontCache.destroyAtlases();
m_mainWindow->getCommandQueue()->stopRenderer();
}
}