mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-03 18:31:55 -04:00
a few more panda systems
This commit is contained in:
parent
1f59bdd691
commit
f558ff6450
@ -30,6 +30,7 @@
|
|||||||
#include "virtualFileMountMultifile.h"
|
#include "virtualFileMountMultifile.h"
|
||||||
#include "virtualFileMountSystem.h"
|
#include "virtualFileMountSystem.h"
|
||||||
#include "virtualFileSimple.h"
|
#include "virtualFileSimple.h"
|
||||||
|
#include "pandaSystem.h"
|
||||||
|
|
||||||
#include "dconfig.h"
|
#include "dconfig.h"
|
||||||
|
|
||||||
@ -172,6 +173,11 @@ init_libexpress() {
|
|||||||
VirtualFileSimple::init_type();
|
VirtualFileSimple::init_type();
|
||||||
|
|
||||||
init_system_type_handles();
|
init_system_type_handles();
|
||||||
|
|
||||||
|
#ifdef HAVE_ZLIB
|
||||||
|
PandaSystem *ps = PandaSystem::get_global_ptr();
|
||||||
|
ps->add_system("zlib");
|
||||||
|
#endif
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
@ -18,8 +18,9 @@
|
|||||||
|
|
||||||
#include "config_helix.h"
|
#include "config_helix.h"
|
||||||
#include "helixClient.h"
|
#include "helixClient.h"
|
||||||
|
#include "pandaSystem.h"
|
||||||
|
|
||||||
#include <dconfig.h>
|
#include "dconfig.h"
|
||||||
|
|
||||||
DLLAccessPath statClnt;
|
DLLAccessPath statClnt;
|
||||||
DLLAccessPath* GetDLLAccessPath()
|
DLLAccessPath* GetDLLAccessPath()
|
||||||
@ -32,5 +33,8 @@ NotifyCategoryDef(helix, "");
|
|||||||
|
|
||||||
ConfigureFn(config_helix) {
|
ConfigureFn(config_helix) {
|
||||||
HelixClient::init_type();
|
HelixClient::init_type();
|
||||||
|
|
||||||
|
PandaSystem *ps = PandaSystem::get_global_ptr();
|
||||||
|
ps->add_system("Helix");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -22,6 +22,7 @@
|
|||||||
#include "vrpnClient.h"
|
#include "vrpnClient.h"
|
||||||
#include "vrpnDialDevice.h"
|
#include "vrpnDialDevice.h"
|
||||||
#include "vrpnTrackerDevice.h"
|
#include "vrpnTrackerDevice.h"
|
||||||
|
#include "pandaSystem.h"
|
||||||
|
|
||||||
#include "dconfig.h"
|
#include "dconfig.h"
|
||||||
|
|
||||||
@ -35,4 +36,7 @@ ConfigureFn(config_vrpn) {
|
|||||||
VrpnClient::init_type();
|
VrpnClient::init_type();
|
||||||
VrpnDialDevice::init_type();
|
VrpnDialDevice::init_type();
|
||||||
VrpnTrackerDevice::init_type();
|
VrpnTrackerDevice::init_type();
|
||||||
|
|
||||||
|
PandaSystem *ps = PandaSystem::get_global_ptr();
|
||||||
|
ps->add_system("VRPN");
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user