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