2015-12-06 01:27:02 +00:00
|
|
|
#ifndef RUDE_VIEW_MANAGER_HPP
|
|
|
|
#define RUDE_VIEW_MANAGER_HPP
|
|
|
|
|
|
|
|
#include <HECL/CVarManager.hpp>
|
2015-12-11 02:37:54 +00:00
|
|
|
#include "Space.hpp"
|
2015-12-06 01:27:02 +00:00
|
|
|
|
|
|
|
namespace RUDE
|
|
|
|
{
|
2015-12-13 02:27:34 +00:00
|
|
|
class SplashScreen;
|
2015-12-06 01:27:02 +00:00
|
|
|
|
|
|
|
class ViewManager : Specter::IViewManager
|
|
|
|
{
|
|
|
|
HECL::CVarManager& m_cvarManager;
|
|
|
|
Specter::FontCache m_fontCache;
|
|
|
|
Specter::ViewResources m_viewResources;
|
|
|
|
std::unique_ptr<boo::IWindow> m_mainWindow;
|
|
|
|
std::unique_ptr<Specter::RootView> m_rootView;
|
2015-12-13 02:27:34 +00:00
|
|
|
std::unique_ptr<SplashScreen> m_splash;
|
2015-12-08 04:27:35 +00:00
|
|
|
|
2015-12-08 01:49:54 +00:00
|
|
|
HECL::CVar* m_cvPixelFactor;
|
2015-12-09 01:04:50 +00:00
|
|
|
|
|
|
|
bool m_updatePf = false;
|
|
|
|
float m_reqPf;
|
2015-12-06 01:27:02 +00:00
|
|
|
|
2015-12-12 00:37:32 +00:00
|
|
|
Specter::View* BuildSpaceViews(RUDE::Space* space);
|
2015-12-06 01:27:02 +00:00
|
|
|
void SetupRootView();
|
2015-12-13 02:27:34 +00:00
|
|
|
void SetupSplashView();
|
|
|
|
void SetupEditorView();
|
|
|
|
|
|
|
|
bool m_showSplash = false;
|
2015-12-06 01:27:02 +00:00
|
|
|
public:
|
2015-12-10 03:16:29 +00:00
|
|
|
struct SetTo1 : Specter::IButtonBinding
|
|
|
|
{
|
|
|
|
ViewManager& m_vm;
|
|
|
|
std::string m_name = "SetTo1";
|
|
|
|
std::string m_help = "Sets scale factor to 1.0";
|
|
|
|
SetTo1(ViewManager& vm) : m_vm(vm) {}
|
|
|
|
|
|
|
|
const std::string& name() const {return m_name;}
|
|
|
|
const std::string& help() const {return m_help;}
|
|
|
|
void pressed(const boo::SWindowCoord& coord)
|
|
|
|
{
|
|
|
|
m_vm.RequestPixelFactor(1.0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
SetTo1 m_setTo1;
|
|
|
|
|
|
|
|
struct SetTo2 : Specter::IButtonBinding
|
|
|
|
{
|
|
|
|
ViewManager& m_vm;
|
|
|
|
std::string m_name = "SetTo2";
|
|
|
|
std::string m_help = "Sets scale factor to 2.0";
|
|
|
|
SetTo2(ViewManager& vm) : m_vm(vm) {}
|
|
|
|
|
|
|
|
const std::string& name() const {return m_name;}
|
|
|
|
const std::string& help() const {return m_help;}
|
|
|
|
void pressed(const boo::SWindowCoord& coord)
|
|
|
|
{
|
|
|
|
m_vm.RequestPixelFactor(2.0);
|
|
|
|
}
|
|
|
|
};
|
|
|
|
SetTo2 m_setTo2;
|
2015-12-12 00:37:32 +00:00
|
|
|
|
|
|
|
SplitSpace m_split;
|
|
|
|
TestSpace m_space1;
|
|
|
|
TestSpace m_space2;
|
|
|
|
|
2015-12-13 02:27:34 +00:00
|
|
|
ViewManager(HECL::Runtime::FileStoreManager& fileMgr, HECL::CVarManager& cvarMgr);
|
|
|
|
~ViewManager();
|
2015-12-12 00:37:32 +00:00
|
|
|
|
|
|
|
Specter::RootView& rootView() const {return *m_rootView;}
|
|
|
|
void RequestPixelFactor(float pf)
|
|
|
|
{
|
|
|
|
m_reqPf = pf;
|
|
|
|
m_updatePf = true;
|
|
|
|
}
|
|
|
|
|
|
|
|
void init(boo::IApplication* app);
|
|
|
|
bool proc();
|
|
|
|
void stop();
|
2015-12-06 01:27:02 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
#endif // RUDE_VIEW_MANAGER_HPP
|