Update CMake to 3.2.1 in .travis.yml
[supertux.git] / src / object / rusty_trampoline.hpp
1 //  SuperTux - Rusty Trampoline
2 //  Copyright (C) 2006 Wolfgang Becker <uafr@gmx.de>
3 //  Copyright (C) 2011 Jonas Kuemmerlin <rgcjonas@googlemail.com>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #ifndef HEADER_SUPERTUX_OBJECT_RUSTY_TRAMPOLINE_HPP
19 #define HEADER_SUPERTUX_OBJECT_RUSTY_TRAMPOLINE_HPP
20
21 #include "object/rock.hpp"
22
23 /**
24  * Jumping on a trampoline makes tux jump higher.
25  * After 3 jumps, it breaks (configurable)
26  * It cannot be carried (breaks on ungrab)
27  */
28 class RustyTrampoline : public Rock
29 {
30 public:
31   RustyTrampoline(const Reader& reader);
32
33   HitResponse collision(GameObject& other, const CollisionHit& hit);
34   void collision_solid(const CollisionHit& hit);
35   void update(float elapsed_time);
36
37   void grab(MovingObject&, const Vector& pos, Direction);
38   void ungrab(MovingObject&, Direction);
39   bool is_portable() const;
40
41 private:
42   bool portable;
43   int counter;
44
45 };
46
47 #endif
48
49 /* EOF */