Remove unneeded HAVE_ flags from dtool_config.h generation

This commit is contained in:
rdb 2015-01-04 20:34:59 +01:00
parent 33ef39b7db
commit 936fa653b0
14 changed files with 25 additions and 88 deletions

View File

@ -293,18 +293,9 @@ $[cdefine PYTHON_FRAMEWORK]
/* Define if we have RAD game tools, Miles Sound System installed. */ /* Define if we have RAD game tools, Miles Sound System installed. */
$[cdefine HAVE_RAD_MSS] $[cdefine HAVE_RAD_MSS]
/* Define if we have FMODex installed. */
$[cdefine HAVE_FMODEX]
/* Define if we have OpenAL installed. */
$[cdefine HAVE_OPENAL]
/* Define if we have Freetype 2.0 or better available. */ /* Define if we have Freetype 2.0 or better available. */
$[cdefine HAVE_FREETYPE] $[cdefine HAVE_FREETYPE]
/* Define if we are using SpeedTree. */
$[cdefine HAVE_SPEEDTREE]
/* Define if we want to compile in a default font. */ /* Define if we want to compile in a default font. */
$[cdefine COMPILE_IN_DEFAULT_FONT] $[cdefine COMPILE_IN_DEFAULT_FONT]
@ -413,9 +404,6 @@ $[cdefine HAVE_FFMPEG]
$[cdefine HAVE_SWSCALE] $[cdefine HAVE_SWSCALE]
$[cdefine HAVE_SWRESAMPLE] $[cdefine HAVE_SWRESAMPLE]
/* Define if we have ODE installed and want to build for ODE. */
$[cdefine HAVE_ODE]
/* Define if we have AWESOMIUM installed and want to build for AWESOMIUM. */ /* Define if we have AWESOMIUM installed and want to build for AWESOMIUM. */
$[cdefine HAVE_AWESOMIUM] $[cdefine HAVE_AWESOMIUM]

View File

