Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / trigger / sequence_trigger.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 "object/player.hpp"
18 #include "supertux/object_factory.hpp"
19 #include "trigger/sequence_trigger.hpp"
20 #include "util/reader.hpp"
21
22 SequenceTrigger::SequenceTrigger(const Reader& reader)
23 {
24   reader.get("x", bbox.p1.x);
25   reader.get("y", bbox.p1.y);
26   float w = 0, h = 0;
27   reader.get("width", w);
28   reader.get("height", h);
29   bbox.set_size(w, h);
30   reader.get("sequence", sequence_name);
31   triggerevent = EVENT_TOUCH;
32 }
33
34 SequenceTrigger::SequenceTrigger(const Vector& pos, const std::string& sequence)
35 {
36   bbox.set_pos(pos);
37   bbox.set_size(32, 32);
38   sequence_name = sequence;
39   triggerevent = EVENT_TOUCH;
40 }
41
42 SequenceTrigger::~SequenceTrigger()
43 {
44 }
45
46 void
47 SequenceTrigger::event(Player& player, EventType type)
48 {
49   if(type == triggerevent) {
50     player.trigger_sequence(sequence_name);
51   }
52 }
53
54 IMPLEMENT_FACTORY(SequenceTrigger, "sequencetrigger");
55
56 /* EOF */