[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 | |
---|
[4054] | 32 | #include "gui.h" |
---|
| 33 | |
---|
[2036] | 34 | #include "world.h" |
---|
[5944] | 35 | #include "parser/ini_parser/ini_parser.h" |
---|
[5165] | 36 | #include "game_loader.h" |
---|
[4786] | 37 | |
---|
| 38 | //ENGINES |
---|
[3610] | 39 | #include "graphics_engine.h" |
---|
[4504] | 40 | #include "sound_engine.h" |
---|
[3655] | 41 | #include "resource_manager.h" |
---|
[4786] | 42 | #include "cd_engine.h" |
---|
[3790] | 43 | #include "text_engine.h" |
---|
[4786] | 44 | #include "event_handler.h" |
---|
[4815] | 45 | #include "garbage_collector.h" |
---|
[4786] | 46 | |
---|
[4010] | 47 | #include "factory.h" |
---|
[4980] | 48 | #include "fast_factory.h" |
---|
| 49 | |
---|
[4131] | 50 | #include "benchmark.h" |
---|
[3610] | 51 | |
---|
[4786] | 52 | #include "class_list.h" |
---|
[5641] | 53 | #include "shell_command_class.h" |
---|
[5165] | 54 | #include "shell_command.h" |
---|
[5175] | 55 | #include "shell_buffer.h" |
---|
[4748] | 56 | |
---|
[5546] | 57 | #include "load_param_description.h" |
---|
[5226] | 58 | |
---|
[5996] | 59 | #include "network_manager.h" |
---|
| 60 | |
---|
[2190] | 61 | #include <string.h> |
---|
[4032] | 62 | |
---|
[4885] | 63 | int verbose = 4; |
---|
[2036] | 64 | |
---|
[1803] | 65 | using namespace std; |
---|
| 66 | |
---|
[5207] | 67 | SHELL_COMMAND(restart, Orxonox, restart); |
---|
| 68 | |
---|
[2190] | 69 | /** |
---|
[4836] | 70 | * create a new Orxonox |
---|
[4135] | 71 | |
---|
| 72 | In this funcitons only global values are set. The game will not be started here. |
---|
[2190] | 73 | */ |
---|
| 74 | Orxonox::Orxonox () |
---|
[1872] | 75 | { |
---|
[4445] | 76 | this->setClassID(CL_ORXONOX, "Orxonox"); |
---|
[4766] | 77 | this->setName("orxonox-main"); |
---|
[4059] | 78 | |
---|
[4766] | 79 | this->iniParser = NULL; |
---|
[4135] | 80 | |
---|
| 81 | this->argc = 0; |
---|
| 82 | this->argv = NULL; |
---|
[4782] | 83 | |
---|
[5996] | 84 | /* this way, there is no network enabled: */ |
---|
| 85 | this->serverName = NULL; |
---|
| 86 | this->port = -1; |
---|
| 87 | |
---|
[4830] | 88 | this->configFileName = NULL; |
---|
[1872] | 89 | } |
---|
[1803] | 90 | |
---|
[2190] | 91 | /** |
---|
[4836] | 92 | * remove Orxonox from memory |
---|
[2190] | 93 | */ |
---|
[4556] | 94 | Orxonox::~Orxonox () |
---|
[2190] | 95 | { |
---|
[5285] | 96 | // game-specific |
---|
[4815] | 97 | delete GameLoader::getInstance(); |
---|
| 98 | delete GarbageCollector::getInstance(); |
---|
[5285] | 99 | |
---|
| 100 | // class-less services/factories |
---|
[5982] | 101 | Factory::deleteFactories(); |
---|
[4980] | 102 | FastFactory::deleteAll(); |
---|
[5171] | 103 | ShellCommandClass::unregisterAllCommands(); |
---|
[5332] | 104 | |
---|
[5226] | 105 | LoadClassDescription::deleteAllDescriptions(); |
---|
| 106 | |
---|
[5285] | 107 | // engines |
---|
| 108 | delete CDEngine::getInstance(); |
---|
| 109 | delete SoundEngine::getInstance(); |
---|
| 110 | delete GraphicsEngine::getInstance(); // deleting the Graphics |
---|
[4817] | 111 | delete EventHandler::getInstance(); |
---|
[5285] | 112 | |
---|
| 113 | // handlers |
---|
| 114 | delete ResourceManager::getInstance(); // deletes the Resource Manager |
---|
| 115 | // output-buffer |
---|
| 116 | delete ShellBuffer::getInstance(); |
---|
| 117 | |
---|
| 118 | // orxonox class-stuff |
---|
[5078] | 119 | delete this->iniParser; |
---|
[5210] | 120 | delete[] this->configFileName; |
---|
[4817] | 121 | |
---|
[5225] | 122 | SDL_QuitSubSystem(SDL_INIT_TIMER); |
---|
[4942] | 123 | ClassList::debug(); |
---|
[1850] | 124 | |
---|
[4833] | 125 | PRINT(3) |
---|
[5996] | 126 | ( |
---|
| 127 | "===================================================\n" \ |
---|
| 128 | "Thanks for playing orxonox.\n" \ |
---|
| 129 | "visit: http://www.orxonox.net for new versions.\n" \ |
---|
| 130 | "===================================================\n" \ |
---|
| 131 | ORXONOX_LICENSE_SHORT |
---|
| 132 | ); |
---|
[1872] | 133 | |
---|
[4766] | 134 | Orxonox::singletonRef = NULL; |
---|
[1850] | 135 | } |
---|
| 136 | |
---|
[2190] | 137 | /** |
---|
[4836] | 138 | * this is a singleton class to prevent duplicates |
---|
[4766] | 139 | */ |
---|
| 140 | Orxonox* Orxonox::singletonRef = NULL; |
---|
[4556] | 141 | |
---|
[5207] | 142 | // DANGEROUS |
---|
| 143 | void Orxonox::restart() |
---|
| 144 | { |
---|
[5996] | 145 | // int argc = this->argc; |
---|
| 146 | // char** argv = this->argv; |
---|
| 147 | // |
---|
| 148 | // Orxonox *orx = Orxonox::getInstance(); |
---|
| 149 | // |
---|
| 150 | // delete orx; |
---|
| 151 | // |
---|
| 152 | // orx = Orxonox::getInstance(); |
---|
| 153 | // |
---|
| 154 | // if((*orx).init(argc, argv) == -1) |
---|
| 155 | // { |
---|
| 156 | // PRINTF(1)("! Orxonox initialization failed\n"); |
---|
| 157 | // return; |
---|
| 158 | // } |
---|
| 159 | // |
---|
| 160 | // printf("finished inizialisation\n"); |
---|
| 161 | // orx->start(); |
---|
[5207] | 162 | } |
---|
| 163 | |
---|
[4766] | 164 | /** |
---|
[4836] | 165 | * this finds the config file |
---|
[4766] | 166 | * @returns the new config-fileName |
---|
| 167 | * Since the config file varies from user to user and since one may want to specify different config files |
---|
| 168 | * for certain occasions or platforms this function finds the right config file for every occasion and stores |
---|
| 169 | * it's path and name into configfilename |
---|
[2190] | 170 | */ |
---|
[4830] | 171 | const char* Orxonox::getConfigFile () |
---|
[1850] | 172 | { |
---|
[5424] | 173 | if (ResourceManager::isFile("orxonox.conf")) |
---|
| 174 | { |
---|
| 175 | this->configFileName = new char[strlen("orxonox.conf")+1]; |
---|
| 176 | strcpy(this->configFileName, "orxonox.conf"); |
---|
| 177 | } |
---|
| 178 | else |
---|
| 179 | this->configFileName = ResourceManager::homeDirCheck(DEFAULT_CONFIG_FILE); |
---|
[4766] | 180 | this->iniParser = new IniParser(this->configFileName); |
---|
[5424] | 181 | PRINTF(3)("Parsed Config File: '%s'\n", this->configFileName); |
---|
[1803] | 182 | } |
---|
| 183 | |
---|
[2190] | 184 | /** |
---|
[4833] | 185 | * initialize Orxonox with command line |
---|
| 186 | */ |
---|
[5996] | 187 | int Orxonox::init (int argc, char** argv, const char* name, int port) |
---|
[1803] | 188 | { |
---|
[4135] | 189 | this->argc = argc; |
---|
| 190 | this->argv = argv; |
---|
[4556] | 191 | |
---|
[5996] | 192 | this->serverName = name; |
---|
| 193 | this->port = port; |
---|
| 194 | |
---|
[4766] | 195 | // initialize the Config-file |
---|
[4830] | 196 | this->getConfigFile(); |
---|
[4766] | 197 | |
---|
[5788] | 198 | // windows must not write into stdout.txt and stderr.txt |
---|
| 199 | #ifdef __WIN32__ |
---|
| 200 | freopen( "CON", "w", stdout ); |
---|
| 201 | freopen( "CON", "w", stderr ); |
---|
| 202 | #endif |
---|
| 203 | |
---|
[5996] | 204 | // initialize everything |
---|
[6079] | 205 | SDL_Init(0); |
---|
[5996] | 206 | if( initResources () == -1) |
---|
| 207 | return -1; |
---|
| 208 | if( initVideo() == -1) |
---|
| 209 | return -1; |
---|
| 210 | if( initSound() == -1) |
---|
| 211 | return -1; |
---|
| 212 | if( initInput() == -1) |
---|
| 213 | return -1; |
---|
| 214 | if( initNetworking () == -1) |
---|
| 215 | return -1; |
---|
| 216 | if( initMisc () == -1) |
---|
| 217 | return -1; |
---|
[4556] | 218 | |
---|
[2636] | 219 | return 0; |
---|
[1850] | 220 | } |
---|
[1849] | 221 | |
---|
[5996] | 222 | |
---|
[2190] | 223 | /** |
---|
[4833] | 224 | * initializes SDL and OpenGL |
---|
[5996] | 225 | */ |
---|
[4556] | 226 | int Orxonox::initVideo() |
---|
[2190] | 227 | { |
---|
[3611] | 228 | PRINTF(3)("> Initializing video\n"); |
---|
[4556] | 229 | |
---|
[3610] | 230 | GraphicsEngine::getInstance(); |
---|
[4556] | 231 | |
---|
[4784] | 232 | GraphicsEngine::getInstance()->initFromIniFile(this->iniParser); |
---|
[4766] | 233 | |
---|
[5219] | 234 | char* iconName = ResourceManager::getFullName("pictures/fighter-top-32x32.bmp"); |
---|
[5225] | 235 | if (iconName != NULL) |
---|
| 236 | { |
---|
| 237 | GraphicsEngine::getInstance()->setWindowName(PACKAGE_NAME " " PACKAGE_VERSION, iconName); |
---|
| 238 | delete[] iconName; |
---|
| 239 | } |
---|
[2190] | 240 | return 0; |
---|
| 241 | } |
---|
[1850] | 242 | |
---|
[5996] | 243 | |
---|
[2190] | 244 | /** |
---|
[4833] | 245 | * initializes the sound engine |
---|
| 246 | */ |
---|
[4556] | 247 | int Orxonox::initSound() |
---|
[2190] | 248 | { |
---|
[4504] | 249 | PRINT(3)("> Initializing sound\n"); |
---|
[5225] | 250 | // SDL_InitSubSystem(SDL_INIT_AUDIO); |
---|
[4504] | 251 | SoundEngine::getInstance()->initAudio(); |
---|
[5930] | 252 | SoundEngine::getInstance()->allocateSources(1); |
---|
[4985] | 253 | |
---|
| 254 | SoundEngine::getInstance()->loadSettings(this->iniParser); |
---|
[2636] | 255 | return 0; |
---|
[2190] | 256 | } |
---|
[1900] | 257 | |
---|
[3214] | 258 | |
---|
[2190] | 259 | /** |
---|
[4833] | 260 | * initializes input functions |
---|
| 261 | */ |
---|
[4556] | 262 | int Orxonox::initInput() |
---|
[2190] | 263 | { |
---|
[4766] | 264 | PRINT(3)("> Initializing input\n"); |
---|
| 265 | |
---|
[4866] | 266 | EventHandler::getInstance()->init(this->iniParser); |
---|
[4833] | 267 | EventHandler::getInstance()->subscribe(GraphicsEngine::getInstance(), ES_ALL, EV_VIDEO_RESIZE); |
---|
[4556] | 268 | |
---|
[2636] | 269 | return 0; |
---|
[1803] | 270 | } |
---|
| 271 | |
---|
[3214] | 272 | |
---|
[2190] | 273 | /** |
---|
[4833] | 274 | * initializes network system |
---|
| 275 | */ |
---|
[4556] | 276 | int Orxonox::initNetworking() |
---|
[1897] | 277 | { |
---|
[4766] | 278 | PRINT(3)("> Initializing networking\n"); |
---|
| 279 | |
---|
[5996] | 280 | if( this->serverName != NULL) // we are a client |
---|
| 281 | NetworkManager::getInstance()->establishConnection(this->serverName, port); |
---|
| 282 | else if( this->port > 0) // we are a server |
---|
| 283 | NetworkManager::getInstance()->createServer(port); |
---|
| 284 | |
---|
[2636] | 285 | return 0; |
---|
[1897] | 286 | } |
---|
| 287 | |
---|
[3214] | 288 | |
---|
[2190] | 289 | /** |
---|
[4833] | 290 | * initializes and loads resource files |
---|
[4766] | 291 | */ |
---|
[4833] | 292 | int Orxonox::initResources() |
---|
[1858] | 293 | { |
---|
[4766] | 294 | PRINTF(3)("> Initializing resources\n"); |
---|
[4091] | 295 | |
---|
[4766] | 296 | PRINT(3)("initializing ResourceManager\n"); |
---|
| 297 | |
---|
[5488] | 298 | // init the resource manager |
---|
[5014] | 299 | const char* dataPath; |
---|
| 300 | if ((dataPath = this->iniParser->getVar(CONFIG_NAME_DATADIR, CONFIG_SECTION_DATA))!= NULL) |
---|
[4766] | 301 | { |
---|
[5480] | 302 | if (!ResourceManager::getInstance()->setDataDir(dataPath) && |
---|
[5996] | 303 | !ResourceManager::getInstance()->verifyDataDir(DEFAULT_DATA_DIR_CHECKFILE)) |
---|
[4766] | 304 | { |
---|
[5423] | 305 | PRINTF(1)("Data Could not be located in %s\n", dataPath); |
---|
[4766] | 306 | } |
---|
| 307 | } |
---|
[4556] | 308 | |
---|
[5480] | 309 | if (!ResourceManager::getInstance()->verifyDataDir(DEFAULT_DATA_DIR_CHECKFILE)) |
---|
[4766] | 310 | { |
---|
[5510] | 311 | PRINTF(1)("The DataDirectory %s could not be verified\n\nh" \ |
---|
| 312 | "!!! Please Change in File %s Section %s Entry %s to a suitable value !!!\n", |
---|
[4822] | 313 | ResourceManager::getInstance()->getDataDir(), |
---|
[5424] | 314 | this->configFileName, |
---|
[4766] | 315 | CONFIG_SECTION_DATA, |
---|
[5510] | 316 | CONFIG_NAME_DATADIR ); |
---|
[5479] | 317 | Gui* gui = new Gui(argc, argv); |
---|
| 318 | gui->startGui(); |
---|
| 319 | delete gui; |
---|
[4766] | 320 | exit(-1); |
---|
| 321 | } |
---|
[5996] | 322 | //! @todo this is a hack and should be loadable |
---|
[5335] | 323 | char* imageDir = ResourceManager::getInstance()->getFullName("maps"); |
---|
[5216] | 324 | ResourceManager::getInstance()->addImageDir(imageDir); |
---|
| 325 | delete[] imageDir; |
---|
[4009] | 326 | |
---|
[5488] | 327 | // start the collision detection engine |
---|
[4766] | 328 | CDEngine::getInstance(); |
---|
[5074] | 329 | return 0; |
---|
| 330 | } |
---|
| 331 | |
---|
| 332 | /** |
---|
| 333 | * initializes miscelaneous features |
---|
| 334 | * @return -1 on failure |
---|
| 335 | */ |
---|
| 336 | int Orxonox::initMisc() |
---|
| 337 | { |
---|
[5183] | 338 | ShellBuffer::getInstance(); |
---|
[4766] | 339 | return 0; |
---|
[1858] | 340 | } |
---|
[1849] | 341 | |
---|
[2190] | 342 | /** |
---|
[4836] | 343 | * starts the orxonox game or menu |
---|
[4833] | 344 | * here is the central orxonox state manager. There are currently two states |
---|
| 345 | * - menu |
---|
| 346 | * - game-play |
---|
| 347 | * both states manage their states themselfs again. |
---|
[2190] | 348 | */ |
---|
[2636] | 349 | void Orxonox::start() |
---|
| 350 | { |
---|
[4556] | 351 | |
---|
[2636] | 352 | this->gameLoader = GameLoader::getInstance(); |
---|
[5996] | 353 | |
---|
| 354 | if( this->port != -1 || this->serverName != NULL) |
---|
| 355 | this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc"); /* actualy loadNetworkCampaign*/ |
---|
| 356 | else |
---|
| 357 | this->gameLoader->loadCampaign("worlds/DefaultCampaign.oxc"); |
---|
| 358 | |
---|
[4010] | 359 | // this->gameLoader->loadDebugCampaign(DEBUG_CAMPAIGN_0); |
---|
[2636] | 360 | this->gameLoader->init(); |
---|
| 361 | this->gameLoader->start(); |
---|
| 362 | } |
---|
| 363 | |
---|
[3214] | 364 | |
---|
[2636] | 365 | /** |
---|
[4833] | 366 | * handles sprecial events from localinput |
---|
| 367 | * @param event: an event not handled by the CommandNode |
---|
| 368 | */ |
---|
[4817] | 369 | // void Orxonox::graphicsHandler(SDL_Event* event) |
---|
| 370 | // { |
---|
| 371 | // // Handle special events such as reshape, quit, focus changes |
---|
| 372 | // switch (event->type) |
---|
| 373 | // { |
---|
| 374 | // case SDL_VIDEORESIZE: |
---|
| 375 | // GraphicsEngine* tmpGEngine = GraphicsEngine::getInstance(); |
---|
| 376 | // tmpGEngine->resolutionChanged(event->resize); |
---|
| 377 | // break; |
---|
| 378 | // } |
---|
| 379 | // } |
---|
[1875] | 380 | |
---|
[4556] | 381 | |
---|
[4408] | 382 | |
---|
[1803] | 383 | |
---|
[3214] | 384 | |
---|
[4782] | 385 | |
---|
[4059] | 386 | bool showGui = false; |
---|
[3648] | 387 | |
---|
[4766] | 388 | |
---|
| 389 | |
---|
| 390 | /********************************** |
---|
| 391 | *** ORXONOX MAIN STARTING POINT *** |
---|
| 392 | **********************************/ |
---|
[3449] | 393 | /** |
---|
[4833] | 394 | * |
---|
[4836] | 395 | * main function |
---|
[4833] | 396 | * |
---|
| 397 | * here the journey begins |
---|
[3449] | 398 | */ |
---|
[4556] | 399 | int main(int argc, char** argv) |
---|
| 400 | { |
---|
[3648] | 401 | int i; |
---|
[4032] | 402 | for(i = 1; i < argc; ++i) |
---|
[5996] | 403 | { |
---|
| 404 | if( !strcmp( "--help", argv[i]) || !strcmp("-h", argv[i])) |
---|
| 405 | return showHelp(argc, argv); |
---|
| 406 | else if(!strcmp( "--gui", argv[i]) || !strcmp("-g", argv[i])) |
---|
| 407 | showGui = true; |
---|
| 408 | else if(!strcmp( "--client", argv[i]) || !strcmp("-c", argv[i])) |
---|
| 409 | return startNetworkOrxonox(argc, argv); |
---|
| 410 | else if(!strcmp( "--server", argv[i]) || !strcmp("-s", argv[i])) |
---|
| 411 | return startNetworkOrxonox(argc, argv); |
---|
| 412 | else if(!strcmp( "--license", argv[i]) || !strcmp("-s", argv[i])) |
---|
| 413 | return PRINT(0)(ORXONOX_LICENSE_SHORT); |
---|
| 414 | } |
---|
[3648] | 415 | |
---|
[5996] | 416 | return startOrxonox(argc, argv, NULL, -1); |
---|
[3648] | 417 | } |
---|
| 418 | |
---|
| 419 | |
---|
| 420 | |
---|
[5996] | 421 | int showHelp(int argc, char** argv) |
---|
[3648] | 422 | { |
---|
[5996] | 423 | PRINT(0)("Orxonox Version %s\n", PACKAGE_VERSION); |
---|
| 424 | PRINT(0)(" Starts Orxonox - The most furious 3D Action Game :)\n"); |
---|
| 425 | PRINT(0)("\n"); |
---|
| 426 | PRINT(0)("Common options:\n"); |
---|
| 427 | PRINT(0)(" -g, --gui starts the orxonox with the configuration GUI \n"); |
---|
| 428 | PRINT(0)(" -h, --help shows this help\n"); |
---|
| 429 | PRINT(0)("\n"); |
---|
| 430 | PRINT(0)("Network options:\n"); |
---|
| 431 | PRINT(0)(" -s, --server [port] starts Orxonox and listens on the [port] for players\n"); |
---|
| 432 | PRINT(0)(" -c, --client [hostname] [port] starts Orxonox as a Client\n"); |
---|
| 433 | PRINT(0)(" -c, --client [ip address] [port] starts Orxonox as a Client\n"); |
---|
| 434 | PRINT(0)("\n"); |
---|
| 435 | PRINT(0)("Other options:\n"); |
---|
| 436 | PRINT(0)(" --license prints the licence and exit\n\n"); |
---|
| 437 | PRINT(0)("\n"); |
---|
| 438 | |
---|
| 439 | // { |
---|
| 440 | // Gui* gui = new Gui(argc, argv); |
---|
| 441 | // gui->printHelp(); |
---|
| 442 | // delete gui; |
---|
| 443 | // } |
---|
| 444 | } |
---|
| 445 | |
---|
| 446 | |
---|
| 447 | |
---|
| 448 | |
---|
| 449 | /** |
---|
| 450 | * starts orxonox in network mode |
---|
| 451 | * @param argc parameters count given to orxonox |
---|
| 452 | * @param argv parameters given to orxonox |
---|
| 453 | */ |
---|
| 454 | int startNetworkOrxonox(int argc, char** argv) |
---|
| 455 | { |
---|
| 456 | |
---|
| 457 | int i; |
---|
| 458 | for(i = 0; i < argc; ++i ) |
---|
[4132] | 459 | { |
---|
[5996] | 460 | if( !strcmp( "--client", argv[i]) || !strcmp("-c", argv[i])) |
---|
| 461 | { |
---|
| 462 | if( argc <= (i+2)) |
---|
| 463 | { |
---|
| 464 | printf(" Wrong arguments try following notations:\n"); |
---|
| 465 | printf(" --client [server ip address] [port number]\n"); |
---|
| 466 | printf(" --client [dns name] [port number]\n"); |
---|
| 467 | return 0; |
---|
| 468 | } |
---|
| 469 | |
---|
| 470 | const char* name = argv[i+1]; |
---|
| 471 | int port = atoi(argv[i+2]); |
---|
| 472 | printf("Starting Orxonox as client: connecting to %s, on port %i\n", name, port); |
---|
| 473 | |
---|
| 474 | startOrxonox(argc, argv, name, port); |
---|
| 475 | } |
---|
| 476 | else if( !strcmp( "--server", argv[i]) || !strcmp("-s", argv[i])) |
---|
| 477 | { |
---|
| 478 | if( argc <= (i+1)) |
---|
| 479 | { |
---|
| 480 | printf(" Wrong arguments try following notations:\n"); |
---|
| 481 | printf(" --server [port number]\n"); |
---|
| 482 | return 0; |
---|
| 483 | } |
---|
| 484 | |
---|
| 485 | int port = atoi(argv[i+1]); |
---|
| 486 | printf("Starting Orxonox as server, listening on port %i\n", port); |
---|
| 487 | |
---|
| 488 | startOrxonox(argc, argv, NULL, port); |
---|
| 489 | } |
---|
[4132] | 490 | } |
---|
[3648] | 491 | } |
---|
| 492 | |
---|
[3649] | 493 | |
---|
[4766] | 494 | |
---|
| 495 | /** |
---|
| 496 | * starts orxonox |
---|
| 497 | * @param argc parameters count given to orxonox |
---|
| 498 | * @param argv parameters given to orxonox |
---|
| 499 | */ |
---|
[5996] | 500 | int startOrxonox(int argc, char** argv, const char* name, int port) |
---|
[3648] | 501 | { |
---|
[4830] | 502 | // checking for existence of the configuration-files, or if the lock file is still used |
---|
[5424] | 503 | if (showGui || (!ResourceManager::isFile("./orxonox.conf") && |
---|
[5996] | 504 | !ResourceManager::isFile(DEFAULT_CONFIG_FILE)) |
---|
[5424] | 505 | #if DEBUG < 3 // developers do not need to see the GUI, when orxonox fails |
---|
[5996] | 506 | || ResourceManager::isFile(DEFAULT_LOCK_FILE) |
---|
[4981] | 507 | #endif |
---|
| 508 | ) |
---|
[5996] | 509 | { |
---|
| 510 | if (ResourceManager::isFile(DEFAULT_LOCK_FILE)) |
---|
| 511 | ResourceManager::deleteFile(DEFAULT_LOCK_FILE); |
---|
[4556] | 512 | |
---|
[5996] | 513 | // starting the GUI |
---|
| 514 | Gui* gui = new Gui(argc, argv); |
---|
| 515 | gui->startGui(); |
---|
[4132] | 516 | |
---|
[5996] | 517 | if (! gui->startOrxonox) |
---|
| 518 | return 0; |
---|
[4556] | 519 | |
---|
[5996] | 520 | delete gui; |
---|
| 521 | } |
---|
[4556] | 522 | |
---|
[4032] | 523 | PRINT(0)(">>> Starting Orxonox <<<\n"); |
---|
[4033] | 524 | |
---|
[4766] | 525 | ResourceManager::touchFile(DEFAULT_LOCK_FILE); |
---|
[4033] | 526 | |
---|
[1850] | 527 | Orxonox *orx = Orxonox::getInstance(); |
---|
[4556] | 528 | |
---|
[5996] | 529 | if( orx->init(argc, argv, name, port) == -1) |
---|
| 530 | { |
---|
| 531 | PRINTF(1)("! Orxonox initialization failed\n"); |
---|
| 532 | return -1; |
---|
| 533 | } |
---|
[4556] | 534 | |
---|
[5996] | 535 | printf("finished inizialisation\n"); |
---|
[2636] | 536 | orx->start(); |
---|
[4556] | 537 | |
---|
[3676] | 538 | delete orx; |
---|
[4033] | 539 | ResourceManager::deleteFile("~/.orxonox/orxonox.lock"); |
---|
[1803] | 540 | } |
---|