@ -2037,11 +2037,8 @@ DTOOL_CONFIG=[
("HAVE_BMP", '1', '1'), ("HAVE_BMP", '1', '1'),
("HAVE_PNM", '1', '1'), ("HAVE_PNM", '1', '1'),
("HAVE_VORBIS", 'UNDEF', 'UNDEF'), ("HAVE_VORBIS", 'UNDEF', 'UNDEF'),
("HAVE_FMODEX", 'UNDEF', 'UNDEF'),
("HAVE_OPENAL", 'UNDEF', 'UNDEF'),
("HAVE_NVIDIACG", 'UNDEF', 'UNDEF'), ("HAVE_NVIDIACG", 'UNDEF', 'UNDEF'),
("HAVE_FREETYPE", 'UNDEF', 'UNDEF'), ("HAVE_FREETYPE", 'UNDEF', 'UNDEF'),
("HAVE_SPEEDTREE", 'UNDEF', 'UNDEF'),
("HAVE_FFTW", 'UNDEF', 'UNDEF'), ("HAVE_FFTW", 'UNDEF', 'UNDEF'),
("HAVE_OPENSSL", 'UNDEF', 'UNDEF'), ("HAVE_OPENSSL", 'UNDEF', 'UNDEF'),
("HAVE_NET", 'UNDEF', 'UNDEF'), ("HAVE_NET", 'UNDEF', 'UNDEF'),
@ -2053,7 +2050,6 @@ DTOOL_CONFIG=[
("HAVE_SWSCALE", 'UNDEF', 'UNDEF'), ("HAVE_SWSCALE", 'UNDEF', 'UNDEF'),
("HAVE_SWRESAMPLE", 'UNDEF', 'UNDEF'), ("HAVE_SWRESAMPLE", 'UNDEF', 'UNDEF'),
("HAVE_ARTOOLKIT", 'UNDEF', 'UNDEF'), ("HAVE_ARTOOLKIT", 'UNDEF', 'UNDEF'),
("HAVE_ODE", 'UNDEF', 'UNDEF'),
("HAVE_OPENCV", 'UNDEF', 'UNDEF'), ("HAVE_OPENCV", 'UNDEF', 'UNDEF'),
("HAVE_DIRECTCAM", 'UNDEF', 'UNDEF'), ("HAVE_DIRECTCAM", 'UNDEF', 'UNDEF'),
("HAVE_SQUISH", 'UNDEF', 'UNDEF'), ("HAVE_SQUISH", 'UNDEF', 'UNDEF'),
@ -3126,6 +3122,9 @@ if (not RUNTIME):
TargetAdd('p3mathutil_composite1.obj', opts=OPTS, input='p3mathutil_composite1.cxx') TargetAdd('p3mathutil_composite1.obj', opts=OPTS, input='p3mathutil_composite1.cxx')
TargetAdd('p3mathutil_composite2.obj', opts=OPTS, input='p3mathutil_composite2.cxx') TargetAdd('p3mathutil_composite2.obj', opts=OPTS, input='p3mathutil_composite2.cxx')
IGATEFILES=GetDirectoryContents('panda/src/mathutil', ["*.h", "*_composite*.cxx"]) IGATEFILES=GetDirectoryContents('panda/src/mathutil', ["*.h", "*_composite*.cxx"])
for ifile in IGATEFILES[:]:
if "_src." in ifile:
IGATEFILES.remove(ifile)
TargetAdd('libp3mathutil.in', opts=OPTS, input=IGATEFILES) TargetAdd('libp3mathutil.in', opts=OPTS, input=IGATEFILES)
TargetAdd('libp3mathutil.in', opts=['IMOD:panda3d.core', 'ILIB:libp3mathutil', 'SRCDIR:panda/src/mathutil']) TargetAdd('libp3mathutil.in', opts=['IMOD:panda3d.core', 'ILIB:libp3mathutil', 'SRCDIR:panda/src/mathutil'])
TargetAdd('libp3mathutil_igate.obj', input='libp3mathutil.in', opts=["DEPENDENCYONLY"]) TargetAdd('libp3mathutil_igate.obj', input='libp3mathutil.in', opts=["DEPENDENCYONLY"])

View File

@ -525,9 +525,9 @@ def oscmd(cmd, ignoreError = False):
if "interrogate" in cmd.split(" ", 1)[0] and GetVerbose(): if "interrogate" in cmd.split(" ", 1)[0] and GetVerbose():
print(ColorText("red", "Interrogate failed, retrieving debug output...")) print(ColorText("red", "Interrogate failed, retrieving debug output..."))
if sys.platform == "win32": if sys.platform == "win32":
os.spawnl(os.P_WAIT, exe, cmd.split(" ", 1)[0] + " -v " + cmd.split(" ", 1)[1]) os.spawnl(os.P_WAIT, exe, cmd.split(" ", 1)[0] + " -vv " + cmd.split(" ", 1)[1])
else: else:
os.system(cmd.split(" ", 1)[0] + " -v " + cmd.split(" ", 1)[1]) os.system(cmd.split(" ", 1)[0] + " -vv " + cmd.split(" ", 1)[1])
exit("The following command returned a non-zero value: " + str(cmd)) exit("The following command returned a non-zero value: " + str(cmd))
return res return res

View File

@ -13,8 +13,6 @@
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_OPENAL //[
#include "config_openalAudio.h" #include "config_openalAudio.h"
#include "openalAudioManager.h" #include "openalAudioManager.h"
@ -65,5 +63,3 @@ get_audio_manager_func_openal_audio() {
init_libOpenALAudio(); init_libOpenALAudio();
return &Create_OpenALAudioManager; return &Create_OpenALAudioManager;
} }
#endif //]

View File

@ -17,7 +17,6 @@
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_OPENAL //[
#include "notifyCategoryProxy.h" #include "notifyCategoryProxy.h"
#include "dconfig.h" #include "dconfig.h"
#include "audioManager.h" #include "audioManager.h"
@ -28,6 +27,4 @@ NotifyCategoryDecl(openalAudio, EXPCL_OPENAL_AUDIO, EXPTP_OPENAL_AUDIO);
extern EXPCL_OPENAL_AUDIO void init_libOpenALAudio(); extern EXPCL_OPENAL_AUDIO void init_libOpenALAudio();
extern "C" EXPCL_OPENAL_AUDIO Create_AudioManager_proc *get_audio_manager_func_openal_audio(); extern "C" EXPCL_OPENAL_AUDIO Create_AudioManager_proc *get_audio_manager_func_openal_audio();
#endif //]
#endif // CONFIG_OPENALAUDIO_H #endif // CONFIG_OPENALAUDIO_H

View File

@ -20,8 +20,6 @@
#include "config_fmodAudio.h" #include "config_fmodAudio.h"
#include "dcast.h" #include "dcast.h"
#ifdef HAVE_FMODEX //[
//Panda headers. //Panda headers.
#include "config_audio.h" #include "config_audio.h"
#include "config_util.h" #include "config_util.h"
@ -897,5 +895,3 @@ get_cache_limit() const {
//return _cache_limit; //return _cache_limit;
return 0; return 0;
} }
#endif //]

