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