fix cr/lfs and remove trailing whitespaces...
[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 ((hitbox 5 10 0 0) ...) */
34   SpriteData(const lisp::Lisp* cur, const std::string& basedir);
35   ~SpriteData();
36
37   const std::string& get_name() const
38   {
39     return name;
40   }
41
42 private:
43   friend class Sprite;
44
45   struct Action
46   {
47     Action();
48     ~Action();
49
50     std::string name;
51
52     /** Position correction */
53     float x_offset;
54     float y_offset;
55
56     /** Hitbox width */
57     float hitbox_w;
58
59     /** Hitbox height */
60     float hitbox_h;
61
62     /** Drawing priority in queue */
63     int z_order;
64
65     /** Frames per second */
66     float fps;
67
68     std::vector<Surface*> surfaces;
69   };
70
71   typedef std::map <std::string, Action*> Actions;
72   Actions actions;
73
74   void parse_action(const lisp::Lisp* lispreader, const std::string& basedir);
75   /** Get an action */
76   Action* get_action(std::string act);
77
78   std::string name;
79 };
80
81 #endif