X-Git-Url: https://git.verplant.org/?a=blobdiff_plain;f=src%2Ftile.hpp;h=fd1f69a63a944305f3c4dd34f21e30208b3936be;hb=7a6f00e27bdc0aac2107506c3b00cbf0bf1cccc5;hp=c03154f8e6972e69926c9fe5761d2d4304301d98;hpb=a113d3bd1feddd510e3b2852b0d42522735eee40;p=supertux.git diff --git a/src/tile.hpp b/src/tile.hpp index c03154f8e..fd1f69a63 100644 --- a/src/tile.hpp +++ b/src/tile.hpp @@ -26,8 +26,10 @@ #include #include "video/surface.hpp" #include "math/rect.hpp" -#include "lisp/lisp.hpp" +namespace lisp { class Lisp; } + +class TileSet; class DrawingContext; /** @@ -65,6 +67,8 @@ public: WATER = 0x0200, /** a tile that hurts the player if he touches it */ HURTS = 0x0400, + /** for lava: WATER, HURTS, FIRE */ + FIRE = 0x0800 }; /// worldmap flags @@ -73,6 +77,7 @@ public: WORLDMAP_SOUTH = 0x0002, WORLDMAP_EAST = 0x0004, WORLDMAP_WEST = 0x0008, + WORLDMAP_DIR_MASK = 0x000f, WORLDMAP_STOP = 0x0010, @@ -94,10 +99,9 @@ public: }; private: - unsigned int id; - + const TileSet *tileset; std::vector imagespecs; - std::vector images; + std::vector images; /// tile attributes uint32_t attributes; @@ -113,9 +117,6 @@ public: /** Draw a tile on the screen */ void draw(DrawingContext& context, const Vector& pos, int z_pos) const; - unsigned int getID() const - { return id; } - uint32_t getAttributes() const { return attributes; } @@ -139,14 +140,14 @@ public: } protected: - friend class TileManager; - Tile(); - Tile(unsigned int id, Uint32 attributes, const ImageSpec& imagespec); + friend class TileSet; + Tile(const TileSet *tileset); + Tile(const TileSet *tileset, Uint32 attributes, const ImageSpec& imagespec); - void load_images(const std::string& tilesetpath); + void load_images(); /// parses the tile and returns it's id number - void parse(const lisp::Lisp& reader); + uint32_t parse(const lisp::Lisp& reader); void parse_images(const lisp::Lisp& cur); };