Panda3D
|
This class is the base class for both ConfigVariableList and ConfigVariable (and hence for all of the ConfigVariableBool, ConfigVaribleString, etc. More...
#include "configVariableBase.h"
Public Member Functions | |
bool | clear_local_value () |
Removes the local value defined for this variable, and allows its value to be once again retrieved from the .prc files. More... | |
const string & | get_description () const |
Returns the brief description of this variable, if it has been defined. More... | |
int | get_flags () const |
Returns the flags value as set by set_flags(). More... | |
const string & | get_name () const |
Returns the name of the variable. More... | |
int | get_trust_level () const |
Returns the minimum trust_level a prc file must demonstrate in order to redefine the value for this variable. More... | |
ValueType | get_value_type () const |
Returns the stated type of this variable. More... | |
bool | has_local_value () const |
Returns true if this variable's value has been shadowed by a local assignment (as created via make_local_value()), or false otherwise. More... | |
bool | has_value () const |
Returns true if this variable has an explicit value, either from a prc file or locally set, or false if variable has its default value. More... | |
bool | is_closed () const |
Returns true if the variable is not trusted by any prc file (and hence cannot be modified from its compiled-in default value), or false for the normal case, in which the variable can be modified by any prc file at or above its trust level (see get_trust_level()). More... | |
bool | is_dynamic () const |
Returns true if the variable was indicated as "dynamic" by its constructor, indicating that its name was dynamically generated, possibly from a large pool, and it should not be listed along with the other variables. More... | |
void | output (ostream &out) const |
void | write (ostream &out) const |
Additional Inherited Members | |
![]() | |
enum | ValueType { VT_undefined, VT_list, VT_string, VT_filename, VT_bool, VT_int, VT_double, VT_enum, VT_search_path, VT_int64, VT_color } |
enum | VariableFlags { F_trust_level_mask = 0x00000fff, F_open = 0x00001000, F_closed = 0x00002000, F_dynamic = 0x00004000, F_dconfig = 0x00008000 } |
This class is the base class for both ConfigVariableList and ConfigVariable (and hence for all of the ConfigVariableBool, ConfigVaribleString, etc.
classes). It collects together the common interface for all generic ConfigVariables.
Mostly, this class serves as a thin wrapper around ConfigVariableCore and/or ConfigDeclaration, more or less duplicating the interface presented there.
Definition at line 48 of file configVariableBase.h.
|
inline |
Removes the local value defined for this variable, and allows its value to be once again retrieved from the .prc files.
Returns true if the value was successfully removed, false if it did not exist in the first place.
Definition at line 159 of file configVariableBase.I.
References ConfigVariableCore::clear_local_value(), and has_local_value().
Referenced by is_dynamic().
|
inline |
Returns the brief description of this variable, if it has been defined.
Definition at line 72 of file configVariableBase.I.
References ConfigVariableCore::get_description(), and get_flags().
Referenced by get_value_type().
|
inline |
Returns the flags value as set by set_flags().
This includes the trust level and some other settings. See the individual methods is_closed(), get_trust_level(), etc. to pull out the semantic meaning of these flags individually.
Definition at line 87 of file configVariableBase.I.
References ConfigVariableCore::get_flags(), and is_closed().
Referenced by get_description().
|
inline |
Returns the name of the variable.
Definition at line 47 of file configVariableBase.I.
References ConfigVariableCore::get_name(), and get_value_type().
Referenced by ConfigVariableCore::get_declaration(), ConfigVariableColor::get_default_value(), ConfigVariableColor::get_value(), ConfigVariableCore::set_default_value(), ConfigVariableCore::set_description(), ConfigVariableCore::set_flags(), and ConfigVariableCore::set_value_type().
|
inline |
Returns the minimum trust_level a prc file must demonstrate in order to redefine the value for this variable.
Arguably, this should be called the "mistrust level", since the larger the value, the more suspicious we are of prc files. This value is not used if is_closed() returns true, which indicates no file may be trusted.
This value only has effect in a release build (specifically, when PRC_RESPECT_TRUST_LEVEL is defined true in Config.pp).
Definition at line 128 of file configVariableBase.I.
References ConfigVariableCore::get_trust_level(), and is_dynamic().
Referenced by is_closed().
|
inline |
Returns the stated type of this variable.
This should be VT_list, unless a later variable declaration has changed it.
Definition at line 60 of file configVariableBase.I.
References get_description(), and ConfigVariableCore::get_value_type().
Referenced by get_name().
|
inline |
Returns true if this variable's value has been shadowed by a local assignment (as created via make_local_value()), or false otherwise.
Definition at line 172 of file configVariableBase.I.
References ConfigVariableCore::has_local_value(), and has_value().
Referenced by clear_local_value(), ConfigVariableCore::get_declaration(), ConfigVariableCore::get_num_declarations(), and ConfigVariableCore::has_value().
|
inline |
Returns true if this variable has an explicit value, either from a prc file or locally set, or false if variable has its default value.
Definition at line 185 of file configVariableBase.I.
References ConfigVariableCore::has_value().
Referenced by wglGraphicsStateGuardian::choose_pixel_format(), GraphicsStateGuardian::get_copy_texture_inverted(), has_local_value(), EggLoader::make_polyset(), and Lens::write_datagram().
|
inline |
Returns true if the variable is not trusted by any prc file (and hence cannot be modified from its compiled-in default value), or false for the normal case, in which the variable can be modified by any prc file at or above its trust level (see get_trust_level()).
This value only has effect in a release build (specifically, when PRC_RESPECT_TRUST_LEVEL is defined true in Config.pp).
Definition at line 107 of file configVariableBase.I.
References get_trust_level(), and ConfigVariableCore::is_closed().
Referenced by get_flags(), and ConfigVariableCore::make_local_value().
|
inline |
Returns true if the variable was indicated as "dynamic" by its constructor, indicating that its name was dynamically generated, possibly from a large pool, and it should not be listed along with the other variables.
Definition at line 143 of file configVariableBase.I.
References clear_local_value(), and ConfigVariableCore::is_dynamic().
Referenced by get_trust_level().