ad5d28dbff7cbe3d8a704ad1ad640f67435b64fb
[supertux.git] / src / object / tilemap.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 Matthias Braun <matze@braunis.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 <config.h>
21
22 #include <cassert>
23 #include <algorithm>
24 #include <iostream>
25 #include <stdexcept>
26 #include <math.h>
27 #include <limits>
28
29 #include "tilemap.hpp"
30 #include "video/drawing_context.hpp"
31 #include "level.hpp"
32 #include "tile.hpp"
33 #include "resources.hpp"
34 #include "lisp/lisp.hpp"
35 #include "lisp/list_iterator.hpp"
36 #include "lisp/writer.hpp"
37 #include "object_factory.hpp"
38 #include "main.hpp"
39 #include "log.hpp"
40 #include "tile_set.hpp"
41 #include "tile_manager.hpp"
42 #include "scripting/tilemap.hpp"
43 #include "scripting/squirrel_util.hpp"
44
45 TileMap::TileMap(const TileSet *new_tileset)
46   : tileset(new_tileset), solid(false), speed_x(1), speed_y(1), width(0),
47     height(0), z_pos(0), x_offset(0), y_offset(0), movement(Vector(0,0)), drawing_effect(NO_EFFECT),
48     alpha(1.0), current_alpha(1.0), remaining_fade_time(0),
49     draw_target(DrawingContext::NORMAL)
50 {
51 }
52
53 TileMap::TileMap(const lisp::Lisp& reader)
54   : solid(false), speed_x(1), speed_y(1), width(-1),
55     height(-1), z_pos(0), x_offset(0), y_offset(0), movement(Vector(0,0)), drawing_effect(NO_EFFECT),
56     alpha(1.0), current_alpha(1.0), remaining_fade_time(0),
57     draw_target(DrawingContext::NORMAL)
58 {
59   tileset = current_tileset;
60   assert(tileset != NULL);
61
62   reader.get("name",   name);
63   reader.get("z-pos",  z_pos);
64   reader.get("solid",  solid);
65   reader.get("speed",  speed_x);
66   reader.get("speed-y", speed_y);
67   
68   if(solid && ((speed_x != 1) || (speed_y != 1))) {
69     log_warning << "Speed of solid tilemap is not 1. fixing" << std::endl;
70     speed_x = 1;
71     speed_y = 1;
72   }
73
74   const lisp::Lisp* pathLisp = reader.get_lisp("path");
75   if (pathLisp) {
76     path.reset(new Path());
77     path->read(*pathLisp);
78     walker.reset(new PathWalker(path.get(), /*running*/false));
79     Vector v = path->get_base();
80     set_x_offset(v.x);
81     set_y_offset(v.y);
82   }
83
84   std::string draw_target_s = "normal";
85   reader.get("draw-target", draw_target_s);
86   if (draw_target_s == "normal") draw_target = DrawingContext::NORMAL;
87   if (draw_target_s == "lightmap") draw_target = DrawingContext::LIGHTMAP;
88
89   if (reader.get("alpha", alpha)) {
90     current_alpha = alpha;
91   }
92
93   reader.get("width", width);
94   reader.get("height", height);
95   if(width < 0 || height < 0)
96     throw std::runtime_error("Invalid/No width/height specified in tilemap.");
97
98   if(!reader.get("tiles", tiles))
99     throw std::runtime_error("No tiles in tilemap.");
100
101   if(int(tiles.size()) != width*height) {
102     throw std::runtime_error("wrong number of tiles in tilemap.");
103   }
104
105   // make sure all tiles used on the tilemap are loaded
106   for(Tiles::iterator i = tiles.begin(); i != tiles.end(); ++i)
107     tileset->get(*i);
108 }
109
110 TileMap::TileMap(const TileSet *new_tileset, std::string name, int z_pos,
111                  bool solid, size_t width, size_t height)
112   : tileset(new_tileset), solid(solid), speed_x(1), speed_y(1), width(0),
113     height(0), z_pos(z_pos), x_offset(0), y_offset(0), movement(Vector(0,0)),
114     drawing_effect(NO_EFFECT), alpha(1.0), current_alpha(1.0),
115     remaining_fade_time(0), draw_target(DrawingContext::NORMAL)
116 {
117   this->name = name;
118
119   resize(width, height);
120 }
121
122 TileMap::~TileMap()
123 {
124 }
125
126 void
127 TileMap::write(lisp::Writer& writer)
128 {
129   writer.start_list("tilemap");
130
131   writer.write("z-pos", z_pos);
132
133   writer.write("solid", solid);
134   writer.write("speed", speed_x);
135   writer.write("speed-y", speed_y);
136   writer.write("width", width);
137   writer.write("height", height);
138   writer.write("tiles", tiles);
139
140   writer.end_list("tilemap");
141 }
142
143 void
144 TileMap::update(float elapsed_time)
145 {
146   // handle tilemap fading
147   if (current_alpha != alpha) {
148     remaining_fade_time = std::max(0.0f, remaining_fade_time - elapsed_time);
149     if (remaining_fade_time == 0.0f) {
150       current_alpha = alpha;
151     } else {
152       float amt = (alpha - current_alpha) / (remaining_fade_time / elapsed_time);
153       if (amt > 0) current_alpha = std::min(current_alpha + amt, alpha);
154       if (amt < 0) current_alpha = std::max(current_alpha + amt, alpha);
155     }
156     if ((alpha < 0.25) && (current_alpha < 0.25)) set_solid(false);
157     if ((alpha > 0.75) && (current_alpha > 0.75)) set_solid(true);
158   }
159
160   movement = Vector(0,0);
161   // if we have a path to follow, follow it
162   if (walker.get()) {
163     Vector v = walker->advance(elapsed_time);
164     movement = Vector(v.x-get_x_offset(), std::max(0.0f,v.y-get_y_offset()));
165     set_x_offset(v.x);
166     set_y_offset(v.y);
167   }
168 }
169
170 void
171 TileMap::draw(DrawingContext& context)
172 {
173   // skip draw if current opacity is set to 0.0
174   if (current_alpha == 0.0) return;
175
176   context.push_transform();
177   context.push_target();
178   context.set_target(draw_target);
179
180   if(drawing_effect != 0) context.set_drawing_effect(drawing_effect);
181   if(current_alpha != 1.0) context.set_alpha(current_alpha);
182
183   float trans_x = roundf(context.get_translation().x);
184   float trans_y = roundf(context.get_translation().y);
185   context.set_translation(Vector(int(trans_x * speed_x),
186                                  int(trans_y * speed_y)));
187
188   /** if we don't round here, we'll have a 1 pixel gap on screen sometimes.
189    * I have no idea why */
190   float start_x = int((roundf(context.get_translation().x) - roundf(x_offset)) / 32) * 32 + roundf(x_offset);
191   float start_y = int((roundf(context.get_translation().y) - roundf(y_offset)) / 32) * 32 + roundf(y_offset);
192   float end_x = std::min(start_x + SCREEN_WIDTH + 32, float(width * 32 + roundf(x_offset)));
193   float end_y = std::min(start_y + SCREEN_HEIGHT + 32, float(height * 32 + roundf(y_offset)));
194   int tsx = int((start_x - roundf(x_offset)) / 32); // tilestartindex x
195   int tsy = int((start_y - roundf(y_offset)) / 32); // tilestartindex y
196
197   Vector pos;
198   int tx, ty;
199   for(pos.x = start_x, tx = tsx; pos.x < end_x; pos.x += 32, ++tx) {
200     for(pos.y = start_y, ty = tsy; pos.y < end_y; pos.y += 32, ++ty) {
201       if ((tx < 0) || (ty < 0)) continue;
202       const Tile* tile = tileset->get(tiles[ty*width + tx]);
203       assert(tile != 0);
204       tile->draw(context, pos, z_pos);
205     }
206   }
207
208   context.pop_target();
209   context.pop_transform();
210 }
211
212 void
213 TileMap::goto_node(int node_no)
214 {
215   if (!walker.get()) return;
216   walker->goto_node(node_no);
217 }
218
219 void
220 TileMap::start_moving()
221 {
222   if (!walker.get()) return;
223   walker->start_moving();
224 }
225
226 void
227 TileMap::stop_moving()
228 {
229   if (!walker.get()) return;
230   walker->stop_moving();
231 }
232
233 void
234 TileMap::expose(HSQUIRRELVM vm, SQInteger table_idx)
235 {
236   if (name.empty()) return;
237   Scripting::TileMap* interface = new Scripting::TileMap(this);
238   expose_object(vm, table_idx, interface, name, true);
239 }
240
241 void
242 TileMap::unexpose(HSQUIRRELVM vm, SQInteger table_idx)
243 {
244   if (name.empty()) return;
245   Scripting::unexpose_object(vm, table_idx, name);
246 }
247
248 void
249 TileMap::set(int newwidth, int newheight, const std::vector<unsigned int>&newt,
250     int new_z_pos, bool newsolid)
251 {
252   if(int(newt.size()) != newwidth * newheight)
253     throw std::runtime_error("Wrong tilecount count.");
254
255   width  = newwidth;
256   height = newheight;
257
258   tiles.resize(newt.size());
259   tiles = newt;
260
261   z_pos  = new_z_pos;
262   solid  = newsolid;
263
264   // make sure all tiles are loaded
265   for(Tiles::iterator i = tiles.begin(); i != tiles.end(); ++i)
266     tileset->get(*i);
267 }
268
269 void
270 TileMap::resize(int new_width, int new_height, int fill_id)
271 {
272   if(new_width < width) {
273     // remap tiles for new width
274     for(int y = 0; y < height && y < new_height; ++y) {
275       for(int x = 0; x < new_width; ++x) {
276         tiles[y * new_width + x] = tiles[y * width + x];
277       }
278     }
279   }
280
281   tiles.resize(new_width * new_height, fill_id);
282
283   if(new_width > width) {
284     // remap tiles
285     for(int y = std::min(height, new_height)-1; y >= 0; --y) {
286       for(int x = new_width-1; x >= 0; --x) {
287         if(x >= width) {
288           tiles[y * new_width + x] = fill_id;
289           continue;
290         }
291
292         tiles[y * new_width + x] = tiles[y * width + x];
293       }
294     }
295   }
296
297   height = new_height;
298   width = new_width;
299 }
300
301 void
302 TileMap::set_solid(bool solid)
303 {
304   this->solid = solid;
305 }
306
307 uint32_t
308 TileMap::get_tile_id(int x, int y) const
309 {
310   if(x < 0 || x >= width || y < 0 || y >= height) {
311     //log_warning << "tile outside tilemap requested" << std::endl;
312     return 0;
313   }
314
315   return tiles[y*width + x];
316 }
317
318
319 const Tile*
320 TileMap::get_tile(int x, int y) const
321 {
322   uint32_t id = get_tile_id(x, y);
323   return tileset->get(id);
324 }
325
326 uint32_t
327 TileMap::get_tile_id_at(const Vector& pos) const
328 {
329   return get_tile_id(int(pos.x - x_offset)/32, int(pos.y - y_offset)/32);
330 }
331
332 const Tile*
333 TileMap::get_tile_at(const Vector& pos) const
334 {
335   uint32_t id = get_tile_id_at(pos);
336   return tileset->get(id);
337 }
338
339 void
340 TileMap::change(int x, int y, uint32_t newtile)
341 {
342   assert(x >= 0 && x < width && y >= 0 && y < height);
343   tiles[y*width + x] = newtile;
344 }
345
346 void
347 TileMap::change_at(const Vector& pos, uint32_t newtile)
348 {
349   change(int(pos.x - x_offset)/32, int(pos.y - y_offset)/32, newtile);
350 }
351
352 void
353 TileMap::change_all(uint32_t oldtile, uint32_t newtile)
354 {
355   for (size_t x = 0; x < get_width(); x++) {
356     for (size_t y = 0; y < get_height(); y++) {
357       if (get_tile_id(x,y) != oldtile)
358         continue;
359
360       change(x,y,newtile);
361     }
362   }
363 }
364
365 void
366 TileMap::fade(float alpha, float seconds)
367 {
368   this->alpha = alpha;
369   this->remaining_fade_time = seconds;
370 }
371
372
373 void 
374 TileMap::set_alpha(float alpha)
375 {
376   this->alpha = alpha;
377   this->current_alpha = alpha;
378   this->remaining_fade_time = 0;
379   if (current_alpha < 0.25) set_solid(false);
380   if (current_alpha > 0.75) set_solid(true);
381 }
382
383 float 
384 TileMap::get_alpha()
385 {
386   return this->current_alpha;
387 }
388   
389 IMPLEMENT_FACTORY(TileMap, "tilemap");