Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / object / lantern.hpp
1 //  SuperTux - Lantern
2 //  Copyright (C) 2006 Wolfgang Becker <uafr@gmx.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 #ifndef HEADER_SUPERTUX_OBJECT_LANTERN_HPP
18 #define HEADER_SUPERTUX_OBJECT_LANTERN_HPP
19
20 #include "object/rock.hpp"
21
22 /**
23  * Lantern. A portable Light Source.
24  */
25 class Lantern : public Rock
26 {
27 public:
28   Lantern(const Vector& pos);
29   Lantern(const Reader& reader);
30   void draw(DrawingContext& context);
31   ~Lantern();
32
33   HitResponse collision(GameObject& other, const CollisionHit& hit);
34
35   void grab(MovingObject& object, const Vector& pos, Direction dir);
36   void ungrab(MovingObject& object, Direction dir);
37
38   /**
39    * returns true if lamp is currently open
40    */
41   bool is_open();
42
43   /**
44    * returns the lamp's color
45    */
46   Color get_color() const {
47     return lightcolor;
48   }
49
50 private:
51   Color lightcolor;
52   std::auto_ptr<Sprite> lightsprite;
53   void updateColor();
54
55 private:
56   Lantern(const Lantern&);
57   Lantern& operator=(const Lantern&);
58 };
59
60 #endif
61
62 /* EOF */