Massive copyright update. I'm sorry if I'm crediting Matze for something he didn...
[supertux.git] / src / sprite / sprite_manager.cpp
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 #include <config.h>
21
22 #include <iostream>
23 #include <sstream>
24 #include <stdexcept>
25
26 #include "sprite_manager.hpp"
27 #include "sprite_data.hpp"
28 #include "sprite.hpp"
29 #include "lisp/lisp.hpp"
30 #include "lisp/parser.hpp"
31 #include "lisp/list_iterator.hpp"
32 #include "file_system.hpp"
33 #include "log.hpp"
34
35 SpriteManager::SpriteManager()
36 {
37 }
38
39 SpriteManager::~SpriteManager()
40 {
41   for(Sprites::iterator i = sprites.begin(); i != sprites.end(); ++i) {
42     delete i->second;
43   }
44 }
45
46 Sprite*
47 SpriteManager::create(const std::string& name)
48 {
49   Sprites::iterator i = sprites.find(name);
50   SpriteData* data;
51   if(i == sprites.end()) {
52     // try loading the spritefile
53     data = load(name);
54     if(data == NULL) {
55       std::stringstream msg;
56       msg << "Sprite '" << name << "' not found.";
57       throw std::runtime_error(msg.str());
58     }
59   } else {
60     data = i->second;
61   }
62   
63   return new Sprite(*data);
64 }
65
66 SpriteData*
67 SpriteManager::load(const std::string& filename)
68 {
69   lisp::Parser parser;
70   std::auto_ptr<lisp::Lisp> root (parser.parse(filename));
71
72   const lisp::Lisp* sprite = root->get_lisp("supertux-sprite");
73   if(!sprite) {
74     std::ostringstream msg;
75     msg << "'" << filename << "' is not a supertux-sprite file";
76     throw std::runtime_error(msg.str());
77   }
78
79   std::auto_ptr<SpriteData> data (
80       new SpriteData(sprite, FileSystem::dirname(filename)) );
81   sprites[filename] = data.release();
82   
83   return sprites[filename];
84 }
85