54 lines
1.8 KiB
C++
54 lines
1.8 KiB
C++
// Filename: config_util.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_UTIL_H__
|
|
#define __CONFIG_UTIL_H__
|
|
|
|
#include "pandabase.h"
|
|
#include "notifyCategoryProxy.h"
|
|
#include "configVariableSearchPath.h"
|
|
#include "configVariableEnum.h"
|
|
#include "configVariableDouble.h"
|
|
#include "bamEnums.h"
|
|
#include "dconfig.h"
|
|
|
|
class DSearchPath;
|
|
|
|
ConfigureDecl(config_util, EXPCL_PANDA_PUTIL, EXPTP_PANDA_PUTIL);
|
|
NotifyCategoryDecl(util, EXPCL_PANDA_PUTIL, EXPTP_PANDA_PUTIL);
|
|
NotifyCategoryDecl(bam, EXPCL_PANDA_PUTIL, EXPTP_PANDA_PUTIL);
|
|
|
|
// 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_PANDA_PUTIL const bool track_memory_usage;
|
|
|
|
extern EXPCL_PANDA_PUTIL ConfigVariableEnum<BamEnums::BamEndian> bam_endian;
|
|
extern EXPCL_PANDA_PUTIL ConfigVariableEnum<BamEnums::BamTextureMode> bam_texture_mode;
|
|
|
|
BEGIN_PUBLISH
|
|
EXPCL_PANDA_PUTIL ConfigVariableSearchPath &get_model_path();
|
|
EXPCL_PANDA_PUTIL ConfigVariableSearchPath &get_plugin_path();
|
|
END_PUBLISH
|
|
|
|
extern ConfigVariableDouble sleep_precision;
|
|
|
|
extern EXPCL_PANDA_PUTIL ConfigVariableBool preload_textures;
|
|
extern EXPCL_PANDA_PUTIL ConfigVariableBool preload_simple_textures;
|
|
|
|
extern EXPCL_PANDA_PUTIL void init_libputil();
|
|
|
|
#endif /* __CONFIG_UTIL_H__ */
|