Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / trigger / scripttrigger.cpp
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 #include <memory>
18 #include <sstream>
19 #include <stdexcept>
20
21 #include "supertux/object_factory.hpp"
22 #include "supertux/sector.hpp"
23 #include "trigger/scripttrigger.hpp"
24 #include "util/reader.hpp"
25
26 ScriptTrigger::ScriptTrigger(const Reader& reader)
27 {
28   bool must_activate = false;
29
30   reader.get("x", bbox.p1.x);
31   reader.get("y", bbox.p1.y);
32   float w = 0, h = 0;
33   reader.get("width", w);
34   reader.get("height", h);
35   bbox.set_size(w, h);
36   reader.get("script", script);
37   reader.get("button", must_activate);
38   if(script == "") {
39     throw std::runtime_error("Need to specify a script for trigger object");
40   }
41
42   if (must_activate)
43     triggerevent = EVENT_ACTIVATE;
44   else
45     triggerevent = EVENT_TOUCH;
46 }
47
48 ScriptTrigger::ScriptTrigger(const Vector& pos, const std::string& script)
49 {
50   bbox.set_pos(pos);
51   bbox.set_size(32, 32);
52   this->script = script;
53   triggerevent = EVENT_TOUCH;
54 }
55
56 ScriptTrigger::~ScriptTrigger()
57 {
58 }
59
60 void
61 ScriptTrigger::event(Player& , EventType type)
62 {
63   if(type != triggerevent)
64     return;
65
66   std::istringstream stream(script);
67   Sector::current()->run_script(stream, "ScriptTrigger");
68 }
69
70 IMPLEMENT_FACTORY(ScriptTrigger, "scripttrigger");
71
72 /* EOF */