- Reworked Surface class and drawing stuff:
[supertux.git] / src / sprite / sprite_data.cpp
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 #include <config.h>
20
21 #include <iostream>
22 #include <cmath>
23 #include <sstream>
24 #include <stdexcept>
25
26 #include "sprite_data.hpp"
27 #include "resources.hpp"
28 #include "video/drawing_context.hpp"
29 #include "lisp/list_iterator.hpp"
30
31 SpriteData::Action::Action()
32 {
33   x_offset = 0;
34   y_offset = 0;
35   z_order = 0;   
36   fps = 10;
37 }
38
39 SpriteData::Action::~Action()
40 {
41   for(std::vector<Surface*>::iterator i = surfaces.begin();
42       i != surfaces.end(); ++i)
43     delete *i;
44 }
45
46 SpriteData::SpriteData(const lisp::Lisp* lisp, const std::string& basedir)
47 {
48   lisp::ListIterator iter(lisp);
49   while(iter.next()) {
50     if(iter.item() == "name") {
51       iter.value()->get(name);
52     } else if(iter.item() == "action") {
53       parse_action(iter.lisp(), basedir);
54     } else {
55       std::cerr << "Unknown sprite field: " << iter.item() << "\n";
56     }
57   }
58   if(actions.empty())
59     throw std::runtime_error("Error: Sprite wihtout actions.");
60 }
61
62 SpriteData::~SpriteData()
63 {
64   for(Actions::iterator i=actions.begin(); i != actions.end(); ++i)
65     delete i->second;
66 }
67
68 void
69 SpriteData::parse_action(const lisp::Lisp* lisp, const std::string& basedir)
70 {
71   Action* action = new Action;
72
73   if(!lisp->get("name", action->name)) {
74     if(!actions.empty())
75       throw std::runtime_error(
76           "If there are more than one action, they need names!");
77   }
78   lisp->get("x-offset", action->x_offset);
79   lisp->get("y-offset", action->y_offset);
80   lisp->get("z-order", action->z_order);
81   lisp->get("fps", action->fps);
82
83   std::string mirror_action;
84   lisp->get("mirror-action", mirror_action);
85   if(!mirror_action.empty()) {
86     Action* act_tmp = get_action(mirror_action);
87     if(act_tmp == NULL) {
88       throw std::runtime_error("Could not mirror action. Action not found\n"
89                    "Mirror actions must be defined after the real one!");
90     } else {
91       for(int i = 0; static_cast<unsigned int>(i) < act_tmp->surfaces.size();
92           i++) {
93         Surface* surface = new Surface(*(act_tmp->surfaces[i]));
94         surface->hflip();
95         action->surfaces.push_back(surface);
96       }
97     }
98   } else { // Load images
99     std::vector<std::string> images;
100     if(!lisp->get_vector("images", images)) {
101       std::stringstream msg;
102       msg << "Sprite '" << name << "' contains no images in action '"
103           << action->name << "'.";
104       throw std::runtime_error(msg.str());
105     }
106
107     for(std::vector<std::string>::size_type i = 0; i < images.size(); i++) {
108       action->surfaces.push_back(new Surface(basedir + images[i]));
109     }
110   }
111   actions[action->name] = action;
112 }
113
114 SpriteData::Action*
115 SpriteData::get_action(std::string act)
116 {
117   Actions::iterator i = actions.find(act);
118   if(i == actions.end()) {
119     return 0;
120   }
121   return i->second;
122 }
123