View File

@ -76,8 +76,6 @@
#include "pandabase.h" #include "pandabase.h"
#include "pset.h" #include "pset.h"
#ifdef HAVE_FMODEX //[
#include "audioManager.h" #include "audioManager.h"
//The Includes needed for FMOD //The Includes needed for FMOD
@ -235,6 +233,4 @@ private:
EXPCL_FMOD_AUDIO AudioManager *Create_FmodAudioManager(); EXPCL_FMOD_AUDIO AudioManager *Create_FmodAudioManager();
#endif //]
#endif /* __FMOD_AUDIO_MANAGER_H__ */ #endif /* __FMOD_AUDIO_MANAGER_H__ */

View File

@ -19,8 +19,6 @@
#include "pandabase.h" #include "pandabase.h"
#include "dcast.h" #include "dcast.h"
#ifdef HAVE_FMODEX //[
//Panda Headers //Panda Headers
#include "config_audio.h" #include "config_audio.h"
#include "config_fmodAudio.h" #include "config_fmodAudio.h"
@ -1107,6 +1105,3 @@ seek_callback(void *handle, unsigned int pos, void *user_data) {
return FMOD_OK; return FMOD_OK;
} }
} }
#endif //]

View File

@ -66,15 +66,11 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifndef __FMOD_AUDIO_SOUND_H__ #ifndef __FMOD_AUDIO_SOUND_H__
#define __FMOD_AUDIO_SOUND_H__ #define __FMOD_AUDIO_SOUND_H__
#include <pandabase.h> #include <pandabase.h>
#ifdef HAVE_FMODEX //[
#include "audioSound.h" #include "audioSound.h"
#include "reMutex.h" #include "reMutex.h"
#include "fmodAudioManager.h" #include "fmodAudioManager.h"
@ -257,11 +253,4 @@ class EXPCL_FMOD_AUDIO FmodAudioSound : public AudioSound {
#include "fmodAudioSound.I" #include "fmodAudioSound.I"
#endif //]
#endif /* __FMOD_AUDIO_SOUND_H__ */ #endif /* __FMOD_AUDIO_SOUND_H__ */

View File

@ -2,4 +2,3 @@
#include "config_fmodAudio.cxx" #include "config_fmodAudio.cxx"
#include "fmodAudioManager.cxx" #include "fmodAudioManager.cxx"
#include "fmodAudioSound.cxx" #include "fmodAudioSound.cxx"

View File

@ -15,8 +15,6 @@
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_OPENAL //[
//Panda headers. //Panda headers.
#include "config_audio.h" #include "config_audio.h"
#include "config_util.h" #include "config_util.h"
@ -1109,5 +1107,3 @@ discard_excess_cache(int sample_limit) {
delete sd; delete sd;
} }
} }
#endif //]

View File

