Don't show selection cursor when help is being displayed.
[supertux.git] / src / level.cpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2004 SuperTux Development Team, see AUTHORS for details
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
19 //  02111-1307, USA.
20
21 #include <map>
22 #include <stdlib.h>
23 #include <stdio.h>
24 #include <string.h>
25 #include <iostream>
26 #include "globals.h"
27 #include "setup.h"
28 #include "screen.h"
29 #include "level.h"
30 #include "physic.h"
31 #include "scene.h"
32 #include "tile.h"
33 #include "lispreader.h"
34 #include "resources.h"
35 #include "music_manager.h"
36
37 using namespace std;
38
39 LevelSubset::LevelSubset()
40     : image(0), levels(0)
41 {
42 }
43
44 LevelSubset::~LevelSubset()
45 {
46   delete image;
47 }
48
49 void LevelSubset::create(const std::string& subset_name)
50 {
51   Level new_lev;
52   LevelSubset new_subset;
53   new_subset.name = subset_name;
54   new_subset.title = "Unknown Title";
55   new_subset.description = "No description so far.";
56   new_subset.save();
57   new_lev.init_defaults();
58   new_lev.save(subset_name, 1);
59 }
60
61 void LevelSubset::parse (lisp_object_t* cursor)
62 {
63   while(!lisp_nil_p(cursor))
64     {
65       lisp_object_t* cur = lisp_car(cursor);
66       char *s;
67
68       if (!lisp_cons_p(cur) || !lisp_symbol_p (lisp_car(cur)))
69         {
70           printf("Not good");
71         }
72       else
73         {
74           if (strcmp(lisp_symbol(lisp_car(cur)), "title") == 0)
75             {
76               if(( s = lisp_string(lisp_car(lisp_cdr(cur)))) != NULL)
77                 {
78                   title = s;
79                 }
80             }
81           else if (strcmp(lisp_symbol(lisp_car(cur)), "description") == 0)
82             {
83               if(( s = lisp_string(lisp_car(lisp_cdr(cur)))) != NULL)
84                 {
85                   description = s;
86                 }
87             }
88         }
89       cursor = lisp_cdr (cursor);
90     }
91 }
92
93 void LevelSubset::load(char *subset)
94 {
95   FILE* fi;
96   char filename[1024];
97   char str[1024];
98   int i;
99   lisp_object_t* root_obj = 0;
100
101   name = subset;
102
103   snprintf(filename, 1024, "%s/levels/%s/info", st_dir, subset);
104   if(!faccessible(filename))
105     snprintf(filename, 1024, "%s/levels/%s/info", datadir.c_str(), subset);
106   if(faccessible(filename))
107     {
108       fi = fopen(filename, "r");
109       if (fi == NULL)
110         {
111           perror(filename);
112         }
113       lisp_stream_t stream;
114       lisp_stream_init_file (&stream, fi);
115       root_obj = lisp_read (&stream);
116
117       if (root_obj->type == LISP_TYPE_EOF || root_obj->type == LISP_TYPE_PARSE_ERROR)
118         {
119           printf("World: Parse Error in file %s", filename);
120         }
121
122       lisp_object_t* cur = lisp_car(root_obj);
123
124       if (!lisp_symbol_p (cur))
125         {
126           printf("World: Read error in %s",filename);
127         }
128
129       if (strcmp(lisp_symbol(cur), "supertux-level-subset") == 0)
130         {
131           parse(lisp_cdr(root_obj));
132
133         }
134
135       lisp_free(root_obj);
136       fclose(fi);
137
138       snprintf(str, 1024, "%s.png", filename);
139       if(faccessible(str))
140         {
141           delete image;
142           image = new Surface(str,IGNORE_ALPHA);
143         }
144       else
145         {
146           snprintf(filename, 1024, "%s/images/status/level-subset-info.png", datadir.c_str());
147           delete image;
148           image = new Surface(filename,IGNORE_ALPHA);
149         }
150     }
151
152   for(i=1; i != -1; ++i)
153     {
154       /* Get the number of levels in this subset */
155       snprintf(filename, 1024, "%s/levels/%s/level%d.stl", st_dir, subset,i);
156       if(!faccessible(filename))
157         {
158           snprintf(filename, 1024, "%s/levels/%s/level%d.stl", datadir.c_str(), subset,i);
159           if(!faccessible(filename))
160             break;
161         }
162     }
163   levels = --i;
164 }
165
166 void LevelSubset::save()
167 {
168   FILE* fi;
169   string filename;
170
171   /* Save data file: */
172   filename = "/levels/" + name + "/";
173
174   fcreatedir(filename.c_str());
175   filename = string(st_dir) + "/levels/" + name + "/info";
176   if(!fwriteable(filename.c_str()))
177     filename = datadir + "/levels/" + name + "/info";
178   if(fwriteable(filename.c_str()))
179     {
180       fi = fopen(filename.c_str(), "w");
181       if (fi == NULL)
182         {
183           perror(filename.c_str());
184         }
185
186       /* Write header: */
187       fprintf(fi,";SuperTux-Level-Subset\n");
188       fprintf(fi,"(supertux-level-subset\n");
189
190       /* Save title info: */
191       fprintf(fi,"  (title \"%s\")\n", title.c_str());
192
193       /* Save the description: */
194       fprintf(fi,"  (description \"%s\")\n", description.c_str());
195
196       fprintf( fi,")");
197       fclose(fi);
198
199     }
200 }
201
202 Level::Level()
203   : img_bkgd(0)
204 {
205   init_defaults();
206 }
207
208 Level::Level(const std::string& subset, int level)
209   : img_bkgd(0)
210 {
211   if(load(subset, level) < 0)
212     st_abort("Couldn't load level from subset", subset.c_str());
213 }
214
215 Level::Level(const std::string& filename)
216   : img_bkgd(0)
217 {
218   if(load(filename) < 0)
219     st_abort("Couldn't load level " , filename.c_str());
220 }
221
222 Level::~Level()
223 {
224   delete img_bkgd;
225 }
226
227 void
228 Level::init_defaults()
229 {
230   name       = "UnNamed";
231   author     = "UnNamed";
232   song_title = "Mortimers_chipdisko.mod";
233   bkgd_image = "arctis.png";
234   width      = 21;
235   start_pos_x = 100;
236   start_pos_y = 170;
237   time_left  = 100;
238   gravity    = 10.;
239   back_scrolling = false;
240   hor_autoscroll_speed = 0;
241   bkgd_speed = 2;
242   bkgd_top.red   = 0;
243   bkgd_top.green = 0;
244   bkgd_top.blue  = 0;
245   bkgd_bottom.red   = 255;
246   bkgd_bottom.green = 255;
247   bkgd_bottom.blue  = 255;
248
249   for(int i = 0; i < 15; ++i)
250     {
251       ia_tiles[i].resize(width+1, 0);
252       ia_tiles[i][width] = (unsigned int) '\0';
253
254       for(int y = 0; y < width; ++y)
255         ia_tiles[i][y] = 0;
256
257       bg_tiles[i].resize(width+1, 0);
258       bg_tiles[i][width] = (unsigned int) '\0';
259       for(int y = 0; y < width; ++y)
260         bg_tiles[i][y] = 0;
261
262       fg_tiles[i].resize(width+1, 0);
263       fg_tiles[i][width] = (unsigned int) '\0';
264       for(int y = 0; y < width; ++y)
265         fg_tiles[i][y] = 0;
266     }
267 }
268
269 int
270 Level::load(const std::string& subset, int level)
271 {
272   char filename[1024];
273
274   // Load data file:
275   snprintf(filename, 1024, "%s/levels/%s/level%d.stl", st_dir, subset.c_str(), level);
276   if(!faccessible(filename))
277     snprintf(filename, 1024, "%s/levels/%s/level%d.stl", datadir.c_str(), subset.c_str(), level);
278
279   return load(filename);
280 }
281
282 int 
283 Level::load(const std::string& filename)
284 {
285   lisp_object_t* root_obj = lisp_read_from_file(filename);
286   if (!root_obj)
287     {
288       std::cout << "Level: Couldn't load file: " << filename << std::endl;
289       return -1;
290     }
291
292   if (root_obj->type == LISP_TYPE_EOF || root_obj->type == LISP_TYPE_PARSE_ERROR)
293     {
294       printf("World: Parse Error in file %s", filename.c_str());
295       return -1;
296     }
297
298   vector<int> ia_tm;
299   vector<int> bg_tm;
300   vector<int> fg_tm;
301
302   int version = 0;
303   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-level") == 0)
304     {
305       LispReader reader(lisp_cdr(root_obj));
306       version = 0;
307       reader.read_int("version",  &version);
308       if(!reader.read_int("width",  &width))
309         st_abort("No width specified for level.", "");
310       if (!reader.read_int("start_pos_x", &start_pos_x)) start_pos_x = 100;
311       if (!reader.read_int("start_pos_y", &start_pos_y)) start_pos_y = 170;
312       time_left = 500;
313       if(!reader.read_int("time",  &time_left)) {
314         printf("Warning no time specified for level.\n");
315       }
316       
317       back_scrolling = false;
318       reader.read_bool("back_scrolling",  &back_scrolling);
319
320       hor_autoscroll_speed = 0;
321       reader.read_float("hor_autoscroll_speed",  &hor_autoscroll_speed);
322       
323       bkgd_speed = 2;
324       reader.read_int("bkgd_speed",  &bkgd_speed);
325
326       
327       bkgd_top.red = bkgd_top.green = bkgd_top.blue = 0;
328       reader.read_int("bkgd_red_top",  &bkgd_top.red);
329       reader.read_int("bkgd_green_top",  &bkgd_top.green);
330       reader.read_int("bkgd_blue_top",  &bkgd_top.blue);
331
332       bkgd_bottom.red = bkgd_bottom.green = bkgd_bottom.blue = 0;
333       reader.read_int("bkgd_red_bottom",  &bkgd_bottom.red);
334       reader.read_int("bkgd_green_bottom",  &bkgd_bottom.green);
335       reader.read_int("bkgd_blue_bottom",  &bkgd_bottom.blue);
336
337       gravity = 10;
338       reader.read_float("gravity",  &gravity);
339       name = "Noname";
340       reader.read_string("name",  &name);
341       author = "unknown author";
342       reader.read_string("author", &author);
343       song_title = "";
344       reader.read_string("music",  &song_title);
345       bkgd_image = "";
346       reader.read_string("background",  &bkgd_image);
347       particle_system = "";
348       reader.read_string("particle_system", &particle_system);
349
350       reader.read_int_vector("background-tm",  &bg_tm);
351
352       if (!reader.read_int_vector("interactive-tm", &ia_tm))
353         reader.read_int_vector("tilemap", &ia_tm);
354
355       reader.read_int_vector("foreground-tm",  &fg_tm);
356
357       { // Read ResetPoints
358         lisp_object_t* cur = 0;
359         if (reader.read_lisp("reset-points",  &cur))
360           {
361             while (!lisp_nil_p(cur))
362               {
363                 lisp_object_t* data = lisp_car(cur);
364
365                 ResetPoint pos;
366
367                 LispReader reader(lisp_cdr(data));
368                 if (reader.read_int("x", &pos.x)
369                     && reader.read_int("y", &pos.y))
370                   {
371                     reset_points.push_back(pos);
372                   }
373
374                 cur = lisp_cdr(cur);
375               }
376           }
377       }
378
379       { // Read BadGuys
380         lisp_object_t* cur = 0;
381         if (reader.read_lisp("objects",  &cur))
382           {
383             while (!lisp_nil_p(cur))
384               {
385                 lisp_object_t* data = lisp_car(cur);
386
387                 BadGuyData bg_data;
388                 bg_data.kind = badguykind_from_string(lisp_symbol(lisp_car(data)));
389                 LispReader reader(lisp_cdr(data));
390                 reader.read_int("x", &bg_data.x);
391                 reader.read_int("y", &bg_data.y);
392                 reader.read_bool("stay-on-platform", &bg_data.stay_on_platform);
393
394                 badguy_data.push_back(bg_data);
395
396                 cur = lisp_cdr(cur);
397               }
398           }
399       }
400
401       // Convert old levels to the new tile numbers
402       if (version == 0)
403         {
404           std::map<char, int> transtable;
405           transtable['.'] = 0;
406           transtable['x'] = 104;
407           transtable['X'] = 77;
408           transtable['y'] = 78;
409           transtable['Y'] = 105;
410           transtable['A'] = 83;
411           transtable['B'] = 102;
412           transtable['!'] = 103;
413           transtable['a'] = 84;
414           transtable['C'] = 85;
415           transtable['D'] = 86;
416           transtable['E'] = 87;
417           transtable['F'] = 88;
418           transtable['c'] = 89;
419           transtable['d'] = 90;
420           transtable['e'] = 91;
421           transtable['f'] = 92;
422
423           transtable['G'] = 93;
424           transtable['H'] = 94;
425           transtable['I'] = 95;
426           transtable['J'] = 96;
427
428           transtable['g'] = 97;
429           transtable['h'] = 98;
430           transtable['i'] = 99;
431           transtable['j'] = 100
432                             ;
433           transtable['#'] = 11;
434           transtable['['] = 13;
435           transtable['='] = 14;
436           transtable[']'] = 15;
437           transtable['$'] = 82;
438           transtable['^'] = 76;
439           transtable['*'] = 80;
440           transtable['|'] = 79;
441           transtable['\\'] = 81;
442           transtable['&'] = 75;
443
444           int x = 0;
445           int y = 0;
446           for(std::vector<int>::iterator i = ia_tm.begin(); i != ia_tm.end(); ++i)
447             {
448               if (*i == '0' || *i == '1' || *i == '2')
449                 {
450                   badguy_data.push_back(BadGuyData(static_cast<BadGuyKind>(*i-'0'),
451                                                    x*32, y*32, false));
452                   *i = 0;
453                 }
454               else
455                 {
456                   std::map<char, int>::iterator j = transtable.find(*i);
457                   if (j != transtable.end())
458                     *i = j->second;
459                   else
460                     printf("Error: conversion will fail, unsupported char: '%c' (%d)\n", *i, *i);
461                 }
462               ++x;
463               if (x >= width)
464                 {
465                   x = 0;
466                   ++y;
467                 }
468             }
469         }
470     }
471
472   for(int i = 0; i < 15; ++i)
473     {
474       ia_tiles[i].resize(width + 1, 0);
475       bg_tiles[i].resize(width + 1, 0);
476       fg_tiles[i].resize(width + 1, 0);
477     }
478
479   int i = 0;
480   int j = 0;
481   for(vector<int>::iterator it = ia_tm.begin(); it != ia_tm.end(); ++it, ++i)
482     {
483       ia_tiles[j][i] = (*it);
484       if(i == width - 1)
485         {
486           i = -1;
487           ++j;
488         }
489     }
490
491   i = j = 0;
492   for(vector<int>::iterator it = bg_tm.begin(); it != bg_tm.end(); ++it, ++i)
493     {
494
495       bg_tiles[j][i] = (*it);
496       if(i == width - 1)
497         {
498           i = -1;
499           ++j;
500         }
501     }
502
503   i = j = 0;
504   for(vector<int>::iterator it = fg_tm.begin(); it != fg_tm.end(); ++it, ++i)
505     {
506
507       fg_tiles[j][i] = (*it);
508       if(i == width - 1)
509         {
510           i = -1;
511           ++j;
512         }
513     }
514
515   lisp_free(root_obj);
516   return 0;
517 }
518
519 /* Save data for level: */
520
521 void 
522 Level::save(const std::string& subset, int level)
523 {
524   char filename[1024];
525   char str[80];
526
527   /* Save data file: */
528   sprintf(str, "/levels/%s/", subset.c_str());
529   fcreatedir(str);
530   snprintf(filename, 1024, "%s/levels/%s/level%d.stl", st_dir, subset.c_str(),
531       level);
532   if(!fwriteable(filename))
533     snprintf(filename, 1024, "%s/levels/%s/level%d.stl", datadir.c_str(),
534         subset.c_str(), level);
535
536   FILE * fi = fopen(filename, "w");
537   if (fi == NULL)
538     {
539       perror(filename);
540       st_shutdown();
541       exit(-1);
542     }
543
544
545   /* Write header: */
546   fprintf(fi,";SuperTux-Level\n");
547   fprintf(fi,"(supertux-level\n");
548
549   fprintf(fi,"  (version %d)\n", 1);
550   fprintf(fi,"  (name \"%s\")\n", name.c_str());
551   fprintf(fi,"  (author \"%s\")\n", author.c_str());
552   fprintf(fi,"  (music \"%s\")\n", song_title.c_str());
553   fprintf(fi,"  (background \"%s\")\n", bkgd_image.c_str());
554   fprintf(fi,"  (particle_system \"%s\")\n", particle_system.c_str());
555   fprintf(fi,"  (bkgd_speed \"%d\")\n", bkgd_speed);
556   fprintf(fi,"  (bkgd_red_top %d)\n", bkgd_top.red);
557   fprintf(fi,"  (bkgd_green_top %d)\n", bkgd_top.green);
558   fprintf(fi,"  (bkgd_blue_top %d)\n", bkgd_top.blue);
559   fprintf(fi,"  (bkgd_red_bottom %d)\n", bkgd_bottom.red);
560   fprintf(fi,"  (bkgd_green_bottom %d)\n", bkgd_bottom.green);
561   fprintf(fi,"  (bkgd_blue_bottom %d)\n", bkgd_bottom.blue);
562   fprintf(fi,"  (time %d)\n", time_left);
563   fprintf(fi,"  (width %d)\n", width);
564   if(back_scrolling)
565     fprintf(fi,"  (back_scrolling #t)\n"); 
566   else
567     fprintf(fi,"  (back_scrolling #f)\n");
568   fprintf(fi,"  (hor_autoscroll_speed %2.1f)\n", hor_autoscroll_speed);
569   fprintf(fi,"  (gravity %2.1f)\n", gravity);
570   fprintf(fi,"  (background-tm ");
571
572   for(int y = 0; y < 15; ++y)
573     {
574       for(int i = 0; i < width; ++i)
575         fprintf(fi," %d ", bg_tiles[y][i]);
576     }
577
578   fprintf( fi,")\n");
579   fprintf(fi,"  (interactive-tm ");
580
581   for(int y = 0; y < 15; ++y)
582     {
583       for(int i = 0; i < width; ++i)
584         fprintf(fi," %d ", ia_tiles[y][i]);
585     }
586
587   fprintf( fi,")\n");
588   fprintf(fi,"  (foreground-tm ");
589
590   for(int y = 0; y < 15; ++y)
591     {
592       for(int i = 0; i < width; ++i)
593         fprintf(fi," %d ", fg_tiles[y][i]);
594     }
595
596   fprintf( fi,")\n");
597
598   fprintf( fi,"(reset-points\n");
599   for(std::vector<ResetPoint>::iterator i = reset_points.begin();
600       i != reset_points.end(); ++i)
601     fprintf( fi,"(point (x %d) (y %d))\n",i->x, i->y);
602   fprintf( fi,")\n");
603
604   fprintf( fi,"(objects\n");
605
606   for(std::vector<BadGuyData>::iterator it = badguy_data.begin();
607       it != badguy_data.end();
608       ++it)
609     fprintf( fi,"(%s (x %d) (y %d) (stay-on-platform %s))\n",
610              badguykind_to_string((*it).kind).c_str(),(*it).x,(*it).y,
611              it->stay_on_platform ? "#t" : "#f");
612
613   fprintf( fi,")\n");
614
615   fprintf( fi,")\n");
616
617   fclose(fi);
618 }
619
620
621 /* Unload data for this level: */
622
623 void
624 Level::cleanup()
625 {
626   for(int i=0; i < 15; ++i)
627     {
628       bg_tiles[i].clear();
629       ia_tiles[i].clear();
630       fg_tiles[i].clear();
631     }
632
633   reset_points.clear();
634   name = "";
635   author = "";
636   song_title = "";
637   bkgd_image = "";
638
639   badguy_data.clear();
640 }
641
642 void 
643 Level::load_gfx()
644 {
645   if(!bkgd_image.empty())
646     {
647       char fname[1024];
648       snprintf(fname, 1024, "%s/background/%s", st_dir, bkgd_image.c_str());
649       if(!faccessible(fname))
650         snprintf(fname, 1024, "%s/images/background/%s", datadir.c_str(), bkgd_image.c_str());
651       delete img_bkgd;
652       img_bkgd = new Surface(fname, IGNORE_ALPHA);
653     }
654   else
655     {
656       delete img_bkgd;
657       img_bkgd = 0;
658     }
659 }
660
661 /* Load a level-specific graphic... */
662 void Level::load_image(Surface** ptexture, string theme,const  char * file, int use_alpha)
663 {
664   char fname[1024];
665
666   snprintf(fname, 1024, "%s/themes/%s/%s", st_dir, theme.c_str(), file);
667   if(!faccessible(fname))
668     snprintf(fname, 1024, "%s/images/themes/%s/%s", datadir.c_str(), theme.c_str(), file);
669
670   *ptexture = new Surface(fname, use_alpha);
671 }
672
673 /* Change the size of a level (width) */
674 void 
675 Level::change_size (int new_width)
676 {
677   if(new_width < 21)
678     new_width = 21;
679
680   for(int y = 0; y < 15; ++y)
681     {
682       ia_tiles[y].resize(new_width, 0);
683       bg_tiles[y].resize(new_width, 0);
684       fg_tiles[y].resize(new_width, 0);
685     }
686
687   width = new_width;
688 }
689
690 void
691 Level::change(float x, float y, int tm, unsigned int c)
692 {
693   int yy = ((int)y / 32);
694   int xx = ((int)x / 32);
695
696   if (yy >= 0 && yy < 15 && xx >= 0 && xx <= width)
697     {
698       switch(tm)
699         {
700         case TM_BG:
701           bg_tiles[yy][xx] = c;
702           break;
703         case TM_IA:
704           ia_tiles[yy][xx] = c;
705           break;
706         case TM_FG:
707           fg_tiles[yy][xx] = c;
708           break;
709         }
710     }
711 }
712
713 void
714 Level::load_song()
715 {
716   char* song_path;
717   char* song_subtitle;
718
719   level_song = music_manager->load_music(datadir + "/music/" + song_title);
720
721   song_path = (char *) malloc(sizeof(char) * datadir.length() +
722                               strlen(song_title.c_str()) + 8 + 5);
723   song_subtitle = strdup(song_title.c_str());
724   strcpy(strstr(song_subtitle, "."), "\0");
725   sprintf(song_path, "%s/music/%s-fast%s", datadir.c_str(), 
726           song_subtitle, strstr(song_title.c_str(), "."));
727   if(!music_manager->exists_music(song_path)) {
728     level_song_fast = level_song;
729   } else {
730     level_song_fast = music_manager->load_music(song_path);
731   }
732   free(song_subtitle);
733   free(song_path);
734 }
735
736 MusicRef
737 Level::get_level_music()
738 {
739   return level_song;
740 }
741
742 MusicRef
743 Level::get_level_music_fast()
744 {
745   return level_song_fast;
746 }
747
748 unsigned int 
749 Level::gettileid(float x, float y) const
750 {
751   int xx, yy;
752   unsigned int c;
753
754   yy = ((int)y / 32);
755   xx = ((int)x / 32);
756
757   if (yy >= 0 && yy < 15 && xx >= 0 && xx <= width)
758     c = ia_tiles[yy][xx];
759   else
760     c = 0;
761
762   return c;
763 }
764
765 unsigned int
766 Level::get_tile_at(int x, int y) const
767 {
768   if(x < 0 || x > width || y < 0 || y > 14)
769     return 0;
770   
771   return ia_tiles[y][x];
772 }
773
774 /* EOF */