Added experimental and unfinished window resize more fixes will follow later, might...
[supertux.git] / src / main.cpp
1 //  $Id$
2 //
3 //  SuperTux
4 //  Copyright (C) 2006 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 "log.hpp"
24 #include "main.hpp"
25
26 #include <stdexcept>
27 #include <sstream>
28 #include <ctime>
29 #include <cstdlib>
30 #include <sys/stat.h>
31 #include <sys/types.h>
32 #include <unistd.h>
33 #include <physfs.h>
34 #include <SDL.h>
35 #include <SDL_image.h>
36
37 #ifdef MACOSX
38 namespace supertux_apple {
39 #include <CoreFoundation/CoreFoundation.h>
40 }
41 #endif
42
43 #include "gameconfig.hpp"
44 #include "resources.hpp"
45 #include "gettext.hpp"
46 #include "audio/sound_manager.hpp"
47 #include "video/surface.hpp"
48 #include "video/texture_manager.hpp"
49 #include "video/drawing_context.hpp"
50 #include "video/glutil.hpp"
51 #include "control/joystickkeyboardcontroller.hpp"
52 #include "options_menu.hpp"
53 #include "mainloop.hpp"
54 #include "title.hpp"
55 #include "game_session.hpp"
56 #include "scripting/level.hpp"
57 #include "scripting/squirrel_util.hpp"
58 #include "file_system.hpp"
59 #include "physfs/physfs_sdl.hpp"
60 #include "random_generator.hpp"
61 #include "worldmap/worldmap.hpp"
62 #include "addon/addon_manager.hpp"
63 #include "binreloc/binreloc.h"
64
65 namespace { DrawingContext *context_pointer; }
66 SDL_Surface *screen;
67 JoystickKeyboardController* main_controller = 0;
68 TinyGetText::DictionaryManager dictionary_manager;
69
70 int SCREEN_WIDTH;
71 int SCREEN_HEIGHT;
72
73 static void init_config()
74 {
75   config = new Config();
76   try {
77     config->load();
78   } catch(std::exception& e) {
79     log_info << "Couldn't load config file: " << e.what() << ", using default settings" << std::endl;
80   }
81 }
82
83 static void init_tinygettext()
84 {
85   dictionary_manager.add_directory("locale");
86   dictionary_manager.set_charset("UTF-8");
87
88   // Config setting "locale" overrides language detection
89   if (config->locale != "") {
90     dictionary_manager.set_language( config->locale );
91   }
92 }
93
94 static void init_physfs(const char* argv0)
95 {
96   if(!PHYSFS_init(argv0)) {
97     std::stringstream msg;
98     msg << "Couldn't initialize physfs: " << PHYSFS_getLastError();
99     throw std::runtime_error(msg.str());
100   }
101
102   // allow symbolic links
103   PHYSFS_permitSymbolicLinks(1);
104
105   // Initialize physfs (this is a slightly modified version of
106   // PHYSFS_setSaneConfig
107   const char* application = "supertux2"; //instead of PACKAGE_NAME so we can coexist with MS1
108   const char* userdir = PHYSFS_getUserDir();
109   char* writedir = new char[strlen(userdir) + strlen(application) + 2];
110
111   // Set configuration directory
112   sprintf(writedir, "%s.%s", userdir, application);
113   if(!PHYSFS_setWriteDir(writedir)) {
114     // try to create the directory
115     char* mkdir = new char[strlen(application) + 2];
116     sprintf(mkdir, ".%s", application);
117     if(!PHYSFS_setWriteDir(userdir) || !PHYSFS_mkdir(mkdir)) {
118       std::ostringstream msg;
119       msg << "Failed creating configuration directory '"
120           << writedir << "': " << PHYSFS_getLastError();
121       delete[] writedir;
122       delete[] mkdir;
123       throw std::runtime_error(msg.str());
124     }
125     delete[] mkdir;
126
127     if(!PHYSFS_setWriteDir(writedir)) {
128       std::ostringstream msg;
129       msg << "Failed to use configuration directory '"
130           <<  writedir << "': " << PHYSFS_getLastError();
131       delete[] writedir;
132       throw std::runtime_error(msg.str());
133     }
134   }
135   PHYSFS_addToSearchPath(writedir, 0);
136   delete[] writedir;
137
138   // when started from source dir...
139   std::string dir = PHYSFS_getBaseDir();
140   dir += "/data";
141   std::string testfname = dir;
142   testfname += "/credits.txt";
143   bool sourcedir = false;
144   FILE* f = fopen(testfname.c_str(), "r");
145   if(f) {
146     fclose(f);
147     if(!PHYSFS_addToSearchPath(dir.c_str(), 1)) {
148       log_warning << "Couldn't add '" << dir << "' to physfs searchpath: " << PHYSFS_getLastError() << std::endl;
149     } else {
150       sourcedir = true;
151     }
152   }
153
154 #ifdef MACOSX
155 {
156   using namespace supertux_apple;
157
158   // when started from Application file on Mac OS X...
159   char path[PATH_MAX];
160   CFBundleRef mainBundle = CFBundleGetMainBundle();
161   assert(mainBundle != 0);
162   CFURLRef mainBundleURL = CFBundleCopyBundleURL(mainBundle);
163   assert(mainBundleURL != 0);
164   CFStringRef pathStr = CFURLCopyFileSystemPath(mainBundleURL, kCFURLPOSIXPathStyle);
165   assert(pathStr != 0);
166   CFStringGetCString(pathStr, path, PATH_MAX, kCFStringEncodingUTF8);
167   CFRelease(mainBundleURL);
168   CFRelease(pathStr);
169
170   dir = std::string(path) + "/Contents/Resources/data";
171   testfname = dir + "/credits.txt";
172   sourcedir = false;
173   f = fopen(testfname.c_str(), "r");
174   if(f) {
175     fclose(f);
176     if(!PHYSFS_addToSearchPath(dir.c_str(), 1)) {
177       log_warning << "Couldn't add '" << dir << "' to physfs searchpath: " << PHYSFS_getLastError() << std::endl;
178     } else {
179       sourcedir = true;
180     }
181   }
182 }
183 #endif
184
185 #ifdef _WIN32
186   PHYSFS_addToSearchPath(".\\data", 1);
187 #endif
188
189   if(!sourcedir) {
190 #if defined(APPDATADIR) || defined(ENABLE_BINRELOC)
191     std::string datadir;
192 #ifdef ENABLE_BINRELOC
193
194     char* dir;
195     br_init (NULL);
196     dir = br_find_data_dir(APPDATADIR);
197     datadir = dir;
198     free(dir);
199
200 #else
201     datadir = APPDATADIR;
202 #endif
203     if(!PHYSFS_addToSearchPath(datadir.c_str(), 1)) {
204       log_warning << "Couldn't add '" << datadir << "' to physfs searchpath: " << PHYSFS_getLastError() << std::endl;
205     }
206 #endif
207   }
208
209   //show search Path
210   char** searchpath = PHYSFS_getSearchPath();
211   for(char** i = searchpath; *i != NULL; i++)
212     log_info << "[" << *i << "] is in the search path" << std::endl;
213   PHYSFS_freeList(searchpath);
214 }
215
216 static void print_usage(const char* argv0)
217 {
218   fprintf(stderr, _("Usage: %s [OPTIONS] [LEVELFILE]\n\n"), argv0);
219   fprintf(stderr,
220           _("Options:\n"
221             "  -f, --fullscreen             Run in fullscreen mode\n"
222             "  -w, --window                 Run in window mode\n"
223             "  -g, --geometry WIDTHxHEIGHT  Run SuperTux in given resolution\n"
224             "  -a, --aspect WIDTH:HEIGHT    Run SuperTux with given aspect ratio\n"
225             "  -d, --default                Reset video settings to default values\n"
226             "  --disable-sfx                Disable sound effects\n"
227             "  --disable-music              Disable music\n"
228             "  --help                       Show this help message\n"
229             "  --version                    Display SuperTux version and quit\n"
230             "  --console                    Enable ingame scripting console\n"
231             "  --noconsole                  Disable ingame scripting console\n"
232             "  --show-fps                   Display framerate in levels\n"
233             "  --no-show-fps                Do not display framerate in levels\n"
234             "  --record-demo FILE LEVEL     Record a demo to FILE\n"
235             "  --play-demo FILE LEVEL       Play a recorded demo\n"
236             "\n"));
237 }
238
239 /**
240  * Options that should be evaluated prior to any initializations at all go here
241  */
242 static bool pre_parse_commandline(int argc, char** argv)
243 {
244   for(int i = 1; i < argc; ++i) {
245     std::string arg = argv[i];
246
247     if(arg == "--version") {
248       std::cout << PACKAGE_NAME << " " << PACKAGE_VERSION << std::endl;
249       return true;
250     }
251   }
252
253   return false;
254 }
255
256 /**
257  * Options that should be evaluated after config is read go here
258  */
259 static bool parse_commandline(int argc, char** argv)
260 {
261   for(int i = 1; i < argc; ++i) {
262     std::string arg = argv[i];
263
264     if(arg == "--help") {
265       print_usage(argv[0]);
266       return true;
267     } else if(arg == "--fullscreen" || arg == "-f") {
268       config->use_fullscreen = true;
269     } else if(arg == "--default" || arg == "-d") {
270       config->use_fullscreen = false;
271       
272       config->window_width  = 800;
273       config->window_height = 600;
274
275       config->fullscreen_width  = 800;
276       config->fullscreen_height = 600;
277
278       config->projection_width  = 800;
279       config->projection_height = 600;
280       config->scale_projection = true;
281
282       config->aspect_width  = 4;
283       config->aspect_height = 3;
284       
285     } else if(arg == "--window" || arg == "-w") {
286       config->use_fullscreen = false;
287     } else if(arg == "--geometry" || arg == "-g") {
288       i += 1;
289       if(i >= argc) 
290         {
291           print_usage(argv[0]);
292           throw std::runtime_error("Need to specify a parameter for geometry switch");
293         } 
294       else 
295         {
296           int width, height;
297           if (sscanf(argv[i], "%dx%d", &width, &height) != 2)
298             {
299               print_usage(argv[0]);
300               throw std::runtime_error("Invalid geometry spec, should be WIDTHxHEIGHT");
301             }
302           else
303             {
304               config->projection_width  = width;
305               config->projection_height = height;
306
307               config->window_width  = width;
308               config->window_height = height;
309
310               config->fullscreen_width  = width;
311               config->fullscreen_height = height;
312             }
313         }
314     } else if(arg == "--aspect" || arg == "-a") {
315       i += 1;
316       if(i >= argc) 
317         {
318           print_usage(argv[0]);
319           throw std::runtime_error("Need to specify a parameter for aspect switch");
320         } 
321       else 
322         {
323           int aspect_width  = 4;
324           int aspect_height = 3;
325           if(sscanf(argv[++i], "%d:%d", &aspect_width, &aspect_height) != 2) {
326             print_usage(argv[0]);
327             throw std::runtime_error("Invalid aspect spec, should be WIDTH:HEIGHT");
328           } else {
329             float aspect_ratio = static_cast<double>(config->aspect_width) /
330               static_cast<double>(config->aspect_height);
331
332             // use aspect ratio to calculate logical resolution
333             if (aspect_ratio > 1) {
334               config->aspect_width  = static_cast<int> (600 * aspect_ratio + 0.5);
335               config->aspect_height = 600;
336             } else {
337               config->aspect_width  = 600;
338               config->aspect_height = static_cast<int> (600 * 1/aspect_ratio + 0.5);
339             }
340           }
341         }
342     } else if(arg == "--show-fps") {
343       config->show_fps = true;
344     } else if(arg == "--no-show-fps") {
345       config->show_fps = false;
346     } else if(arg == "--console") {
347       config->console_enabled = true;
348     } else if(arg == "--noconsole") {
349       config->console_enabled = false;
350     } else if(arg == "--disable-sfx") {
351       config->sound_enabled = false;
352     } else if(arg == "--disable-music") {
353       config->music_enabled = false;
354     } else if(arg == "--play-demo") {
355       if(i+1 >= argc) {
356         print_usage(argv[0]);
357         throw std::runtime_error("Need to specify a demo filename");
358       }
359       config->start_demo = argv[++i];
360     } else if(arg == "--record-demo") {
361       if(i+1 >= argc) {
362         print_usage(argv[0]);
363         throw std::runtime_error("Need to specify a demo filename");
364       }
365       config->record_demo = argv[++i];
366     } else if(arg == "-d") {
367       config->enable_script_debugger = true;
368     } else if(arg[0] != '-') {
369       config->start_level = arg;
370     } else {
371       log_warning << "Unknown option '" << arg << "'. Use --help to see a list of options" << std::endl;
372       return true;
373     }
374   }
375
376   return false;
377 }
378
379 static void init_sdl()
380 {
381   if(SDL_Init(SDL_INIT_TIMER | SDL_INIT_VIDEO | SDL_INIT_JOYSTICK) < 0) {
382     std::stringstream msg;
383     msg << "Couldn't initialize SDL: " << SDL_GetError();
384     throw std::runtime_error(msg.str());
385   }
386   // just to be sure
387   atexit(SDL_Quit);
388
389   SDL_EnableUNICODE(1);
390
391   // wait 100ms and clear SDL event queue because sometimes we have random
392   // joystick events in the queue on startup...
393   SDL_Delay(100);
394   SDL_Event dummy;
395   while(SDL_PollEvent(&dummy))
396       ;
397 }
398
399 static void init_rand()
400 {
401   config->random_seed = systemRandom.srand(config->random_seed);
402
403   //const char *how = config->random_seed? ", user fixed.": ", from time().";
404   //log_info << "Using random seed " << config->random_seed << how << std::endl;
405 }
406
407 void init_video()
408 {
409   static int desktop_width = 0;
410   static int desktop_height = 0;
411
412 /* unfortunately only newer SDLs have these infos */
413 #if SDL_MAJOR_VERSION > 1 || SDL_MINOR_VERSION > 2 || (SDL_MINOR_VERSION == 2 && SDL_PATCHLEVEL >= 10)
414   /* find which resolution the user normally uses */
415   if(desktop_width == 0) {
416     const SDL_VideoInfo *info = SDL_GetVideoInfo();
417     desktop_width  = info->current_w;
418     desktop_height = info->current_h;
419   }
420 #endif
421   
422   // FIXME: Add aspect handling
423   SCREEN_WIDTH  = config->projection_width;
424   SCREEN_HEIGHT = config->projection_height;
425
426   context_pointer->init_renderer();
427   screen = SDL_GetVideoSurface();
428
429   SDL_WM_SetCaption(PACKAGE_NAME " " PACKAGE_VERSION, 0);
430
431   // set icon
432   #ifdef MACOSX
433   const char* icon_fname = "images/engine/icons/supertux-256x256.png";
434   #else
435   const char* icon_fname = "images/engine/icons/supertux.xpm";
436   #endif
437   SDL_Surface* icon = IMG_Load_RW(get_physfs_SDLRWops(icon_fname), true);
438   if(icon != 0) {
439     SDL_WM_SetIcon(icon, 0);
440     SDL_FreeSurface(icon);
441   }
442 #ifdef DEBUG
443   else {
444     log_warning << "Couldn't find icon '" << icon_fname << "'" << std::endl;
445   }
446 #endif
447
448   SDL_ShowCursor(0);
449
450   log_info << (config->use_fullscreen?"fullscreen ":"window ")
451            << " Window: " << config->window_width << "x" << config->window_height
452            << " Fullscreen: " << config->fullscreen_width << "x" << config->fullscreen_height
453            << " Projection: " << config->projection_width << "x" << config->projection_height
454            << " Area: "   << config->aspect_width << "x" << config->aspect_height << std::endl;
455 }
456
457 static void init_audio()
458 {
459   sound_manager = new SoundManager();
460
461   sound_manager->enable_sound(config->sound_enabled);
462   sound_manager->enable_music(config->music_enabled);
463 }
464
465 static void quit_audio()
466 {
467   if(sound_manager != NULL) {
468     delete sound_manager;
469     sound_manager = NULL;
470   }
471 }
472
473 void wait_for_event(float min_delay, float max_delay)
474 {
475   assert(min_delay <= max_delay);
476
477   Uint32 min = (Uint32) (min_delay * 1000);
478   Uint32 max = (Uint32) (max_delay * 1000);
479
480   Uint32 ticks = SDL_GetTicks();
481   while(SDL_GetTicks() - ticks < min) {
482     SDL_Delay(10);
483     sound_manager->update();
484   }
485
486   // clear event queue
487   SDL_Event event;
488   while (SDL_PollEvent(&event))
489   {}
490
491   /* Handle events: */
492   bool running = false;
493   ticks = SDL_GetTicks();
494   while(running) {
495     while(SDL_PollEvent(&event)) {
496       switch(event.type) {
497         case SDL_QUIT:
498           main_loop->quit();
499           break;
500         case SDL_KEYDOWN:
501         case SDL_JOYBUTTONDOWN:
502         case SDL_MOUSEBUTTONDOWN:
503           running = false;
504       }
505     }
506     if(SDL_GetTicks() - ticks >= (max - min))
507       running = false;
508     sound_manager->update();
509     SDL_Delay(10);
510   }
511 }
512
513 #ifdef DEBUG
514 static Uint32 last_timelog_ticks = 0;
515 static const char* last_timelog_component = 0;
516
517 static inline void timelog(const char* component)
518 {
519   Uint32 current_ticks = SDL_GetTicks();
520
521   if(last_timelog_component != 0) {
522     log_info << "Component '" << last_timelog_component <<  "' finished after " << (current_ticks - last_timelog_ticks) / 1000.0 << " seconds" << std::endl;
523   }
524
525   last_timelog_ticks = current_ticks;
526   last_timelog_component = component;
527 }
528 #else
529 static inline void timelog(const char* )
530 {
531 }
532 #endif
533
534 int main(int argc, char** argv)
535 {
536   int result = 0;
537
538 #ifndef NO_CATCH
539   try {
540 #endif
541
542     if(pre_parse_commandline(argc, argv))
543       return 0;
544
545     Console::instance = new Console();
546     init_physfs(argv[0]);
547     init_sdl();
548
549     timelog("controller");
550     main_controller = new JoystickKeyboardController();
551     timelog("config");
552     init_config();
553     timelog("addons");
554     AddonManager::get_instance().load_addons();
555     timelog("tinygettext");
556     init_tinygettext();
557     timelog("commandline");
558     if(parse_commandline(argc, argv))
559       return 0;
560     timelog("audio");
561     init_audio();
562     timelog("video");
563     DrawingContext context;
564     context_pointer = &context;
565     init_video();
566     Console::instance->init_graphics();
567     timelog("scripting");
568     Scripting::init_squirrel(config->enable_script_debugger);
569     timelog("resources");
570     load_shared();
571     timelog(0);
572
573     main_loop = new MainLoop();
574     if(config->start_level != "") {
575       // we have a normal path specified at commandline not physfs paths.
576       // So we simply mount that path here...
577       std::string dir = FileSystem::dirname(config->start_level);
578       PHYSFS_addToSearchPath(dir.c_str(), true);
579
580       if(config->start_level.size() > 4 &&
581               config->start_level.compare(config->start_level.size() - 5, 5, ".stwm") == 0) {
582           init_rand();
583           main_loop->push_screen(new WorldMapNS::WorldMap(
584                       FileSystem::basename(config->start_level)));
585       } else {
586         init_rand();//If level uses random eg. for
587         // rain particles before we do this:
588         std::auto_ptr<GameSession> session (
589                 new GameSession(FileSystem::basename(config->start_level)));
590
591         config->random_seed =session->get_demo_random_seed(config->start_demo);
592         init_rand();//initialise generator with seed from session
593
594         if(config->start_demo != "")
595           session->play_demo(config->start_demo);
596
597         if(config->record_demo != "")
598           session->record_demo(config->record_demo);
599         main_loop->push_screen(session.release());
600       }
601     } else {
602       init_rand();
603       main_loop->push_screen(new TitleScreen());
604     }
605
606     //init_rand(); PAK: this call might subsume the above 3, but I'm chicken!
607     main_loop->run(context);
608 #ifndef NO_CATCH
609   } catch(std::exception& e) {
610     log_fatal << "Unexpected exception: " << e.what() << std::endl;
611     result = 1;
612   } catch(...) {
613     log_fatal << "Unexpected exception" << std::endl;
614     result = 1;
615   }
616 #endif
617
618   delete main_loop;
619   main_loop = NULL;
620
621   unload_shared();
622   quit_audio();
623
624   if(config)
625     config->save();
626   delete config;
627   config = NULL;
628   delete main_controller;
629   main_controller = NULL;
630   delete Console::instance;
631   Console::instance = NULL;
632   Scripting::exit_squirrel();
633   delete texture_manager;
634   texture_manager = NULL;
635   SDL_Quit();
636   PHYSFS_deinit();
637
638   return result;
639 }