@ -18,7 +18,6 @@
#define __OPENAL_AUDIO_MANAGER_H__ #define __OPENAL_AUDIO_MANAGER_H__
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_OPENAL //[
#include "audioManager.h" #include "audioManager.h"
#include "plist.h" #include "plist.h"
@ -43,11 +42,11 @@ extern void alc_audio_errcheck(const char *context,ALCdevice* device);
class EXPCL_OPENAL_AUDIO OpenALAudioManager : public AudioManager { class EXPCL_OPENAL_AUDIO OpenALAudioManager : public AudioManager {
class SoundData; class SoundData;
friend class OpenALAudioSound; friend class OpenALAudioSound;
friend class OpenALSoundData; friend class OpenALSoundData;
public:
public:
//Constructor and Destructor //Constructor and Destructor
OpenALAudioManager(); OpenALAudioManager();
virtual ~OpenALAudioManager(); virtual ~OpenALAudioManager();
@ -55,18 +54,18 @@ class EXPCL_OPENAL_AUDIO OpenALAudioManager : public AudioManager {
virtual void shutdown(); virtual void shutdown();
virtual bool is_valid(); virtual bool is_valid();
virtual PT(AudioSound) get_sound(const string&, bool positional = false, int mode=SM_heuristic); virtual PT(AudioSound) get_sound(const string&, bool positional = false, int mode=SM_heuristic);
virtual PT(AudioSound) get_sound(MovieAudio *sound, bool positional = false, int mode=SM_heuristic); virtual PT(AudioSound) get_sound(MovieAudio *sound, bool positional = false, int mode=SM_heuristic);
virtual void uncache_sound(const string&); virtual void uncache_sound(const string&);
virtual void clear_cache(); virtual void clear_cache();
virtual void set_cache_limit(unsigned int count); virtual void set_cache_limit(unsigned int count);
virtual unsigned int get_cache_limit() const; virtual unsigned int get_cache_limit() const;
virtual void set_volume(PN_stdfloat); virtual void set_volume(PN_stdfloat);
virtual PN_stdfloat get_volume() const; virtual PN_stdfloat get_volume() const;
void set_play_rate(PN_stdfloat play_rate); void set_play_rate(PN_stdfloat play_rate);
PN_stdfloat get_play_rate() const; PN_stdfloat get_play_rate() const;
@ -80,7 +79,7 @@ class EXPCL_OPENAL_AUDIO OpenALAudioManager : public AudioManager {
// ux, uy and uz are the respective components of a unit up-vector // ux, uy and uz are the respective components of a unit up-vector
// These changes will NOT be invoked until audio_3d_update() is called. // These changes will NOT be invoked until audio_3d_update() is called.
virtual void audio_3d_set_listener_attributes(PN_stdfloat px, PN_stdfloat py, PN_stdfloat pz, virtual void audio_3d_set_listener_attributes(PN_stdfloat px, PN_stdfloat py, PN_stdfloat pz,
PN_stdfloat vx, PN_stdfloat xy, PN_stdfloat xz, PN_stdfloat vx, PN_stdfloat xy, PN_stdfloat xz,
PN_stdfloat fx, PN_stdfloat fy, PN_stdfloat fz, PN_stdfloat fx, PN_stdfloat fy, PN_stdfloat fz,
PN_stdfloat ux, PN_stdfloat uy, PN_stdfloat uz); PN_stdfloat ux, PN_stdfloat uy, PN_stdfloat uz);
@ -88,7 +87,7 @@ class EXPCL_OPENAL_AUDIO OpenALAudioManager : public AudioManager {
PN_stdfloat *vx, PN_stdfloat *vy, PN_stdfloat *vz, PN_stdfloat *vx, PN_stdfloat *vy, PN_stdfloat *vz,
PN_stdfloat *fx, PN_stdfloat *fy, PN_stdfloat *fz, PN_stdfloat *fx, PN_stdfloat *fy, PN_stdfloat *fz,
PN_stdfloat *ux, PN_stdfloat *uy, PN_stdfloat *uz); PN_stdfloat *ux, PN_stdfloat *uy, PN_stdfloat *uz);
// Control the "relative distance factor" for 3D spacialized audio in units-per-foot. Default is 1.0 // Control the "relative distance factor" for 3D spacialized audio in units-per-foot. Default is 1.0
// OpenAL has no distance factor but we use this as a scale // OpenAL has no distance factor but we use this as a scale
// on the min/max distances of sounds to preserve FMOD compatibility. // on the min/max distances of sounds to preserve FMOD compatibility.
@ -121,7 +120,7 @@ private:
bool can_use_audio(MovieAudioCursor *source); bool can_use_audio(MovieAudioCursor *source);
bool should_load_audio(MovieAudioCursor *source, int mode); bool should_load_audio(MovieAudioCursor *source, int mode);
SoundData *get_sound_data(MovieAudio *source, int mode); SoundData *get_sound_data(MovieAudio *source, int mode);
// Tell the manager that the sound dtor was called. // Tell the manager that the sound dtor was called.
@ -129,12 +128,12 @@ private:
void increment_client_count(SoundData *sd); void increment_client_count(SoundData *sd);
void decrement_client_count(SoundData *sd); void decrement_client_count(SoundData *sd);
void discard_excess_cache(int limit); void discard_excess_cache(int limit);
void starting_sound(OpenALAudioSound* audio); void starting_sound(OpenALAudioSound* audio);
void stopping_sound(OpenALAudioSound* audio); void stopping_sound(OpenALAudioSound* audio);
void cleanup(); void cleanup();
private: private:
// This global lock protects all access to OpenAL library interfaces. // This global lock protects all access to OpenAL library interfaces.
static ReMutex _lock; static ReMutex _lock;
@ -144,7 +143,7 @@ private:
// around for a little while, since it is common to // around for a little while, since it is common to
// stop using a sound for a brief moment and then // stop using a sound for a brief moment and then
// quickly resume. // quickly resume.
typedef plist<void *> ExpirationQueue; typedef plist<void *> ExpirationQueue;
ExpirationQueue _expiring_samples; ExpirationQueue _expiring_samples;
ExpirationQueue _expiring_streams; ExpirationQueue _expiring_streams;
@ -175,16 +174,16 @@ private:
ExpirationQueue::iterator _expire; ExpirationQueue::iterator _expire;
}; };
typedef phash_map<string, SoundData *> SampleCache; typedef phash_map<string, SoundData *> SampleCache;
SampleCache _sample_cache; SampleCache _sample_cache;
typedef phash_set<PT(OpenALAudioSound)> SoundsPlaying; typedef phash_set<PT(OpenALAudioSound)> SoundsPlaying;
SoundsPlaying _sounds_playing; SoundsPlaying _sounds_playing;
typedef phash_set<OpenALAudioSound *> AllSounds; typedef phash_set<OpenALAudioSound *> AllSounds;
AllSounds _all_sounds; AllSounds _all_sounds;
// State: // State:
int _cache_limit; int _cache_limit;
PN_stdfloat _volume; PN_stdfloat _volume;
@ -195,13 +194,13 @@ private:
static int _active_managers; static int _active_managers;
static bool _openal_active; static bool _openal_active;
unsigned int _concurrent_sound_limit; unsigned int _concurrent_sound_limit;
bool _is_valid; bool _is_valid;
typedef pset<OpenALAudioManager *> Managers; typedef pset<OpenALAudioManager *> Managers;
static Managers *_managers; static Managers *_managers;
static ALCdevice* _device; static ALCdevice* _device;
static ALCcontext* _context; static ALCcontext* _context;
// cache of openal sources, use only for playing sounds // cache of openal sources, use only for playing sounds
@ -232,7 +231,7 @@ private:
return get_class_type(); return get_class_type();
} }
virtual TypeHandle force_init_type() { virtual TypeHandle force_init_type() {
init_type(); init_type();
return get_class_type(); return get_class_type();
} }
@ -247,7 +246,4 @@ private:
EXPCL_OPENAL_AUDIO AudioManager *Create_OpenALAudioManager(); EXPCL_OPENAL_AUDIO AudioManager *Create_OpenALAudioManager();
#endif //]
#endif /* __OPENAL_AUDIO_MANAGER_H__ */ #endif /* __OPENAL_AUDIO_MANAGER_H__ */

