Changed the way the scrolling was calculated. Instead of calculating it relatively...
[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   if (!root_obj)
42     {
43       std::cout << "SpriteManager: Couldn't load: " << filename << std::endl;
44       return;
45     }
46
47   lisp_object_t* cur = root_obj;
48
49   if (strcmp(lisp_symbol(lisp_car(cur)), "supertux-resources") != 0)
50     return;
51   cur = lisp_cdr(cur);
52
53   while(cur)
54     {
55       lisp_object_t* el = lisp_car(cur);
56
57       if (strcmp(lisp_symbol(lisp_car(el)), "sprite") == 0)
58         {
59           Sprite* sprite = new Sprite(lisp_cdr(el));
60
61           Sprites::iterator i = sprites.find(sprite->get_name());
62           if (i == sprites.end())
63             {
64               sprites[sprite->get_name()] = sprite;
65             }
66           else
67             {
68               delete i->second;
69               i->second = sprite;
70               std::cout << "Warning: dulpicate entry: '" << sprite->get_name() << "'" << std::endl;
71             }
72         }
73       else
74         {
75           std::cout << "SpriteManager: Unknown tag" << std::endl;
76         }
77
78       cur = lisp_cdr(cur);
79     }
80
81   lisp_free(root_obj);
82 }
83
84 Sprite*
85 SpriteManager::load(const std::string& name)
86 {
87   Sprites::iterator i = sprites.find(name);
88   if (i != sprites.end())
89     {
90       return i->second;
91     }
92   else
93     {
94       std::cout << "SpriteManager: Sprite '" << name << "' not found" << std::endl;
95       return 0;
96     }
97 }
98
99 /* EOF */