[612] | 1 | /* |
---|
| 2 | * ORXONOX - the hottest 3D action shooter ever to exist |
---|
[1293] | 3 | * > www.orxonox.net < |
---|
[612] | 4 | * |
---|
| 5 | * |
---|
| 6 | * License notice: |
---|
| 7 | * |
---|
| 8 | * This program is free software; you can redistribute it and/or |
---|
| 9 | * modify it under the terms of the GNU General Public License |
---|
| 10 | * as published by the Free Software Foundation; either version 2 |
---|
| 11 | * of the License, or (at your option) any later version. |
---|
| 12 | * |
---|
| 13 | * This program is distributed in the hope that it will be useful, |
---|
| 14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 16 | * GNU General Public License for more details. |
---|
| 17 | * |
---|
| 18 | * You should have received a copy of the GNU General Public License |
---|
| 19 | * along with this program; if not, write to the Free Software |
---|
| 20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. |
---|
| 21 | * |
---|
| 22 | * Author: |
---|
| 23 | * Benjamin Knecht <beni_at_orxonox.net>, (C) 2007 |
---|
[1638] | 24 | * Reto Grieder |
---|
[612] | 25 | * Co-authors: |
---|
| 26 | * ... |
---|
| 27 | * |
---|
| 28 | */ |
---|
| 29 | |
---|
| 30 | /** |
---|
[1021] | 31 | @file |
---|
| 32 | @brief Entry point of the program. Platform specific code. |
---|
[612] | 33 | */ |
---|
| 34 | |
---|
[1293] | 35 | #include "OrxonoxStableHeaders.h" |
---|
[612] | 36 | |
---|
[1293] | 37 | #include <exception> |
---|
[1638] | 38 | #include <cassert> |
---|
[1293] | 39 | |
---|
[1502] | 40 | #include "util/OrxonoxPlatform.h" |
---|
[612] | 41 | #include "core/SignalHandler.h" |
---|
[1638] | 42 | #include "core/Debug.h" |
---|
[612] | 43 | |
---|
[1661] | 44 | #include "gamestates/GSRoot.h" |
---|
| 45 | #include "gamestates/GSGraphics.h" |
---|
[1670] | 46 | #include "gamestates/GSStandalone.h" |
---|
| 47 | #include "gamestates/GSServer.h" |
---|
| 48 | #include "gamestates/GSClient.h" |
---|
[1661] | 49 | #include "gamestates/GSGUI.h" |
---|
[1670] | 50 | #include "gamestates/GSIOConsole.h" |
---|
[1661] | 51 | |
---|
[612] | 52 | using namespace orxonox; |
---|
[1638] | 53 | |
---|
[1021] | 54 | #if ORXONOX_PLATFORM == ORXONOX_PLATFORM_APPLE |
---|
[612] | 55 | #include <CoreFoundation/CoreFoundation.h> |
---|
| 56 | |
---|
| 57 | // This function will locate the path to our application on OS X, |
---|
| 58 | // unlike windows you can not rely on the curent working directory |
---|
| 59 | // for locating your configuration files and resources. |
---|
| 60 | std::string macBundlePath() |
---|
| 61 | { |
---|
[1638] | 62 | char path[1024]; |
---|
| 63 | CFBundleRef mainBundle = CFBundleGetMainBundle(); |
---|
| 64 | assert(mainBundle); |
---|
[612] | 65 | |
---|
[1638] | 66 | CFURLRef mainBundleURL = CFBundleCopyBundleURL(mainBundle); |
---|
| 67 | assert(mainBundleURL); |
---|
[612] | 68 | |
---|
[1638] | 69 | CFStringRef cfStringRef = CFURLCopyFileSystemPath( mainBundleURL, kCFURLPOSIXPathStyle); |
---|
| 70 | assert(cfStringRef); |
---|
[612] | 71 | |
---|
[1638] | 72 | CFStringGetCString(cfStringRef, path, 1024, kCFStringEncodingASCII); |
---|
[612] | 73 | |
---|
[1638] | 74 | CFRelease(mainBundleURL); |
---|
| 75 | CFRelease(cfStringRef); |
---|
[612] | 76 | |
---|
[1638] | 77 | return std::string(path); |
---|
[612] | 78 | } |
---|
| 79 | #endif |
---|
| 80 | |
---|
[1638] | 81 | |
---|
[1670] | 82 | //#ifdef __cplusplus |
---|
| 83 | //extern "C" { |
---|
| 84 | //#endif |
---|
[612] | 85 | |
---|
[1638] | 86 | int main(int argc, char** argv) |
---|
[622] | 87 | { |
---|
[1663] | 88 | // create a signal handler (only works for linux) |
---|
| 89 | SignalHandler::getInstance()->doCatch(argv[0], "orxonox.log"); |
---|
| 90 | |
---|
[1661] | 91 | GSRoot root; |
---|
| 92 | GSGraphics graphics; |
---|
[1670] | 93 | GSStandalone standalone; |
---|
| 94 | GSServer server; |
---|
| 95 | GSClient client; |
---|
[1661] | 96 | GSGUI gui; |
---|
[1670] | 97 | GSIOConsole ioConsole; |
---|
[1660] | 98 | |
---|
[1661] | 99 | root.addChild(&graphics); |
---|
[1670] | 100 | graphics.addChild(&standalone); |
---|
| 101 | graphics.addChild(&server); |
---|
| 102 | graphics.addChild(&client); |
---|
[1661] | 103 | graphics.addChild(&gui); |
---|
| 104 | |
---|
[1688] | 105 | root.addChild(&ioConsole); |
---|
[1670] | 106 | |
---|
[1689] | 107 | root.start(argc, argv); |
---|
[1661] | 108 | |
---|
[1638] | 109 | return 0; |
---|
[612] | 110 | } |
---|
| 111 | |
---|
[1670] | 112 | //#ifdef __cplusplus |
---|
| 113 | //} |
---|
| 114 | //#endif |
---|