- removed dn_tilemap
[supertux.git] / src / level.h
1 //
2 // C Interface: level
3 //
4 // Description:
5 //
6 //
7 // Author: Tobias Glaesser <tobi.web@gmx.de>, (C) 2003
8 //
9 // Copyright: See COPYING file that comes with this distribution
10 //
11 //
12
13 #ifndef SUPERTUX_LEVEL_H
14 #define SUPERTUX_LEVEL_H
15
16 #include <string>
17 #include "texture.h"
18 #include "badguy.h"
19 #include "lispreader.h"
20
21 /* This type holds meta-information about a level-subset. */
22 /* It could be extended to handle manipulation of subsets. */
23 class st_subset
24   {
25   public:
26     st_subset();
27     static void create(const std::string& subset_name);
28     void load(char *subset);
29     void save();
30     void free();
31
32     std::string name;
33     std::string title;
34     std::string description;
35     texture_type image;
36     int levels;
37  
38   private:
39     void parse(lisp_object_t* cursor);
40   };
41
42 #define LEVEL_NAME_MAX 20
43
44
45 enum TileMapType {
46  TM_BG,
47  TM_IA,
48  TM_FG
49  };
50
51 extern texture_type img_bkgd;
52 extern texture_type img_bkgd_tile[2][4];
53 extern texture_type img_solid[4];
54 extern texture_type img_brick[2];
55
56 class st_level 
57 {
58  public:
59   std::string name;
60   std::string theme;
61   std::string song_title;
62   std::string bkgd_image;
63   std::string particle_system;
64   unsigned int* bg_tiles[15]; /* Tiles in the background */
65   unsigned int* ia_tiles[15]; /* Tiles which can interact in the game (solids for example)*/
66   unsigned int* fg_tiles[15]; /* Tiles in the foreground */
67   int time_left;
68   int bkgd_red;
69   int bkgd_green;
70   int bkgd_blue;
71   int width;
72   float gravity;
73
74   std::vector<BadGuyData> badguy_data;
75  public:
76 };
77
78 void level_default  (st_level* plevel);
79 int  level_load     (st_level* plevel, const char * subset, int level);
80 void level_parse    (st_level* plevel, lisp_object_t* cursor);
81 int  level_load     (st_level* plevel, const char* filename);
82 void level_save     (st_level* plevel, const char * subset, int level);
83 void level_free     (st_level* plevel);
84 void level_load_gfx (st_level* plevel);
85 void level_change   (st_level* plevel, float x, float y, int tm, unsigned int c);
86 void level_change_size (st_level* plevel, int new_width);
87 void level_load_song(st_level* plevel);
88 void level_free_gfx();
89 void level_load_image(texture_type* ptexture, std::string theme, const char * file, int use_alpha);
90 void level_free_song(void);
91
92 #endif /*SUPERTUX_LEVEL_H*/