Changed behavior of centered text drawing and added right allignment, as well.
[supertux.git] / src / worldmap.cpp
1 //  $Id$
2 //
3 //  SuperTux -  A Jump'n Run
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 <fstream>
22 #include <vector>
23 #include <cassert>
24 #include <unistd.h>
25
26 #include "app/globals.h"
27 #include "video/surface.h"
28 #include "video/screen.h"
29 #include "video/drawing_context.h"
30 #include "utils/lispreader.h"
31 #include "utils/lispwriter.h"
32 #include "special/frame_rate.h"
33 #include "gameloop.h"
34 #include "app/setup.h"
35 #include "sector.h"
36 #include "worldmap.h"
37 #include "audio/sound_manager.h"
38 #include "resources.h"
39 #include "app/gettext.h"
40 #include "misc.h"
41
42 #define map_message_TIME 2800
43
44 Menu* worldmap_menu  = 0;
45
46 namespace WorldMapNS {
47
48 Direction reverse_dir(Direction direction)
49 {
50   switch(direction)
51     {
52     case D_WEST:
53       return D_EAST;
54     case D_EAST:
55       return D_WEST;
56     case D_NORTH:
57       return D_SOUTH;
58     case D_SOUTH:
59       return D_NORTH;
60     case D_NONE:
61       return D_NONE;
62     }
63   return D_NONE;
64 }
65
66 std::string
67 direction_to_string(Direction direction)
68 {
69   switch(direction)
70     {
71     case D_WEST:
72       return "west";
73     case D_EAST:
74       return "east";
75     case D_NORTH:
76       return "north";
77     case D_SOUTH:
78       return "south";
79     default:
80       return "none";
81     }
82 }
83
84 Direction
85 string_to_direction(const std::string& directory)
86 {
87   if (directory == "west")
88     return D_WEST;
89   else if (directory == "east")
90     return D_EAST;
91   else if (directory == "north")
92     return D_NORTH;
93   else if (directory == "south")
94     return D_SOUTH;
95   else
96     return D_NONE;
97 }
98
99 TileManager::TileManager()
100 {
101   std::string stwt_filename = datadir +  "/images/worldmap/antarctica.stwt";
102   lisp_object_t* root_obj = lisp_read_from_file(stwt_filename);
103  
104   if (!root_obj)
105     Termination::abort("Couldn't load file", stwt_filename);
106
107   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-worldmap-tiles") == 0)
108     {
109       lisp_object_t* cur = lisp_cdr(root_obj);
110
111       while(!lisp_nil_p(cur))
112         {
113           lisp_object_t* element = lisp_car(cur);
114
115           if (strcmp(lisp_symbol(lisp_car(element)), "tile") == 0)
116             {
117               int id = 0;
118               std::string filename = "<invalid>";
119
120               Tile* tile = new Tile;             
121               tile->north = tile->east = tile->south = tile->west = true;
122               tile->stop  = true;
123               tile->auto_walk = false;
124   
125               LispReader reader(lisp_cdr(element));
126               reader.read_int("id", id);
127
128               std::string temp;
129               reader.read_string("possible-directions", temp);
130               if(!temp.empty())
131                 {
132                 tile->north = tile->east = tile->south = tile->west = false;
133                 if(temp.find("north") != std::string::npos)
134                   tile->north = true;
135                 if(temp.find("south") != std::string::npos)
136                   tile->south = true;
137                 if(temp.find("east") != std::string::npos)
138                   tile->east = true;
139                 if(temp.find("west") != std::string::npos)
140                   tile->west = true;
141                 }
142
143               /* For backward compatibility */
144               reader.read_bool("north", tile->north);
145               reader.read_bool("south", tile->south);
146               reader.read_bool("west",  tile->west);
147               reader.read_bool("east",  tile->east);
148
149               reader.read_bool("stop",  tile->stop);
150               reader.read_bool("auto-walk",  tile->auto_walk);
151               reader.read_string("image", filename);
152
153               reader.read_string("one-way", temp);
154               tile->one_way = BOTH_WAYS;
155               if(!temp.empty())
156                 {
157                 if(temp == "north-south")
158                   tile->one_way = NORTH_SOUTH_WAY;
159                 else if(temp == "south-north")
160                   tile->one_way = SOUTH_NORTH_WAY;
161                 else if(temp == "east-west")
162                   tile->one_way = EAST_WEST_WAY;
163                 else if(temp == "west-east")
164                   tile->one_way = WEST_EAST_WAY;
165                 }
166
167               tile->sprite = new Surface(
168                            datadir +  "/images/worldmap/" + filename, 
169                            true);
170
171               if (id >= int(tiles.size()))
172                 tiles.resize(id+1);
173
174               tiles[id] = tile;
175             }
176           else
177             {
178               puts("Unhandled symbol");
179             }
180
181           cur = lisp_cdr(cur);
182         }
183     }
184   else
185     {
186       assert(0);
187     }
188
189   lisp_free(root_obj);
190 }
191
192 TileManager::~TileManager()
193 {
194   for(std::vector<Tile*>::iterator i = tiles.begin(); i != tiles.end(); ++i)
195     delete *i;
196 }
197
198 Tile*
199 TileManager::get(int i)
200 {
201   assert(i >=0 && i < int(tiles.size()));
202   return tiles[i];
203 }
204
205 //---------------------------------------------------------------------------
206
207 Tux::Tux(WorldMap* worldmap_)
208   : worldmap(worldmap_)
209 {
210   largetux_sprite = new Surface(datadir +  "/images/worldmap/tux.png", true);
211   firetux_sprite = new Surface(datadir +  "/images/worldmap/firetux.png", true);
212   smalltux_sprite = new Surface(datadir +  "/images/worldmap/smalltux.png", true);
213
214   offset = 0;
215   moving = false;
216   tile_pos.x = worldmap->get_start_x();
217   tile_pos.y = worldmap->get_start_y();
218   direction = D_NONE;
219   input_direction = D_NONE;
220 }
221
222 Tux::~Tux()
223 {
224   delete smalltux_sprite;
225   delete firetux_sprite;
226   delete largetux_sprite;
227 }
228
229 void
230 Tux::draw(DrawingContext& context, const Vector& offset)
231 {
232   Vector pos = get_pos();
233   switch (player_status.bonus)
234     {
235     case PlayerStatus::GROWUP_BONUS:
236       context.draw_surface(largetux_sprite,
237           Vector(pos.x + offset.x, pos.y + offset.y - 10), LAYER_OBJECTS);
238       break;
239     case PlayerStatus::FLOWER_BONUS:
240       context.draw_surface(firetux_sprite,
241           Vector(pos.x + offset.x, pos.y + offset.y - 10), LAYER_OBJECTS);
242       break;
243     case PlayerStatus::NO_BONUS:
244       context.draw_surface(smalltux_sprite,
245           Vector(pos.x + offset.x, pos.y + offset.y - 10), LAYER_OBJECTS);
246       break;
247     }
248 }
249
250
251 Vector
252 Tux::get_pos()
253 {
254   float x = tile_pos.x * 32;
255   float y = tile_pos.y * 32;
256
257   switch(direction)
258     {
259     case D_WEST:
260       x -= offset - 32;
261       break;
262     case D_EAST:
263       x += offset - 32;
264       break;
265     case D_NORTH:
266       y -= offset - 32;
267       break;
268     case D_SOUTH:
269       y += offset - 32;
270       break;
271     case D_NONE:
272       break;
273     }
274   
275   return Vector((int)x, (int)y); 
276 }
277
278 void
279 Tux::stop()
280 {
281   offset = 0;
282   direction = D_NONE;
283   input_direction = D_NONE;
284   moving = false;
285 }
286
287 void
288 Tux::set_direction(Direction dir)
289 {
290 input_direction = dir;
291 }
292
293 void
294 Tux::action(float delta)
295 {
296   if (!moving)
297     {
298       if (input_direction != D_NONE)
299         { 
300           WorldMap::SpecialTile* special_tile = worldmap->at_special_tile();
301
302           // We got a new direction, so lets start walking when possible
303           Vector next_tile;
304           if ((!special_tile || special_tile->solved || special_tile->level_name.empty())
305               && worldmap->path_ok(input_direction, tile_pos, &next_tile))
306             {
307               tile_pos = next_tile;
308               moving = true;
309               direction = input_direction;
310               back_direction = reverse_dir(direction);
311             }
312           else if (input_direction == back_direction)
313             {
314               moving = true;
315               direction = input_direction;
316               tile_pos = worldmap->get_next_tile(tile_pos, direction);
317               back_direction = reverse_dir(direction);
318             }
319         }
320     }
321   else
322     {
323       // Let tux walk a few pixels (20 pixel/sec)
324       offset += 20.0f * delta;
325
326       if (offset > 32)
327         { // We reached the next tile, so we check what to do now
328           offset -= 32;
329
330           WorldMap::SpecialTile* special_tile = worldmap->at_special_tile();
331           if(special_tile && special_tile->passive_message)
332             {  // direction and the apply_action_ are opposites, since they "see"
333                // directions in a different way
334             if((direction == D_NORTH && special_tile->apply_action_south) ||
335                (direction == D_SOUTH && special_tile->apply_action_north) ||
336                (direction == D_WEST && special_tile->apply_action_east) ||
337                (direction == D_EAST && special_tile->apply_action_west))
338               {
339               worldmap->passive_message = special_tile->map_message;
340               worldmap->passive_message_timer.start(map_message_TIME);
341               }
342             }
343
344           if (worldmap->at(tile_pos)->stop || (special_tile && 
345               !special_tile->passive_message))
346             {
347               if(special_tile && !special_tile->map_message.empty() &&
348                 !special_tile->passive_message)
349                 worldmap->passive_message_timer.stop();
350               stop();
351             }
352           else
353             {
354               if (worldmap->at(tile_pos)->auto_walk || direction != input_direction)
355                 { // Turn to a new direction
356                   Tile* tile = worldmap->at(tile_pos);
357
358                   if(direction != input_direction && 
359                      ((tile->north && input_direction == D_NORTH) ||
360                      (tile->south && input_direction == D_SOUTH) ||
361                      (tile->east && input_direction == D_EAST) ||
362                      (tile->west && input_direction == D_WEST)))
363                     {  // player has changed direction during auto-movement
364                     direction = input_direction;
365                     back_direction = reverse_dir(direction);
366                     }
367                   else if(direction != input_direction)
368                     {  // player has changed to impossible tile
369                       back_direction = reverse_dir(direction);
370                       stop();
371                     }
372                   else
373                     {
374                     Direction dir = D_NONE;
375                   
376                     if (tile->north && back_direction != D_NORTH)
377                       dir = D_NORTH;
378                     else if (tile->south && back_direction != D_SOUTH)
379                       dir = D_SOUTH;
380                     else if (tile->east && back_direction != D_EAST)
381                       dir = D_EAST;
382                     else if (tile->west && back_direction != D_WEST)
383                       dir = D_WEST;
384
385                     if (dir != D_NONE)
386                       {
387                       direction = dir;
388                       input_direction = direction;
389                       back_direction = reverse_dir(direction);
390                       }
391                     else
392                       {
393                       // Should never be reached if tiledata is good
394                       stop();
395                       return;
396                       }
397                     }
398                   }
399
400               // Walk automatically to the next tile
401               if(direction != D_NONE)
402                 {
403                 Vector next_tile;
404                 if (worldmap->path_ok(direction, tile_pos, &next_tile))
405                   {
406                   tile_pos = next_tile;
407                   }
408                 else
409                   {
410                   puts("Tilemap data is buggy");
411                   stop();
412                   }
413                 }
414             }
415         }
416     }
417 }
418
419 //---------------------------------------------------------------------------
420 Tile::Tile()
421 {
422 }
423
424 Tile::~Tile()
425 {
426   delete sprite;
427 }
428
429 //---------------------------------------------------------------------------
430
431 WorldMap::WorldMap()
432 {
433   tile_manager = new TileManager();
434   //tux = new Tux(this);
435   
436   width  = 20;
437   height = 15;
438   
439   start_x = 4;
440   start_y = 5;
441   
442   leveldot_green = new Surface(datadir +  "/images/worldmap/leveldot_green.png", true);
443   leveldot_red = new Surface(datadir +  "/images/worldmap/leveldot_red.png", true);
444   messagedot   = new Surface(datadir +  "/images/worldmap/messagedot.png", true);
445   teleporterdot   = new Surface(datadir +  "/images/worldmap/teleporterdot.png", true);
446
447   enter_level = false;
448
449   name = "<no title>";
450   music = "SALCON.MOD";
451 }
452
453 WorldMap::~WorldMap()
454 {
455   delete tux;
456   delete tile_manager;
457
458   delete leveldot_green;
459   delete leveldot_red;
460   delete messagedot;
461   delete teleporterdot;
462 }
463
464 void
465 WorldMap::load_map()
466 {
467   lisp_object_t* root_obj = lisp_read_from_file(datadir + "/levels/worldmap/" + map_filename);
468   if (!root_obj)
469     Termination::abort("Couldn't load file", datadir + "/levels/worldmap/" + map_filename);
470
471   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-worldmap") == 0)
472     {
473       lisp_object_t* cur = lisp_cdr(root_obj);
474
475       while(!lisp_nil_p(cur))
476         {
477           lisp_object_t* element = lisp_car(cur);
478
479           if (strcmp(lisp_symbol(lisp_car(element)), "tilemap") == 0)
480             {
481               LispReader reader(lisp_cdr(element));
482               reader.read_int("width",  width);
483               reader.read_int("height", height);
484               reader.read_int_vector("data", tilemap);
485             }
486           else if (strcmp(lisp_symbol(lisp_car(element)), "properties") == 0)
487             {
488               LispReader reader(lisp_cdr(element));
489               reader.read_string("name", name, true);
490               reader.read_string("music", music);
491               reader.read_int("start_pos_x", start_x);
492               reader.read_int("start_pos_y", start_y);
493             }
494           else if (strcmp(lisp_symbol(lisp_car(element)), "special-tiles") == 0 ||
495                    strcmp(lisp_symbol(lisp_car(element)), "levels") == 0)
496             {
497               lisp_object_t* cur = lisp_cdr(element);
498               
499               while(!lisp_nil_p(cur))
500                 {
501                   lisp_object_t* element = lisp_car(cur);
502
503                   if (strcmp(lisp_symbol(lisp_car(element)), "special-tile") == 0)
504                     {
505                       SpecialTile special_tile;
506                       LispReader reader(lisp_cdr(element));
507                       special_tile.solved = false;
508                       
509                       special_tile.north = true;
510                       special_tile.east  = true;
511                       special_tile.south = true;
512                       special_tile.west  = true;
513
514                       reader.read_int("x", special_tile.x);
515                       reader.read_int("y", special_tile.y);
516                       reader.read_string("level", special_tile.level_name, false);
517
518                       special_tile.vertical_flip = false;
519                       reader.read_bool("vertical-flip", special_tile.vertical_flip);
520
521                       special_tile.map_message.erase();
522                       reader.read_string("map-message", special_tile.map_message);
523                       special_tile.passive_message = false;
524                       reader.read_bool("passive-message", special_tile.passive_message);
525
526                       special_tile.teleport_dest_x = special_tile.teleport_dest_y = -1;
527                       reader.read_int("teleport-to-x", special_tile.teleport_dest_x);
528                       reader.read_int("teleport-to-y", special_tile.teleport_dest_y);
529
530                       special_tile.invisible = false;
531                       reader.read_bool("invisible-tile", special_tile.invisible);
532
533                       special_tile.apply_action_north = special_tile.apply_action_south =
534                           special_tile.apply_action_east = special_tile.apply_action_west =
535                           true;
536                       std::string apply_direction;
537                       reader.read_string("apply-to-direction", apply_direction);
538                       if(!apply_direction.empty())
539                         {
540                         special_tile.apply_action_north = special_tile.apply_action_south =
541                             special_tile.apply_action_east = special_tile.apply_action_west =
542                             false;
543                         if(apply_direction.find("north") != std::string::npos)
544                           special_tile.apply_action_north = true;
545                         if(apply_direction.find("south") != std::string::npos)
546                           special_tile.apply_action_south = true;
547                         if(apply_direction.find("east") != std::string::npos)
548                           special_tile.apply_action_east = true;
549                         if(apply_direction.find("west") != std::string::npos)
550                           special_tile.apply_action_west = true;
551                         }
552
553                       reader.read_string("extro-filename", special_tile.extro_filename);
554                       reader.read_string("next-world", special_tile.next_worldmap);
555                       special_tile.quit_worldmap = false;
556                       reader.read_bool("exit-game", special_tile.quit_worldmap);
557
558                       special_tile.auto_path = true;
559                       reader.read_bool("auto-path", special_tile.auto_path);
560
561                       special_tiles.push_back(special_tile);
562                     }
563
564                   /* Kept for backward compability */
565                   else if (strcmp(lisp_symbol(lisp_car(element)), "level") == 0)
566                     {
567                       SpecialTile special_tile;
568                       LispReader reader(lisp_cdr(element));
569                       special_tile.solved = false;
570                       
571                       special_tile.north = true;
572                       special_tile.east  = true;
573                       special_tile.south = true;
574                       special_tile.west  = true;
575
576                       special_tile.invisible = false;
577
578                       special_tile.apply_action_north = special_tile.apply_action_south =
579                           special_tile.apply_action_east = special_tile.apply_action_west =
580                           true;
581                       special_tile.vertical_flip = false;
582                       special_tile.teleport_dest_x = special_tile.teleport_dest_y = -1;
583
584                       reader.read_string("extro-filename", special_tile.extro_filename);
585                       if(!special_tile.extro_filename.empty())
586                         special_tile.quit_worldmap = true;
587                       reader.read_string("name", special_tile.level_name, true);
588                       reader.read_int("x", special_tile.x);
589                       reader.read_int("y", special_tile.y);
590
591
592                       special_tiles.push_back(special_tile);
593                     }
594                   
595                   cur = lisp_cdr(cur);      
596                 }
597             }
598           else
599             {
600               
601             }
602           
603           cur = lisp_cdr(cur);
604         }
605     }
606
607     lisp_free(root_obj);
608     tux = new Tux(this);
609 }
610
611 void WorldMap::get_level_title(SpecialTile& special_tile)
612 {
613   /** get special_tile's title */
614   special_tile.title = "<no title>";
615
616   LispReader* reader = LispReader::load(datadir + "/levels/" + special_tile.level_name, "supertux-level");
617   if(!reader)
618     {
619     std::cerr << "Error: Could not open level file. Ignoring...\n";
620     return;
621     }
622
623   reader->read_string("name", special_tile.title, true);
624   delete reader;
625 }
626
627 void WorldMap::calculate_total_stats()
628 {
629   total_stats.reset();
630   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
631     {
632     if (!i->level_name.empty() && i->solved)
633       {
634       total_stats += i->statistics;
635       }
636     }
637 }
638
639 void
640 WorldMap::on_escape_press()
641 {
642   // Show or hide the menu
643   if(!Menu::current())
644     {
645     Menu::set_current(worldmap_menu); 
646     tux->set_direction(D_NONE);  // stop tux movement when menu is called
647     }
648   else
649     Menu::set_current(0); 
650 }
651
652 void
653 WorldMap::get_input()
654 {
655   enter_level = false;
656    
657   SDL_Event event;
658   while (SDL_PollEvent(&event))
659     {
660       if (Menu::current())
661         {
662           Menu::current()->event(event);
663         }
664       else
665         {
666           switch(event.type)
667             {
668             case SDL_QUIT:
669               Termination::abort("Received window close", "");
670               break;
671           
672             case SDL_KEYDOWN:
673               switch(event.key.keysym.sym)
674                 {
675                 case SDLK_ESCAPE:
676                   on_escape_press();
677                   break;
678                 case SDLK_LCTRL:
679                 case SDLK_RETURN:
680                   enter_level = true;
681                   break;
682
683                 case SDLK_LEFT:
684                   tux->set_direction(D_WEST);
685                   break;
686                 case SDLK_RIGHT:
687                   tux->set_direction(D_EAST);
688                   break;
689                 case SDLK_UP:
690                   tux->set_direction(D_NORTH);
691                   break;
692                 case SDLK_DOWN:
693                   tux->set_direction(D_SOUTH);
694                   break;
695
696                 default:
697                   break;
698                 }
699               break;
700
701             case SDL_JOYHATMOTION:
702               if(event.jhat.value & SDL_HAT_UP) {
703                 tux->set_direction(D_NORTH);
704               } else if(event.jhat.value & SDL_HAT_DOWN) {
705                 tux->set_direction(D_SOUTH);
706               } else if(event.jhat.value & SDL_HAT_LEFT) {
707                 tux->set_direction(D_WEST);
708               } else if(event.jhat.value & SDL_HAT_RIGHT) {
709                 tux->set_direction(D_EAST);
710               }
711               break;
712           
713             case SDL_JOYAXISMOTION:
714               if (event.jaxis.axis == joystick_keymap.x_axis)
715                 {
716                   if (event.jaxis.value < -joystick_keymap.dead_zone)
717                     tux->set_direction(D_WEST);
718                   else if (event.jaxis.value > joystick_keymap.dead_zone)
719                     tux->set_direction(D_EAST);
720                 }
721               else if (event.jaxis.axis == joystick_keymap.y_axis)
722                 {
723                   if (event.jaxis.value > joystick_keymap.dead_zone)
724                     tux->set_direction(D_SOUTH);
725                   else if (event.jaxis.value < -joystick_keymap.dead_zone)
726                     tux->set_direction(D_NORTH);
727                 }
728               break;
729
730             case SDL_JOYBUTTONDOWN:
731               if (event.jbutton.button == joystick_keymap.b_button)
732                 enter_level = true;
733               else if (event.jbutton.button == joystick_keymap.start_button)
734                 on_escape_press();
735               break;
736
737             default:
738               break;
739             }
740         }
741     }
742 }
743
744 Vector
745 WorldMap::get_next_tile(Vector pos, Direction direction)
746 {
747   switch(direction)
748     {
749     case D_WEST:
750       pos.x -= 1;
751       break;
752     case D_EAST:
753       pos.x += 1;
754       break;
755     case D_NORTH:
756       pos.y -= 1;
757       break;
758     case D_SOUTH:
759       pos.y += 1;
760       break;
761     case D_NONE:
762       break;
763     }
764   return pos;
765 }
766
767 bool
768 WorldMap::path_ok(Direction direction, Vector old_pos, Vector* new_pos)
769 {
770   *new_pos = get_next_tile(old_pos, direction);
771
772   if (!(new_pos->x >= 0 && new_pos->x < width
773         && new_pos->y >= 0 && new_pos->y < height))
774     { // New position is outsite the tilemap
775       return false;
776     }
777   else if(at(*new_pos)->one_way != BOTH_WAYS)
778     {
779 std::cerr << "one way only\n";
780       if((at(*new_pos)->one_way == NORTH_SOUTH_WAY && direction != D_SOUTH) ||
781          (at(*new_pos)->one_way == SOUTH_NORTH_WAY && direction != D_NORTH) ||
782          (at(*new_pos)->one_way == EAST_WEST_WAY && direction != D_WEST) ||
783          (at(*new_pos)->one_way == WEST_EAST_WAY && direction != D_EAST))
784         return false;
785       return true;
786     }
787   else
788     { // Check if we the tile allows us to go to new_pos
789       switch(direction)
790         {
791         case D_WEST:
792           return (at(old_pos)->west && at(*new_pos)->east);
793
794         case D_EAST:
795           return (at(old_pos)->east && at(*new_pos)->west);
796
797         case D_NORTH:
798           return (at(old_pos)->north && at(*new_pos)->south);
799
800         case D_SOUTH:
801           return (at(old_pos)->south && at(*new_pos)->north);
802
803         case D_NONE:
804           assert(!"path_ok() can't work if direction is NONE");
805         }
806       return false;
807     }
808 }
809
810 void
811 WorldMap::update(float delta)
812 {
813   if (enter_level && !tux->is_moving())
814     {
815       bool level_finished = true;
816       SpecialTile* special_tile = at_special_tile();
817       if (!special_tile)
818         {
819         std::cout << "Nothing to enter at: "
820           << tux->get_tile_pos().x << ", " << tux->get_tile_pos().y << std::endl;
821         return;
822         }
823
824
825       if(!special_tile->level_name.empty())
826         {
827           if (special_tile->x == tux->get_tile_pos().x && 
828               special_tile->y == tux->get_tile_pos().y)
829             {
830               PlayerStatus old_player_status = player_status;
831
832               std::cout << "Enter the current level: " << special_tile->level_name << std::endl;
833               // do a shriking fade to the special_tile
834               shrink_fade(Vector((special_tile->x*32 + 16 + offset.x),(special_tile->y*32 + 16
835                       + offset.y)), 500);
836               GameSession session(datadir +  "/levels/" + special_tile->level_name,
837                                   ST_GL_LOAD_LEVEL_FILE, special_tile->vertical_flip,
838                                   &special_tile->statistics);
839
840               switch (session.run())
841                 {
842                 case GameSession::ES_LEVEL_FINISHED:
843                   {
844                     level_finished = true;
845                     bool old_level_state = special_tile->solved;
846                     special_tile->solved = true;
847
848                     // deal with statistics
849                     special_tile->statistics.merge(global_stats);
850                     calculate_total_stats();
851
852                     if (session.get_current_sector()->player->got_power !=
853                           session.get_current_sector()->player->NONE_POWER)
854                       player_status.bonus = PlayerStatus::FLOWER_BONUS;
855                     else if (session.get_current_sector()->player->size == BIG)
856                       player_status.bonus = PlayerStatus::GROWUP_BONUS;
857                     else
858                       player_status.bonus = PlayerStatus::NO_BONUS;
859
860                     if (old_level_state != special_tile->solved && special_tile->auto_path)
861                       { // Try to detect the next direction to which we should walk
862                         // FIXME: Mostly a hack
863                         Direction dir = D_NONE;
864                     
865                         Tile* tile = at(tux->get_tile_pos());
866
867                         if (tile->north && tux->back_direction != D_NORTH)
868                           dir = D_NORTH;
869                         else if (tile->south && tux->back_direction != D_SOUTH)
870                           dir = D_SOUTH;
871                         else if (tile->east && tux->back_direction != D_EAST)
872                           dir = D_EAST;
873                         else if (tile->west && tux->back_direction != D_WEST)
874                           dir = D_WEST;
875
876                         if (dir != D_NONE)
877                           {
878                             tux->set_direction(dir);
879                             //tux->update(delta);
880                           }
881
882                         std::cout << "Walk to dir: " << dir << std::endl;
883                       }
884                   }
885
886                   break;
887                 case GameSession::ES_LEVEL_ABORT:
888                   level_finished = false;
889                   /* In case the player's abort the special_tile, keep it using the old
890                       status. But the minimum lives and no bonus. */
891                   player_status.distros = old_player_status.distros;
892                   player_status.lives = std::min(old_player_status.lives, player_status.lives);
893                   player_status.bonus = player_status.NO_BONUS;
894
895                   break;
896                 case GameSession::ES_GAME_OVER:
897                   {
898                   level_finished = false;
899                   /* draw an end screen */
900                   /* TODO: in the future, this should make a dialog a la SuperMario, asking
901                   if the player wants to restart the world map with no score and from
902                   level 1 */
903                   char str[80];
904
905                   DrawingContext context;
906                   context.draw_gradient(Color (200,240,220), Color(200,200,220),
907                       LAYER_BACKGROUND0);
908
909                   context.draw_text(blue_text, _("GAMEOVER"), 
910                       Vector(screen->w/2, 200), CENTER_ALLIGN, LAYER_FOREGROUND1);
911
912                   sprintf(str, _("COINS: %d"), player_status.distros);
913                   context.draw_text(gold_text, str,
914                       Vector(screen->w/2, screen->w - 32), CENTER_ALLIGN, LAYER_FOREGROUND1);
915
916                   total_stats.draw_message_info(context, _("Total Statistics"));
917
918                   context.do_drawing();
919   
920                   SDL_Event event;
921                   wait_for_event(event,2000,6000,true);
922
923                   quit = true;
924                   player_status.reset();
925                   break;
926                   }
927                 case GameSession::ES_NONE:
928                   assert(false);
929                   // Should never be reached 
930                   break;
931                 }
932
933               SoundManager::get()->play_music(song);
934               Menu::set_current(0);
935               if (!savegame_file.empty())
936                 savegame(savegame_file);
937             }
938         }
939       /* The porpose of the next checking is that if the player lost
940          the special_tile (in case there is one), don't show anything */
941       if(level_finished)
942         {
943         if (!special_tile->extro_filename.empty())
944           {
945           // Display a text file
946           display_text_file(special_tile->extro_filename, SCROLL_SPEED_MESSAGE, white_big_text , white_text, white_small_text, blue_text );
947           }
948         if (special_tile->teleport_dest_x != -1 && special_tile->teleport_dest_y != -1)
949           {
950           // TODO: an animation, camera scrolling or a fading would be a nice touch
951           SoundManager::get()->play_sound(IDToSound(SND_WARP));
952           tux->back_direction = D_NONE;
953           tux->set_tile_pos(Vector(special_tile->teleport_dest_x, special_tile->teleport_dest_y));
954           SDL_Delay(1000);
955           }
956         if (!special_tile->next_worldmap.empty())
957           {
958           // Load given worldmap
959           loadmap(special_tile->next_worldmap);
960           }
961         if (special_tile->quit_worldmap)
962           quit = true;
963         }
964     }
965   else
966     {
967       tux->action(delta);
968 //      tux->set_direction(input_direction);
969     }
970   
971   Menu* menu = Menu::current();
972   if(menu)
973     {
974       menu->action();
975
976       if(menu == worldmap_menu)
977         {
978           switch (worldmap_menu->check())
979             {
980             case MNID_RETURNWORLDMAP: // Return to game
981               break;
982             case MNID_QUITWORLDMAP: // Quit Worldmap
983               quit = true;
984               break;
985             }
986         }
987       else if(menu == options_menu)
988         {
989           process_options_menu();
990         }
991     }
992 }
993
994 Tile*
995 WorldMap::at(Vector p)
996 {
997   assert(p.x >= 0 
998          && p.x < width
999          && p.y >= 0
1000          && p.y < height);
1001
1002   int x = int(p.x);
1003   int y = int(p.y);
1004   return tile_manager->get(tilemap[width * y + x]);
1005 }
1006
1007 WorldMap::SpecialTile*
1008 WorldMap::at_special_tile()
1009 {
1010   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1011     {
1012       if (i->x == tux->get_tile_pos().x && 
1013           i->y == tux->get_tile_pos().y)
1014         return &*i; 
1015     }
1016
1017   return 0;
1018 }
1019
1020
1021 void
1022 WorldMap::draw(DrawingContext& context, const Vector& offset)
1023 {
1024   for(int y = 0; y < height; ++y)
1025     for(int x = 0; x < width; ++x)
1026       {
1027         Tile* tile = at(Vector(x, y));
1028         context.draw_surface(tile->sprite,
1029             Vector(x*32 + offset.x, y*32 + offset.y), LAYER_TILES);
1030       }
1031   
1032   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1033     {
1034       if(i->invisible)
1035         continue;
1036       if(i->level_name.empty())
1037         {
1038         if (i->teleport_dest_x != -1 && i->teleport_dest_y != -1)
1039           context.draw_surface(teleporterdot,
1040               Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1041
1042         else if (!i->map_message.empty() && !i->passive_message)
1043           context.draw_surface(messagedot,
1044               Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1045
1046         continue;
1047         }
1048
1049       if (i->solved)
1050         context.draw_surface(leveldot_green,
1051             Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1052       else
1053         context.draw_surface(leveldot_red,
1054             Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1055     }
1056
1057   tux->draw(context, offset);
1058   draw_status(context);
1059 }
1060
1061 void
1062 WorldMap::draw_status(DrawingContext& context)
1063 {
1064   char str[80];
1065   sprintf(str, " %d", total_stats.get_points(SCORE_STAT));
1066
1067   context.draw_text(white_text, _("SCORE"), Vector(0, 0), LEFT_ALLIGN, LAYER_FOREGROUND1);
1068   context.draw_text(gold_text, str, Vector(96, 0), LEFT_ALLIGN, LAYER_FOREGROUND1);
1069
1070   sprintf(str, "%d", player_status.distros);
1071   context.draw_text(white_text, _("COINS"), Vector(screen->w/2 - 16*5, 0),
1072       LEFT_ALLIGN, LAYER_FOREGROUND1);
1073   context.draw_text(gold_text, str, Vector(screen->w/2 + (16*5)/2, 0),
1074         LEFT_ALLIGN, LAYER_FOREGROUND1);
1075
1076   if (player_status.lives >= 5)
1077     {
1078       sprintf(str, "%dx", player_status.lives);
1079       context.draw_text(gold_text, str, 
1080           Vector(screen->w - gold_text->get_text_width(str) - tux_life->w, 0),
1081           LEFT_ALLIGN, LAYER_FOREGROUND1);
1082       context.draw_surface(tux_life, Vector(screen->w -
1083             gold_text->get_text_width("9"), 0), LEFT_ALLIGN, LAYER_FOREGROUND1);
1084     }
1085   else
1086     {
1087       for(int i= 0; i < player_status.lives; ++i)
1088         context.draw_surface(tux_life,
1089             Vector(screen->w - tux_life->w*4 + (tux_life->w*i), 0),
1090             LAYER_FOREGROUND1);
1091     }
1092   context.draw_text(white_text, _("LIVES"),
1093       Vector(screen->w - white_text->get_text_width(_("LIVES")) - white_text->get_text_width("   99"), 0),
1094       LEFT_ALLIGN, LAYER_FOREGROUND1);
1095
1096   if (!tux->is_moving())
1097     {
1098       for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1099         {
1100           if (i->x == tux->get_tile_pos().x && 
1101               i->y == tux->get_tile_pos().y)
1102             {
1103               if(!i->level_name.empty())
1104                 {
1105                 if(i->title == "")
1106                   get_level_title(*i);
1107
1108                 context.draw_text(white_text, i->title, 
1109                     Vector(screen->w/2, screen->h - white_text->get_height() - 30),
1110                     CENTER_ALLIGN, LAYER_FOREGROUND1);
1111
1112                 i->statistics.draw_worldmap_info(context);
1113                 }
1114
1115               /* Display an in-map message in the map, if any as been selected */
1116               if(!i->map_message.empty() && !i->passive_message)
1117                 context.draw_text(gold_text, i->map_message, 
1118                     Vector(screen->w/2, screen->h - white_text->get_height() - 60),
1119                     CENTER_ALLIGN, LAYER_FOREGROUND1);
1120               break;
1121             }
1122         }
1123     }
1124   /* Display a passive message in the map, if needed */
1125   if(passive_message_timer.check())
1126     context.draw_text(gold_text, passive_message, 
1127             Vector(screen->w/2, screen->h - white_text->get_height() - 60),
1128             CENTER_ALLIGN, LAYER_FOREGROUND1);
1129 }
1130
1131 void
1132 WorldMap::display()
1133 {
1134   Menu::set_current(0);
1135
1136   quit = false;
1137
1138   song = SoundManager::get()->load_music(datadir +  "/music/" + music);
1139   SoundManager::get()->play_music(song);
1140
1141   FrameRate frame_rate(10);
1142   frame_rate.set_frame_limit(false);
1143
1144   frame_rate.start();
1145
1146   DrawingContext context;
1147   while(!quit)
1148     {
1149       float delta = frame_rate.get();
1150
1151       delta *= 1.3f;
1152
1153       if (delta > 10.0f)
1154         delta = .3f;
1155         
1156       frame_rate.update();
1157
1158       Vector tux_pos = tux->get_pos();
1159       if (1)
1160         {
1161           offset.x = -tux_pos.x + screen->w/2;
1162           offset.y = -tux_pos.y + screen->h/2;
1163
1164           if (offset.x > 0) offset.x = 0;
1165           if (offset.y > 0) offset.y = 0;
1166
1167           if (offset.x < screen->w - width*32) offset.x = screen->w - width*32;
1168           if (offset.y < screen->h - height*32) offset.y = screen->h - height*32;
1169         } 
1170
1171       draw(context, offset);
1172       get_input();
1173       update(delta);
1174       
1175       if(Menu::current())
1176         {
1177           Menu::current()->draw(context);
1178           mouse_cursor->draw(context);
1179         }
1180
1181       context.do_drawing();
1182
1183       SDL_Delay(20);
1184     }
1185 }
1186
1187 void
1188 WorldMap::savegame(const std::string& filename)
1189 {
1190   if(filename == "")
1191     return;
1192
1193   std::cout << "savegame: " << filename << std::endl;
1194
1195    std::ofstream file(filename.c_str(), std::ios::out);
1196    LispWriter* writer = new LispWriter(file);
1197
1198   int nb_solved_levels = 0, total_levels = 0;
1199   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1200     {
1201       if(!i->level_name.empty())
1202         ++total_levels;
1203       if (i->solved)
1204         ++nb_solved_levels;
1205     }
1206   char nb_solved_levels_str[80], total_levels_str[80];
1207   sprintf(nb_solved_levels_str, "%d", nb_solved_levels);
1208   sprintf(total_levels_str, "%d", total_levels);
1209
1210   writer->write_comment("Worldmap save file");
1211
1212   writer->start_list("supertux-savegame");
1213
1214   writer->write_int("version", 1);
1215   writer->write_string("title", std::string(name + " - " + nb_solved_levels_str + "/" + total_levels_str));
1216   writer->write_string("map", map_filename);
1217   writer->write_int("lives", player_status.lives);
1218   writer->write_int("distros", player_status.lives);
1219
1220   writer->start_list("tux");
1221
1222   writer->write_float("x", tux->get_tile_pos().x);
1223   writer->write_float("y", tux->get_tile_pos().y);
1224   writer->write_string("back", direction_to_string(tux->back_direction));
1225   writer->write_string("bonus", bonus_to_string(player_status.bonus));
1226
1227   writer->end_list("tux");
1228
1229   writer->start_list("levels");
1230
1231   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1232     {
1233       if (i->solved && !i->level_name.empty())
1234         {
1235         writer->start_list("level");
1236
1237         writer->write_string("name", i->level_name);
1238         writer->write_bool("solved", true);
1239         i->statistics.write(*writer);
1240
1241         writer->end_list("level");
1242         }
1243     }  
1244
1245   writer->end_list("levels");
1246
1247   writer->end_list("supertux-savegame");
1248 }
1249
1250 void
1251 WorldMap::loadgame(const std::string& filename)
1252 {
1253   std::cout << "loadgame: " << filename << std::endl;
1254   savegame_file = filename;
1255   map_filename = "icyisland.stwm";
1256
1257   if (access(filename.c_str(), F_OK) != 0)
1258     {
1259     load_map();
1260     return;
1261     }
1262   
1263   lisp_object_t* savegame = lisp_read_from_file(filename);
1264   if (!savegame)
1265     {
1266       std::cout << "WorldMap:loadgame: File not found: " << filename << std::endl;
1267       load_map();
1268       return;
1269     }
1270
1271   lisp_object_t* cur = savegame;
1272
1273   if (strcmp(lisp_symbol(lisp_car(cur)), "supertux-savegame") != 0)
1274     {
1275     load_map();
1276     return;
1277     }
1278
1279   cur = lisp_cdr(cur);
1280   LispReader reader(cur);
1281
1282   /* Get the Map filename and then load it before setting special_tile settings */
1283   reader.read_string("map", map_filename);
1284   load_map(); 
1285
1286   reader.read_int("lives", player_status.lives);
1287   reader.read_int("distros", player_status.distros);
1288
1289   if (player_status.lives < 0)
1290     player_status.lives = START_LIVES;
1291
1292   lisp_object_t* tux_cur = 0;
1293   if (reader.read_lisp("tux", tux_cur))
1294     {
1295       Vector p;
1296       std::string back_str = "none";
1297       std::string bonus_str = "none";
1298
1299       LispReader tux_reader(tux_cur);
1300       tux_reader.read_float("x", p.x);
1301       tux_reader.read_float("y", p.y);
1302       tux_reader.read_string("back", back_str);
1303       tux_reader.read_string("bonus", bonus_str);
1304       
1305       player_status.bonus = string_to_bonus(bonus_str);
1306       tux->back_direction = string_to_direction(back_str);      
1307       tux->set_tile_pos(p);
1308     }
1309
1310   lisp_object_t* level_cur = 0;
1311   if (reader.read_lisp("levels", level_cur))
1312     {
1313       while(level_cur)
1314         {
1315           lisp_object_t* sym  = lisp_car(lisp_car(level_cur));
1316           lisp_object_t* data = lisp_cdr(lisp_car(level_cur));
1317
1318           if (strcmp(lisp_symbol(sym), "level") == 0)
1319             {
1320               std::string name;
1321               bool solved = false;
1322
1323               LispReader level_reader(data);
1324               level_reader.read_string("name", name);
1325               level_reader.read_bool("solved", solved);
1326
1327               for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1328                 {
1329                   if (name == i->level_name)
1330                     {
1331                     i->solved = solved;
1332                     i->statistics.parse(level_reader);
1333                     break;
1334                     }
1335                 }
1336             }
1337
1338           level_cur = lisp_cdr(level_cur);
1339         }
1340     }
1341  
1342   lisp_free(savegame);
1343
1344   calculate_total_stats();
1345 }
1346
1347 void
1348 WorldMap::loadmap(const std::string& filename)
1349 {
1350   savegame_file = "";
1351   map_filename = filename;
1352   load_map();
1353 }
1354
1355 } // namespace WorldMapNS
1356
1357 /* Local Variables: */
1358 /* mode:c++ */
1359 /* End: */
1360