3850141dd132b1ec87ee9b539466bb40edd0e226
[supertux.git] / src / sprite / sprite_data.hpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 Ingo Ruhnke <grumbel@gmx.de>,
5 //            (C) 2004 Matthias Braun <matze@braunis.de>
6 //
7 //  This program is free software; you can redistribute it and/or
8 //  modify it under the terms of the GNU General Public License
9 //  as published by the Free Software Foundation; either version 2
10 //  of the License, or (at your option) any later version.
11 //
12 //  This program is distributed in the hope that it will be useful,
13 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
14 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
15 //  GNU General Public License for more details.
16 // 
17 //  You should have received a copy of the GNU General Public License
18 //  along with this program; if not, write to the Free Software
19 //  Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
20 #ifndef SUPERTUX_SPRITE_DATA_H
21 #define SUPERTUX_SPRITE_DATA_H
22
23 #include <string>
24 #include <vector>
25 #include <map>
26
27 #include "lisp/lisp.hpp"
28 #include "video/surface.hpp"
29
30 class SpriteData
31 {
32 public:
33         /** cur has to be a pointer to data in the form of ((x-offset 5)
34           (y-offset 10) ...) */
35         SpriteData(const lisp::Lisp* cur);                                         
36         ~SpriteData();
37
38         const std::string& get_name() const
39         {
40           return name;
41         }
42
43 private:
44         friend class Sprite;
45
46         struct Action
47         {
48           Action();
49           ~Action();
50           
51           std::string name;
52
53           /** Position correction */
54           int x_offset;
55           int y_offset;
56           /** Drawing priority in queue */
57           int z_order;
58
59           /** Frames per second */
60           float fps;
61
62           std::vector<Surface*> surfaces;
63         };
64
65         typedef std::map <std::string, Action*> Actions;
66         Actions actions;
67
68         void parse_action(const lisp::Lisp* lispreader);
69         /** Get an action */
70         Action* get_action(std::string act);
71
72         std::string name;
73 };
74
75 #endif
76