About
Configuration variables allow to define the behaviour of the application. Such a variable can be set in various ways (see below) and can be read in the source code.
- Note
- The help text of all registered configuration variables is listed when Cinema 4D is started with the "help" command line argument. A console window can be opened with the command line argument "g_console=true".
Macros
A configuration variable can be defined inside a source code file using one of these macros. The variable allows then to access its value.
#define MAXON_CONFIGURATION_BOOL(CONFIGVALUE, DEFVALUE, DEVCATEGORY, HELPTEXT)
Definition: configuration.h:104
#define MAXON_CONFIGURATION_STRING(CONFIGVALUE, DEFVALUE, DEVCATEGORY, HELPTEXT)
Definition: configuration.h:113
@ REGULAR
Help will be shown when application is started with command line parameter help. Use this value for c...
The so defined variables can be simply accessed using the created global variable:
if (g_copy_source.IsEmpty())
if (g_copy_destination.IsEmpty())
return maxon::IllegalArgumentError(
MAXON_SOURCE_LOCATION,
"g_copy_source is set but g_copy_destination is empty."_s);
const maxon::Url destinationDir(g_copy_destination);
return maxon::IllegalArgumentError(
MAXON_SOURCE_LOCATION,
"g_copy_destination is not an existing folder."_s);
sourceFile.IoCopyFile(targetFile, g_copy_overwrite,
false)
iferr_return;
return OK
Definition: apibase.h:2690
#define MAXON_SOURCE_LOCATION
Definition: memoryallocationbase.h:67
@ DIRECTORY
Url is a directory, you can use GetBrowseIterator to iterate through the children.
#define iferr_return
Definition: resultbase.h:1519
Definition
The value of a configuration variable can be set in multiple ways. It can be set
- within the application itself (default value).
- in a configuration file
config.txt
next to the application.
- in an environment variable.
- as a command line argument.
:: Windows batch
file example
:: Start Cinema 4
D with the custom command
line argument "g_printErrors" and the built-in
argument "g_console"
"CINEMA 4D.exe" g_printErrors=true g_console=true
#define argument
Definition: graminit.h:83
D
Quality D.
Definition: macros.h:4
const char const char const char int line
Definition: object.h:440
const char const char const char * file
Definition: object.h:439
Configuration
A configuration variable can be accessed in any source code file using the maxon::Configuration class:
{
if (executionFailed && printError)
{
}
}
static MAXON_METHOD Result< void > QueryBool(const String &key, Bool &result, CONFIGURATIONENTRY_ORIGIN &origin, CONFIGURATIONENTRY_STATE &state)
PyArena _PyASTOptimizeState * state
Definition: compile.h:99
Py_UCS4 * res
Definition: unicodeobject.h:1113
bool Bool
boolean type, possible values are only false/true, 8 bit
Definition: apibase.h:181
#define DiagnosticOutput(formatString,...)
Definition: debugdiagnostics.h:176
#define iferr(...)
Definition: errorbase.h:388
CONFIGURATIONENTRY_ORIGIN
Source where a configuration value was defined.
Definition: configuration.h:27
CONFIGURATIONENTRY_STATE
State of a configuration value.
Definition: configuration.h:36
static const ERROR_FAILED FAILED
Definition: resultbase.h:68
It is also possible to register configuration variables at runtime. With these functions the variables are marked as used (maxon::CONFIGURATIONENTRY_STATE::USED) and the help text will be defined.
{
maxon::Configuration::AddHelpForOption(customDebug, "all"_s, false, true, category, "Print all debug information.")
iferr_return;
maxon::Configuration::AddHelpForOption(customDebug, "warning"_s, false, false, category, "Print only warnings.")
iferr_return;
}
static MAXON_METHOD Result< void > AddHelpForString(const String &key, const String &defaultValue, CONFIGURATION_CATEGORY category, const Char *help)
Definition: string.h:1235
PyObject * error
Definition: codecs.h:206
const char const char * errors
Definition: codecs.h:83
OK
Ok.
Definition: ge_prepass.h:0
#define MAXON_INITIALIZATION(...)
Definition: module.h:795
The maxon namespace contains all declarations of the MAXON API.
Definition: autoweight.h:14
CONFIGURATION_CATEGORY
Help Category for configuration values.
Definition: configuration.h:15
#define iferr_scope
Definition: resultbase.h:1384
This will be displayed in the console like this:
g_customDebugLevel=[
string|all|warning|
error]
These broadcast functions are used to copy a value into all modules that defined the given configuration variable.
Further Reading