Massive copyright update. I'm sorry if I'm crediting Matze for something he didn...
[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_name() const
68   { return action->name; }
69
70   int get_width() const;
71   int get_height() const;
72
73   /** Get current frame */
74   int get_frame() const
75   { return (int)frame; }
76   /** Set current frame */
77   void set_frame(int frame)
78   { 
79     this->frame = (frame % get_frames()); 
80   }
81   Surface* get_frame(unsigned int frame)
82   {
83     assert(frame < action->surfaces.size());
84     return action->surfaces[frame];
85   }    
86
87 private:
88   void update();
89
90   SpriteData& data;
91
92   float frame;
93   int animation_loops;
94   Uint32 last_ticks;
95
96   SpriteData::Action* action;
97 };
98
99 #endif
100