renamed all .h to .hpp
[supertux.git] / src / sprite / sprite_manager.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 <sstream>
23 #include <stdexcept>
24
25 #include "sprite_manager.hpp"
26 #include "sprite_data.hpp"
27 #include "sprite.hpp"
28 #include "lisp/lisp.hpp"
29 #include "lisp/parser.hpp"
30 #include "lisp/list_iterator.hpp"
31
32 SpriteManager::SpriteManager(const std::string& filename)
33 {
34   load_resfile(filename);
35 }
36
37 SpriteManager::~SpriteManager()
38 {
39   for(Sprites::iterator i = sprites.begin(); i != sprites.end(); ++i) {
40     delete i->second;
41   }
42 }
43
44 void
45 SpriteManager::load_resfile(const std::string& filename)
46 {
47   lisp::Parser parser;
48   try {
49     std::auto_ptr<lisp::Lisp> root (parser.parse(filename));
50
51     const lisp::Lisp* resources = root->get_lisp("supertux-resources");
52     if(!resources)
53       throw std::runtime_error("file is not a supertux-resources files");
54
55     lisp::ListIterator iter(resources);
56     while(iter.next()) {
57       if(iter.item() == "sprite") {
58         SpriteData* spritedata = new SpriteData(iter.lisp());
59
60         Sprites::iterator i = sprites.find(spritedata->get_name());
61         if (i == sprites.end()) {
62           sprites[spritedata->get_name()] = spritedata;
63         } else {
64           delete i->second;
65           i->second = spritedata;
66           std::cout << "Warning: dulpicate entry: '" << spritedata->get_name()
67             << "' in spritefile." << std::endl;
68         }
69       } else {
70         std::cout << "SpriteManager: Unknown tag '" << iter.item() 
71           << "' in spritefile.\n";
72       }
73     }
74   } catch(std::exception& e) {
75     std::stringstream msg;
76     msg << "Couldn't load file '" << filename << "': " << e.what() << "\n";
77     throw std::runtime_error(msg.str());
78   }
79 }
80
81 Sprite*
82 SpriteManager::create(const std::string& name)
83 {
84   Sprites::iterator i = sprites.find(name);
85   if(i == sprites.end()) {
86     std::stringstream msg;
87     msg << "Sprite '" << name << "' not found.";
88     throw std::runtime_error(msg.str());
89   }
90   return new Sprite(*i->second);
91 }
92