- removed alpha from tile since it isn't needed
[supertux.git] / src / tile.cpp
1 //
2 // C++ Implementation: tile
3 //
4 // Description: 
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2004
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12 #include "tile.h"
13 #include "assert.h"
14
15 TileManager* TileManager::instance_  = 0;
16
17 TileManager::TileManager()
18 {
19   std::string filename = datadir +  "images/tilesets/supertux.stgt"; 
20   load_tileset(filename);
21 }
22
23 void TileManager::load_tileset(std::string filename)
24 {
25   lisp_object_t* root_obj = lisp_read_from_file(filename);
26   
27   if (!root_obj)
28     st_abort("Couldn't load file", filename);
29
30   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-tiles") == 0)
31     {
32       lisp_object_t* cur = lisp_cdr(root_obj);
33       int tileset_id = 0;
34
35       while(!lisp_nil_p(cur))
36         {
37           lisp_object_t* element = lisp_car(cur);
38
39           if (strcmp(lisp_symbol(lisp_car(element)), "tile") == 0)
40             {
41               Tile* tile = new Tile;
42               tile->id      = -1;
43               tile->solid   = false;
44               tile->brick   = false;
45               tile->ice     = false;      
46               tile->fullbox = false;          
47               tile->distro  = false;
48               tile->data    = 0;
49               tile->next_tile  = 0;
50               tile->anim_speed = 25;
51   
52               LispReader reader(lisp_cdr(element));
53               assert(reader.read_int("id",  &tile->id));
54               reader.read_bool("solid",     &tile->solid);
55               reader.read_bool("brick",     &tile->brick);
56               reader.read_bool("ice",       &tile->ice);           
57               reader.read_bool("fullbox",   &tile->fullbox);
58               reader.read_bool("distro",    &tile->distro);
59               reader.read_int("data",       &tile->data);
60               reader.read_int("anim-speed", &tile->anim_speed);
61               reader.read_int("next-tile",  &tile->next_tile);
62               reader.read_string_vector("images",  &tile->filenames);
63
64               for(std::vector<std::string>::iterator it = tile->filenames.begin();
65                   it != tile->filenames.end();
66                   ++it)
67                 {
68                   texture_type cur_image;
69                   tile->images.push_back(cur_image);
70                   texture_load(&tile->images[tile->images.size()-1], 
71                                datadir +  "images/tilesets/" + (*it), 
72                                USE_ALPHA);
73                 }
74
75               if (tile->id + tileset_id >= int(tiles.size()))
76                 tiles.resize(tile->id + tileset_id+1);
77
78               tiles[tile->id + tileset_id] = tile;
79             }
80           else if (strcmp(lisp_symbol(lisp_car(element)), "tileset") == 0)
81             {
82               LispReader reader(lisp_cdr(element));
83               std::string filename;
84               reader.read_string("file",  &filename);
85               filename = datadir + "images/tilesets/" + filename; 
86               load_tileset(filename);
87             }
88           else if (strcmp(lisp_symbol(lisp_car(element)), "properties") == 0)
89             {
90               LispReader reader(lisp_cdr(element));
91               reader.read_int("id",  &tileset_id);
92               tileset_id *= 1000;
93             }
94           else
95             {
96               puts("Unhandled symbol");
97             }
98
99           cur = lisp_cdr(cur);
100         }
101     }
102   else
103     {
104       assert(0);
105     }
106 }
107
108 // EOF //
109