3 // SuperTux - A Jump'n Run
4 // Copyright (C) 2004 Matthias Braun <matze@braunis.de
6 // This program is free software; you can redistribute it and/or
7 // modify it under the terms of the GNU General Public License
8 // as published by the Free Software Foundation; either version 2
9 // of the License, or (at your option) any later version.
11 // This program is distributed in the hope that it will be useful,
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 // GNU General Public License for more details.
16 // You should have received a copy of the GNU General Public License
17 // along with this program; if not, write to the Free Software
18 // Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 #ifndef SUPERTUX_TILEMAP_H
21 #define SUPERTUX_TILEMAP_H
26 #include "game_object.h"
27 #include "serializable.h"
28 #include "math/vector.h"
34 using namespace SuperTux;
41 * This class is reponsible for drawing the level tiles
43 class TileMap : public GameObject, public Serializable
47 TileMap(const lisp::Lisp& reader);
48 TileMap(int layer_, bool solid_, size_t width_, size_t height_);
51 virtual void write(lisp::Writer& writer);
53 virtual void action(float elapsed_time);
54 virtual void draw(DrawingContext& context);
56 void set(int width, int height, const std::vector<unsigned int>& vec,
57 int layer, bool solid);
59 /** resizes the tilemap to a new width and height (tries to not destroy the
62 void resize(int newwidth, int newheight);
64 size_t get_width() const
67 size_t get_height() const
76 /// returns tile in row y and column y (of the tilemap)
77 const Tile* get_tile(int x, int y) const;
78 /// returns tile at position pos (in world coordinates)
79 const Tile* get_tile_at(const Vector& pos) const;
81 void change(int x, int y, uint32_t newtile);
83 void change_at(const Vector& pos, uint32_t newtile);
85 TileManager* get_tilemanager() const
90 void set_drawing_effect(int effect)
92 drawing_effect = effect;
96 typedef std::vector<uint32_t> Tiles;
100 TileManager* tilemanager;
109 #endif /*SUPERTUX_TILEMAP_H*/