Removed friendship between TileSetParser and Tile, use proper constructor instead
[supertux.git] / src / supertux / tile.cpp
1 //  SuperTux
2 //  Copyright (C) 2004 Tobias Glaesser <tobi.web@gmx.de>
3 //  Copyright (C) 2006 Matthias Braun <matze@braunis.de>
4 //
5 //  This program is free software: you can redistribute it and/or modify
6 //  it under the terms of the GNU General Public License as published by
7 //  the Free Software Foundation, either version 3 of the License, or
8 //  (at your option) any later version.
9 //
10 //  This program is distributed in the hope that it will be useful,
11 //  but WITHOUT ANY WARRANTY; without even the implied warranty of
12 //  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
13 //  GNU General Public License for more details.
14 //
15 //  You should have received a copy of the GNU General Public License
16 //  along with this program.  If not, see <http://www.gnu.org/licenses/>.
17
18 #include "supertux/tile.hpp"
19
20 #include "supertux/tile_set.hpp"
21 #include "video/drawing_context.hpp"
22
23 Tile::Tile(const TileSet& new_tileset) :
24   tileset(new_tileset), 
25   imagespecs(),
26   images(),
27   attributes(0), 
28   data(0), 
29   anim_fps(1)
30 {
31 }
32
33 Tile::Tile(const TileSet& new_tileset, const std::vector<ImageSpec>& imagespecs_, 
34            uint32_t attributes, uint32_t data, float animfps) :
35   tileset(new_tileset),
36   imagespecs(imagespecs_),
37   images(),
38   attributes(attributes), 
39   data(data), 
40   anim_fps(animfps)
41 {
42   correct_attributes();
43 }
44
45 Tile::~Tile()
46 {
47   for(std::vector<Surface*>::iterator i = images.begin(); i != images.end();
48       ++i) {
49     delete *i;
50   }
51 }
52
53 void
54 Tile::load_images()
55 {
56   if(images.size() == 0 && imagespecs.size() != 0)
57   {
58     assert(images.size() == 0);
59     for(std::vector<ImageSpec>::iterator i = imagespecs.begin(); i != imagespecs.end(); ++i) 
60     {
61       const ImageSpec& spec = *i;
62
63       Surface* surface;
64       if(spec.rect.get_width() <= 0) 
65       {
66         surface = new Surface(spec.file);
67       }
68       else 
69       {
70         surface = new Surface(spec.file,
71                               (int) spec.rect.p1.x,
72                               (int) spec.rect.p1.y,
73                               (int) spec.rect.get_width(),
74                               (int) spec.rect.get_height());
75       }
76       images.push_back(surface);
77     }
78   }
79 }
80
81 void
82 Tile::draw(DrawingContext& context, const Vector& pos, int z_pos) const
83 {
84   if(images.size() > 1) {
85     size_t frame = size_t(game_time * anim_fps) % images.size();
86     context.draw_surface(images[frame], pos, z_pos);
87   } else if (images.size() == 1) {
88     context.draw_surface(images[0], pos, z_pos);
89   }
90 }
91
92 void
93 Tile::correct_attributes()
94 {
95   //Fix little oddities in attributes (not many, currently...)
96   if(!(attributes & SOLID) && (attributes & SLOPE || attributes & UNISOLID)) {
97     attributes |= SOLID;
98     //But still be vocal about it
99     log_warning << "Tile with image " << imagespecs[0].file << " needs solid attribute." << std::endl;
100   }
101 }
102
103 void
104 Tile::print_debug(int id) const
105 {
106   log_debug << " Tile: id " << id << ", data " << getData() << ", attributes " << getAttributes() << ":" << std::endl;
107   for(std::vector<Tile::ImageSpec>::const_iterator im = imagespecs.begin(); im != imagespecs.end(); ++im) 
108   {
109     log_debug << "  Imagespec: file " << im->file << "; rect " << im->rect << std::endl;
110   }
111 }
112
113 /* EOF */