<MatzeB> -cleanup in resource management functions
[supertux.git] / src / 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
20 #include <iostream>
21 #include "lispreader.h"
22 #include "sprite_manager.h"
23
24 SpriteManager::SpriteManager(const std::string& filename)
25 {
26   load_resfile(filename);
27 }
28
29 SpriteManager::~SpriteManager()
30 {
31   for(std::map<std::string, Sprite*>::iterator i = sprites.begin();
32       i != sprites.end(); ++i) {
33     delete i->second;
34   }
35 }
36
37 void
38 SpriteManager::load_resfile(const std::string& filename)
39 {
40   lisp_object_t* root_obj = lisp_read_from_file(filename);
41   lisp_object_t* cur = root_obj;
42
43   if (strcmp(lisp_symbol(lisp_car(cur)), "supertux-resources") != 0)
44     return;
45   cur = lisp_cdr(cur);
46
47   while(cur)
48     {
49       lisp_object_t* el = lisp_car(cur);
50
51       if (strcmp(lisp_symbol(lisp_car(el)), "sprite") == 0)
52         {
53           Sprite* sprite = new Sprite(lisp_cdr(el));
54
55           Sprites::iterator i = sprites.find(sprite->get_name());
56           if (i == sprites.end())
57             {
58               sprites[sprite->get_name()] = sprite;
59             }
60           else
61             {
62               delete i->second;
63               i->second = sprite;
64               std::cout << "Warning: dulpicate entry: '" << sprite->get_name() << "'" << std::endl;
65             }
66         }
67       else
68         {
69           std::cout << "SpriteManager: Unknown tag" << std::endl;
70         }
71
72       cur = lisp_cdr(cur);
73     }
74
75   lisp_free(root_obj);
76 }
77
78 Sprite*
79 SpriteManager::load(const std::string& name)
80 {
81   Sprites::iterator i = sprites.find(name);
82   if (i != sprites.end())
83     {
84       return i->second;
85     }
86   else
87     {
88       std::cout << "SpriteManager: Sprite '" << name << "' not found" << std::endl;
89       return 0;
90     }
91 }
92
93 /* EOF */