View File

@ -15,8 +15,6 @@
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_OPENAL //[
//Panda Headers //Panda Headers
#include "throw_event.h" #include "throw_event.h"
#include "openalAudioSound.h" #include "openalAudioSound.h"
@ -916,5 +914,3 @@ status() const {
return AudioSound::PLAYING; return AudioSound::PLAYING;
} }
} }
#endif //]

View File

@ -13,15 +13,11 @@
// //
//////////////////////////////////////////////////////////////////// ////////////////////////////////////////////////////////////////////
#ifndef __OPENAL_AUDIO_SOUND_H__ #ifndef __OPENAL_AUDIO_SOUND_H__
#define __OPENAL_AUDIO_SOUND_H__ #define __OPENAL_AUDIO_SOUND_H__
#include "pandabase.h" #include "pandabase.h"
#ifdef HAVE_OPENAL //[
#include "audioSound.h" #include "audioSound.h"
#include "movieAudioCursor.h" #include "movieAudioCursor.h"
#include "trueClock.h" #include "trueClock.h"
@ -232,6 +228,4 @@ private:
#include "openalAudioSound.I" #include "openalAudioSound.I"
#endif //]
#endif /* __OPENAL_AUDIO_SOUND_H__ */ #endif /* __OPENAL_AUDIO_SOUND_H__ */