Got rid of some friend'ship, reducing some access of private member variables
authorgrumbel <grumbel@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sun, 6 Dec 2009 00:01:30 +0000 (00:01 +0000)
committergrumbel <grumbel@837edb03-e0f3-0310-88ca-d4d4e8b29345>
Sun, 6 Dec 2009 00:01:30 +0000 (00:01 +0000)
git-svn-id: http://supertux.lethargik.org/svn/supertux/trunk/supertux@6171 837edb03-e0f3-0310-88ca-d4d4e8b29345

src/supertux/tile.cpp
src/supertux/tile.hpp
src/supertux/tile_set.cpp
src/supertux/tile_set.hpp

index 01cdff0..8ce0755 100644 (file)
@@ -156,24 +156,27 @@ Tile::parse_images(const Reader& images_lisp)
 void
 Tile::load_images()
 {
-  const std::string& tiles_path = tileset->tiles_path;
-
-  assert(images.size() == 0);
-  for(std::vector<ImageSpec>::iterator i = imagespecs.begin(); i !=
-        imagespecs.end(); ++i) {
-    const ImageSpec& spec = *i;
-    Surface* surface;
-    std::string file = tiles_path + spec.file;
-    if(spec.rect.get_width() <= 0) {
-      surface = new Surface(file);
-    } else {
-      surface = new Surface(file,
-                            (int) spec.rect.p1.x,
-                            (int) spec.rect.p1.y,
-                            (int) spec.rect.get_width(),
-                            (int) spec.rect.get_height());
+  if(images.size() == 0 && imagespecs.size() != 0)
+  {
+    const std::string& tiles_path = tileset->tiles_path;
+
+    assert(images.size() == 0);
+    for(std::vector<ImageSpec>::iterator i = imagespecs.begin(); i !=
+          imagespecs.end(); ++i) {
+      const ImageSpec& spec = *i;
+      Surface* surface;
+      std::string file = tiles_path + spec.file;
+      if(spec.rect.get_width() <= 0) {
+        surface = new Surface(file);
+      } else {
+        surface = new Surface(file,
+                              (int) spec.rect.p1.x,
+                              (int) spec.rect.p1.y,
+                              (int) spec.rect.get_width(),
+                              (int) spec.rect.get_height());
+      }
+      images.push_back(surface);
     }
-    images.push_back(surface);
   }
 }
 
@@ -188,7 +191,8 @@ Tile::draw(DrawingContext& context, const Vector& pos, int z_pos) const
   }
 }
 
-void Tile::correct_attributes()
+void
+Tile::correct_attributes()
 {
   //Fix little oddities in attributes (not many, currently...)
   if(!(attributes & SOLID) && (attributes & SLOPE || attributes & UNISOLID)) {
@@ -198,4 +202,14 @@ void Tile::correct_attributes()
   }
 }
 
+void
+Tile::print_debug(int id) const
+{
+  log_debug << " Tile: id " << id << ", data " << getData() << ", attributes " << getAttributes() << ":" << std::endl;
+  for(std::vector<Tile::ImageSpec>::const_iterator im = imagespecs.begin(); im != imagespecs.end(); ++im) 
+  {
+    log_debug << "  Imagespec: file " << im->file << "; rect " << im->rect << std::endl;
+  }
+}
+
 /* EOF */
index 3e13d9b..6463631 100644 (file)
@@ -108,8 +108,14 @@ private:
   float anim_fps;
 
 public:
+  Tile(const TileSet* tileset);
+  Tile(const TileSet* tileset, std::vector<std::string> images, Rect rect,
+       uint32_t attributes, uint32_t data, float animfps);
   ~Tile();
 
+  /** load Surfaces, if not already loaded */
+  void load_images();
+
   /** Draw a tile on the screen */
   void draw(DrawingContext& context, const Vector& pos, int z_pos) const;
 
@@ -123,28 +129,34 @@ public:
   int getWidth() const
   {
     if(!images.size())
+    {
       return 0;
-    return (int) images[0]->get_width();
+    }
+    else
+    {
+      return (int) images[0]->get_width();
+    }
   }
 
   /// returns the height of the tiles in pixels
   int getHeight() const
   {
     if(!images.size())
+    {
       return 0;
-    return (int) images[0]->get_height();
+    }
+    else
+    {
+      return (int) images[0]->get_height();
+    }
   }
 
-protected:
-  friend class TileSet;
-  Tile(const TileSet *tileset);
-  Tile(const TileSet *tileset, std::vector<std::string> images, Rect rect,
-       uint32_t attributes = 0, uint32_t data = 0, float animfps = 1.0);
-
-  void load_images();
-
   /// parses the tile and returns it's id number
   uint32_t parse(const Reader& reader);
+
+  void print_debug(int id) const;
+
+private:
   void parse_images(const Reader& cur);
 
   //Correct small oddities in attributes that naive people
index 48306eb..c816d36 100644 (file)
@@ -172,13 +172,9 @@ TileSet::TileSet(const std::string& filename) :
     log_debug << "Tileset in " << filename << std::endl;
     for(int i = 0; i < int(tiles.size()); ++i)
     {
-      if(tiles[i] == 0)
-        continue;
-      Tile* t = tiles[i];
-      log_debug << " Tile: id " << i << ", data " << t->data << ", attributes " << t->attributes << ":" << std::endl;
-      for(std::vector<Tile::ImageSpec>::iterator im = t->imagespecs.begin(); im !=
-            t->imagespecs.end(); ++im) {
-        log_debug << "  Imagespec: file " << im->file << "; rect " << im->rect << std::endl;
+      if(tiles[i] != 0)
+      {
+        tiles[i]->print_debug(i);
       }
     }
   }
index 467ec68..8c4410e 100644 (file)
@@ -51,8 +51,7 @@ public:
       return tiles[0];
     }
 
-    if(tile->images.size() == 0 && tile->imagespecs.size() != 0)
-      tile->load_images();
+    tile->load_images();
 
     return tile;
   }