mirror of https://github.com/AxioDL/metaforce.git
122 lines
4.9 KiB
C++
122 lines
4.9 KiB
C++
#ifndef RUDE_SPLASH_SCREEN_HPP
|
|
#define RUDE_SPLASH_SCREEN_HPP
|
|
|
|
#include <Specter/View.hpp>
|
|
#include <Specter/ModalWindow.hpp>
|
|
#include <Specter/MultiLineTextView.hpp>
|
|
#include <Specter/FileBrowser.hpp>
|
|
#include "ViewManager.hpp"
|
|
|
|
namespace RUDE
|
|
{
|
|
static LogVisor::LogModule Log("Specter::SplashScreen");
|
|
|
|
class SplashScreen : public Specter::ModalWindow
|
|
{
|
|
ViewManager& m_vm;
|
|
|
|
Zeus::CColor m_textColor;
|
|
Zeus::CColor m_textColorClear;
|
|
|
|
std::unique_ptr<Specter::TextView> m_title;
|
|
std::string m_buildInfoStr;
|
|
std::unique_ptr<Specter::MultiLineTextView> m_buildInfo;
|
|
|
|
std::string m_newString;
|
|
Specter::ViewChild<std::unique_ptr<Specter::Button>> m_newButt;
|
|
std::string m_openString;
|
|
Specter::ViewChild<std::unique_ptr<Specter::Button>> m_openButt;
|
|
std::string m_extractString;
|
|
Specter::ViewChild<std::unique_ptr<Specter::Button>> m_extractButt;
|
|
|
|
Specter::ViewChild<std::unique_ptr<Specter::FileBrowser>> m_fileBrowser;
|
|
|
|
struct NewProjBinding : Specter::IButtonBinding
|
|
{
|
|
SplashScreen& m_splash;
|
|
NewProjBinding(SplashScreen& splash) : m_splash(splash) {}
|
|
const char* name() const {return m_splash.m_newString.c_str();}
|
|
const char* help() const {return "Creates an empty project at selected path";}
|
|
void activated(const boo::SWindowCoord& coord)
|
|
{
|
|
m_splash.m_fileBrowser.m_view.reset(
|
|
new Specter::FileBrowser(m_splash.rootView().viewRes(),
|
|
m_splash, m_splash.m_newString,
|
|
Specter::FileBrowser::Type::SaveFile,
|
|
[](bool, const HECL::SystemString& path)
|
|
{
|
|
Log.report(LogVisor::Info, _S("Making project '%s'"), path.c_str());
|
|
}));
|
|
m_splash.updateSize();
|
|
m_splash.m_newButt.mouseLeave(coord);
|
|
}
|
|
} m_newProjBind;
|
|
|
|
struct OpenProjBinding : Specter::IButtonBinding
|
|
{
|
|
SplashScreen& m_splash;
|
|
OpenProjBinding(SplashScreen& splash) : m_splash(splash) {}
|
|
const char* name() const {return m_splash.m_openString.c_str();}
|
|
const char* help() const {return "Opens an existing project at selected path";}
|
|
void activated(const boo::SWindowCoord& coord)
|
|
{
|
|
m_splash.m_fileBrowser.m_view.reset(
|
|
new Specter::FileBrowser(m_splash.rootView().viewRes(),
|
|
m_splash, m_splash.m_openString,
|
|
Specter::FileBrowser::Type::OpenHECLProject,
|
|
[](bool, const HECL::SystemString& path)
|
|
{
|
|
Log.report(LogVisor::Info, _S("Opening project '%s'"), path.c_str());
|
|
}));
|
|
m_splash.updateSize();
|
|
m_splash.m_openButt.mouseLeave(coord);
|
|
}
|
|
} m_openProjBind;
|
|
|
|
struct ExtractProjBinding : Specter::IButtonBinding
|
|
{
|
|
SplashScreen& m_splash;
|
|
ExtractProjBinding(SplashScreen& splash) : m_splash(splash) {}
|
|
const char* name() const {return m_splash.m_extractString.c_str();}
|
|
const char* help() const {return "Extracts game image as project at selected path";}
|
|
void activated(const boo::SWindowCoord& coord)
|
|
{
|
|
m_splash.m_fileBrowser.m_view.reset(
|
|
new Specter::FileBrowser(m_splash.rootView().viewRes(),
|
|
m_splash, m_splash.m_extractString,
|
|
Specter::FileBrowser::Type::OpenFile,
|
|
[](bool, const HECL::SystemString& path)
|
|
{
|
|
Log.report(LogVisor::Info, _S("Extracting game '%s'"), path.c_str());
|
|
}));
|
|
m_splash.updateSize();
|
|
m_splash.m_extractButt.mouseLeave(coord);
|
|
}
|
|
} m_extractProjBind;
|
|
|
|
public:
|
|
SplashScreen(ViewManager& vm, Specter::ViewResources& res);
|
|
void think();
|
|
void updateContentOpacity(float opacity);
|
|
|
|
void mouseDown(const boo::SWindowCoord&, boo::EMouseButton, boo::EModifierKey);
|
|
void mouseUp(const boo::SWindowCoord&, boo::EMouseButton, boo::EModifierKey);
|
|
void mouseMove(const boo::SWindowCoord&);
|
|
void mouseEnter(const boo::SWindowCoord&);
|
|
void mouseLeave(const boo::SWindowCoord&);
|
|
void scroll(const boo::SWindowCoord&, const boo::SScrollDelta&);
|
|
void touchDown(const boo::STouchCoord&, uintptr_t);
|
|
void touchUp(const boo::STouchCoord&, uintptr_t);
|
|
void touchMove(const boo::STouchCoord&, uintptr_t);
|
|
void charKeyDown(unsigned long, boo::EModifierKey, bool);
|
|
void specialKeyDown(boo::ESpecialKey, boo::EModifierKey, bool);
|
|
|
|
void resized(const boo::SWindowRect& root, const boo::SWindowRect& sub);
|
|
void draw(boo::IGraphicsCommandQueue* gfxQ);
|
|
};
|
|
|
|
}
|
|
|
|
|
|
#endif // RUDE_SPLASH_SCREEN_HPP
|