Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / worldmap / level.cpp
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 #include <config.h>
18
19 #include <physfs.h>
20 #include <stddef.h>
21
22 #include "sprite/sprite.hpp"
23 #include "sprite/sprite_manager.hpp"
24 #include "util/file_system.hpp"
25 #include "util/log.hpp"
26 #include "video/drawing_context.hpp"
27 #include "worldmap/level.hpp"
28
29 namespace WorldMapNS {
30
31 LevelTile::LevelTile(const std::string& basedir, const lisp::Lisp* lisp) :
32   solved(false), 
33   auto_play(false), 
34   basedir(basedir), 
35   picture_cached(false),
36   picture(0)
37 {
38   lisp->get("name", name);
39   lisp->get("x", pos.x);
40   lisp->get("y", pos.y);
41   lisp->get("auto-play", auto_play);
42
43   std::string spritefile = "images/worldmap/common/leveldot.sprite";
44   lisp->get("sprite", spritefile);
45   sprite = sprite_manager->create(spritefile);
46
47   lisp->get("extro-script", extro_script);
48
49   if (!PHYSFS_exists((basedir + name).c_str()))
50   {
51     log_warning << "level file '" << name
52                 << "' does not exist and will not be added to the worldmap" << std::endl;
53     return;
54   }
55 }
56
57 LevelTile::~LevelTile()
58 {
59   delete picture;
60 }
61
62 void
63 LevelTile::draw(DrawingContext& context)
64 {
65   sprite->draw(context, pos*32 + Vector(16, 16), LAYER_OBJECTS - 1);
66 }
67
68 void
69 LevelTile::update(float )
70 {
71 }
72
73 const Surface*
74 LevelTile::get_picture()
75 {
76   if (picture_cached) return picture;
77   picture_cached = true;
78   std::string fname = FileSystem::strip_extension(basedir + name)+".jpg";
79   if (!PHYSFS_exists(fname.c_str())) {
80     return 0;
81   }
82   picture = new Surface(fname);
83   return picture;
84 }
85
86 }
87
88 /* EOF */