mirror of
https://foundry.openuru.org/gitblit/r/CWE-ou-minkata.git
synced 2025-07-18 11:19:10 +00:00
Obliterate hsBool
This commit is contained in:
@ -59,9 +59,9 @@ You can contact Cyan Worlds, Inc. by email legal@cyan.com
|
||||
#include "plAvatar/plArmatureMod.h"
|
||||
#include "plAvatar/plAvCallbackAction.h"
|
||||
|
||||
hsBool plListener::fPrintDbgInfo = false;
|
||||
bool plListener::fPrintDbgInfo = false;
|
||||
|
||||
hsBool plListener::IEval(double secs, float del, uint32_t dirty)
|
||||
bool plListener::IEval(double secs, float del, uint32_t dirty)
|
||||
{
|
||||
// if (!plgAudioSys::Active())
|
||||
// return true;
|
||||
@ -204,7 +204,7 @@ hsBool plListener::IEval(double secs, float del, uint32_t dirty)
|
||||
return true;
|
||||
}
|
||||
|
||||
void plListener::ISetRef( const plKey &ref, hsBool binding, int type )
|
||||
void plListener::ISetRef( const plKey &ref, bool binding, int type )
|
||||
{
|
||||
if( binding )
|
||||
hsgResMgr::ResMgr()->AddViaNotify( ref, new plGenRefMsg( GetKey(), plGenRefMsg::kOnReplace, -1, type ), plRefFlags::kPassiveRef );
|
||||
@ -243,12 +243,12 @@ void plListener::ICheckAudio( void ) const
|
||||
plgAudioSys::SetMuted( true );
|
||||
}
|
||||
|
||||
hsBool plListener::MsgReceive(plMessage* msg)
|
||||
bool plListener::MsgReceive(plMessage* msg)
|
||||
{
|
||||
plSetListenerMsg *setMsg = plSetListenerMsg::ConvertNoRef( msg );
|
||||
if( setMsg != nil )
|
||||
{
|
||||
hsBool useVCam;
|
||||
bool useVCam;
|
||||
|
||||
if( setMsg->GetType() & plSetListenerMsg::kVCam )
|
||||
{
|
||||
|
@ -58,9 +58,9 @@ public:
|
||||
CLASSNAME_REGISTER( plListener );
|
||||
GETINTERFACE_ANY( plListener, plSingleModifier );
|
||||
|
||||
virtual hsBool MsgReceive(plMessage* msg);
|
||||
virtual bool MsgReceive(plMessage* msg);
|
||||
|
||||
static void ShowDebugInfo( hsBool s ) { fPrintDbgInfo = s; }
|
||||
static void ShowDebugInfo( bool s ) { fPrintDbgInfo = s; }
|
||||
|
||||
// Get info for which object these things are attached to - camera or refObject
|
||||
uint8_t GetAttachedPosType() { return (uint8_t)fPosRatio; }
|
||||
@ -83,13 +83,13 @@ protected:
|
||||
|
||||
plVirtualCam1* fVCam;
|
||||
|
||||
float fPosRatio, fFacingRatio, fVelRatio; // 0 is vCam, 1 is refObject
|
||||
hsBool fInitMe;
|
||||
float fPosRatio, fFacingRatio, fVelRatio; // 0 is vCam, 1 is refObject
|
||||
bool fInitMe;
|
||||
|
||||
static hsBool fPrintDbgInfo;
|
||||
static bool fPrintDbgInfo;
|
||||
|
||||
virtual hsBool IEval(double secs, float del, uint32_t dirty);
|
||||
void ISetRef( const plKey &ref, hsBool binding, int type );
|
||||
virtual bool IEval(double secs, float del, uint32_t dirty);
|
||||
void ISetRef( const plKey &ref, bool binding, int type );
|
||||
void ICheckAudio( void ) const;
|
||||
|
||||
void IEnsureVCamValid( void );
|
||||
|
@ -317,7 +317,7 @@ void plRandomSoundMod::Write(hsStream *s, hsResMgr *mgr)
|
||||
}
|
||||
}
|
||||
|
||||
void plRandomSoundMod::ForceSoundLoadState( hsBool loaded )
|
||||
void plRandomSoundMod::ForceSoundLoadState( bool loaded )
|
||||
{
|
||||
uint16_t i, j;
|
||||
|
||||
@ -370,7 +370,7 @@ void plRandomSoundMod::ForceSoundLoadState( hsBool loaded )
|
||||
}
|
||||
|
||||
// Overload this to handle volume changes
|
||||
hsBool plRandomSoundMod::MsgReceive(plMessage* msg)
|
||||
bool plRandomSoundMod::MsgReceive(plMessage* msg)
|
||||
{
|
||||
plAnimCmdMsg* anim = plAnimCmdMsg::ConvertNoRef(msg);
|
||||
if( anim )
|
||||
|
@ -72,7 +72,7 @@ protected:
|
||||
plRandomSoundModGroup *fGroups;
|
||||
std::vector<uint16_t> fActiveList; // list of sounds we're allowed to choose
|
||||
int fOldPriority; // old sound priority
|
||||
hsBool fFirstTimePlay;
|
||||
bool fFirstTimePlay;
|
||||
|
||||
virtual void IPlayNext();
|
||||
virtual void IPlayNextIfMaster();
|
||||
@ -93,8 +93,8 @@ public:
|
||||
|
||||
void SetCurrentGroup(uint16_t group);
|
||||
|
||||
void ForceSoundLoadState( hsBool loaded );
|
||||
hsBool MsgReceive(plMessage* msg);
|
||||
void ForceSoundLoadState( bool loaded );
|
||||
bool MsgReceive(plMessage* msg);
|
||||
float GetVolume();
|
||||
|
||||
// EXPORT ONLY
|
||||
|
Reference in New Issue
Block a user