Bugfix: enemies below half the screen were not appearing and were causing problems...
[supertux.git] / src / level_subset.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 <assert.h>
22 #include <unistd.h>
23 #include "app/setup.h"
24 #include "level.h"
25 #include "app/globals.h"
26 #include "video/surface.h"
27 #include "level_subset.h"
28
29 using namespace SuperTux;
30
31 static bool has_suffix(const std::string& data, const std::string& suffix)
32 {
33   if (data.length() >= suffix.length())
34     return data.compare(data.length() - suffix.length(), suffix.length(), suffix) == 0;
35   else
36     return false;
37 }
38
39 LevelSubset::LevelSubset()
40   : levels(0)
41 {
42 }
43
44 LevelSubset::~LevelSubset()
45 {
46 }
47
48 void LevelSubset::create(const std::string& subset_name)
49 {
50   Level new_lev;
51   LevelSubset new_subset;
52   new_subset.name = subset_name;
53   new_subset.title = "Unknown Title";
54   new_subset.description = "No description so far.";
55   new_subset.hide_from_contribs = false;
56   new_subset.save();
57 }
58
59 void LevelSubset::read_info_file(const std::string& info_file)
60 {
61   lisp_object_t* root_obj = lisp_read_from_file(info_file);
62   lisp_object_t* cur = lisp_car(root_obj);
63
64   if (lisp_symbol_p(cur) && strcmp(lisp_symbol(cur), "supertux-level-subset") == 0)
65     {
66       LispReader reader(lisp_cdr(root_obj));
67
68       reader.read_string("title", title, true);
69       reader.read_string("description", description, true);
70       reader.read_string_vector("levels", levels);
71       hide_from_contribs = false;
72       reader.read_bool("hide-from-contribs", hide_from_contribs);
73     }
74   else
75     {
76       std::cout << "LevelSubset: parse error in info file: " << info_file << std::endl;
77     }
78
79   lisp_free(root_obj);
80 }
81
82 void LevelSubset::load(const std::string& subset)
83 {
84   name = subset;
85   
86   // Check in which directory our subset is located (ie. ~/.supertux/
87   // or SUPERTUX_DATADIR)
88   std::string filename;
89   filename = st_dir + "/levels/" + subset + "/";
90   if (access(filename.c_str(), R_OK) == 0)
91     {
92       directory = filename;
93     }
94   else
95     {
96       filename = datadir + "/levels/" + subset + "/";
97       if (access(filename.c_str(), R_OK) == 0)
98         directory = filename;
99       else
100         std::cout << "Error: LevelSubset: couldn't find subset: " << subset << std::endl;
101     }
102   
103   read_info_file(directory + "info");
104
105   if (levels.empty())
106     { // Level info file doesn't define any levels, so read the
107       // directory to see what we can find
108       std::set<std::string> files;
109   
110       filename = st_dir + "/levels/" + subset + "/";
111       if(access(filename.c_str(), R_OK) == 0)
112         {
113           files = FileSystem::read_directory(filename);
114         }
115       else
116         {
117           filename = datadir + "/levels/" + subset + "/";
118           files = FileSystem::read_directory(filename);
119         }
120   
121       for(std::set<std::string>::iterator i = files.begin(); i != files.end(); ++i)
122         {
123           if (has_suffix(*i, ".stl"))
124             levels.push_back(*i);
125         }
126     }
127 }
128
129 void
130 LevelSubset::save()
131 {
132   FILE* fi;
133   std::string filename;
134
135   /* Save data file: */
136   filename = "/levels/" + name + "/";
137
138   FileSystem::fcreatedir(filename.c_str());
139   filename = std::string(st_dir) + "/levels/" + name + "/info";
140   if(!FileSystem::fwriteable(filename.c_str()))
141     filename = datadir + "/levels/" + name + "/info";
142   if(FileSystem::fwriteable(filename.c_str()))
143     {
144       fi = fopen(filename.c_str(), "w");
145       if (fi == NULL)
146         {
147           perror(filename.c_str());
148         }
149
150       /* Write header: */
151       fprintf(fi,";; SuperTux-Level-Subset\n");
152       fprintf(fi,"(supertux-level-subset\n");
153
154       /* Save title info: */
155       fprintf(fi,"  (title \"%s\")\n", title.c_str());
156
157       /* Save the description: */
158       fprintf(fi,"  (description \"%s\")\n", description.c_str());
159
160       /* Save the hide from Contrbis menu boolean: */
161       fprintf(fi,"  (hide-from-contribs \"%s\")\n", hide_from_contribs ? "#t" : "#f");
162
163       fprintf( fi,")");
164       fclose(fi);
165     }
166 }
167
168 void
169 LevelSubset::add_level(const std::string& name)
170 {
171   levels.push_back(name);
172 }
173
174 std::string
175 LevelSubset::get_level_filename(unsigned int num)
176 {
177   assert(num < levels.size());
178   return directory + levels[num];
179 }
180
181 int
182 LevelSubset::get_num_levels() const
183 {
184   return levels.size();
185 }
186
187 /* EOF */