pingus-cvs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Pingus-CVS] CVS: Games/Pingus/src/worldmap dot.cxx,1.4,1.5 level_dot.cx


From: grumbel
Subject: [Pingus-CVS] CVS: Games/Pingus/src/worldmap dot.cxx,1.4,1.5 level_dot.cxx,1.6,1.7 path_graph.cxx,1.17,1.18worldmap.cxx,1.28,1.29
Date: 18 Feb 2003 11:28:43 -0000

Update of /usr/local/cvsroot/Games/Pingus/src/worldmap
In directory dark:/tmp/cvs-serv12787/worldmap

Modified Files:
        dot.cxx level_dot.cxx path_graph.cxx worldmap.cxx 
Log Message:
removed a bunch of not so usefull output messages


Index: dot.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/dot.cxx,v
retrieving revision 1.4
retrieving revision 1.5
diff -u -d -r1.4 -r1.5
--- dot.cxx     18 Feb 2003 10:31:32 -0000      1.4
+++ dot.cxx     18 Feb 2003 11:28:41 -0000      1.5
@@ -28,7 +28,7 @@
 {
   assert(cur);
 
-  std::cout << "Dot::Dot: " << cur->name << std::endl;
+  //std::cout << "Dot::Dot: " << cur->name << std::endl;
 
   // cur = <dot>...</dot>
 

Index: level_dot.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/level_dot.cxx,v
retrieving revision 1.6
retrieving revision 1.7
diff -u -d -r1.6 -r1.7
--- level_dot.cxx       27 Nov 2002 20:05:42 -0000      1.6
+++ level_dot.cxx       18 Feb 2003 11:28:41 -0000      1.7
@@ -52,12 +52,8 @@
       if (XMLhelper::equal_str(cur->name, "levelname"))
         {
           levelname = XMLhelper::parse_string(doc, cur);
-          std::cout << "Levelname: " << levelname << std::endl;         
+          //std::cout << "Levelname: " << levelname << std::endl;         
           plf = PLF::create(path_manager.complete("levels/") + levelname);
-        }
-      else
-        {
-          std::cout << "92834Unknown: " << cur->name  << std::endl;
         }
       
       cur = cur->next;

Index: path_graph.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/path_graph.cxx,v
retrieving revision 1.17
retrieving revision 1.18
diff -u -d -r1.17 -r1.18
--- path_graph.cxx      3 Nov 2002 23:31:35 -0000       1.17
+++ path_graph.cxx      18 Feb 2003 11:28:41 -0000      1.18
@@ -76,7 +76,7 @@
   
   while (cur)
     {
-      std::cout << "parsing nodes" << std::endl;
+      //std::cout << "parsing nodes" << std::endl;
 
       Dot* dot = DotFactory::create(doc, cur);
       if (dot)
@@ -84,7 +84,7 @@
           // add the dot to the pathfinding
           NodeId id = graph.add_node(dot);
 
-          std::cout << "Adding to lookup table: " << dot->get_name() << 
std::endl;
+          //std::cout << "Adding to lookup table: " << dot->get_name() << 
std::endl;
           node_lookup[dot->get_name()] = id;
 
           // add the dot to the list of drawables

Index: worldmap.cxx
===================================================================
RCS file: /usr/local/cvsroot/Games/Pingus/src/worldmap/worldmap.cxx,v
retrieving revision 1.28
retrieving revision 1.29
diff -u -d -r1.28 -r1.29
--- worldmap.cxx        27 Nov 2002 20:05:42 -0000      1.28
+++ worldmap.cxx        18 Feb 2003 11:28:41 -0000      1.29
@@ -49,6 +49,7 @@
 {
   bool operator()(Drawable* a, Drawable* b)
   {
+    std::cout << "a: " << a << " b: " << b << std::endl;
     return a->get_z_pos() < b->get_z_pos();
   }
 };
@@ -72,6 +73,7 @@
   parse_file(doc, cur);
 
   pingus = new Pingus(path_graph);
+  std::cout << "PingusPtr: " << pingus << std::endl;
   // FIXME: This should not be hardcoded, but instead be noted in the
   // savegame or worldmap
   pingus->set_position(0);





reply via email to

[Prev in Thread] Current Thread [Next in Thread]