Updated addon repository URL and improved debug output on download
[supertux.git] / src / trigger / secretarea_trigger.hpp
1 //  SuperTux
2 //  Copyright (C) 2006 Matthias Braun <matze@braunis.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_TRIGGER_SECRETAREA_TRIGGER_HPP
18 #define HEADER_SUPERTUX_TRIGGER_SECRETAREA_TRIGGER_HPP
19
20 #include "trigger/trigger_base.hpp"
21
22 #include "object/tilemap.hpp"
23 #include "supertux/timer.hpp"
24 #include "util/reader_fwd.hpp"
25 #include "util/writer_fwd.hpp"
26
27 class DrawingContext;
28 class Color;
29
30 class SecretAreaTrigger : public TriggerBase
31 {
32   static Color text_color;
33 public:
34   SecretAreaTrigger(const Reader& reader);
35   SecretAreaTrigger(const Rectf& area, std::string fade_tilemap = "");
36   ~SecretAreaTrigger();
37
38   void event(Player& player, EventType type);
39   void draw(DrawingContext& context);
40   std::string get_fade_tilemap_name();
41
42 private:
43   Timer message_timer;
44   bool message_displayed;
45   std::string message; /**< message to display, default "You found a secret area!" */
46   std::string fade_tilemap; /**< tilemap to fade away when trigger is activated, or empty if you don't care */
47   std::string script; /**< optional script to run when trigger is activated */
48 };
49
50 #endif
51
52 /* EOF */