X-Git-Url: https://git.dogcows.com/gitweb?p=chaz%2Fyoink;a=blobdiff_plain;f=src%2FMain.hh;h=65ad901ccf700a8bb1d1a59cfae0609e27e50f71;hp=91a4b4c3d2701922db35fde2f1e01fa29d81e70e;hb=574af38ed616d1adfa5e6ce35f67cda1f707f89d;hpb=837bae9f2bf7b25e1d3d2625eeaf39c1d2f48827 diff --git a/src/Main.hh b/src/Main.hh index 91a4b4c..65ad901 100644 --- a/src/Main.hh +++ b/src/Main.hh @@ -1,19 +1,17 @@ -/*] Copyright (c) 2009-2010, Charles McGarvey [************************** +/*] Copyright (c) 2009-2011, Charles McGarvey [***************************** **] All rights reserved. * -* vi:ts=4 sw=4 tw=75 -* * Distributable under the terms and conditions of the 2-clause BSD license; * see the file COPYING for a complete text of the license. * -**************************************************************************/ +*****************************************************************************/ #ifndef _MAIN_HH_ #define _MAIN_HH_ /** - * @file Main.hh + * \file Main.hh * This is where all the fun begins. */ @@ -22,46 +20,41 @@ #include -#include -#include -#include +#include +#include +#include +#include +#include "yoink.hh" -class Main; -typedef boost::shared_ptr
MainP; -class Main : public Mf::Layer +class Main : public moof::application { public: - Main(); - - static MainP alloc() - { - return MainP(new Main); - } + explicit Main(moof::settings& settings); - void addedToCore(); + void update(moof::scalar t, moof::scalar dt); + void draw(moof::scalar alpha) const; + void handle_event(const moof::event& event); - void update(Mf::Scalar t, Mf::Scalar dt); - void draw(Mf::Scalar alpha) const; - bool handleEvent(const Mf::Event& event); + static std::string search_paths(); + static std::string config_paths(); - static std::string getSearchPath(); - static std::string getConfigPath(); - - 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 contextCreated(); + static void setup_opengl(); + + moof::dispatcher::handle video_reloaded_; + moof::timer hotload_timer_; - Mf::Dispatch::Handler mDispatchHandler; + ::yoink yoink; };