Added drawing of statistics on levels messages and game over.
[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_center(blue_text, _("GAMEOVER"), 
910                       Vector(0, 200), LAYER_FOREGROUND1);
911
912 //                  sprintf(str, _("SCORE: %d"), total_stats.get_points(SCORE_STAT));
913 //                  context.draw_text_center(gold_text, str,
914 //                      Vector(0, 230), LAYER_FOREGROUND1);
915
916                   sprintf(str, _("COINS: %d"), player_status.distros);
917                   context.draw_text_center(gold_text, str,
918                       Vector(0, screen->w - 32), LAYER_FOREGROUND1);
919
920                   total_stats.draw_message_info(context, _("Total Statistics"));
921
922                   context.do_drawing();
923   
924                   SDL_Event event;
925                   wait_for_event(event,2000,6000,true);
926
927                   quit = true;
928                   player_status.reset();
929                   break;
930                   }
931                 case GameSession::ES_NONE:
932                   assert(false);
933                   // Should never be reached 
934                   break;
935                 }
936
937               SoundManager::get()->play_music(song);
938               Menu::set_current(0);
939               if (!savegame_file.empty())
940                 savegame(savegame_file);
941             }
942         }
943       /* The porpose of the next checking is that if the player lost
944          the special_tile (in case there is one), don't show anything */
945       if(level_finished)
946         {
947         if (!special_tile->extro_filename.empty())
948           {
949           // Display a text file
950           display_text_file(special_tile->extro_filename, SCROLL_SPEED_MESSAGE, white_big_text , white_text, white_small_text, blue_text );
951           }
952         if (special_tile->teleport_dest_x != -1 && special_tile->teleport_dest_y != -1)
953           {
954           // TODO: an animation, camera scrolling or a fading would be a nice touch
955           SoundManager::get()->play_sound(IDToSound(SND_WARP));
956           tux->back_direction = D_NONE;
957           tux->set_tile_pos(Vector(special_tile->teleport_dest_x, special_tile->teleport_dest_y));
958           SDL_Delay(1000);
959           }
960         if (!special_tile->next_worldmap.empty())
961           {
962           // Load given worldmap
963           loadmap(special_tile->next_worldmap);
964           }
965         if (special_tile->quit_worldmap)
966           quit = true;
967         }
968     }
969   else
970     {
971       tux->action(delta);
972 //      tux->set_direction(input_direction);
973     }
974   
975   Menu* menu = Menu::current();
976   if(menu)
977     {
978       menu->action();
979
980       if(menu == worldmap_menu)
981         {
982           switch (worldmap_menu->check())
983             {
984             case MNID_RETURNWORLDMAP: // Return to game
985               break;
986             case MNID_QUITWORLDMAP: // Quit Worldmap
987               quit = true;
988               break;
989             }
990         }
991       else if(menu == options_menu)
992         {
993           process_options_menu();
994         }
995     }
996 }
997
998 Tile*
999 WorldMap::at(Vector p)
1000 {
1001   assert(p.x >= 0 
1002          && p.x < width
1003          && p.y >= 0
1004          && p.y < height);
1005
1006   int x = int(p.x);
1007   int y = int(p.y);
1008   return tile_manager->get(tilemap[width * y + x]);
1009 }
1010
1011 WorldMap::SpecialTile*
1012 WorldMap::at_special_tile()
1013 {
1014   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1015     {
1016       if (i->x == tux->get_tile_pos().x && 
1017           i->y == tux->get_tile_pos().y)
1018         return &*i; 
1019     }
1020
1021   return 0;
1022 }
1023
1024
1025 void
1026 WorldMap::draw(DrawingContext& context, const Vector& offset)
1027 {
1028   for(int y = 0; y < height; ++y)
1029     for(int x = 0; x < width; ++x)
1030       {
1031         Tile* tile = at(Vector(x, y));
1032         context.draw_surface(tile->sprite,
1033             Vector(x*32 + offset.x, y*32 + offset.y), LAYER_TILES);
1034       }
1035   
1036   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1037     {
1038       if(i->invisible)
1039         continue;
1040       if(i->level_name.empty())
1041         {
1042         if (i->teleport_dest_x != -1 && i->teleport_dest_y != -1)
1043           context.draw_surface(teleporterdot,
1044               Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1045
1046         else if (!i->map_message.empty() && !i->passive_message)
1047           context.draw_surface(messagedot,
1048               Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1049
1050         continue;
1051         }
1052
1053       if (i->solved)
1054         context.draw_surface(leveldot_green,
1055             Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1056       else
1057         context.draw_surface(leveldot_red,
1058             Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
1059     }
1060
1061   tux->draw(context, offset);
1062   draw_status(context);
1063 }
1064
1065 void
1066 WorldMap::draw_status(DrawingContext& context)
1067 {
1068   char str[80];
1069   sprintf(str, " %d", total_stats.get_points(SCORE_STAT));
1070
1071   context.draw_text(white_text, _("SCORE"), Vector(0, 0), LAYER_FOREGROUND1);
1072   context.draw_text(gold_text, str, Vector(96, 0), LAYER_FOREGROUND1);
1073
1074   sprintf(str, "%d", player_status.distros);
1075   context.draw_text(white_text, _("COINS"), Vector(screen->w/2 - 16*5, 0),
1076       LAYER_FOREGROUND1);
1077   context.draw_text(gold_text, str, Vector(screen->w/2 + (16*5)/2, 0),
1078         LAYER_FOREGROUND1);
1079
1080   if (player_status.lives >= 5)
1081     {
1082       sprintf(str, "%dx", player_status.lives);
1083       context.draw_text(gold_text, str, 
1084           Vector(screen->w - gold_text->get_text_width(str) - tux_life->w, 0),
1085           LAYER_FOREGROUND1);
1086       context.draw_surface(tux_life, Vector(screen->w -
1087             gold_text->get_text_width("9"), 0), LAYER_FOREGROUND1);
1088     }
1089   else
1090     {
1091       for(int i= 0; i < player_status.lives; ++i)
1092         context.draw_surface(tux_life,
1093             Vector(screen->w - tux_life->w*4 + (tux_life->w*i), 0),
1094             LAYER_FOREGROUND1);
1095     }
1096   context.draw_text(white_text, _("LIVES"),
1097       Vector(screen->w - white_text->get_text_width(_("LIVES")) - white_text->get_text_width("   99"), 0),
1098       LAYER_FOREGROUND1);
1099
1100   if (!tux->is_moving())
1101     {
1102       for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1103         {
1104           if (i->x == tux->get_tile_pos().x && 
1105               i->y == tux->get_tile_pos().y)
1106             {
1107               if(!i->level_name.empty())
1108                 {
1109                 if(i->title == "")
1110                   get_level_title(*i);
1111
1112                 context.draw_text_center(white_text, i->title, 
1113                     Vector(0, screen->h - white_text->get_height() - 30),
1114                     LAYER_FOREGROUND1);
1115
1116                 i->statistics.draw_worldmap_info(context);
1117                 }
1118
1119               /* Display an in-map message in the map, if any as been selected */
1120               if(!i->map_message.empty() && !i->passive_message)
1121                 context.draw_text_center(gold_text, i->map_message, 
1122                     Vector(0, screen->h - white_text->get_height() - 60),
1123                     LAYER_FOREGROUND1);
1124               break;
1125             }
1126         }
1127     }
1128   /* Display a passive message in the map, if needed */
1129   if(passive_message_timer.check())
1130     context.draw_text_center(gold_text, passive_message, 
1131             Vector(0, screen->h - white_text->get_height() - 60),
1132             LAYER_FOREGROUND1);
1133 }
1134
1135 void
1136 WorldMap::display()
1137 {
1138   Menu::set_current(0);
1139
1140   quit = false;
1141
1142   song = SoundManager::get()->load_music(datadir +  "/music/" + music);
1143   SoundManager::get()->play_music(song);
1144
1145   FrameRate frame_rate(10);
1146   frame_rate.set_frame_limit(false);
1147
1148   frame_rate.start();
1149
1150   DrawingContext context;
1151   while(!quit)
1152     {
1153       float delta = frame_rate.get();
1154
1155       delta *= 1.3f;
1156
1157       if (delta > 10.0f)
1158         delta = .3f;
1159         
1160       frame_rate.update();
1161
1162       Vector tux_pos = tux->get_pos();
1163       if (1)
1164         {
1165           offset.x = -tux_pos.x + screen->w/2;
1166           offset.y = -tux_pos.y + screen->h/2;
1167
1168           if (offset.x > 0) offset.x = 0;
1169           if (offset.y > 0) offset.y = 0;
1170
1171           if (offset.x < screen->w - width*32) offset.x = screen->w - width*32;
1172           if (offset.y < screen->h - height*32) offset.y = screen->h - height*32;
1173         } 
1174
1175       draw(context, offset);
1176       get_input();
1177       update(delta);
1178       
1179       if(Menu::current())
1180         {
1181           Menu::current()->draw(context);
1182           mouse_cursor->draw(context);
1183         }
1184
1185       context.do_drawing();
1186
1187       SDL_Delay(20);
1188     }
1189 }
1190
1191 void
1192 WorldMap::savegame(const std::string& filename)
1193 {
1194   if(filename == "")
1195     return;
1196
1197   std::cout << "savegame: " << filename << std::endl;
1198
1199    std::ofstream file(filename.c_str(), std::ios::out);
1200    LispWriter* writer = new LispWriter(file);
1201
1202   int nb_solved_levels = 0, total_levels = 0;
1203   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1204     {
1205       if(!i->level_name.empty())
1206         ++total_levels;
1207       if (i->solved)
1208         ++nb_solved_levels;
1209     }
1210   char nb_solved_levels_str[80], total_levels_str[80];
1211   sprintf(nb_solved_levels_str, "%d", nb_solved_levels);
1212   sprintf(total_levels_str, "%d", total_levels);
1213
1214   writer->write_comment("Worldmap save file");
1215
1216   writer->start_list("supertux-savegame");
1217
1218   writer->write_int("version", 1);
1219   writer->write_string("title", std::string(name + " - " + nb_solved_levels_str + "/" + total_levels_str));
1220   writer->write_string("map", map_filename);
1221   writer->write_int("lives", player_status.lives);
1222   writer->write_int("distros", player_status.lives);
1223
1224   writer->start_list("tux");
1225
1226   writer->write_float("x", tux->get_tile_pos().x);
1227   writer->write_float("y", tux->get_tile_pos().y);
1228   writer->write_string("back", direction_to_string(tux->back_direction));
1229   writer->write_string("bonus", bonus_to_string(player_status.bonus));
1230
1231   writer->end_list("tux");
1232
1233   writer->start_list("levels");
1234
1235   for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1236     {
1237       if (i->solved && !i->level_name.empty())
1238         {
1239         writer->start_list("level");
1240
1241         writer->write_string("name", i->level_name);
1242         writer->write_bool("solved", true);
1243         i->statistics.write(*writer);
1244
1245         writer->end_list("level");
1246         }
1247     }  
1248
1249   writer->end_list("levels");
1250
1251   writer->end_list("supertux-savegame");
1252 }
1253
1254 void
1255 WorldMap::loadgame(const std::string& filename)
1256 {
1257   std::cout << "loadgame: " << filename << std::endl;
1258   savegame_file = filename;
1259   map_filename = "icyisland.stwm";
1260
1261   if (access(filename.c_str(), F_OK) != 0)
1262     {
1263     load_map();
1264     return;
1265     }
1266   
1267   lisp_object_t* savegame = lisp_read_from_file(filename);
1268   if (!savegame)
1269     {
1270       std::cout << "WorldMap:loadgame: File not found: " << filename << std::endl;
1271       load_map();
1272       return;
1273     }
1274
1275   lisp_object_t* cur = savegame;
1276
1277   if (strcmp(lisp_symbol(lisp_car(cur)), "supertux-savegame") != 0)
1278     {
1279     load_map();
1280     return;
1281     }
1282
1283   cur = lisp_cdr(cur);
1284   LispReader reader(cur);
1285
1286   /* Get the Map filename and then load it before setting special_tile settings */
1287   reader.read_string("map", map_filename);
1288   load_map(); 
1289
1290   reader.read_int("lives", player_status.lives);
1291   reader.read_int("distros", player_status.distros);
1292
1293   if (player_status.lives < 0)
1294     player_status.lives = START_LIVES;
1295
1296   lisp_object_t* tux_cur = 0;
1297   if (reader.read_lisp("tux", tux_cur))
1298     {
1299       Vector p;
1300       std::string back_str = "none";
1301       std::string bonus_str = "none";
1302
1303       LispReader tux_reader(tux_cur);
1304       tux_reader.read_float("x", p.x);
1305       tux_reader.read_float("y", p.y);
1306       tux_reader.read_string("back", back_str);
1307       tux_reader.read_string("bonus", bonus_str);
1308       
1309       player_status.bonus = string_to_bonus(bonus_str);
1310       tux->back_direction = string_to_direction(back_str);      
1311       tux->set_tile_pos(p);
1312     }
1313
1314   lisp_object_t* level_cur = 0;
1315   if (reader.read_lisp("levels", level_cur))
1316     {
1317       while(level_cur)
1318         {
1319           lisp_object_t* sym  = lisp_car(lisp_car(level_cur));
1320           lisp_object_t* data = lisp_cdr(lisp_car(level_cur));
1321
1322           if (strcmp(lisp_symbol(sym), "level") == 0)
1323             {
1324               std::string name;
1325               bool solved = false;
1326
1327               LispReader level_reader(data);
1328               level_reader.read_string("name", name);
1329               level_reader.read_bool("solved", solved);
1330
1331               for(SpecialTiles::iterator i = special_tiles.begin(); i != special_tiles.end(); ++i)
1332                 {
1333                   if (name == i->level_name)
1334                     {
1335                     i->solved = solved;
1336                     i->statistics.parse(level_reader);
1337                     break;
1338                     }
1339                 }
1340             }
1341
1342           level_cur = lisp_cdr(level_cur);
1343         }
1344     }
1345  
1346   lisp_free(savegame);
1347
1348   calculate_total_stats();
1349 }
1350
1351 void
1352 WorldMap::loadmap(const std::string& filename)
1353 {
1354   savegame_file = "";
1355   map_filename = filename;
1356   load_map();
1357 }
1358
1359 } // namespace WorldMapNS
1360
1361 /* Local Variables: */
1362 /* mode:c++ */
1363 /* End: */
1364