* Fixed the Yeti's sprite choosing per Groundwater's request.
[supertux.git] / src / main.cpp
1 //  $Id$
2 // 
3 //  SuperTux
4 //  Copyright (C) 2005 Matthias Braun <matze@braunis.de>
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 #include <config.h>
21 #include <assert.h>
22
23 #include "main.hpp"
24
25 #include <stdexcept>
26 #include <iostream>
27 #include <sstream>
28 #include <time.h>
29 #include <stdlib.h>
30 #include <sys/stat.h>
31 #include <sys/types.h>
32 #include <dirent.h>
33 #include <unistd.h>
34 #include <assert.h>
35 #include <physfs.h>
36 #include <SDL.h>
37 #include <SDL_mixer.h>
38 #include <SDL_image.h>
39 #include <SDL_opengl.h>
40
41 #include "gameconfig.hpp"
42 #include "resources.hpp"
43 #include "gettext.hpp"
44 #include "audio/sound_manager.hpp"
45 #include "video/surface.hpp"
46 #include "video/texture_manager.hpp"
47 #include "control/joystickkeyboardcontroller.hpp"
48 #include "misc.hpp"
49 #include "title.hpp"
50 #include "game_session.hpp"
51 #include "file_system.hpp"
52 #include "physfs/physfs_sdl.hpp"
53 #include "exceptions.hpp"
54
55 SDL_Surface* screen = 0;
56 JoystickKeyboardController* main_controller = 0;
57 TinyGetText::DictionaryManager dictionary_manager;
58
59 static void init_config()
60 {
61   config = new Config();
62   try {
63     config->load();
64   } catch(std::exception& e) {
65 #ifdef DEBUG
66     std::cerr << "Couldn't load config file: " << e.what() << "\n";
67 #endif
68   }
69 }
70
71 static void init_tinygettext()
72 {
73   dictionary_manager.add_directory("locale");
74   dictionary_manager.set_charset("UTF-8");
75 }
76
77 static void init_physfs(const char* argv0)
78 {
79   if(!PHYSFS_init(argv0)) {
80     std::stringstream msg;
81     msg << "Couldn't initialize physfs: " << PHYSFS_getLastError();
82     throw std::runtime_error(msg.str());
83   }
84
85   // Initialize physfs (this is a slightly modified version of
86   // PHYSFS_setSaneConfig
87   const char* application = PACKAGE_NAME;
88   const char* userdir = PHYSFS_getUserDir();
89   const char* dirsep = PHYSFS_getDirSeparator();
90   char* writedir = new char[strlen(userdir) + strlen(application) + 2];
91
92   // Set configuration directory
93   sprintf(writedir, "%s.%s", userdir, application);
94   if(!PHYSFS_setWriteDir(writedir)) {
95     // try to create the directory
96     char* mkdir = new char[strlen(application) + 2];
97     sprintf(mkdir, ".%s", application);
98     if(!PHYSFS_setWriteDir(userdir) || !PHYSFS_mkdir(mkdir)) {
99       std::ostringstream msg;
100       msg << "Failed creating configuration directory '" 
101           << writedir << "': " << PHYSFS_getLastError();
102       delete[] writedir;
103       delete[] mkdir;
104       throw std::runtime_error(msg.str());
105     }
106     delete[] mkdir;
107     
108     if(!PHYSFS_setWriteDir(writedir)) {
109       std::ostringstream msg;
110       msg << "Failed to use configuration directory '" 
111           <<  writedir << "': " << PHYSFS_getLastError();
112       delete[] writedir;
113       throw std::runtime_error(msg.str());
114     }
115   }
116   PHYSFS_addToSearchPath(writedir, 0);
117   delete[] writedir;
118
119   // Search for archives and add them to the search path
120   const char* archiveExt = "zip";
121   char** rc = PHYSFS_enumerateFiles("/");
122   size_t extlen = strlen(archiveExt);
123
124   for(char** i = rc; *i != 0; ++i) {
125     size_t l = strlen(*i);
126     if((l > extlen) && ((*i)[l - extlen - 1] == '.')) {
127       const char* ext = (*i) + (l - extlen);
128       if(strcasecmp(ext, archiveExt) == 0) {
129         const char* d = PHYSFS_getRealDir(*i);
130         char* str = new char[strlen(d) + strlen(dirsep) + l + 1];
131         sprintf(str, "%s%s%s", d, dirsep, *i);
132         PHYSFS_addToSearchPath(str, 1);
133         delete[] str;
134       }
135     }
136   }
137   
138   PHYSFS_freeList(rc);
139
140   // when started from source dir...
141   std::string dir = PHYSFS_getBaseDir();
142   dir += "/data";
143   std::string testfname = dir;
144   testfname += "/credits.txt";
145   bool sourcedir = false;
146   FILE* f = fopen(testfname.c_str(), "r");
147   if(f) {
148     fclose(f);
149     if(!PHYSFS_addToSearchPath(dir.c_str(), 1)) {
150       std::cout << "Warning: Couldn't add '" << dir 
151                 << "' to physfs searchpath: " << PHYSFS_getLastError() << "\n";
152     } else {
153       sourcedir = true;
154     }
155   }
156
157   if(!sourcedir) {
158 #if defined(APPDATADIR) || defined(ENABLE_BINRELOC)
159     std::string datadir;
160 #ifdef ENABLE_BINRELOC
161     char* brdatadir = br_strcat(DATADIR, "/" PACKAGE_NAME);
162     datadir = brdatadir;
163     free(brdatadir);
164 #else
165     datadir = APPDATADIR;
166 #endif
167     if(!PHYSFS_addToSearchPath(datadir.c_str(), 1)) {
168       std::cout << "Couldn't add '" << datadir
169         << "' to physfs searchpath: " << PHYSFS_getLastError() << "\n";
170     }
171 #endif
172   }
173
174   // allow symbolic links
175   PHYSFS_permitSymbolicLinks(1);
176
177   //show search Path
178   for(char** i = PHYSFS_getSearchPath(); *i != NULL; i++)
179     printf("[%s] is in the search path.\n", *i);
180 }
181
182 static void print_usage(const char* argv0)
183 {
184   fprintf(stderr, _("Usage: %s [OPTIONS] LEVELFILE\n\n"), argv0);
185   fprintf(stderr,
186           _("Options:\n"
187             "  -f, --fullscreen             Run in fullscreen mode\n"
188             "  -w, --window                 Run in window mode\n"
189             "  -g, --geometry WIDTHxHEIGHT  Run SuperTux in given resolution\n"
190             "  --disable-sfx                Disable sound effects\n"
191             "  --disable-music              Disable music\n"
192             "  --help                       Show this help message\n"
193             "  --version                    Display SuperTux version and quit\n"
194             "  --show-fps                   Display framerate in levels\n"
195             "  --record-demo FILE LEVEL     Record a demo to FILE\n"
196             "  --play-demo FILE LEVEL       Play a recorded demo\n"
197             "\n"));
198 }
199
200 static void parse_commandline(int argc, char** argv)
201 {
202   for(int i = 1; i < argc; ++i) {
203     std::string arg = argv[i];
204
205     if(arg == "--fullscreen" || arg == "-f") {
206       config->use_fullscreen = true;
207     } else if(arg == "--window" || arg == "-w") {
208       config->use_fullscreen = false;
209     } else if(arg == "--geometry" || arg == "-g") {
210       if(i+1 >= argc) {
211         print_usage(argv[0]);
212         throw std::runtime_error("Need to specify a parameter for geometry switch");
213       }
214       if(sscanf(argv[++i], "%dx%d", &config->screenwidth, &config->screenheight)
215          != 2) {
216         print_usage(argv[0]);
217         throw std::runtime_error("Invalid geometry spec, should be WIDTHxHEIGHT");
218       }
219     } else if(arg == "--show-fps") {
220       config->show_fps = true;
221     } else if(arg == "--disable-sfx") {
222       config->sound_enabled = false;
223     } else if(arg == "--disable-music") {
224       config->music_enabled = false;
225     } else if(arg == "--play-demo") {
226       if(i+1 >= argc) {
227         print_usage(argv[0]);
228         throw std::runtime_error("Need to specify a demo filename");
229       }
230       config->start_demo = argv[++i];
231     } else if(arg == "--record-demo") {
232       if(i+1 >= argc) {
233         print_usage(argv[0]);
234         throw std::runtime_error("Need to specify a demo filename");
235       }
236       config->record_demo = argv[++i];
237     } else if(arg == "--help") {
238       print_usage(argv[0]);
239       throw graceful_shutdown();
240     } else if(arg == "--version") {
241       std::cerr << PACKAGE_NAME << " " << PACKAGE_VERSION << "\n";
242       throw graceful_shutdown();
243     } else if(arg[0] != '-') {
244       config->start_level = arg;
245     } else {
246       std::cerr << "Unknown option '" << arg << "'.\n";
247       std::cerr << "Use --help to see a list of options.\n";
248     }
249   }
250
251   // TODO joystick switchyes...
252 }
253
254 static void init_sdl()
255 {
256   if(SDL_Init(SDL_INIT_EVERYTHING) < 0) {
257     std::stringstream msg;
258     msg << "Couldn't initialize SDL: " << SDL_GetError();
259     throw std::runtime_error(msg.str());
260   }
261
262   SDL_EnableUNICODE(1);
263
264   // wait 100ms and clear SDL event queue because sometimes we have random
265   // joystick events in the queue on startup...
266   SDL_Delay(100);
267   SDL_Event dummy;
268   while(SDL_PollEvent(&dummy))
269       ;
270 }
271
272 static void check_gl_error()
273 {
274   GLenum glerror = glGetError();
275   std::string errormsg;
276   
277   if(glerror != GL_NO_ERROR) {
278     switch(glerror) {
279       case GL_INVALID_ENUM:
280         errormsg = "Invalid enumeration value";
281         break;
282       case GL_INVALID_VALUE:
283         errormsg = "Numeric argzment out of range";
284         break;
285       case GL_INVALID_OPERATION:
286         errormsg = "Invalid operation";
287         break;
288       case GL_STACK_OVERFLOW:
289         errormsg = "stack overflow";
290         break;
291       case GL_STACK_UNDERFLOW:
292         errormsg = "stack underflow";
293         break;
294       case GL_OUT_OF_MEMORY:
295         errormsg = "out of memory";
296         break;
297       case GL_TABLE_TOO_LARGE:
298         errormsg = "table too large";
299         break;
300       default:
301         errormsg = "unknown error number";
302         break;
303     }
304     std::stringstream msg;
305     msg << "OpenGL Error: " << errormsg;
306     throw std::runtime_error(msg.str());
307   }
308 }
309
310 void init_video()
311 {
312   if(texture_manager != NULL)
313     texture_manager->save_textures();
314   
315   SDL_GL_SetAttribute(SDL_GL_DOUBLEBUFFER, 1); 
316   SDL_GL_SetAttribute(SDL_GL_RED_SIZE, 5);
317   SDL_GL_SetAttribute(SDL_GL_GREEN_SIZE, 5);
318   SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 5);
319   
320   int flags = SDL_OPENGL;
321   if(config->use_fullscreen)
322     flags |= SDL_FULLSCREEN;
323   int width = config->screenwidth;
324   int height = config->screenheight;
325   int bpp = 0;
326
327   screen = SDL_SetVideoMode(width, height, bpp, flags);
328   if(screen == 0) {
329     std::stringstream msg;
330     msg << "Couldn't set video mode (" << width << "x" << height
331         << "-" << bpp << "bpp): " << SDL_GetError();
332     throw std::runtime_error(msg.str());
333   }
334
335   SDL_WM_SetCaption(PACKAGE_NAME " " PACKAGE_VERSION, 0);
336
337   // set icon
338   SDL_Surface* icon = IMG_Load_RW(
339       get_physfs_SDLRWops("images/engine/icons/supertux.xpm"), true);
340   if(icon != 0) {
341     SDL_WM_SetIcon(icon, 0);
342     SDL_FreeSurface(icon);
343   }
344 #ifdef DEBUG
345   else {
346     std::cerr << "Warning: Couldn't find icon 'images/engine/icons/supertux.xpm'.\n";
347   }
348 #endif
349
350   // setup opengl state and transform
351   glDisable(GL_DEPTH_TEST);
352   glDisable(GL_CULL_FACE);
353   glEnable(GL_TEXTURE_2D);
354   glEnable(GL_BLEND);
355   glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
356
357   glViewport(0, 0, screen->w, screen->h);
358   glMatrixMode(GL_PROJECTION);
359   glLoadIdentity();
360   // logical resolution here not real monitor resolution
361   glOrtho(0, 800, 600, 0, -1.0, 1.0);
362   glMatrixMode(GL_MODELVIEW);
363   glLoadIdentity();
364   glTranslatef(0, 0, 0);
365
366   check_gl_error();
367
368   if(texture_manager != NULL)
369     texture_manager->reload_textures();
370   else
371     texture_manager = new TextureManager();
372 }
373
374 static void init_audio()
375 {
376   sound_manager = new SoundManager();
377   
378   sound_manager->enable_sound(config->sound_enabled);
379   sound_manager->enable_music(config->music_enabled);
380 }
381
382 static void quit_audio()
383 {
384   if(sound_manager) {
385     delete sound_manager;
386     sound_manager = 0;
387   }
388 }
389
390 void wait_for_event(float min_delay, float max_delay)
391 {
392   assert(min_delay <= max_delay);
393   
394   Uint32 min = (Uint32) (min_delay * 1000);
395   Uint32 max = (Uint32) (max_delay * 1000);
396
397   Uint32 ticks = SDL_GetTicks();
398   while(SDL_GetTicks() - ticks < min) {
399     SDL_Delay(10);
400     sound_manager->update();
401   }
402
403   // clear even queue
404   SDL_Event event;
405   while (SDL_PollEvent(&event))
406   {}
407
408   /* Handle events: */
409   bool running = false;
410   ticks = SDL_GetTicks();
411   while(running) {
412     while(SDL_PollEvent(&event)) {
413       switch(event.type) {
414         case SDL_QUIT:
415           throw graceful_shutdown();
416         case SDL_KEYDOWN:
417         case SDL_JOYBUTTONDOWN:
418         case SDL_MOUSEBUTTONDOWN:
419           running = false;
420       }
421     }
422     if(SDL_GetTicks() - ticks >= (max - min))
423       running = false;
424     sound_manager->update();
425     SDL_Delay(10);
426   }
427 }
428
429 int main(int argc, char** argv) 
430 {
431   try {
432     srand(time(0));
433     init_physfs(argv[0]);
434     init_sdl();
435     main_controller = new JoystickKeyboardController();    
436     init_config();
437     init_tinygettext();
438     parse_commandline(argc, argv);
439     init_audio();
440     init_video();
441
442     setup_menu();
443     load_shared();
444     if(config->start_level != "") {
445       // we have a normal path specified at commandline not physfs paths.
446       // So we simply mount that path here...
447       std::string dir = FileSystem::dirname(config->start_level);
448       PHYSFS_addToSearchPath(dir.c_str(), true);
449       GameSession session(
450           FileSystem::basename(config->start_level), ST_GL_LOAD_LEVEL_FILE);
451       if(config->start_demo != "")
452         session.play_demo(config->start_demo);
453       if(config->record_demo != "")
454         session.record_demo(config->record_demo);
455       session.run();
456     } else {
457       // normal game
458       title();
459     }
460   } catch(graceful_shutdown& e) {
461   } catch(std::exception& e) {
462     std::cerr << "Unexpected exception: " << e.what() << std::endl;
463     return 1;
464   } catch(...) {
465     std::cerr << "Unexpected exception." << std::endl;
466     return 1;
467   }
468
469   free_menu();
470   unload_shared();
471   quit_audio();
472
473   if(config)
474     config->save();
475   delete config;
476   delete main_controller;
477   delete texture_manager;
478   SDL_Quit();
479   PHYSFS_deinit();
480   
481   return 0;
482 }