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