]> Dogcows Code - chaz/yoink/blobdiff - src/moof/application.hh
fixed documentation about where to find licenses
[chaz/yoink] / src / moof / application.hh
index 671011f140ba8b5258cef440b7d4c47a3623146f..e96198770c56b6c184d51c75fe0a829475c59938 100644 (file)
@@ -1,61 +1,59 @@
 
-/*]  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 _MOOF_APPLICATION_HH_
 #define _MOOF_APPLICATION_HH_
 
-/**
- * \file application.hh
- * The main loop.
- */
-
-#include <boost/noncopyable.hpp>
-
 #include <moof/event.hh>
 #include <moof/math.hh>
 #include <moof/runloop.hh>
+#include <moof/thread.hh>
 #include <moof/timer.hh>
 
 
+/**
+ * \file application.hh
+ * The main loop.
+ */
+
 namespace moof {
 
 
+// forward declarations
 class settings;
 
 class application : public runloop
 {
 public:
 
-       application(settings& settings);
+       explicit application(settings& settings);
        virtual ~application() {}
 
        virtual void update(scalar t, scalar dt) = 0;
        virtual void draw(scalar alpha) const = 0;
        virtual void handle_event(const event& event) = 0;
 
-
 private:
 
        void dispatch_update(timer& timer, scalar t);
        void dispatch_draw(timer& timer, scalar t);
 
-       scalar  next_update_;
-       scalar  total_time_;
-
-       timer   update_timer_;
-       timer   draw_timer_;
+       scalar          last_update_;
+       scalar          last_draw_;
+       scalar          accum_;
+       game_time       game_time_;
 
+       timer           update_timer_;
+       timer           draw_timer_;
 
-       scalar  timestep_;
-       scalar  inverse_timestep_;
+       scalar          timestep_;
+       scalar          inverse_timestep_;
 };
 
 
This page took 0.022465 seconds and 4 git commands to generate.