Panda3D Manual: Accessing Config Vars in a Program
Panda3D uses a configuration file named Config.prc. Panda3D supplies functions to easily read values out of Config.prc, and to alter their values in memory (the modified values are not written back out to disk). The ability to read an alter configuration settings procedurally has two major uses:
"Storing your own configuration data" means that your game might have its own settings that need to be stored. Rather than writing your own configuration file parser, you might consider adding your configuration data to the panda configuration file instead. Suppose hypothetically that you are writing an online game, and your online game connects to a server. You need a configuration file to tell you the name of the server. Open up the "Config.prc" file and add the following line at the end of the file. my-game-server panda3dgame.com Note that I invented the variable name "my-game-server" out of thin air. This variable is not recognized by Panda3D in any way. Therefore, this line has no effect on the engine whatsoever. To manipulate this variable procedurally, use code not unlike the following, which creates an object of class
The second parameter to the ConfigVariableString constructor is the default value that should be returned, in case the line "my-game-server" does not appear in any Config.prc file. There is also an optional third parameter, which is a description of the purpose of the variable. The types of configuration variable are: ConfigVariableString Most of these follow the same form as ConfigVariableString, above, except that the default value (and the parameter from
Panda3D will automatically load any PRC files it finds in its standard config directory at start-up. It is helpful to do this to ensure that you are editing the correct Config.prc file. Sometimes, it is desirable to load an additional configuration file from disk, by giving an explicit filename. To do so, use
#include "load_prc_file.h"
The filename you specify is searched for along the model-path, in the same way that an Egg or Bam file is searched for when you use You should load your own PRC file before opening the window. Changing configuration data later on won't affect the window/environment that has already been created. You can also use For example, let's say that Panda3D's configuration file contains this line: fullscreen #f By default, Panda3D programs will run in a window; not fullscreen. However, if you do this, then by the time you instantiate ShowBase, you will have changed the fullscreen-flag to true, and your program will run in fullscreen.
#include "load_prc_file.h"
There are other ways to go to fullscreen. This is not necessarily the most straightforward approach, but it illustrates the point. You can get a more complete list of available config variables at runtime, with the
ConfigVariableManager::get_global_ptr()->list_variables();
For a more complete documentation about Panda3D's configuration system, view the original documentation file. © Carnegie Mellon University 2010 |