X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMain.hh;h=4532e41ea2e3b4a409513fea1b30df1d9ab76a64;hp=b6a6684aa46ffa4db559b1aaeefe96a427ccefa8;hb=6f1b787a10d8ab1a3117a4b8c004dd2d90599608;hpb=90b2c7fb10b244b781b84965a0d36f1f323ee94d diff --git a/src/Main.hh b/src/Main.hh index b6a6684..4532e41 100644 --- a/src/Main.hh +++ b/src/Main.hh @@ -13,7 +13,7 @@ #define _MAIN_HH_ /** - * @file Main.hh + * \file Main.hh * This is where all the fun begins. */ @@ -22,45 +22,49 @@ #include -#include -#include -#include +#include +#include +#include +#include -namespace Mf +namespace moof { - class Settings; - class View; + class settings; + class view; } class Main; typedef boost::shared_ptr
MainP; -class Main : public Mf::View +class Main : public moof::view { public: - Main(Mf::Settings& settings, Mf::Video& video); + Main(moof::settings& settings, moof::video& video); - void update(Mf::Scalar t, Mf::Scalar dt); - void draw(Mf::Scalar alpha) const; - bool handleEvent(const Mf::Event& event); + void update(moof::scalar t, moof::scalar dt); + void draw(moof::scalar alpha) const; + bool handle_event(const moof::event& event); - static std::string getSearchPath(); - static std::string getConfigPath(); + static std::string search_paths(); + static std::string config_paths(); - static void printUsage(); - static void printInfo(int argc, char* argv[]); + static void print_usage(); + static void print_info(int argc, char* argv[]); private: /** * Set OpenGL to a state we can know and depend on. */ - static void setupGL(); + static void setup_opengl(); - Mf::Dispatch::Handle mNewContextDispatch; + static void print_option(const std::string& option, bool enabled); + + moof::dispatcher::handle video_reloaded_; + moof::timer hotload_timer_; };