Changeset 7335
- Timestamp:
- Sep 3, 2010, 1:30:59 PM (14 years ago)
- Location:
- code/branches/doc
- Files:
-
- 10 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/doc/doc/api/Groups.dox
r7325 r7335 56 56 @defgroup Command Command 57 57 @ingroup Core 58 */ 59 60 /** 61 @defgroup CmdArgs Commandline Arguments 62 @ingroup Command 63 @brief For a reference see @ref cmdargs 58 64 */ 59 65 -
code/branches/doc/doc/api/doxy.config.in
r7317 r7335 191 191 # You can put \n's in the value part of an alias to insert newlines. 192 192 193 ALIASES = 193 ALIASES = "cmdarg=\xrefitem cmdargs \"Commandline Argment\" \"Commandline Arguments Reference\"" 194 194 195 195 # Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C -
code/branches/doc/src/libraries/core/CommandLineParser.cc
r7303 r7335 41 41 namespace orxonox 42 42 { 43 //! @cmdarg 43 44 SetCommandLineOnlyArgument(optionsFile, "start.ini").shortcut("o"); 44 45 -
code/branches/doc/src/libraries/core/Core.cc
r7284 r7335 77 77 Core* Core::singletonPtr_s = 0; 78 78 79 //! @cmdarg 79 80 SetCommandLineArgument(settingsFile, "orxonox.ini").information("THE configuration file"); 81 //! @cmdarg 80 82 SetCommandLineSwitch(noIOConsole).information("Use this if you don't want to use the IOConsole (for instance for Lua debugging)"); 81 83 82 84 #ifdef ORXONOX_PLATFORM_WINDOWS 85 //! @cmdarg 83 86 SetCommandLineArgument(limitToCPU, 1).information("Limits the program to one CPU/core (1, 2, 3, etc.). Default is the first core (faster than off)"); 84 87 #endif -
code/branches/doc/src/libraries/core/PathConfig.cc
r6417 r7335 70 70 PathConfig* PathConfig::singletonPtr_s = 0; 71 71 72 //! @cmdarg 72 73 SetCommandLineArgument(externalDataPath, "").information("Path to the external data files"); 74 //! @cmdarg 73 75 SetCommandLineOnlyArgument(writingPathSuffix, "").information("Additional subfolder for config and log files"); 74 76 -
code/branches/doc/src/libraries/core/input/InputManager.cc
r7297 r7335 60 60 namespace orxonox 61 61 { 62 //! @cmdarg 62 63 SetCommandLineSwitch(keyboard_no_grab).information("Whether not to exclusively grab the keyboard"); 63 64 -
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.