Merged changes from branches/supertux-milestone2-grumbel/ to trunk/supertux/
[supertux.git] / src / supertux / collision_hit.hpp
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 #ifndef HEADER_SUPERTUX_SUPERTUX_COLLISION_HIT_HPP
18 #define HEADER_SUPERTUX_SUPERTUX_COLLISION_HIT_HPP
19
20 #include "math/vector.hpp"
21
22 /**
23  * Used as return value for the collision functions, to indicate how the
24  * collision should be handled
25  */
26 enum HitResponse
27 {
28   /// don't move the object
29   ABORT_MOVE = 0,
30   /// move object out of collision and check for collisions again
31   /// if this happens to often then the move will just be aborted
32   CONTINUE,
33   /// do the move ignoring the collision
34   FORCE_MOVE,
35   /// passes movement to collided object
36   PASS_MOVEMENT,
37
38   /// the object should not appear solid
39   PASSTHROUGH,
40   /// the object should appear solid
41   SOLID
42 };
43
44 /**
45  * This class collects data about a collision
46  */
47 class CollisionHit
48 {
49 public:
50   CollisionHit() :
51     left(false),
52     right(false),
53     top(false),
54     bottom(false),
55     crush(false),
56     slope_normal()
57   {}
58
59   bool left, right;
60   bool top, bottom;
61   bool crush;
62
63   Vector slope_normal;
64
65 private:
66   CollisionHit(const CollisionHit&);
67 };
68
69 #endif
70
71 /* EOF */