This class is used as a namespace to group several global properties of Panda.
More...
Public Member Functions |
| void | add_system (const string &system) |
| | Intended for use by each subsystem to register itself at startup.
|
| int | get_num_systems () const |
| | Returns the number of Panda subsystems that have registered themselves.
|
| string | get_system (int n) const |
| | Returns the nth Panda subsystem that has registered itself.
|
| string | get_system_tag (const string &system, const string &tag) const |
| | Returns the value associated with the indicated tag for the given system.
|
| bool | has_system (const string &system) const |
| | Returns true if the current version of Panda claims to have the indicated subsystem installed, false otherwise.
|
| bool | heap_trim (size_t pad) |
| | Attempts to release memory back to the system, if possible.
|
|
| MAKE_SEQ (get_systems, get_num_systems, get_system) |
|
void | output (ostream &out) const |
| void | set_system_tag (const string &system, const string &tag, const string &value) |
| | Intended for use by each subsystem to register its set of capabilities at startup.
|
|
void | write (ostream &out) const |
Static Public Member Functions |
| static string | get_build_date () |
| | Returns a string representing the date and time at which this version of Panda (or at least dtool) was compiled, if available.
|
|
static TypeHandle | get_class_type () |
| static string | get_compiler () |
| | Returns a string representing the compiler that was used to generate this version of Panda, if it is available, or "unknown" if it is not.
|
| static string | get_distributor () |
| | Returns the string defined by the distributor of this version of Panda, or "homebuilt" if this version was built directly from the sources by the end-user.
|
| static PandaSystem * | get_global_ptr () |
| | Returns the global PandaSystem object.
|
| static int | get_major_version () |
| | Returns the major version number of the current version of Panda.
|
| static int | get_minor_version () |
| | Returns the minor version number of the current version of Panda.
|
| static string | get_p3d_coreapi_version_string () |
| | Returns the current version of Panda's Core API, expressed as a string of dot-delimited integers.
|
| static string | get_package_host_url () |
| | Returns the URL of the download server that provides the Panda3D distributable package currently running.
|
| static string | get_package_version_string () |
| | Returns the version of the Panda3D distributable package that provides this build of Panda.
|
| static string | get_platform () |
| | Returns a string representing the runtime platform that we are currently running on.
|
| static int | get_sequence_version () |
| | Returns the sequence version number of the current version of Panda.
|
| static string | get_version_string () |
| | Returns the current version of Panda, expressed as a string, e.g.
|
|
static void | init_type () |
| static bool | is_official_version () |
| | Returns true if current version of Panda claims to be an "official" version, that is, one that was compiled by an official distributor of Panda using a specific version of the panda source tree.
|
Protected Member Functions |
| | PandaSystem () |
| | Don't try to construct a PandaSystem object; there is only one of these, and it constructs itself.
|
| | ~PandaSystem () |
| | Don't try to destruct the global PandaSystem object.
|
Friends |
|
class | ConfigPageManager |
This class is used as a namespace to group several global properties of Panda.
Application developers can use this class to query the runtime version or capabilities of the current Panda environment.
Definition at line 29 of file pandaSystem.h.
Returns the current version of Panda's Core API, expressed as a string of dot-delimited integers.
There are usually four integers in this version, but this is not guaranteed.
The Core API is used during the runtime (plugin) environment only. This may be the empty string if the current version of Panda is not built to provide a particular Core API, which will be the normal case in a development SDK. However, you should not use this method to determine whether you are running in a runtime environment or not.
Definition at line 159 of file pandaSystem.cxx.
Returns the URL of the download server that provides the Panda3D distributable package currently running.
This can be used, along with the get_package_version_string(), to uniquely identify the running version of Panda among distributable Panda versions.
See get_package_version_string() for more information.
This string is set explicitly at compilation time. Normally, it should be set to a nonempty string only when building a Panda3D package for distribution.
Definition at line 134 of file pandaSystem.cxx.
References get_global_ptr().
Returns the version of the Panda3D distributable package that provides this build of Panda.
When the currently-executing version of Panda was loaded from a distributable package, such as via the browser plugin, then this string will be nonempty and will contain the corresponding version string. You can build applications that use this particular version of Panda by requesting it in the pdef file, using "panda3d", this version string, and the download host provided by get_package_host_url().
If this string is empty, then the currently-executing Panda was built independently, and is not part of a distributable package.
This string is set explicitly at compilation time. Normally, it should be set to a nonempty string only when building a Panda3D package for distribution.
Definition at line 109 of file pandaSystem.cxx.
References get_global_ptr().
Attempts to release memory back to the system, if possible.
The pad argument is the minimum amount of unused memory to keep in the heap (against future allocations). Any memory above that may be released to the system, reducing the memory size of this process. There is no guarantee that any memory may be released.
Returns true if any memory was actually released, false otherwise.
Definition at line 433 of file pandaSystem.cxx.
References MemoryHook::heap_trim().
Returns true if current version of Panda claims to be an "official" version, that is, one that was compiled by an official distributor of Panda using a specific version of the panda source tree.
If this is true, there will not be a "c" at the end of the version string returned by get_version_string().
Note that we must take the distributor's word for it here.
Definition at line 222 of file pandaSystem.cxx.