Now the growings animation looks pretty cool :)
[supertux.git] / src / collision.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
5 //
6 //  This program is free software; you can redistribute it and/or
7 //  modify it under the terms of the GNU General Public License
8 //  as published by the Free Software Foundation; either version 2
9 //  of the License, or (at your option) any later version.
10 //
11 //  This program is distributed in the hope that it will be useful,
12 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
13 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 //  GNU General Public License for more details.
15 // 
16 //  You should have received a copy of the GNU General Public License
17 //  along with this program; if not, write to the Free Software
18 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
19 //  02111-1307, USA.
20
21 #ifndef SUPERTUX_COLLISION_H
22 #define SUPERTUX_COLLISION_H
23
24 #include "type.h"
25
26 class Tile;
27
28 /* Collision objects */
29 enum
30 {
31   CO_BULLET,
32   CO_BADGUY,
33   CO_PLAYER,
34   CO_TRAMPOLINE,
35   CO_FLYING_PLATFORM
36 };
37
38 enum CollisionType {
39     COLLISION_NORMAL,
40     COLLISION_BUMP,
41     COLLISION_SQUISH
42 };
43
44 bool rectcollision(const base_type& one, const base_type& two);
45 bool rectcollision_offset(const base_type& one, const base_type& two, float off_x, float off_y);
46
47 void collision_swept_object_map(base_type* old, base_type* current);
48 bool collision_object_map(const base_type& object);
49
50 /** Return a pointer to the tile at the given x/y coordinates */
51 Tile* gettile(float x, float y);
52
53 // Some little helper function to check for tile properties
54 bool  issolid(float x, float y);
55 bool  isbrick(float x, float y);
56 bool  isice(float x, float y);
57 bool  isspike(float x, float y);
58 bool  isfullbox(float x, float y);
59
60 typedef void* (*tiletestfunction)(Tile* tile);
61 /** invokes the function for each tile the baserectangle collides with. The
62  * function aborts and returns true as soon as the tiletestfunction returns
63  * != 0 then this value is returned. returns 0 if all tests failed.
64  */
65 void* collision_func(const base_type& base, tiletestfunction* function);
66
67 Tile* collision_goal(const base_type& base);
68
69 #endif /*SUPERTUX_COLLISION_H*/
70