- beginnings of a wingling
[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 class Sprite
30 {
31  private:
32   std::string name;
33
34   int x_hotspot;
35   int y_hotspot;
36
37   /** Frames per second */
38   float fps;
39
40   /** Number of seconds that a frame is displayed until it is switched
41       to the next frame */
42   float frame_delay;
43
44   float time;
45
46   std::vector<Surface*> surfaces;
47
48   void init_defaults();
49  public:
50   /** cur has to be a pointer to data in the form of ((x-hotspot 5)
51       (y-hotspot 10) ...) */
52   Sprite(lisp_object_t* cur);
53   ~Sprite();
54   
55   void reset();
56
57   /** Update the sprite and process to the next frame */
58   void update(float delta);
59   void draw(float x, float y);
60   void draw_part(float sx, float sy, float x, float y, float w, float h);
61   int get_current_frame() const;
62
63   void draw(const Vector& pos)
64   { draw(pos.x, pos.y); }
65
66   std::string get_name() const { return name; } 
67   int get_width() const;
68   int get_height() const;
69 };
70
71 #endif
72
73 /* Local Variables: */
74 /* mode:c++ */
75 /* End: */