Massive copyright update. I'm sorry if I'm crediting Matze for something he didn...
[supertux.git] / src / sprite / sprite_data.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_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, const std::string& basedir);
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, const std::string& basedir);
69   /** Get an action */
70   Action* get_action(std::string act);
71
72   std::string name;
73 };
74
75 #endif
76