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