]> Dogcows Code - chaz/yoink/blobdiff - src/Character.hh
house-keeping
[chaz/yoink] / src / Character.hh
index 19559f38b0f54be1643f31fc29f2949323be977b..28e588b627da8ccc0b45b49dc80cbac1b37fc258 100644 (file)
 
 #include <boost/shared_ptr.hpp>
 
+#include <Moof/Aabb.hh>
 #include <Moof/Entity.hh>
 #include <Moof/Math.hh>
-#include <Moof/RK4.hh>
+#include <Moof/Octree.hh>
+#include <Moof/RigidBody.hh>
+#include <Moof/Sphere.hh>
 
 #include "Animation.hh"
 #include "Tilemap.hh"
 
 
 
-struct Character;
+class Character;
 typedef boost::shared_ptr<Character> CharacterP;
 
 
@@ -49,12 +52,8 @@ typedef boost::shared_ptr<Character> CharacterP;
  * includes the heroine herself and the bad guys.
  */
 
-struct Character : public Mf::Entity
+class Character : public Mf::RigidBody2, public Mf::OctreeInsertable
 {
-protected:
-
-       Mf::Vector2 userForce;
-
 public:
 
        Character(const std::string& name);
@@ -63,9 +62,20 @@ public:
        virtual void update(Mf::Scalar t, Mf::Scalar dt);
        virtual void draw(Mf::Scalar alpha) const;
 
+       void setZCoord(Mf::Scalar z);
+
+       void addImpulse(Mf::Vector2 impulse);
+       void addForce(Mf::Vector2 force);
+       void setPosition(Mf::Vector2 position);
+
+       virtual int getOctant(const Mf::Aabb& aabb) const;
 
        Tilemap         tilemap;
        Animation       animation;
+
+private:
+
+       mutable Mf::Scalar mZCoord;
 };
 
 
This page took 0.018948 seconds and 4 git commands to generate.