Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / object / endsequence_walkright.cpp
1 //  SuperTux - End Sequence: Tux walks right
2 //  Copyright (C) 2007 Christoph Sommer <christoph.sommer@2006.expires.deltadevelopment.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/endsequence_walkright.hpp"
18 #include "object/player.hpp"
19 #include "supertux/mainloop.hpp"
20 #include "supertux/sector.hpp"
21
22 EndSequenceWalkRight::EndSequenceWalkRight()
23   : EndSequence()
24 {
25 }
26
27 EndSequenceWalkRight::~EndSequenceWalkRight()
28 {
29 }
30
31 void
32 EndSequenceWalkRight::draw(DrawingContext& /*context*/)
33 {
34 }
35
36 void
37 EndSequenceWalkRight::starting()
38 {
39   EndSequence::starting();
40   last_x_pos = -1;
41   endsequence_timer.start(7.3f * g_main_loop->get_speed());
42 }
43
44 void
45 EndSequenceWalkRight::running(float elapsed_time)
46 {
47   EndSequence::running(elapsed_time);
48   Player& tux = *Sector::current()->player;
49
50   if (tux_may_walk) {
51     end_sequence_controller->press(Controller::RIGHT);
52     if (int(last_x_pos) == int(tux.get_pos().x)) {
53       end_sequence_controller->press(Controller::JUMP);
54     }
55   }
56
57   last_x_pos = tux.get_pos().x;
58
59   if (endsequence_timer.check()) isdone = true;
60 }
61
62 void
63 EndSequenceWalkRight::stopping()
64 {
65   EndSequence::stopping();
66 }
67
68 /* EOF */