- fixed 'When you jump into the roof or a bonus and fall back down you collide with...
[supertux.git] / src / sprite.h
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@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  02111-1307, USA.
19
20 #ifndef HEADER_SPRITE_HXX
21 #define HEADER_SPRITE_HXX
22
23 #include <string>
24 #include <vector>
25 #include "lispreader.h"
26 #include "texture.h"
27 #include "vector.h"
28
29 enum SpecialDrawing { SD_NONE, SD_VERTICAL_FLIP, SD_SEMI_TRANSPARENT };
30
31 class Sprite
32 {
33  private:
34   std::string name;
35
36   int x_hotspot;
37   int y_hotspot;
38
39   /** Frames per second */
40   float fps;
41
42   /** Number of seconds that a frame is displayed until it is switched
43       to the next frame */
44   float frame_delay;
45
46   float time;
47
48   std::vector<Surface*> surfaces;
49
50   void init_defaults();
51  public:
52   /** cur has to be a pointer to data in the form of ((x-hotspot 5)
53       (y-hotspot 10) ...) */
54   Sprite(lisp_object_t* cur);
55   ~Sprite();
56   
57   void reset();
58
59   /** Update the sprite and process to the next frame */
60   void update(float delta);
61   void draw(float x, float y, int special_drawing = SD_NONE);
62   void draw_part(float sx, float sy, float x, float y, float w, float h);
63   int get_current_frame() const;
64
65   float get_fps() { return fps; } ;
66   int get_frames() { return surfaces.size(); } ;
67
68   void draw(const Vector& pos, int special_drawing = SD_NONE)
69   { draw(pos.x, pos.y, special_drawing); }
70
71   std::string get_name() const { return name; } 
72   int get_width() const;
73   int get_height() const;
74 };
75
76 #endif
77
78 /* Local Variables: */
79 /* mode:c++ */
80 /* End: */