New sound effects
[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   triggerevent(),
28   script()
29 {
30   bool must_activate = false;
31
32   reader.get("x", bbox.p1.x);
33   reader.get("y", bbox.p1.y);
34   float w = 0, h = 0;
35   reader.get("width", w);
36   reader.get("height", h);
37   bbox.set_size(w, h);
38   reader.get("script", script);
39   reader.get("button", must_activate);
40   if(script == "") {
41     throw std::runtime_error("Need to specify a script for trigger object");
42   }
43
44   if (must_activate)
45     triggerevent = EVENT_ACTIVATE;
46   else
47     triggerevent = EVENT_TOUCH;
48 }
49
50 ScriptTrigger::ScriptTrigger(const Vector& pos, const std::string& script_) :
51   triggerevent(),
52   script()
53 {
54   bbox.set_pos(pos);
55   bbox.set_size(32, 32);
56   this->script = script_;
57   triggerevent = EVENT_TOUCH;
58 }
59
60 ScriptTrigger::~ScriptTrigger()
61 {
62 }
63
64 void
65 ScriptTrigger::event(Player& , EventType type)
66 {
67   if(type != triggerevent)
68     return;
69
70   std::istringstream stream(script);
71   Sector::current()->run_script(stream, "ScriptTrigger");
72 }
73
74 /* EOF */