af1c3a9adac5df00a888c4c7e4145ea347f8f8d2
[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 "globals.h"
27 #include "screen/surface.h"
28 #include "screen/screen.h"
29 #include "screen/drawing_context.h"
30 #include "lispreader.h"
31 #include "gameloop.h"
32 #include "setup.h"
33 #include "sector.h"
34 #include "worldmap.h"
35 #include "sound_manager.h"
36 #include "resources.h"
37 #include "gettext.h"
38
39 namespace WorldMapNS {
40
41 Direction reverse_dir(Direction direction)
42 {
43   switch(direction)
44     {
45     case D_WEST:
46       return D_EAST;
47     case D_EAST:
48       return D_WEST;
49     case D_NORTH:
50       return D_SOUTH;
51     case D_SOUTH:
52       return D_NORTH;
53     case D_NONE:
54       return D_NONE;
55     }
56   return D_NONE;
57 }
58
59 std::string
60 direction_to_string(Direction direction)
61 {
62   switch(direction)
63     {
64     case D_WEST:
65       return "west";
66     case D_EAST:
67       return "east";
68     case D_NORTH:
69       return "north";
70     case D_SOUTH:
71       return "south";
72     default:
73       return "none";
74     }
75 }
76
77 Direction
78 string_to_direction(const std::string& directory)
79 {
80   if (directory == "west")
81     return D_WEST;
82   else if (directory == "east")
83     return D_EAST;
84   else if (directory == "north")
85     return D_NORTH;
86   else if (directory == "south")
87     return D_SOUTH;
88   else
89     return D_NONE;
90 }
91
92 TileManager::TileManager()
93 {
94   std::string stwt_filename = datadir +  "/images/worldmap/antarctica.stwt";
95   lisp_object_t* root_obj = lisp_read_from_file(stwt_filename);
96  
97   if (!root_obj)
98     st_abort("Couldn't load file", stwt_filename);
99
100   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-worldmap-tiles") == 0)
101     {
102       lisp_object_t* cur = lisp_cdr(root_obj);
103
104       while(!lisp_nil_p(cur))
105         {
106           lisp_object_t* element = lisp_car(cur);
107
108           if (strcmp(lisp_symbol(lisp_car(element)), "tile") == 0)
109             {
110               int id = 0;
111               std::string filename = "<invalid>";
112
113               Tile* tile = new Tile;             
114               tile->north = true;
115               tile->east  = true;
116               tile->south = true;
117               tile->west  = true;
118               tile->stop  = true;
119               tile->auto_walk = false;
120   
121               LispReader reader(lisp_cdr(element));
122               reader.read_int("id", id);
123               reader.read_bool("north", tile->north);
124               reader.read_bool("south", tile->south);
125               reader.read_bool("west",  tile->west);
126               reader.read_bool("east",  tile->east);
127               reader.read_bool("stop",  tile->stop);
128               reader.read_bool("auto-walk",  tile->auto_walk);
129               reader.read_string("image", filename);
130
131               tile->sprite = new Surface(
132                            datadir +  "/images/worldmap/" + filename, 
133                            USE_ALPHA);
134
135               if (id >= int(tiles.size()))
136                 tiles.resize(id+1);
137
138               tiles[id] = tile;
139             }
140           else
141             {
142               puts("Unhandled symbol");
143             }
144
145           cur = lisp_cdr(cur);
146         }
147     }
148   else
149     {
150       assert(0);
151     }
152
153   lisp_free(root_obj);
154 }
155
156 TileManager::~TileManager()
157 {
158   for(std::vector<Tile*>::iterator i = tiles.begin(); i != tiles.end(); ++i)
159     delete *i;
160 }
161
162 Tile*
163 TileManager::get(int i)
164 {
165   assert(i >=0 && i < int(tiles.size()));
166   return tiles[i];
167 }
168
169 //---------------------------------------------------------------------------
170
171 Tux::Tux(WorldMap* worldmap_)
172   : worldmap(worldmap_)
173 {
174   largetux_sprite = new Surface(datadir +  "/images/worldmap/tux.png", USE_ALPHA);
175   firetux_sprite = new Surface(datadir +  "/images/worldmap/firetux.png", USE_ALPHA);
176   smalltux_sprite = new Surface(datadir +  "/images/worldmap/smalltux.png", USE_ALPHA);
177
178   offset = 0;
179   moving = false;
180   tile_pos.x = 4;
181   tile_pos.y = 5;
182   direction = D_NONE;
183   input_direction = D_NONE;
184 }
185
186 Tux::~Tux()
187 {
188   delete smalltux_sprite;
189   delete firetux_sprite;
190   delete largetux_sprite;
191 }
192
193 void
194 Tux::draw(DrawingContext& context, const Vector& offset)
195 {
196   Vector pos = get_pos();
197   switch (player_status.bonus)
198     {
199     case PlayerStatus::GROWUP_BONUS:
200       context.draw_surface(largetux_sprite,
201           Vector(pos.x + offset.x, pos.y + offset.y - 10), LAYER_OBJECTS);
202       break;
203     case PlayerStatus::FLOWER_BONUS:
204       context.draw_surface(firetux_sprite,
205           Vector(pos.x + offset.x, pos.y + offset.y - 10), LAYER_OBJECTS);
206       break;
207     case PlayerStatus::NO_BONUS:
208       context.draw_surface(smalltux_sprite,
209           Vector(pos.x + offset.x, pos.y + offset.y - 10), LAYER_OBJECTS);
210       break;
211     }
212 }
213
214
215 Vector
216 Tux::get_pos()
217 {
218   float x = tile_pos.x * 32;
219   float y = tile_pos.y * 32;
220
221   switch(direction)
222     {
223     case D_WEST:
224       x -= offset - 32;
225       break;
226     case D_EAST:
227       x += offset - 32;
228       break;
229     case D_NORTH:
230       y -= offset - 32;
231       break;
232     case D_SOUTH:
233       y += offset - 32;
234       break;
235     case D_NONE:
236       break;
237     }
238   
239   return Vector((int)x, (int)y); 
240 }
241
242 void
243 Tux::stop()
244 {
245   offset = 0;
246   direction = D_NONE;
247   moving = false;
248 }
249
250 void
251 Tux::action(float delta)
252 {
253   if (!moving)
254     {
255       if (input_direction != D_NONE)
256         { 
257           WorldMap::Level* level = worldmap->at_level();
258
259           // We got a new direction, so lets start walking when possible
260           Vector next_tile;
261           if ((!level || level->solved)
262               && worldmap->path_ok(input_direction, tile_pos, &next_tile))
263             {
264               tile_pos = next_tile;
265               moving = true;
266               direction = input_direction;
267               back_direction = reverse_dir(direction);
268             }
269           else if (input_direction == back_direction)
270             {
271               std::cout << "Back triggered" << std::endl;
272               moving = true;
273               direction = input_direction;
274               tile_pos = worldmap->get_next_tile(tile_pos, direction);
275               back_direction = reverse_dir(direction);
276             }
277         }
278     }
279   else
280     {
281       // Let tux walk a few pixels (20 pixel/sec)
282       offset += 20.0f * delta;
283
284       if (offset > 32)
285         { // We reached the next tile, so we check what to do now
286           offset -= 32;
287
288           if (worldmap->at(tile_pos)->stop || worldmap->at_level())
289             {
290               stop();
291             }
292           else
293             {
294               if (worldmap->at(tile_pos)->auto_walk)
295                 { // Turn to a new direction
296                   Tile* tile = worldmap->at(tile_pos);
297                   Direction dir = D_NONE;
298                   
299                   if (tile->north && back_direction != D_NORTH)
300                     dir = D_NORTH;
301                   else if (tile->south && back_direction != D_SOUTH)
302                     dir = D_SOUTH;
303                   else if (tile->east && back_direction != D_EAST)
304                     dir = D_EAST;
305                   else if (tile->west && back_direction != D_WEST)
306                     dir = D_WEST;
307
308                   if (dir != D_NONE)
309                     {
310                       direction = dir;
311                       back_direction = reverse_dir(direction);
312                     }
313                   else
314                     {
315                       // Should never be reached if tiledata is good
316                       stop();
317                       return;
318                     }
319                 }
320
321               // Walk automatically to the next tile
322               Vector next_tile;
323               if (worldmap->path_ok(direction, tile_pos, &next_tile))
324                 {
325                   tile_pos = next_tile;
326                 }
327               else
328                 {
329                   puts("Tilemap data is buggy");
330                   stop();
331                 }
332             }
333         }
334     }
335 }
336
337 //---------------------------------------------------------------------------
338 Tile::Tile()
339 {
340 }
341
342 Tile::~Tile()
343 {
344   delete sprite;
345 }
346
347 //---------------------------------------------------------------------------
348
349 WorldMap::WorldMap()
350 {
351   tile_manager = new TileManager();
352   tux = new Tux(this);
353
354   width  = 20;
355   height = 15;
356
357   level_sprite = new Surface(datadir +  "/images/worldmap/levelmarker.png", USE_ALPHA);
358   leveldot_green = new Surface(datadir +  "/images/worldmap/leveldot_green.png", USE_ALPHA);
359   leveldot_red = new Surface(datadir +  "/images/worldmap/leveldot_red.png", USE_ALPHA);
360
361   input_direction = D_NONE;
362   enter_level = false;
363
364   name = "<no file>";
365   music = "SALCON.MOD";
366 }
367
368 WorldMap::~WorldMap()
369 {
370   delete tux;
371   delete tile_manager;
372
373   delete level_sprite;
374   delete leveldot_green;
375   delete leveldot_red;
376 }
377
378 void
379 WorldMap::load_map()
380 {
381   lisp_object_t* root_obj = lisp_read_from_file(datadir + "/levels/worldmap/" + map_filename);
382   if (!root_obj)
383     st_abort("Couldn't load file", datadir + "/levels/worldmap/" + map_filename);
384
385   std::cout << "Loading map: " << datadir + "/levels/worldmap/" + map_filename << std::endl;
386
387   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-worldmap") == 0)
388     {
389       lisp_object_t* cur = lisp_cdr(root_obj);
390
391       while(!lisp_nil_p(cur))
392         {
393           lisp_object_t* element = lisp_car(cur);
394
395           if (strcmp(lisp_symbol(lisp_car(element)), "tilemap") == 0)
396             {
397               LispReader reader(lisp_cdr(element));
398               reader.read_int("width",  width);
399               reader.read_int("height", height);
400               reader.read_int_vector("data", tilemap);
401             }
402           else if (strcmp(lisp_symbol(lisp_car(element)), "properties") == 0)
403             {
404               LispReader reader(lisp_cdr(element));
405               reader.read_string("name", name);
406               reader.read_string("music", music);
407             }
408           else if (strcmp(lisp_symbol(lisp_car(element)), "levels") == 0)
409             {
410               lisp_object_t* cur = lisp_cdr(element);
411               
412               while(!lisp_nil_p(cur))
413                 {
414                   lisp_object_t* element = lisp_car(cur);
415                   
416                   if (strcmp(lisp_symbol(lisp_car(element)), "level") == 0)
417                     {
418                       Level level;
419                       LispReader reader(lisp_cdr(element));
420                       level.solved = false;
421                       
422                       level.north = true;
423                       level.east  = true;
424                       level.south = true;
425                       level.west  = true;
426
427                       reader.read_string("extro-filename", level.extro_filename);
428                       reader.read_string("name", level.name);
429                       reader.read_int("x", level.x);
430                       reader.read_int("y", level.y);
431                       level.vertical_flip = false;
432                       reader.read_bool("flip", level.vertical_flip);
433
434                       levels.push_back(level);
435                     }
436                   
437                   cur = lisp_cdr(cur);      
438                 }
439             }
440           else
441             {
442               
443             }
444           
445           cur = lisp_cdr(cur);
446         }
447     }
448
449     lisp_free(root_obj);
450 }
451
452 void WorldMap::get_level_title(Level& level)
453 {
454   /** get level's title */
455   level.title = "<no title>";
456
457   FILE * fi;
458   lisp_object_t* root_obj = 0;
459   fi = fopen((datadir +  "/levels/" + level.name).c_str(), "r");
460   if (fi == NULL)
461   {
462     perror((datadir +  "/levels/" + level.name).c_str());
463     return;
464   }
465
466   lisp_stream_t stream;
467   lisp_stream_init_file (&stream, fi);
468   root_obj = lisp_read (&stream);
469
470   if (root_obj->type == LISP_TYPE_EOF || root_obj->type == LISP_TYPE_PARSE_ERROR)
471   {
472     printf("World: Parse Error in file %s", level.name.c_str());
473   }
474
475   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-level") == 0)
476   {
477     LispReader reader(lisp_cdr(root_obj));
478     reader.read_string("name", level.title);
479   }
480
481   lisp_free(root_obj);
482
483   fclose(fi);
484 }
485
486 void
487 WorldMap::on_escape_press()
488 {
489   // Show or hide the menu
490   if(!Menu::current())
491     Menu::set_current(worldmap_menu); 
492   else
493     Menu::set_current(0); 
494 }
495
496 void
497 WorldMap::get_input()
498 {
499   enter_level = false;
500   input_direction = D_NONE;
501    
502   SDL_Event event;
503   while (SDL_PollEvent(&event))
504     {
505       if (Menu::current())
506         {
507           Menu::current()->event(event);
508         }
509       else
510         {
511           switch(event.type)
512             {
513             case SDL_QUIT:
514               st_abort("Received window close", "");
515               break;
516           
517             case SDL_KEYDOWN:
518               switch(event.key.keysym.sym)
519                 {
520                 case SDLK_ESCAPE:
521                   on_escape_press();
522                   break;
523                 case SDLK_LCTRL:
524                 case SDLK_RETURN:
525                   enter_level = true;
526                   break;
527                 default:
528                   break;
529                 }
530               break;
531           
532             case SDL_JOYAXISMOTION:
533               if (event.jaxis.axis == joystick_keymap.x_axis)
534                 {
535                   if (event.jaxis.value < -joystick_keymap.dead_zone)
536                     input_direction = D_WEST;
537                   else if (event.jaxis.value > joystick_keymap.dead_zone)
538                     input_direction = D_EAST;
539                 }
540               else if (event.jaxis.axis == joystick_keymap.y_axis)
541                 {
542                   if (event.jaxis.value > joystick_keymap.dead_zone)
543                     input_direction = D_SOUTH;
544                   else if (event.jaxis.value < -joystick_keymap.dead_zone)
545                     input_direction = D_NORTH;
546                 }
547               break;
548
549             case SDL_JOYBUTTONDOWN:
550               if (event.jbutton.button == joystick_keymap.b_button)
551                 enter_level = true;
552               else if (event.jbutton.button == joystick_keymap.start_button)
553                 on_escape_press();
554               break;
555
556             default:
557               break;
558             }
559         }
560     }
561
562   if (!Menu::current())
563     {
564       Uint8 *keystate = SDL_GetKeyState(NULL);
565   
566       if (keystate[SDLK_LEFT])
567         input_direction = D_WEST;
568       else if (keystate[SDLK_RIGHT])
569         input_direction = D_EAST;
570       else if (keystate[SDLK_UP])
571         input_direction = D_NORTH;
572       else if (keystate[SDLK_DOWN])
573         input_direction = D_SOUTH;
574     }
575 }
576
577 Vector
578 WorldMap::get_next_tile(Vector pos, Direction direction)
579 {
580   switch(direction)
581     {
582     case D_WEST:
583       pos.x -= 1;
584       break;
585     case D_EAST:
586       pos.x += 1;
587       break;
588     case D_NORTH:
589       pos.y -= 1;
590       break;
591     case D_SOUTH:
592       pos.y += 1;
593       break;
594     case D_NONE:
595       break;
596     }
597   return pos;
598 }
599
600 bool
601 WorldMap::path_ok(Direction direction, Vector old_pos, Vector* new_pos)
602 {
603   *new_pos = get_next_tile(old_pos, direction);
604
605   if (!(new_pos->x >= 0 && new_pos->x < width
606         && new_pos->y >= 0 && new_pos->y < height))
607     { // New position is outsite the tilemap
608       return false;
609     }
610   else
611     { // Check if we the tile allows us to go to new_pos
612       switch(direction)
613         {
614         case D_WEST:
615           return (at(old_pos)->west && at(*new_pos)->east);
616
617         case D_EAST:
618           return (at(old_pos)->east && at(*new_pos)->west);
619
620         case D_NORTH:
621           return (at(old_pos)->north && at(*new_pos)->south);
622
623         case D_SOUTH:
624           return (at(old_pos)->south && at(*new_pos)->north);
625
626         case D_NONE:
627           assert(!"path_ok() can't work if direction is NONE");
628         }
629       return false;
630     }
631 }
632
633 void
634 WorldMap::update(float delta)
635 {
636   if (enter_level && !tux->is_moving())
637     {
638       Level* level = at_level();
639       if (level)
640         {
641           if (level->x == tux->get_tile_pos().x && 
642               level->y == tux->get_tile_pos().y)
643             {
644               PlayerStatus old_player_status = player_status;
645
646               std::cout << "Enter the current level: " << level->name << std::endl;
647               // do a shriking fade to the level
648               shrink_fade(Vector((level->x*32 + 16 + offset.x),(level->y*32 + 16
649                       + offset.y)), 500);
650               GameSession session(datadir +  "/levels/" + level->name,
651                                   ST_GL_LOAD_LEVEL_FILE, level->vertical_flip);
652
653               switch (session.run())
654                 {
655                 case GameSession::ES_LEVEL_FINISHED:
656                   {
657                     bool old_level_state = level->solved;
658                     level->solved = true;
659
660                     if (session.get_current_sector()->player->got_power !=
661                           session.get_current_sector()->player->NONE_POWER)
662                       player_status.bonus = PlayerStatus::FLOWER_BONUS;
663                     else if (session.get_current_sector()->player->size == BIG)
664                       player_status.bonus = PlayerStatus::GROWUP_BONUS;
665                     else
666                       player_status.bonus = PlayerStatus::NO_BONUS;
667
668                     if (old_level_state != level->solved)
669                       { // Try to detect the next direction to which we should walk
670                         // FIXME: Mostly a hack
671                         Direction dir = D_NONE;
672                     
673                         Tile* tile = at(tux->get_tile_pos());
674
675                         if (tile->north && tux->back_direction != D_NORTH)
676                           dir = D_NORTH;
677                         else if (tile->south && tux->back_direction != D_SOUTH)
678                           dir = D_SOUTH;
679                         else if (tile->east && tux->back_direction != D_EAST)
680                           dir = D_EAST;
681                         else if (tile->west && tux->back_direction != D_WEST)
682                           dir = D_WEST;
683
684                         if (dir != D_NONE)
685                           {
686                             tux->set_direction(dir);
687                             //tux->update(delta);
688                           }
689
690                         std::cout << "Walk to dir: " << dir << std::endl;
691                       }
692
693                     if (!level->extro_filename.empty())
694                       { 
695                         MusicRef theme =
696                           sound_manager->load_music(datadir + "/music/theme.mod");
697                         sound_manager->play_music(theme);
698                         // Display final credits and go back to the main menu
699                         display_text_file(level->extro_filename,
700                                           "/images/background/extro.jpg", SCROLL_SPEED_MESSAGE);
701                         display_text_file("CREDITS",
702                                           "/images/background/oiltux.jpg", SCROLL_SPEED_CREDITS);
703                         quit = true;
704                       }
705                   }
706
707                   break;
708                 case GameSession::ES_LEVEL_ABORT:
709                   /* In case the player's abort the level, keep it using the old
710                       status */
711                   player_status = old_player_status;
712                   break;
713                 case GameSession::ES_GAME_OVER:
714                 {
715                   /* draw an end screen */
716                   /* in the future, this should make a dialog a la SuperMario, asking
717                   if the player wants to restart the world map with no score and from
718                   level 1 */
719                   char str[80];
720
721                   DrawingContext context;
722                   context.draw_gradient(Color (0, 255, 0), Color (255, 0, 255),
723                       LAYER_BACKGROUND0);
724
725                   context.draw_text_center(blue_text, _("GAMEOVER"), 
726                       Vector(0, 200), LAYER_FOREGROUND1);
727
728                   sprintf(str, _("SCORE: %d"), player_status.score);
729                   context.draw_text_center(gold_text, str,
730                       Vector(0, 224), LAYER_FOREGROUND1);
731
732                   sprintf(str, _("COINS: %d"), player_status.distros);
733                   context.draw_text_center(gold_text, str,
734                       Vector(0, screen->w - 32), LAYER_FOREGROUND1);
735
736                   context.do_drawing();
737   
738                   SDL_Event event;
739                   wait_for_event(event,2000,5000,true);
740
741                   quit = true;
742                   player_status.reset();
743                   break;
744                 }
745                 case GameSession::ES_NONE:
746                   assert(false);
747                   // Should never be reached 
748                   break;
749                 }
750
751               sound_manager->play_music(song);
752               Menu::set_current(0);
753               if (!savegame_file.empty())
754                 savegame(savegame_file);
755               return;
756             }
757         }
758       else
759         {
760           std::cout << "Nothing to enter at: "
761                     << tux->get_tile_pos().x << ", " << tux->get_tile_pos().y << std::endl;
762         }
763     }
764   else
765     {
766       tux->action(delta);
767       tux->set_direction(input_direction);
768     }
769   
770   Menu* menu = Menu::current();
771   if(menu)
772     {
773       menu->action();
774
775       if(menu == worldmap_menu)
776         {
777           switch (worldmap_menu->check())
778             {
779             case MNID_RETURNWORLDMAP: // Return to game
780               break;
781             case MNID_QUITWORLDMAP: // Quit Worldmap
782               quit = true;
783               break;
784             }
785         }
786       else if(menu == options_menu)
787         {
788           process_options_menu();
789         }
790     }
791 }
792
793 Tile*
794 WorldMap::at(Vector p)
795 {
796   assert(p.x >= 0 
797          && p.x < width
798          && p.y >= 0
799          && p.y < height);
800
801   int x = int(p.x);
802   int y = int(p.y);
803   return tile_manager->get(tilemap[width * y + x]);
804 }
805
806 WorldMap::Level*
807 WorldMap::at_level()
808 {
809   for(Levels::iterator i = levels.begin(); i != levels.end(); ++i)
810     {
811       if (i->x == tux->get_tile_pos().x && 
812           i->y == tux->get_tile_pos().y)
813         return &*i; 
814     }
815
816   return 0;
817 }
818
819
820 void
821 WorldMap::draw(DrawingContext& context, const Vector& offset)
822 {
823   for(int y = 0; y < height; ++y)
824     for(int x = 0; x < width; ++x)
825       {
826         Tile* tile = at(Vector(x, y));
827         context.draw_surface(tile->sprite,
828             Vector(x*32 + offset.x, y*32 + offset.y), LAYER_TILES);
829       }
830   
831   for(Levels::iterator i = levels.begin(); i != levels.end(); ++i)
832     {
833       if (i->solved)
834         context.draw_surface(leveldot_green,
835             Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
836       else
837         context.draw_surface(leveldot_red,
838             Vector(i->x*32 + offset.x, i->y*32 + offset.y), LAYER_TILES+1);
839     }
840
841   tux->draw(context, offset);
842   draw_status(context);
843 }
844
845 void
846 WorldMap::draw_status(DrawingContext& context)
847 {
848   char str[80];
849   sprintf(str, " %d", player_status.score);
850
851   context.draw_text(white_text, _("SCORE"), Vector(0, 0), LAYER_FOREGROUND1);
852   context.draw_text(gold_text, str, Vector(96, 0), LAYER_FOREGROUND1);
853
854   sprintf(str, "%d", player_status.distros);
855   context.draw_text(white_text, _("COINS"), Vector(screen->w/2 - 16*5, 0),
856       LAYER_FOREGROUND1);
857   context.draw_text(gold_text, str, Vector(screen->w/2 + (16*5)/2, 0),
858         LAYER_FOREGROUND1);
859
860   if (player_status.lives >= 5)
861     {
862       sprintf(str, "%dx", player_status.lives);
863       context.draw_text(gold_text, str, 
864           Vector(screen->w - gold_text->get_text_width(str) - tux_life->w, 0),
865           LAYER_FOREGROUND1);
866       context.draw_surface(tux_life, Vector(screen->w -
867             gold_text->get_text_width("9"), 0), LAYER_FOREGROUND1);
868     }
869   else
870     {
871       for(int i= 0; i < player_status.lives; ++i)
872         context.draw_surface(tux_life,
873             Vector(screen->w - tux_life->w*4 + (tux_life->w*i), 0),
874             LAYER_FOREGROUND1);
875     }
876   context.draw_text(white_text, _("LIVES"),
877       Vector(screen->w - white_text->get_text_width(_("LIVES")) - white_text->get_text_width("   99"), 0),
878       LAYER_FOREGROUND1);
879
880   if (!tux->is_moving())
881     {
882       for(Levels::iterator i = levels.begin(); i != levels.end(); ++i)
883         {
884           if (i->x == tux->get_tile_pos().x && 
885               i->y == tux->get_tile_pos().y)
886             {
887               if(i->title == "")
888                 get_level_title(*i);
889
890               context.draw_text(white_text, i->title, 
891                   Vector(screen->w/2 - white_text->get_text_width(i->title)/2,
892                          screen->h - white_text->get_height() - 30),
893                   LAYER_FOREGROUND1);
894               break;
895             }
896         }
897     }
898 }
899
900 void
901 WorldMap::display()
902 {
903   Menu::set_current(0);
904
905   quit = false;
906
907   song = sound_manager->load_music(datadir +  "/music/" + music);
908   sound_manager->play_music(song);
909   
910   unsigned int last_update_time;
911   unsigned int update_time;
912
913   last_update_time = update_time = st_get_ticks();
914
915   DrawingContext context;
916   while(!quit)
917     {
918       float delta = ((float)(update_time-last_update_time))/100.0;
919
920       delta *= 1.3f;
921
922       if (delta > 10.0f)
923         delta = .3f;
924       
925       last_update_time = update_time;
926       update_time      = st_get_ticks();
927
928       Vector tux_pos = tux->get_pos();
929       if (1)
930         {
931           offset.x = -tux_pos.x + screen->w/2;
932           offset.y = -tux_pos.y + screen->h/2;
933
934           if (offset.x > 0) offset.x = 0;
935           if (offset.y > 0) offset.y = 0;
936
937           if (offset.x < screen->w - width*32) offset.x = screen->w - width*32;
938           if (offset.y < screen->h - height*32) offset.y = screen->h - height*32;
939         } 
940
941       draw(context, offset);
942       get_input();
943       update(delta);
944
945       if(Menu::current())
946         {
947           Menu::current()->draw(context);
948           mouse_cursor->draw(context);
949         }
950
951       context.do_drawing();
952
953       SDL_Delay(20);
954     }
955 }
956
957 void
958 WorldMap::savegame(const std::string& filename)
959 {
960   std::cout << "savegame: " << filename << std::endl;
961   std::ofstream out(filename.c_str());
962
963   int nb_solved_levels = 0;
964   for(Levels::iterator i = levels.begin(); i != levels.end(); ++i)
965     {
966       if (i->solved)
967         ++nb_solved_levels;
968     }
969
970   out << "(supertux-savegame\n"
971       << "  (version 1)\n"
972       << "  (title  \"" << name << " - " << nb_solved_levels << "/" << levels.size() << "\")\n"
973       << "  (map    \"" << map_filename << "\")\n"
974       << "  (lives   " << player_status.lives << ")\n"
975       << "  (score   " << player_status.score << ")\n"
976       << "  (distros " << player_status.distros << ")\n"
977       << "  (tux (x " << tux->get_tile_pos().x << ") (y " << tux->get_tile_pos().y << ")\n"
978       << "       (back \"" << direction_to_string(tux->back_direction) << "\")\n"
979       << "       (bonus \"" << bonus_to_string(player_status.bonus) <<  "\"))\n"
980       << "  (levels\n";
981   
982   for(Levels::iterator i = levels.begin(); i != levels.end(); ++i)
983     {
984       if (i->solved)
985         {
986           out << "     (level (name \"" << i->name << "\")\n"
987               << "            (solved #t))\n";
988         }
989     }  
990
991   out << "   )\n"
992       << " )\n\n;; EOF ;;" << std::endl;
993 }
994
995 void
996 WorldMap::loadgame(const std::string& filename)
997 {
998   std::cout << "loadgame: " << filename << std::endl;
999   savegame_file = filename;
1000   map_filename = "icyisland.stwm";
1001
1002   if (access(filename.c_str(), F_OK) != 0)
1003     {
1004     load_map();
1005     return;
1006     }
1007   
1008   lisp_object_t* savegame = lisp_read_from_file(filename);
1009   if (!savegame)
1010     {
1011       std::cout << "WorldMap:loadgame: File not found: " << filename << std::endl;
1012       load_map();
1013       return;
1014     }
1015
1016   lisp_object_t* cur = savegame;
1017
1018   if (strcmp(lisp_symbol(lisp_car(cur)), "supertux-savegame") != 0)
1019     {
1020     load_map();
1021     return;
1022     }
1023
1024   cur = lisp_cdr(cur);
1025   LispReader reader(cur);
1026
1027   /* Get the Map filename and then load it before setting level settings */
1028   reader.read_string("map", map_filename);
1029   load_map(); 
1030
1031   reader.read_int("lives", player_status.lives);
1032   reader.read_int("score", player_status.score);
1033   reader.read_int("distros", player_status.distros);
1034
1035   if (player_status.lives < 0)
1036     player_status.lives = START_LIVES;
1037
1038   lisp_object_t* tux_cur = 0;
1039   if (reader.read_lisp("tux", tux_cur))
1040     {
1041       Vector p;
1042       std::string back_str = "none";
1043       std::string bonus_str = "none";
1044
1045       LispReader tux_reader(tux_cur);
1046       tux_reader.read_float("x", p.x);
1047       tux_reader.read_float("y", p.y);
1048       tux_reader.read_string("back", back_str);
1049       tux_reader.read_string("bonus", bonus_str);
1050       
1051       player_status.bonus = string_to_bonus(bonus_str);
1052       tux->back_direction = string_to_direction(back_str);      
1053       tux->set_tile_pos(p);
1054     }
1055
1056   lisp_object_t* level_cur = 0;
1057   if (reader.read_lisp("levels", level_cur))
1058     {
1059       while(level_cur)
1060         {
1061           lisp_object_t* sym  = lisp_car(lisp_car(level_cur));
1062           lisp_object_t* data = lisp_cdr(lisp_car(level_cur));
1063
1064           if (strcmp(lisp_symbol(sym), "level") == 0)
1065             {
1066               std::string name;
1067               bool solved = false;
1068
1069               LispReader level_reader(data);
1070               level_reader.read_string("name", name);
1071               level_reader.read_bool("solved", solved);
1072
1073               for(Levels::iterator i = levels.begin(); i != levels.end(); ++i)
1074                 {
1075                   if (name == i->name)
1076                     i->solved = solved;
1077                 }
1078             }
1079
1080           level_cur = lisp_cdr(level_cur);
1081         }
1082     }
1083  
1084   lisp_free(savegame);
1085 }
1086
1087 } // namespace WorldMapNS
1088
1089 /* Local Variables: */
1090 /* mode:c++ */
1091 /* End: */
1092