Changeset 7335 for code/branches/doc/src/orxonox
- Timestamp:
- Sep 3, 2010, 1:30:59 PM (14 years ago)
- Location:
- code/branches/doc/src/orxonox
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/src/orxonox/LevelManager.cc
r7284 r7335 42 42 namespace orxonox 43 43 { 44 //! @cmdarg 44 45 SetCommandLineArgument(level, "").shortcut("l").information("Default level file (overrides LevelManager::defaultLevelName_ configValue)"); 45 46 -
code/branches/doc/src/orxonox/Main.cc
r7163 r7335 43 43 #include "Main.h" 44 44 45 SetCommandLineSwitch(console).information("Start in console mode (text IO only)");46 // Shortcuts for easy direct loading47 SetCommandLineSwitch(server).information("Start in server mode");48 SetCommandLineSwitch(client).information("Start in client mode");49 SetCommandLineSwitch(dedicated).information("Start in dedicated server mode");50 SetCommandLineSwitch(standalone).information("Start in standalone mode");51 SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode");52 53 45 DeclareToluaInterface(Orxonox); 54 46 DeclareToluaInterface(Network); … … 56 48 namespace orxonox 57 49 { 50 //! @cmdarg 51 SetCommandLineSwitch(console).information("Start in console mode (text IO only)"); 52 //! @cmdarg 53 SetCommandLineSwitch(server).information("Start in server mode"); 54 //! @cmdarg 55 SetCommandLineSwitch(client).information("Start in client mode"); 56 //! @cmdarg 57 SetCommandLineSwitch(dedicated).information("Start in dedicated server mode"); 58 //! @cmdarg 59 SetCommandLineSwitch(standalone).information("Start in standalone mode"); 60 //! @cmdarg 61 SetCommandLineSwitch(dedicatedClient).information("Start in dedicated client mode"); 62 58 63 /** 59 64 @brief -
code/branches/doc/src/orxonox/gamestates/GSClient.cc
r7163 r7335 40 40 DeclareGameState(GSClient, "client", false, false); 41 41 42 //! @cmdarg 42 43 SetCommandLineArgument(dest, "127.0.0.1").information("Server hostname/IP (IP in the form of #.#.#.#)"); 43 44 -
code/branches/doc/src/orxonox/gamestates/GSServer.cc
r6105 r7335 39 39 DeclareGameState(GSServer, "server", false, false); 40 40 41 //! @cmdarg 41 42 SetCommandLineArgument(port, 55556).shortcut("p").information("Network communication port to be used 0-65535 (default: 55556)"); 42 43
Note: See TracChangeset
for help on using the changeset viewer.