X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMain.hh;h=4532e41ea2e3b4a409513fea1b30df1d9ab76a64;hp=0a3c616a685a4774a4cde93561ad0e4741a2b134;hb=6f1b787a10d8ab1a3117a4b8c004dd2d90599608;hpb=c143f7e806766a73cd69dc6e084e977641019ce6 diff --git a/src/Main.hh b/src/Main.hh index 0a3c616..4532e41 100644 --- a/src/Main.hh +++ b/src/Main.hh @@ -24,6 +24,7 @@ #include #include +#include #include @@ -47,20 +48,23 @@ public: 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(); - moof::dispatcher::handle mNewContextDispatch; + static void print_option(const std::string& option, bool enabled); + + moof::dispatcher::handle video_reloaded_; + moof::timer hotload_timer_; };