historical/toontown-classic.git/panda/include/config_physics.h
2024-01-16 11:20:27 -06:00

65 lines
1.7 KiB
C++

/**
* 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."
*
* @file config_physics.h
* @author charles
* @date 2000-07-17
*/
#ifndef CONFIG_PHYSICS_H
#define CONFIG_PHYSICS_H
#include "pandabase.h"
#include "notifyCategoryProxy.h"
#include "dconfig.h"
ConfigureDecl(config_physics, EXPCL_PANDA_PHYSICS, EXPTP_PANDA_PHYSICS);
NotifyCategoryDecl(physics, EXPCL_PANDA_PHYSICS, EXPTP_PANDA_PHYSICS);
extern EXPCL_PANDA_PHYSICS void init_libphysics();
// These macros get stripped out in a non-debug build (like asserts). Use them
// like cout but with paranthesis aroud the cout input. e.g. foo_debug("The
// value of bar is " << bar);
#ifndef NDEBUG //[
// Non-release build:
#define PHYSICS_DEBUG
#define physics_spam(msg) \
if (physics_cat.is_spam()) { \
physics_cat->spam() << msg << std::endl; \
} else {}
#define physics_debug(msg) \
if (physics_cat.is_debug()) { \
physics_cat->debug() << msg << std::endl; \
} else {}
#define physics_info(msg) \
physics_cat->info() << msg << std::endl
#define physics_warning(msg) \
physics_cat->warning() << msg << std::endl
#define physics_error(msg) \
physics_cat->error() << msg << std::endl
#else //][
// Release build:
#undef PHYSICS_DEBUG
#define physics_spam(msg) ((void)0)
#define physics_debug(msg) ((void)0)
#define physics_info(msg) ((void)0)
#define physics_warning(msg) ((void)0)
#define physics_error(msg) ((void)0)
#endif //]
#define audio_error(msg) \
audio_cat->error() << msg << std::endl
#endif // CONFIG_PHYSICS_H