1
0
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:
2012-07-11 01:28:00 -04:00
parent 5f78b33db4
commit a709e17069
1041 changed files with 7889 additions and 8070 deletions

View File

@ -254,7 +254,7 @@ class plKIAddEditBox : public pfGUIDialogProc
plKIMainProc *fMainProc;
public:
hsBool fEditing;
bool fEditing;
plKIAddEditBox( pfGUIListBoxMod *list, pfGUIDialogMod *p, plKIMainProc *mainProc )
{
@ -618,7 +618,7 @@ class pfKIListPlayerItem : public pfGUIListText
plKey fPlayerKey;
public:
pfKIListPlayerItem( plKey key, hsBool inRange = false ) : pfGUIListText(), fPlayerKey( key )
pfKIListPlayerItem( plKey key, bool inRange = false ) : pfGUIListText(), fPlayerKey( key )
{
static char str[ 256 ];
@ -648,11 +648,11 @@ class plKIMiniProc : public pfGUIDialogProc
pfGUIDialogMod *fMainDlg;
pfGUIListBoxMod *fChatList;
plKIFolder *fChatVaultFolder;
hsBool fChatting, fInited;
bool fChatting, fInited;
float fFadeOutTimer, fFadeOutDelay;
float fForeAlpha, fSelForeAlpha;
hsBool fLocalClientIsAdmin;
bool fLocalClientIsAdmin;
public:
@ -666,7 +666,7 @@ class plKIMiniProc : public pfGUIDialogProc
fLocalClientIsAdmin = false;
}
void SetLocalClientAsAdmin( hsBool yes ) { fLocalClientIsAdmin = yes; }
void SetLocalClientAsAdmin( bool yes ) { fLocalClientIsAdmin = yes; }
virtual void OnInit( void )
{
@ -736,7 +736,7 @@ class plKIMiniProc : public pfGUIDialogProc
void SetFadeOutDelay( hsScalar secs ) { fFadeOutDelay = secs; }
void EnterChatMode( hsBool enteringNotLeaving )
void EnterChatMode( bool enteringNotLeaving )
{
pfGUIEditBoxMod *edit = pfGUIEditBoxMod::ConvertNoRef( fDialog->GetControlFromTag( kKITestControl2 ) );
pfGUIControlMod *label = fDialog->GetControlFromTag( kKIStaticText );
@ -760,7 +760,7 @@ class plKIMiniProc : public pfGUIDialogProc
fChatting = enteringNotLeaving;
}
hsBool IsChatting( void ) const { return fChatting; }
bool IsChatting( void ) const { return fChatting; }
void GrabChatList( void )
{
@ -806,7 +806,7 @@ class plKIMiniProc : public pfGUIDialogProc
if( mbr != nil && mbr->GetAvatarKey() != nil )
{
hsBool inRange = ( i < plNetListenList::kMaxListenListSize || plNetListenList::kMaxListenListSize==-1) &&
bool inRange = ( i < plNetListenList::kMaxListenListSize || plNetListenList::kMaxListenListSize==-1) &&
( mbr->GetDistSq() < plNetListenList::kMaxListenDistSq );
userList->AddElement( new pfKIListPlayerItem( mbr->GetAvatarKey(), inRange ) );
@ -1223,7 +1223,7 @@ void pfKI::Init( void )
}
hsBool pfKI::MsgReceive( plMessage *msg )
bool pfKI::MsgReceive( plMessage *msg )
{
pfKIMsg *kiMsg = pfKIMsg::ConvertNoRef( msg );
if( kiMsg != nil )

View File

@ -86,7 +86,7 @@ class pfKI : public hsKeyedObject
CLASSNAME_REGISTER( pfKI );
GETINTERFACE_ANY( pfKI, plReceiver );
virtual hsBool MsgReceive( plMessage *msg );
virtual bool MsgReceive( plMessage *msg );
void Init( void );

View File

@ -81,14 +81,14 @@ pfPlayerBookMod::~pfPlayerBookMod()
//// IEval ///////////////////////////////////////////////////////////////////
hsBool pfPlayerBookMod::IEval( double secs, hsScalar del, uint32_t dirty )
bool pfPlayerBookMod::IEval( double secs, hsScalar del, uint32_t dirty )
{
return false;
}
//// MsgReceive //////////////////////////////////////////////////////////////
hsBool pfPlayerBookMod::MsgReceive( plMessage *msg )
bool pfPlayerBookMod::MsgReceive( plMessage *msg )
{
plGenRefMsg *refMsg = plGenRefMsg::ConvertNoRef( msg );
if( refMsg != nil )

View File

@ -79,7 +79,7 @@ class pfPlayerBookMod : public plSingleModifier
kRefSaveButton
};
virtual hsBool IEval( double secs, hsScalar del, uint32_t dirty ); // called only by owner object's Eval()
virtual bool IEval( double secs, hsScalar del, uint32_t dirty ); // called only by owner object's Eval()
public:
@ -89,7 +89,7 @@ class pfPlayerBookMod : public plSingleModifier
CLASSNAME_REGISTER( pfPlayerBookMod );
GETINTERFACE_ANY( pfPlayerBookMod, plSingleModifier );
virtual hsBool MsgReceive( plMessage* pMsg );
virtual bool MsgReceive( plMessage* pMsg );
virtual void Read( hsStream* s, hsResMgr* mgr );
virtual void Write( hsStream* s, hsResMgr* mgr );