More -Weffc++ cleanup
[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   pos(),
33   title(),
34   solved(false), 
35   auto_play(false), 
36   sprite(),
37   statistics(),
38   extro_script(),
39   basedir(basedir), 
40   picture_cached(false),
41   picture(0)
42 {
43   lisp->get("name", name);
44   lisp->get("x", pos.x);
45   lisp->get("y", pos.y);
46   lisp->get("auto-play", auto_play);
47
48   std::string spritefile = "images/worldmap/common/leveldot.sprite";
49   lisp->get("sprite", spritefile);
50   sprite = sprite_manager->create(spritefile);
51
52   lisp->get("extro-script", extro_script);
53
54   if (!PHYSFS_exists((basedir + name).c_str()))
55   {
56     log_warning << "level file '" << name
57                 << "' does not exist and will not be added to the worldmap" << std::endl;
58     return;
59   }
60 }
61
62 LevelTile::~LevelTile()
63 {
64   delete picture;
65 }
66
67 void
68 LevelTile::draw(DrawingContext& context)
69 {
70   sprite->draw(context, pos*32 + Vector(16, 16), LAYER_OBJECTS - 1);
71 }
72
73 void
74 LevelTile::update(float )
75 {
76 }
77
78 const Surface*
79 LevelTile::get_picture()
80 {
81   if (picture_cached) return picture;
82   picture_cached = true;
83   std::string fname = FileSystem::strip_extension(basedir + name)+".jpg";
84   if (!PHYSFS_exists(fname.c_str())) {
85     return 0;
86   }
87   picture = new Surface(fname);
88   return picture;
89 }
90
91 }
92
93 /* EOF */