Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / worldmap / level.hpp
1 //  SuperTux
2 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>
3 //  Copyright (C) 2006 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef HEADER_SUPERTUX_WORLDMAP_LEVEL_HPP
19 #define HEADER_SUPERTUX_WORLDMAP_LEVEL_HPP
20
21 #include <memory>
22 #include <string>
23
24 #include "math/vector.hpp"
25 #include "supertux/game_object.hpp"
26 #include "supertux/statistics.hpp"
27 #include "video/surface.hpp"
28
29 class Sprite;
30
31 namespace WorldMapNS {
32
33 class LevelTile : public GameObject
34 {
35 public:
36   LevelTile(const std::string& basedir, const lisp::Lisp* lisp);
37   virtual ~LevelTile();
38
39   virtual void draw(DrawingContext& context);
40   virtual void update(float elapsed_time);
41
42   Vector pos;
43   std::string title;
44   bool solved;
45   bool auto_play; /**< true if Tux should automatically enter this level if it's unfinished */
46
47   std::auto_ptr<Sprite> sprite;
48
49   /** Statistics for level tiles */
50   Statistics statistics;
51
52   /** Script that is run when the level is successfully finished */
53   std::string extro_script;
54
55   /** return Surface of level picture or 0 if no picture is available */
56   const Surface* get_picture();
57
58 private:
59   std::string basedir;
60   bool picture_cached;
61   Surface* picture;
62
63 private:
64   LevelTile(const LevelTile&);
65   LevelTile& operator=(const LevelTile&);
66 };
67
68 } // namespace WorldMapNS
69
70 #endif
71
72 /* EOF */