Experimented with loading hitbox from .sprite file
[supertux.git] / src / sprite / sprite.hpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.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 SUPERTUX_SPRITE_H
21 #define SUPERTUX_SPRITE_H
22
23 #include <string>
24 #include <assert.h>
25 #include <SDL.h>
26
27 #include "video/surface.hpp"
28 #include "math/vector.hpp"
29 #include "sprite_data.hpp"
30
31 class DrawingContext;
32
33 class Sprite
34 {
35 public:
36   Sprite(SpriteData& data);
37   Sprite(const Sprite& other);
38   ~Sprite();
39
40   /** Draw sprite, automatically calculates next frame */
41   void draw(DrawingContext& context, const Vector& pos, int layer);
42
43   void draw_part(DrawingContext& context, const Vector& source,
44       const Vector& size, const Vector& pos, int layer);
45
46   /** Set action (or state) */
47   void set_action(const std::string& act, int loops = -1);
48
49   /** Set framerate */
50   void set_fps(float new_fps);
51
52   /* Stop animation */
53   void stop_animation()
54   { animation_loops = 0; }
55   /** Check if animation is stopped or not */
56   bool animation_done();
57
58   float get_fps() const
59   { return action->fps; }
60   /** Get current action total frames */
61   int get_frames() const
62   { return action->surfaces.size(); }
63   /** Get sprite's name */
64   const std::string& get_name() const
65   { return data.name; }
66   /** Get current action name */
67   const std::string& get_action() const
68   { return action->name; }
69
70   int get_width() const;
71   int get_height() const;
72
73   /** return x-offset of current action's hitbox, relative to start of image */
74   float get_current_hitbox_x_offset() const;
75   /** return y-offset of current action's hitbox, relative to start of image */
76   float get_current_hitbox_y_offset() const;
77   /** return width of current action's hitbox */
78   float get_current_hitbox_width() const;
79   /** return height of current action's hitbox */
80   float get_current_hitbox_height() const;
81
82   /** Get current frame */
83   int get_frame() const
84   { return (int)frame; }
85   /** Set current frame */
86   void set_frame(int frame)
87   { 
88     this->frame = (frame % get_frames()); 
89   }
90   Surface* get_frame(unsigned int frame)
91   {
92     assert(frame < action->surfaces.size());
93     return action->surfaces[frame];
94   }    
95
96 private:
97   void update();
98
99   SpriteData& data;
100
101   float frame;
102   int animation_loops;
103   float last_ticks;
104
105   SpriteData::Action* action;
106 };
107
108 #endif
109