Added "author" field for levels.
[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 class Tile;
22
23 /** This type holds meta-information about a level-subset. 
24     It could be extended to handle manipulation of subsets. */
25 class st_subset
26   {
27   public:
28     st_subset();
29     static void create(const std::string& subset_name);
30     void load(char *subset);
31     void save();
32     void free();
33
34     std::string name;
35     std::string title;
36     std::string description;
37     texture_type image;
38     int levels;
39  
40   private:
41     void parse(lisp_object_t* cursor);
42   };
43
44 #define LEVEL_NAME_MAX 20
45
46
47 enum TileMapType {
48  TM_BG,
49  TM_IA,
50  TM_FG
51  };
52
53 class Level 
54 {
55  public:
56   texture_type img_bkgd;
57
58   std::string name;
59   std::string author;
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_top_red;
69   int bkgd_top_green;
70   int bkgd_top_blue;
71   int bkgd_bottom_red;
72   int bkgd_bottom_green;
73   int bkgd_bottom_blue;
74   int width;
75   int  endpos;
76   float gravity;
77
78   std::vector<BadGuyData> badguy_data;
79  public:
80   /** Will the Level structure with default values */
81   void init_defaults();
82   
83   /** Cleanup the level struct from allocated tile data and such */
84   void cleanup();
85
86   /** Load data for this level: 
87       Returns -1, if the loading of the level failed. */
88   int  load(const std::string& subset, int level);
89
90   /** Load data for this level: 
91       Returns -1, if the loading of the level failed. */
92   int  load(const std::string& filename);
93
94   void load_gfx();
95   
96   void load_song();
97   void free_song();
98
99   void save(const char* subset, int level);
100
101   /** Edit a piece of the map! */
102   void change(float x, float y, int tm, unsigned int c);
103
104   /** Resize the level to a new width */
105   void change_size (int new_width);
106
107   /** Return the id of the tile at position x/y */
108   unsigned int gettileid(float x, float y);
109
110   void free_gfx();
111
112   void load_image(texture_type* ptexture, std::string theme, const char * file, int use_alpha);
113 };
114
115 #endif /*SUPERTUX_LEVEL_H*/