Support for Benjamin's fonts.
[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   bkgd_speed = 2;
241   bkgd_top.red   = 0;
242   bkgd_top.green = 0;
243   bkgd_top.blue  = 0;
244   bkgd_bottom.red   = 255;
245   bkgd_bottom.green = 255;
246   bkgd_bottom.blue  = 255;
247
248   for(int i = 0; i < 15; ++i)
249     {
250       ia_tiles[i].resize(width+1, 0);
251       ia_tiles[i][width] = (unsigned int) '\0';
252
253       for(int y = 0; y < width; ++y)
254         ia_tiles[i][y] = 0;
255
256       bg_tiles[i].resize(width+1, 0);
257       bg_tiles[i][width] = (unsigned int) '\0';
258       for(int y = 0; y < width; ++y)
259         bg_tiles[i][y] = 0;
260
261       fg_tiles[i].resize(width+1, 0);
262       fg_tiles[i][width] = (unsigned int) '\0';
263       for(int y = 0; y < width; ++y)
264         fg_tiles[i][y] = 0;
265     }
266 }
267
268 int
269 Level::load(const std::string& subset, int level)
270 {
271   char filename[1024];
272
273   // Load data file:
274   snprintf(filename, 1024, "%s/levels/%s/level%d.stl", st_dir, subset.c_str(), level);
275   if(!faccessible(filename))
276     snprintf(filename, 1024, "%s/levels/%s/level%d.stl", datadir.c_str(), subset.c_str(), level);
277
278   return load(filename);
279 }
280
281 int 
282 Level::load(const std::string& filename)
283 {
284   lisp_object_t* root_obj = lisp_read_from_file(filename);
285   if (!root_obj)
286     {
287       std::cout << "Level: Couldn't load file: " << filename << std::endl;
288       return -1;
289     }
290
291   if (root_obj->type == LISP_TYPE_EOF || root_obj->type == LISP_TYPE_PARSE_ERROR)
292     {
293       printf("World: Parse Error in file %s", filename.c_str());
294       return -1;
295     }
296
297   vector<int> ia_tm;
298   vector<int> bg_tm;
299   vector<int> fg_tm;
300
301   int version = 0;
302   if (strcmp(lisp_symbol(lisp_car(root_obj)), "supertux-level") == 0)
303     {
304       LispReader reader(lisp_cdr(root_obj));
305       version = 0;
306       reader.read_int("version",  &version);
307       if(!reader.read_int("width",  &width))
308         st_abort("No width specified for level.", "");
309       if (!reader.read_int("start_pos_x", &start_pos_x)) start_pos_x = 100;
310       if (!reader.read_int("start_pos_y", &start_pos_y)) start_pos_y = 170;
311       time_left = 500;
312       if(!reader.read_int("time",  &time_left)) {
313         printf("Warning no time specified for level.\n");
314       }
315       
316       back_scrolling = false;
317       reader.read_bool("back_scrolling",  &back_scrolling);
318
319       bkgd_speed = 2;
320       reader.read_int("bkgd_speed",  &bkgd_speed);
321
322       
323       bkgd_top.red = bkgd_top.green = bkgd_top.blue = 0;
324       reader.read_int("bkgd_red_top",  &bkgd_top.red);
325       reader.read_int("bkgd_green_top",  &bkgd_top.green);
326       reader.read_int("bkgd_blue_top",  &bkgd_top.blue);
327
328       bkgd_bottom.red = bkgd_bottom.green = bkgd_bottom.blue = 0;
329       reader.read_int("bkgd_red_bottom",  &bkgd_bottom.red);
330       reader.read_int("bkgd_green_bottom",  &bkgd_bottom.green);
331       reader.read_int("bkgd_blue_bottom",  &bkgd_bottom.blue);
332
333       gravity = 10;
334       reader.read_float("gravity",  &gravity);
335       name = "Noname";
336       reader.read_string("name",  &name);
337       author = "unknown author";
338       reader.read_string("author", &author);
339       song_title = "";
340       reader.read_string("music",  &song_title);
341       bkgd_image = "";
342       reader.read_string("background",  &bkgd_image);
343       particle_system = "";
344       reader.read_string("particle_system", &particle_system);
345
346       reader.read_int_vector("background-tm",  &bg_tm);
347
348       if (!reader.read_int_vector("interactive-tm", &ia_tm))
349         reader.read_int_vector("tilemap", &ia_tm);
350
351       reader.read_int_vector("foreground-tm",  &fg_tm);
352
353       { // Read ResetPoints
354         lisp_object_t* cur = 0;
355         if (reader.read_lisp("reset-points",  &cur))
356           {
357             while (!lisp_nil_p(cur))
358               {
359                 lisp_object_t* data = lisp_car(cur);
360
361                 ResetPoint pos;
362
363                 LispReader reader(lisp_cdr(data));
364                 if (reader.read_int("x", &pos.x)
365                     && reader.read_int("y", &pos.y))
366                   {
367                     reset_points.push_back(pos);
368                   }
369
370                 cur = lisp_cdr(cur);
371               }
372           }
373       }
374
375       { // Read BadGuys
376         lisp_object_t* cur = 0;
377         if (reader.read_lisp("objects",  &cur))
378           {
379             while (!lisp_nil_p(cur))
380               {
381                 lisp_object_t* data = lisp_car(cur);
382
383                 BadGuyData bg_data;
384                 bg_data.kind = badguykind_from_string(lisp_symbol(lisp_car(data)));
385                 LispReader reader(lisp_cdr(data));
386                 reader.read_int("x", &bg_data.x);
387                 reader.read_int("y", &bg_data.y);
388                 reader.read_bool("stay-on-platform", &bg_data.stay_on_platform);
389
390                 badguy_data.push_back(bg_data);
391
392                 cur = lisp_cdr(cur);
393               }
394           }
395       }
396
397       // Convert old levels to the new tile numbers
398       if (version == 0)
399         {
400           std::map<char, int> transtable;
401           transtable['.'] = 0;
402           transtable['x'] = 104;
403           transtable['X'] = 77;
404           transtable['y'] = 78;
405           transtable['Y'] = 105;
406           transtable['A'] = 83;
407           transtable['B'] = 102;
408           transtable['!'] = 103;
409           transtable['a'] = 84;
410           transtable['C'] = 85;
411           transtable['D'] = 86;
412           transtable['E'] = 87;
413           transtable['F'] = 88;
414           transtable['c'] = 89;
415           transtable['d'] = 90;
416           transtable['e'] = 91;
417           transtable['f'] = 92;
418
419           transtable['G'] = 93;
420           transtable['H'] = 94;
421           transtable['I'] = 95;
422           transtable['J'] = 96;
423
424           transtable['g'] = 97;
425           transtable['h'] = 98;
426           transtable['i'] = 99;
427           transtable['j'] = 100
428                             ;
429           transtable['#'] = 11;
430           transtable['['] = 13;
431           transtable['='] = 14;
432           transtable[']'] = 15;
433           transtable['$'] = 82;
434           transtable['^'] = 76;
435           transtable['*'] = 80;
436           transtable['|'] = 79;
437           transtable['\\'] = 81;
438           transtable['&'] = 75;
439
440           int x = 0;
441           int y = 0;
442           for(std::vector<int>::iterator i = ia_tm.begin(); i != ia_tm.end(); ++i)
443             {
444               if (*i == '0' || *i == '1' || *i == '2')
445                 {
446                   badguy_data.push_back(BadGuyData(static_cast<BadGuyKind>(*i-'0'),
447                                                    x*32, y*32, false));
448                   *i = 0;
449                 }
450               else
451                 {
452                   std::map<char, int>::iterator j = transtable.find(*i);
453                   if (j != transtable.end())
454                     *i = j->second;
455                   else
456                     printf("Error: conversion will fail, unsupported char: '%c' (%d)\n", *i, *i);
457                 }
458               ++x;
459               if (x >= width)
460                 {
461                   x = 0;
462                   ++y;
463                 }
464             }
465         }
466     }
467
468   for(int i = 0; i < 15; ++i)
469     {
470       ia_tiles[i].resize(width + 1, 0);
471       bg_tiles[i].resize(width + 1, 0);
472       fg_tiles[i].resize(width + 1, 0);
473     }
474
475   int i = 0;
476   int j = 0;
477   for(vector<int>::iterator it = ia_tm.begin(); it != ia_tm.end(); ++it, ++i)
478     {
479       ia_tiles[j][i] = (*it);
480       if(i == width - 1)
481         {
482           i = -1;
483           ++j;
484         }
485     }
486
487   i = j = 0;
488   for(vector<int>::iterator it = bg_tm.begin(); it != bg_tm.end(); ++it, ++i)
489     {
490
491       bg_tiles[j][i] = (*it);
492       if(i == width - 1)
493         {
494           i = -1;
495           ++j;
496         }
497     }
498
499   i = j = 0;
500   for(vector<int>::iterator it = fg_tm.begin(); it != fg_tm.end(); ++it, ++i)
501     {
502
503       fg_tiles[j][i] = (*it);
504       if(i == width - 1)
505         {
506           i = -1;
507           ++j;
508         }
509     }
510
511   lisp_free(root_obj);
512   return 0;
513 }
514
515 /* Save data for level: */
516
517 void 
518 Level::save(const std::string& subset, int level)
519 {
520   char filename[1024];
521   char str[80];
522
523   /* Save data file: */
524   sprintf(str, "/levels/%s/", subset.c_str());
525   fcreatedir(str);
526   snprintf(filename, 1024, "%s/levels/%s/level%d.stl", st_dir, subset.c_str(),
527       level);
528   if(!fwriteable(filename))
529     snprintf(filename, 1024, "%s/levels/%s/level%d.stl", datadir.c_str(),
530         subset.c_str(), level);
531
532   FILE * fi = fopen(filename, "w");
533   if (fi == NULL)
534     {
535       perror(filename);
536       st_shutdown();
537       exit(-1);
538     }
539
540
541   /* Write header: */
542   fprintf(fi,";SuperTux-Level\n");
543   fprintf(fi,"(supertux-level\n");
544
545   fprintf(fi,"  (version %d)\n", 1);
546   fprintf(fi,"  (name \"%s\")\n", name.c_str());
547   fprintf(fi,"  (author \"%s\")\n", author.c_str());
548   fprintf(fi,"  (music \"%s\")\n", song_title.c_str());
549   fprintf(fi,"  (background \"%s\")\n", bkgd_image.c_str());
550   fprintf(fi,"  (particle_system \"%s\")\n", particle_system.c_str());
551   fprintf(fi,"  (bkgd_speed \"%d\")\n", bkgd_speed);
552   fprintf(fi,"  (bkgd_red_top %d)\n", bkgd_top.red);
553   fprintf(fi,"  (bkgd_green_top %d)\n", bkgd_top.green);
554   fprintf(fi,"  (bkgd_blue_top %d)\n", bkgd_top.blue);
555   fprintf(fi,"  (bkgd_red_bottom %d)\n", bkgd_bottom.red);
556   fprintf(fi,"  (bkgd_green_bottom %d)\n", bkgd_bottom.green);
557   fprintf(fi,"  (bkgd_blue_bottom %d)\n", bkgd_bottom.blue);
558   fprintf(fi,"  (time %d)\n", time_left);
559   fprintf(fi,"  (width %d)\n", width);
560   if(back_scrolling)
561     fprintf(fi,"  (back_scrolling #t)\n"); 
562   else
563     fprintf(fi,"  (back_scrolling #f)\n");
564   fprintf(fi,"  (gravity %2.1f)\n", gravity);
565   fprintf(fi,"  (background-tm ");
566
567   for(int y = 0; y < 15; ++y)
568     {
569       for(int i = 0; i < width; ++i)
570         fprintf(fi," %d ", bg_tiles[y][i]);
571     }
572
573   fprintf( fi,")\n");
574   fprintf(fi,"  (interactive-tm ");
575
576   for(int y = 0; y < 15; ++y)
577     {
578       for(int i = 0; i < width; ++i)
579         fprintf(fi," %d ", ia_tiles[y][i]);
580     }
581
582   fprintf( fi,")\n");
583   fprintf(fi,"  (foreground-tm ");
584
585   for(int y = 0; y < 15; ++y)
586     {
587       for(int i = 0; i < width; ++i)
588         fprintf(fi," %d ", fg_tiles[y][i]);
589     }
590
591   fprintf( fi,")\n");
592
593   fprintf( fi,"(reset-points\n");
594   for(std::vector<ResetPoint>::iterator i = reset_points.begin();
595       i != reset_points.end(); ++i)
596     fprintf( fi,"(point (x %d) (y %d))\n",i->x, i->y);
597   fprintf( fi,")\n");
598
599   fprintf( fi,"(objects\n");
600
601   for(std::vector<BadGuyData>::iterator it = badguy_data.begin();
602       it != badguy_data.end();
603       ++it)
604     fprintf( fi,"(%s (x %d) (y %d) (stay-on-platform %s))\n",
605              badguykind_to_string((*it).kind).c_str(),(*it).x,(*it).y,
606              it->stay_on_platform ? "#t" : "#f");
607
608   fprintf( fi,")\n");
609
610   fprintf( fi,")\n");
611
612   fclose(fi);
613 }
614
615
616 /* Unload data for this level: */
617
618 void
619 Level::cleanup()
620 {
621   for(int i=0; i < 15; ++i)
622     {
623       bg_tiles[i].clear();
624       ia_tiles[i].clear();
625       fg_tiles[i].clear();
626     }
627
628   reset_points.clear();
629   name = "";
630   author = "";
631   song_title = "";
632   bkgd_image = "";
633
634   badguy_data.clear();
635 }
636
637 void 
638 Level::load_gfx()
639 {
640   if(!bkgd_image.empty())
641     {
642       char fname[1024];
643       snprintf(fname, 1024, "%s/background/%s", st_dir, bkgd_image.c_str());
644       if(!faccessible(fname))
645         snprintf(fname, 1024, "%s/images/background/%s", datadir.c_str(), bkgd_image.c_str());
646       delete img_bkgd;
647       img_bkgd = new Surface(fname, IGNORE_ALPHA);
648     }
649   else
650     {
651       delete img_bkgd;
652       img_bkgd = 0;
653     }
654 }
655
656 /* Load a level-specific graphic... */
657 void Level::load_image(Surface** ptexture, string theme,const  char * file, int use_alpha)
658 {
659   char fname[1024];
660
661   snprintf(fname, 1024, "%s/themes/%s/%s", st_dir, theme.c_str(), file);
662   if(!faccessible(fname))
663     snprintf(fname, 1024, "%s/images/themes/%s/%s", datadir.c_str(), theme.c_str(), file);
664
665   *ptexture = new Surface(fname, use_alpha);
666 }
667
668 /* Change the size of a level (width) */
669 void 
670 Level::change_size (int new_width)
671 {
672   if(new_width < 21)
673     new_width = 21;
674
675   for(int y = 0; y < 15; ++y)
676     {
677       ia_tiles[y].resize(new_width, 0);
678       bg_tiles[y].resize(new_width, 0);
679       fg_tiles[y].resize(new_width, 0);
680     }
681
682   width = new_width;
683 }
684
685 void
686 Level::change(float x, float y, int tm, unsigned int c)
687 {
688   int yy = ((int)y / 32);
689   int xx = ((int)x / 32);
690
691   if (yy >= 0 && yy < 15 && xx >= 0 && xx <= width)
692     {
693       switch(tm)
694         {
695         case TM_BG:
696           bg_tiles[yy][xx] = c;
697           break;
698         case TM_IA:
699           ia_tiles[yy][xx] = c;
700           break;
701         case TM_FG:
702           fg_tiles[yy][xx] = c;
703           break;
704         }
705     }
706 }
707
708 void
709 Level::load_song()
710 {
711   char* song_path;
712   char* song_subtitle;
713
714   level_song = music_manager->load_music(datadir + "/music/" + song_title);
715
716   song_path = (char *) malloc(sizeof(char) * datadir.length() +
717                               strlen(song_title.c_str()) + 8 + 5);
718   song_subtitle = strdup(song_title.c_str());
719   strcpy(strstr(song_subtitle, "."), "\0");
720   sprintf(song_path, "%s/music/%s-fast%s", datadir.c_str(), 
721           song_subtitle, strstr(song_title.c_str(), "."));
722   if(!music_manager->exists_music(song_path)) {
723     level_song_fast = level_song;
724   } else {
725     level_song_fast = music_manager->load_music(song_path);
726   }
727   free(song_subtitle);
728   free(song_path);
729 }
730
731 MusicRef
732 Level::get_level_music()
733 {
734   return level_song;
735 }
736
737 MusicRef
738 Level::get_level_music_fast()
739 {
740   return level_song_fast;
741 }
742
743 unsigned int 
744 Level::gettileid(float x, float y) const
745 {
746   int xx, yy;
747   unsigned int c;
748
749   yy = ((int)y / 32);
750   xx = ((int)x / 32);
751
752   if (yy >= 0 && yy < 15 && xx >= 0 && xx <= width)
753     c = ia_tiles[yy][xx];
754   else
755     c = 0;
756
757   return c;
758 }
759
760 unsigned int
761 Level::get_tile_at(int x, int y) const
762 {
763   if(x < 0 || x > width || y < 0 || y > 14)
764     return 0;
765   
766   return ia_tiles[y][x];
767 }
768
769 /* EOF */