74 lines
2.2 KiB
C++
74 lines
2.2 KiB
C++
// Filename: config_device.cxx
|
|
// Created by: drose (04May00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) 2001 - 2004, Disney Enterprises, Inc. All rights reserved
|
|
//
|
|
// All use of this software is subject to the terms of the Panda 3d
|
|
// Software license. You should have received a copy of this license
|
|
// along with this source code; you will also find a current copy of
|
|
// the license at http://etc.cmu.edu/panda3d/docs/license/ .
|
|
//
|
|
// To contact the maintainers of this program write to
|
|
// panda3d-general@lists.sourceforge.net .
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
|
|
#include "config_device.h"
|
|
#include "analogNode.h"
|
|
#include "buttonNode.h"
|
|
#include "clientAnalogDevice.h"
|
|
#include "clientBase.h"
|
|
#include "clientButtonDevice.h"
|
|
#include "clientDevice.h"
|
|
#include "clientDialDevice.h"
|
|
#include "clientTrackerDevice.h"
|
|
#include "dialNode.h"
|
|
#include "mouseAndKeyboard.h"
|
|
#include "trackerNode.h"
|
|
#include "virtualMouse.h"
|
|
|
|
#include "dconfig.h"
|
|
|
|
Configure(config_device);
|
|
NotifyCategoryDef(device, "");
|
|
|
|
const bool asynchronous_clients = config_device.GetBool("asynchronous-clients", true);
|
|
|
|
ConfigureFn(config_device) {
|
|
init_libdevice();
|
|
}
|
|
|
|
////////////////////////////////////////////////////////////////////
|
|
// Function: init_libdevice
|
|
// Description: Initializes the library. This must be called at
|
|
// least once before any of the functions or classes in
|
|
// this library can be used. Normally it will be
|
|
// called by the static initializers and need not be
|
|
// called explicitly, but special cases exist.
|
|
////////////////////////////////////////////////////////////////////
|
|
void
|
|
init_libdevice() {
|
|
static bool initialized = false;
|
|
if (initialized) {
|
|
return;
|
|
}
|
|
initialized = true;
|
|
|
|
AnalogNode::init_type();
|
|
ButtonNode::init_type();
|
|
ClientAnalogDevice::init_type();
|
|
ClientBase::init_type();
|
|
ClientButtonDevice::init_type();
|
|
ClientDevice::init_type();
|
|
ClientDialDevice::init_type();
|
|
ClientTrackerDevice::init_type();
|
|
DialNode::init_type();
|
|
MouseAndKeyboard::init_type();
|
|
TrackerNode::init_type();
|
|
VirtualMouse::init_type();
|
|
}
|