Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / object / decal.cpp
1 //  SuperTux - Decal
2 //  Copyright (C) 2008 Christoph Sommer <christoph.sommer@2008.expires.deltadevelopment.de>
3 //
4 //  This program is free software: you can redistribute it and/or modify
5 //  it under the terms of the GNU General Public License as published by
6 //  the Free Software Foundation, either version 3 of the License, or
7 //  (at your option) any later version.
8 //
9 //  This program is distributed in the hope that it will be useful,
10 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
11 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12 //  GNU General Public License for more details.
13 //
14 //  You should have received a copy of the GNU General Public License
15 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
16
17 #include "object/decal.hpp"
18 #include "supertux/object_factory.hpp"
19 #include "util/reader.hpp"
20
21 Decal::Decal(const Reader& reader) :
22   pos(),
23   imagefile(),
24   layer(LAYER_OBJECTS),
25   image()
26 {
27   float px = 0;
28   float py = 0;
29   reader.get("x", px);
30   reader.get("y", py);
31   pos = Vector(px, py);
32
33   if(!reader.get("image", imagefile)) throw std::runtime_error("Must specify image for decal");
34   image.reset(new Surface(imagefile));
35
36   reader.get("layer", layer);
37 }
38
39 Decal::~Decal()
40 {
41 }
42
43 void
44 Decal::update(float)
45 {
46 }
47
48 void
49 Decal::draw(DrawingContext& context)
50 {
51   if(!image.get()) return;
52   context.draw_surface(image.get(), pos, layer);
53 }
54
55 IMPLEMENT_FACTORY(Decal, "decal");
56
57 /* EOF */