source:
orxonox.OLD/branches/preferences/src/orxonox.h
@
7249
Last change on this file since 7249 was 7248, checked in by rennerc, 19 years ago | |
---|---|
File size: 1.6 KB |
Rev | Line | |
---|---|---|
[4766] | 1 | /*! |
[5018] | 2 | * @file orxonox.h |
3 | * Orxonox core functions | |
[4766] | 4 | */ |
[1856] | 5 | |
[3224] | 6 | #ifndef _ORXONOX_H |
7 | #define _ORXONOX_H | |
[1803] | 8 | |
[4817] | 9 | #include "base_object.h" |
[2190] | 10 | |
11 | class WorldEntity; | |
[2636] | 12 | class GameLoader; |
[4766] | 13 | class IniParser; |
[1850] | 14 | |
[4768] | 15 | //! orxonox core singleton class |
[2190] | 16 | /** |
17 | */ | |
[4817] | 18 | class Orxonox : public BaseObject { |
[1803] | 19 | |
[4445] | 20 | public: |
21 | virtual ~Orxonox (); | |
[4836] | 22 | /** @returns a Pointer to the only object of this Class */ |
[4766] | 23 | inline static Orxonox* getInstance() { if (!singletonRef) singletonRef = new Orxonox(); return singletonRef; }; |
24 | ||
[5996] | 25 | int init(int argc, char** argv, const char* name, int port); |
[4445] | 26 | |
[5207] | 27 | void restart(); |
28 | ||
[4445] | 29 | void start(); |
30 | ||
[1850] | 31 | private: |
[4447] | 32 | Orxonox (); |
33 | ||
[5074] | 34 | int initResources (); |
[4445] | 35 | int initVideo (); |
36 | int initSound (); | |
37 | int initInput (); | |
38 | int initNetworking (); | |
[5074] | 39 | int initMisc (); |
[4445] | 40 | |
[7221] | 41 | const std::string& getConfigFile (); |
[4446] | 42 | |
[4445] | 43 | private: |
[4447] | 44 | static Orxonox* singletonRef; //!< singleton reference to orxonox |
[3543] | 45 | |
[7221] | 46 | std::string configFileName; //!< Filename of the configuration-file. |
[4447] | 47 | GameLoader* gameLoader; //!< The gameLoader |
[4766] | 48 | |
[4447] | 49 | unsigned int argc; //!< Count of Arguments of orxonox |
50 | char** argv; //!< Values of th Arguments of orxonox. | |
[5996] | 51 | |
52 | const char* serverName; //!< Name of the Orxonox client if == NULL -> server | |
53 | int port; //!< number of the network port of the server/client if == -1 no network | |
[1803] | 54 | }; |
55 | ||
[4447] | 56 | |
[5024] | 57 | //////////////////////// |
58 | // Start-up functions // | |
59 | //////////////////////// | |
[5996] | 60 | int showHelp(int argc, char** argv); |
61 | int showLicense(); | |
62 | int startNetworkOrxonox(int argc, char** argv); | |
63 | int startOrxonox(int argc, char** argv, const char* clientName, int port); | |
[3648] | 64 | |
[3224] | 65 | #endif /* _ORXONOX_H */ |
[1850] | 66 |
Note: See TracBrowser
for help on using the repository browser.