#ifndef RUDE_SPLASH_SCREEN_HPP #define RUDE_SPLASH_SCREEN_HPP #include #include #include #include #include "ViewManager.hpp" namespace RUDE { class SplashScreen : public Specter::ModalWindow { ViewManager& m_vm; Zeus::CColor m_textColor; Zeus::CColor m_textColorClear; std::unique_ptr m_title; std::unique_ptr m_buildInfo; Specter::ViewChild> m_newButt; Specter::ViewChild> m_openButt; Specter::ViewChild> m_extractButt; Specter::ViewChild> m_fileBrowser; struct NewProjBinding : Specter::IButtonBinding { SplashScreen& m_splash; NewProjBinding(SplashScreen& splash) : m_splash(splash) {} const char* name() const {return "New Project";} 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, "New Project")); 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 "Open Project";} 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, "Open Project")); 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 "Extract Game";} 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, "Extract Game")); 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 resized(const boo::SWindowRect& root, const boo::SWindowRect& sub); void draw(boo::IGraphicsCommandQueue* gfxQ); }; } #endif // RUDE_SPLASH_SCREEN_HPP