Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

source: orxonox.OLD/branches/qt_gui/src/orxonox.cc @ 7601

Last change on this file since 7601 was 7601, checked in by bensch, 18 years ago

orxonox/qt_gui: QtGuiComboBox saveable

File size: 13.8 KB
RevLine 
[4982]1/*
[1850]2   orxonox - the future of 3D-vertical-scrollers
3
4   Copyright (C) 2004 orx
5
6   This program is free software; you can redistribute it and/or modify
7   it under the terms of the GNU General Public License as published by
8   the Free Software Foundation; either version 2, or (at your option)
9   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 Foundation,
[4556]18   Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
[1850]19
[1855]20
21   ### File Specific:
22   main-programmer: Patrick Boenzli
[5303]23   co-programmer: Christian Meyer
[4054]24   co-programmer: Benjamin Grauer: injected ResourceManager/GraphicsEngine/GUI
[1850]25*/
26
[5303]27#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_ORXONOX
[2190]28#include "orxonox.h"
[3610]29
[5819]30#include "globals.h"
31
[7479]32#include "gui/qt_gui/qt_gui.h"
[4054]33
[5944]34#include "parser/ini_parser/ini_parser.h"
[7193]35#include "util/loading/game_loader.h"
[4786]36
37//ENGINES
[3610]38#include "graphics_engine.h"
[4504]39#include "sound_engine.h"
[7193]40#include "util/loading/resource_manager.h"
[4786]41#include "cd_engine.h"
[3790]42#include "text_engine.h"
[4786]43#include "event_handler.h"
44
[7193]45#include "util/loading/factory.h"
[4980]46#include "fast_factory.h"
47
[4131]48#include "benchmark.h"
[3610]49
[4786]50#include "class_list.h"
[5641]51#include "shell_command_class.h"
[5165]52#include "shell_command.h"
[5175]53#include "shell_buffer.h"
[4748]54
[7193]55#include "util/loading/load_param_description.h"
[5226]56
[5996]57#include "network_manager.h"
58
[6695]59#include "state.h"
[7256]60#include "lib/parser/preferences/cmd_line_prefs_reader.h"
61#include "lib/parser/preferences/ini_file_prefs_reader.h"
[2190]62#include <string.h>
[4032]63
[4885]64int verbose = 4;
[2036]65
[1803]66using namespace std;
67
[5207]68SHELL_COMMAND(restart, Orxonox, restart);
69
[7258]70REGISTER_ARG_FLAG( l, license,    "misc",  "showLicenseAndExit", "Prints the license and exit",      "1" );
71REGISTER_ARG_FLAG( c, client,     "game",  "gameType",           "Connect to Server (-H)",           "multiplayer_client" );
72REGISTER_ARG_FLAG( s, server,     "game",  "gameType",           "Start Orxonox as Game Server",     "multiplayer_server" );
73REGISTER_ARG_ARG(  H, host,       "game",  "host",               "Host to connect to",               "host");
74REGISTER_ARG_ARG(  p, port,       "game",  "port",               "Port to use",                      "port" );
75REGISTER_ARG_FLAG( g, gui,        "game",  "showGui",            "starts the orxonox with the configuration GUI", "1");
[7256]76
[7258]77REGISTER_ARG_FLAG( f, fullscreen, "video", "Fullscreen-mode",    "start Orxonox in fullscreen mode", "1");
78REGISTER_ARG_FLAG( w, windowed,   "video", "Fullscreen-mode",    "start Orxonox in windowed mode",   "0");
79REGISTER_ARG_ARG(  r, resolution, "video", "Resolution",         "Sets resolution / window size",    "res");
80
[7261]81REGISTER_ARG_FLAG( a, audio,      "audio", "Disable-Audio",      "Enable audio",                     "0" );
82REGISTER_ARG_FLAG( m, mute ,      "audio", "Disable-Audio",      "Disable audio",                    "1" );
83REGISTER_ARG_ARG(  _, audio_channels, "audio", "Audio-Channels", "Sets # audio channels", "num" );
84REGISTER_ARG_ARG(  _, music_volume, "audio", "Music-Volume", "Sets music volume", "vol" );
85REGISTER_ARG_ARG(  _, effects_volume, "audio", "Effects-Volume", "Sets effects volume", "vol" );
86
[2190]87/**
[4836]88 *  create a new Orxonox
[4135]89
90   In this funcitons only global values are set. The game will not be started here.
[2190]91*/
92Orxonox::Orxonox ()
[1872]93{
[4445]94  this->setClassID(CL_ORXONOX, "Orxonox");
[4766]95  this->setName("orxonox-main");
[4059]96
[4135]97  this->argc = 0;
98  this->argv = NULL;
[4782]99
[5996]100  /* this way, there is no network enabled: */
[7256]101  this->serverName = "";
[5996]102  this->port = -1;
103
[7221]104  this->configFileName = "";
[1872]105}
[1803]106
[2190]107/**
[4836]108 *  remove Orxonox from memory
[2190]109*/
[4556]110Orxonox::~Orxonox ()
[2190]111{
[5285]112  // game-specific
[4815]113  delete GameLoader::getInstance();
[5285]114
115  // class-less services/factories
[5982]116  Factory::deleteFactories();
[4980]117  FastFactory::deleteAll();
[7374]118  OrxShell::ShellCommandClass::unregisterAllCommands();
[5332]119
[5226]120  LoadClassDescription::deleteAllDescriptions();
121
[7427]122  // handlers
123  delete ResourceManager::getInstance(); // deletes the Resource Manager
124
[5285]125  // engines
126  delete CDEngine::getInstance();
127  delete SoundEngine::getInstance();
128  delete GraphicsEngine::getInstance(); // deleting the Graphics
[4817]129  delete EventHandler::getInstance();
[5285]130
131  // output-buffer
[7374]132  delete OrxShell::ShellBuffer::getInstance();
[5285]133
[5225]134  SDL_QuitSubSystem(SDL_INIT_TIMER);
[7126]135  ClassList::debug();
[1850]136
[4833]137  PRINT(3)
[5996]138  (
139    "===================================================\n" \
140    "Thanks for playing orxonox.\n" \
141    "visit: http://www.orxonox.net for new versions.\n" \
142    "===================================================\n" \
143    ORXONOX_LICENSE_SHORT
144  );
[1872]145
[4766]146  Orxonox::singletonRef = NULL;
[1850]147}
148
[2190]149/**
[4836]150 *  this is a singleton class to prevent duplicates
[4766]151 */
152Orxonox* Orxonox::singletonRef = NULL;
[4556]153
[5207]154// DANGEROUS
155void Orxonox::restart()
156{
[5996]157  //   int argc = this->argc;
158  //   char** argv = this->argv;
159  //
160  //   Orxonox *orx = Orxonox::getInstance();
161  //
162  //   delete orx;
163  //
164  //   orx = Orxonox::getInstance();
165  //
166  //   if((*orx).init(argc, argv) == -1)
167  //   {
168  //     PRINTF(1)("! Orxonox initialization failed\n");
169  //     return;
170  //   }
171  //
172  //   printf("finished inizialisation\n");
173  //   orx->start();
[5207]174}
175
[4766]176/**
[7221]177 * @brief this finds the config file
[4766]178 * @returns the new config-fileName
179 * Since the config file varies from user to user and since one may want to specify different config files
180 * for certain occasions or platforms this function finds the right config file for every occasion and stores
181 * it's path and name into configfilename
[2190]182*/
[7221]183const std::string& Orxonox::getConfigFile ()
[1850]184{
[5424]185  if (ResourceManager::isFile("orxonox.conf"))
186  {
[7221]187    this->configFileName =  "orxonox.conf";
[5424]188  }
189  else
190    this->configFileName = ResourceManager::homeDirCheck(DEFAULT_CONFIG_FILE);
[7256]191
[5424]192  PRINTF(3)("Parsed Config File: '%s'\n", this->configFileName);
[1803]193}
194
[2190]195/**
[4833]196 * initialize Orxonox with command line
197 */
[7256]198int Orxonox::init (int argc, char** argv, const std::string & name, int port)
[1803]199{
[4135]200  this->argc = argc;
201  this->argv = argv;
[4556]202
[5996]203  this->serverName = name;
204  this->port = port;
205
[4766]206  // initialize the Config-file
[4830]207  this->getConfigFile();
[4766]208
[5788]209  // windows must not write into stdout.txt and stderr.txt
[6833]210  /*#ifdef __WIN32__
[5788]211  freopen( "CON", "w", stdout );
212  freopen( "CON", "w", stderr );
[6833]213  #endif*/
[5788]214
[5996]215  // initialize everything
[6079]216  SDL_Init(0);
[5996]217  if( initResources () == -1)
218    return -1;
219  if( initVideo() == -1)
220    return -1;
221  if( initSound() == -1)
222    return -1;
223  if( initInput() == -1)
224    return -1;
225  if( initNetworking () == -1)
226    return -1;
227  if( initMisc () == -1)
228    return -1;
[4556]229
[2636]230  return 0;
[1850]231}
[1849]232
[5996]233
[2190]234/**
[4833]235 * initializes SDL and OpenGL
[5996]236 */
[4556]237int Orxonox::initVideo()
[2190]238{
[3611]239  PRINTF(3)("> Initializing video\n");
[4556]240
[3610]241  GraphicsEngine::getInstance();
[4556]242
[7256]243  GraphicsEngine::getInstance()->initFromPreferences();
[4766]244
[7221]245  std::string iconName = ResourceManager::getFullName("pictures/fighter-top-32x32.bmp");
246  if (!iconName.empty())
[5225]247  {
248    GraphicsEngine::getInstance()->setWindowName(PACKAGE_NAME " " PACKAGE_VERSION, iconName);
249  }
[2190]250  return 0;
251}
[1850]252
[5996]253
[2190]254/**
[4833]255 * initializes the sound engine
256 */
[4556]257int Orxonox::initSound()
[2190]258{
[4504]259  PRINT(3)("> Initializing sound\n");
[5225]260  // SDL_InitSubSystem(SDL_INIT_AUDIO);
[6840]261  SoundEngine::getInstance();
[4985]262
[7256]263  SoundEngine::getInstance()->loadSettings();
[6840]264  SoundEngine::getInstance()->initAudio();
[2636]265  return 0;
[2190]266}
[1900]267
[3214]268
[2190]269/**
[4833]270 * initializes input functions
271 */
[4556]272int Orxonox::initInput()
[2190]273{
[4766]274  PRINT(3)("> Initializing input\n");
275
[7595]276  EventHandler::getInstance()->
[7256]277  EventHandler::getInstance()->init();
[4833]278  EventHandler::getInstance()->subscribe(GraphicsEngine::getInstance(), ES_ALL, EV_VIDEO_RESIZE);
[4556]279
[2636]280  return 0;
[1803]281}
282
[3214]283
[2190]284/**
[4833]285 * initializes network system
286 */
[4556]287int Orxonox::initNetworking()
[1897]288{
[4766]289  PRINT(3)("> Initializing networking\n");
290
[7256]291  if( this->serverName != "") // we are a client
[6695]292  {
293    State::setOnline(true);
[5996]294    NetworkManager::getInstance()->establishConnection(this->serverName, port);
[6695]295  }
[6139]296  else if( this->port > 0) {    // we are a server
[6695]297    State::setOnline(true);
[5996]298    NetworkManager::getInstance()->createServer(port);
[6139]299  }
[2636]300  return 0;
[1897]301}
302
[7355]303//#include "util/loading/dynamic_loader.h"
[3214]304
[2190]305/**
[4833]306 * initializes and loads resource files
[4766]307 */
[4833]308int Orxonox::initResources()
[1858]309{
[4766]310  PRINTF(3)("> Initializing resources\n");
[4091]311
[4766]312  PRINT(3)("initializing ResourceManager\n");
313
[5488]314  // init the resource manager
[7221]315  std::string dataPath;
[7601]316  if ((dataPath = Preferences::getInstance()->getString(CONFIG_SECTION_GENERAL, CONFIG_NAME_DATADIR, ""))!= "")
[4766]317  {
[5480]318    if (!ResourceManager::getInstance()->setDataDir(dataPath) &&
[5996]319        !ResourceManager::getInstance()->verifyDataDir(DEFAULT_DATA_DIR_CHECKFILE))
[4766]320    {
[7221]321      PRINTF(1)("Data Could not be located in %s\n", dataPath.c_str());
[4766]322    }
323  }
[4556]324
[5480]325  if (!ResourceManager::getInstance()->verifyDataDir(DEFAULT_DATA_DIR_CHECKFILE))
[4766]326  {
[5510]327    PRINTF(1)("The DataDirectory %s could not be verified\n\nh" \
328              "!!!  Please Change in File %s Section %s Entry %s to a suitable value !!!\n",
[7221]329    ResourceManager::getInstance()->getDataDir().c_str(),
330    this->configFileName.c_str(),
[7601]331              CONFIG_SECTION_GENERAL,
[5510]332              CONFIG_NAME_DATADIR );
[7479]333    OrxGui::Gui* gui = new OrxGui::QtGui(argc, argv);
[5479]334    gui->startGui();
335    delete gui;
[4766]336    exit(-1);
337  }
[5996]338  //! @todo this is a hack and should be loadable
[7221]339  std::string imageDir = ResourceManager::getInstance()->getFullName("maps");
[5216]340  ResourceManager::getInstance()->addImageDir(imageDir);
[7067]341  imageDir = ResourceManager::getInstance()->getFullName("pictures");
342  ResourceManager::getInstance()->addImageDir(imageDir);
[4009]343
[7355]344  //  DynamicLoader::loadDyLib("libtest.so");
[7167]345
[5488]346  // start the collision detection engine
[4766]347  CDEngine::getInstance();
[5074]348  return 0;
349}
350
351/**
352 * initializes miscelaneous features
353 * @return -1 on failure
354 */
355int Orxonox::initMisc()
356{
[7374]357  OrxShell::ShellBuffer::getInstance();
[4766]358  return 0;
[1858]359}
[1849]360
[2190]361/**
[4836]362 *  starts the orxonox game or menu
[4833]363 * here is the central orxonox state manager. There are currently two states
364 * - menu
365 * - game-play
366 * both states manage their states themselfs again.
[2190]367*/
[2636]368void Orxonox::start()
369{
[4556]370
[2636]371  this->gameLoader = GameLoader::getInstance();
[5996]372
[6139]373  if( this->port != -1)
374    this->gameLoader->loadNetworkCampaign("worlds/DefaultNetworkCampaign.oxc");
[5996]375  else
[6139]376    this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc");                       /* start orxonox in single player mode */
[5996]377
[4010]378  //  this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0);
[2636]379  this->gameLoader->init();
380  this->gameLoader->start();
381}
382
[3214]383
[2636]384/**
[4833]385 * handles sprecial events from localinput
386 * @param event: an event not handled by the CommandNode
387 */
[4817]388// void Orxonox::graphicsHandler(SDL_Event* event)
389// {
390//   // Handle special events such as reshape, quit, focus changes
391//   switch (event->type)
392//     {
393//     case SDL_VIDEORESIZE:
394//       GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance();
395//       tmpGEngine->resolutionChanged(event->resize);
396//       break;
397//     }
398// }
[1875]399
[4556]400
[4408]401
[1803]402
[3214]403
[4782]404
[4059]405bool showGui = false;
[3648]406
[4766]407
408
409/**********************************
410*** ORXONOX MAIN STARTING POINT ***
411**********************************/
[3449]412/**
[4833]413 *
[4836]414 *  main function
[4833]415 *
416 * here the journey begins
[3449]417*/
[4556]418int main(int argc, char** argv)
419{
[7256]420  CmdLinePrefsReader prefs;
[7374]421
[7256]422  IniFilePrefsReader ini(ResourceManager::homeDirCheck(DEFAULT_CONFIG_FILE));
[7374]423
[7256]424  prefs.parse(argc, argv);
[7374]425
[7256]426  if ( Preferences::getInstance()->getString("misc", "showLicenseAndExit", "") == "1" )
[5996]427  {
[7256]428    PRINT(0)(ORXONOX_LICENSE_SHORT);
429    return 0;
[5996]430  }
[7374]431
[7256]432  if( Preferences::getInstance()->getString("game", "showGui", "") == "1" )
433    showGui = true;
434  else if( Preferences::getInstance()->getString( "game", "gameType", "" ) == "multiplayer_server" ||
435           Preferences::getInstance()->getString( "game", "gameType", "" ) == "multiplayer_client" )
436    return startNetworkOrxonox(argc, argv);
[7374]437
[7256]438  return startOrxonox(argc, argv, "", -1);
439  return 0;
[3648]440}
441
442
443
[5996]444/**
445 * starts orxonox in network mode
446 * @param argc parameters count given to orxonox
447 * @param argv parameters given to orxonox
448 */
449int startNetworkOrxonox(int argc, char** argv)
450{
451
[7256]452  std::string gameType = Preferences::getInstance()->getString( "game", "gameType", "" );
[7374]453
[7256]454  if ( gameType == "multiplayer_client" )
[4132]455  {
[7256]456    int port = Preferences::getInstance()->getInt( "game", "port", DEFAULT_ORXONOX_PORT );
457    std::string host = Preferences::getInstance()->getString( "game", "host", "" );
[7374]458
[7256]459    if ( host == "" )
[5996]460    {
[7256]461      printf("You need to specify a host to connect to ( -H <host> )\n");
462      return 1;
[5996]463    }
[7374]464
[7256]465    printf("Starting Orxonox as client: connecting to %s, on port %i\n", host.c_str(), port);
[7374]466
[7256]467    startOrxonox(argc, argv, host.c_str(), port);
[4132]468  }
[7256]469  else if ( gameType == "multiplayer_server" )
470  {
471    int port = Preferences::getInstance()->getInt( "game", "port", DEFAULT_ORXONOX_PORT );
[7374]472
[7256]473    printf("Starting Orxonox as server: listening on port %i\n", port);
[7374]474
[7256]475    startOrxonox(argc, argv, "", port);
476  }
[3648]477}
478
[3649]479
[4766]480
481/**
482 * starts orxonox
483 * @param argc parameters count given to orxonox
484 * @param argv parameters given to orxonox
485 */
[7256]486int startOrxonox(int argc, char** argv, const std::string & name, int port)
[3648]487{
[4830]488  // checking for existence of the configuration-files, or if the lock file is still used
[5424]489  if (showGui || (!ResourceManager::isFile("./orxonox.conf") &&
[5996]490                  !ResourceManager::isFile(DEFAULT_CONFIG_FILE))
[5424]491#if DEBUG < 3 // developers do not need to see the GUI, when orxonox fails
[5996]492      || ResourceManager::isFile(DEFAULT_LOCK_FILE)
[4981]493#endif
494     )
[5996]495  {
496    if (ResourceManager::isFile(DEFAULT_LOCK_FILE))
497      ResourceManager::deleteFile(DEFAULT_LOCK_FILE);
[4556]498
[5996]499    // starting the GUI
[7479]500    OrxGui::Gui* gui = new OrxGui::QtGui(argc, argv);
[5996]501    gui->startGui();
[4132]502
[7547]503    if (gui->getState() & OrxGui::Gui::Quitting)
504      return 0;
[4556]505
[5996]506    delete gui;
507  }
[4556]508
[4032]509  PRINT(0)(">>> Starting Orxonox <<<\n");
[4033]510
[4766]511  ResourceManager::touchFile(DEFAULT_LOCK_FILE);
[4033]512
[1850]513  Orxonox *orx = Orxonox::getInstance();
[4556]514
[5996]515  if( orx->init(argc, argv, name, port) == -1)
516  {
517    PRINTF(1)("! Orxonox initialization failed\n");
518    return -1;
519  }
[4556]520
[5996]521  printf("finished inizialisation\n");
[2636]522  orx->start();
[4556]523
[3676]524  delete orx;
[4033]525  ResourceManager::deleteFile("~/.orxonox/orxonox.lock");
[1803]526}
Note: See TracBrowser for help on using the repository browser.