mirror of
https://github.com/panda3d/panda3d.git
synced 2025-10-04 02:42:49 -04:00
68 lines
2.2 KiB
C
68 lines
2.2 KiB
C
// Filename: config_express.h
|
|
// Created by: cary (04Jan00)
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
//
|
|
// PANDA 3D SOFTWARE
|
|
// Copyright (c) Carnegie Mellon University. All rights reserved.
|
|
//
|
|
// All use of this software is subject to the terms of the revised BSD
|
|
// license. You should have received a copy of this license along
|
|
// with this source code in a file named "LICENSE."
|
|
//
|
|
////////////////////////////////////////////////////////////////////
|
|
|
|
#ifndef __CONFIG_EXPRESS_H__
|
|
#define __CONFIG_EXPRESS_H__
|
|
|
|
#include "pandabase.h"
|
|
#include "notifyCategoryProxy.h"
|
|
#include "dconfig.h"
|
|
|
|
#include "configVariableBool.h"
|
|
#include "configVariableInt.h"
|
|
|
|
ConfigureDecl(config_express, EXPCL_PANDAEXPRESS, EXPTP_PANDAEXPRESS);
|
|
NotifyCategoryDecl(express, EXPCL_PANDAEXPRESS, EXPTP_PANDAEXPRESS);
|
|
NotifyCategoryDecl(clock, EXPCL_PANDAEXPRESS, EXPTP_PANDAEXPRESS);
|
|
|
|
// Actually, we can't determine this config variable the normal way,
|
|
// because we must be able to access it at static init time. Instead
|
|
// of declaring it a global constant, we'll make it a member of
|
|
// MemoryUsage.
|
|
|
|
//extern EXPCL_PANDAEXPRESS const bool track_memory_usage;
|
|
|
|
EXPCL_PANDAEXPRESS bool get_use_high_res_clock();
|
|
EXPCL_PANDAEXPRESS bool get_paranoid_clock();
|
|
EXPCL_PANDAEXPRESS bool get_paranoid_inheritance();
|
|
EXPCL_PANDAEXPRESS bool get_verify_dcast();
|
|
|
|
extern ConfigVariableInt patchfile_window_size;
|
|
extern ConfigVariableInt patchfile_increment_size;
|
|
extern ConfigVariableInt patchfile_buffer_size;
|
|
extern ConfigVariableInt patchfile_zone_size;
|
|
|
|
extern ConfigVariableBool keep_temporary_files;
|
|
|
|
extern ConfigVariableInt multifile_encryption_iteration_count;
|
|
|
|
extern ConfigVariableBool vfs_case_sensitive;
|
|
extern ConfigVariableBool vfs_implicit_pz;
|
|
extern ConfigVariableBool vfs_auto_unwrap_pz;
|
|
|
|
extern EXPCL_PANDAEXPRESS ConfigVariableBool use_vfs;
|
|
|
|
extern EXPCL_PANDAEXPRESS ConfigVariableBool collect_tcp;
|
|
extern EXPCL_PANDAEXPRESS ConfigVariableDouble collect_tcp_interval;
|
|
|
|
// Expose the Config variable for Python access.
|
|
BEGIN_PUBLISH
|
|
typedef Config::Config<ConfigureGetConfig_config_express> ConfigExpress;
|
|
EXPCL_PANDAEXPRESS ConfigExpress &get_config_express();
|
|
END_PUBLISH
|
|
|
|
extern EXPCL_PANDAEXPRESS void init_libexpress();
|
|
|
|
#endif /* __CONFIG_UTIL_H__ */
|