Forward declarations stink / Path is now serializable / Forward declarations stink
authorChristoph Sommer <mail@christoph-sommer.de>
Thu, 23 Mar 2006 23:47:04 +0000 (23:47 +0000)
committerChristoph Sommer <mail@christoph-sommer.de>
Thu, 23 Mar 2006 23:47:04 +0000 (23:47 +0000)
SVN-Revision: 3114

src/object/path.cpp
src/object/path.hpp
src/serializable.hpp

index be234d7..e982647 100644 (file)
@@ -161,6 +161,29 @@ Path::draw(DrawingContext& )
   // TODO: Add a visible flag, draw the path if true
 }
 
+void
+Path::write(lisp::Writer& writer)
+{
+  writer.start_list("path");
+
+  writer.write_string("name", name);
+  writer.write_bool("circular", circular);
+  writer.write_bool("forward", forward);
+
+  for (int i=0; i < (int)pathNodes.size(); i++) {
+    PathNode node = pathNodes[i];
+
+    writer.start_list("node");
+    writer.write_float("x", node.position.x);
+    writer.write_float("y", node.position.y);
+    writer.write_float("time", node.time);
+
+    writer.end_list("node");
+  }
+
+  writer.end_list("path");
+}
+
 const Vector&
 Path::GetPosition() {
   return position;
index 68a1161..f04623b 100644 (file)
@@ -28,6 +28,7 @@
 #include "math/vector.hpp"
 #include "game_object.hpp"
 #include "lisp/lisp.hpp"
+#include "serializable.hpp"
 
 
 /**
@@ -44,7 +45,7 @@ public:
 /**
  * Path an object can travel along. Made up of multiple nodes of type PathNode.
  */
-class Path : public GameObject
+class Path : public GameObject, public Serializable
 {
 public:
   Path(const lisp::Lisp& reader);
@@ -53,6 +54,8 @@ public:
   virtual void update(float elapsed_time);
   virtual void draw(DrawingContext& context);
 
+  virtual void write(lisp::Writer& writer);
+
   const Vector& GetPosition();
   const Vector& GetLastMovement();
 
index 06a8234..6534db1 100644 (file)
@@ -19,9 +19,7 @@
 #ifndef SUPERTUX_SERIALIZABLE_H
 #define SUPERTUX_SERIALIZABLE_H
 
-namespace lisp {
-class Writer;
-}
+#include "lisp/writer.hpp"
 
 class Serializable
 {