2005-02-09 05:20:49 +00:00
|
|
|
#include "global.h"
|
|
|
|
|
#include "MessageManager.h"
|
|
|
|
|
#include "Foreach.h"
|
|
|
|
|
#include "RageUtil.h"
|
2005-07-12 03:07:54 +00:00
|
|
|
#include "RageThreads.h"
|
2005-02-24 12:27:30 +00:00
|
|
|
#include "EnumHelper.h"
|
2005-02-09 05:20:49 +00:00
|
|
|
|
2005-07-12 03:07:54 +00:00
|
|
|
#include <set>
|
|
|
|
|
#include <map>
|
|
|
|
|
|
2005-02-09 05:20:49 +00:00
|
|
|
MessageManager* MESSAGEMAN = NULL; // global and accessable from anywhere in our program
|
|
|
|
|
|
|
|
|
|
|
2006-01-04 22:30:51 +00:00
|
|
|
static const char *MessageNames[] = {
|
2005-10-28 01:44:19 +00:00
|
|
|
"CurrentGameChanged",
|
2005-05-07 08:34:20 +00:00
|
|
|
"CurrentStyleChanged",
|
2005-07-25 03:59:24 +00:00
|
|
|
"PlayModeChanged",
|
2005-02-24 12:27:30 +00:00
|
|
|
"CurrentSongChanged",
|
2005-02-25 05:23:29 +00:00
|
|
|
"CurrentStepsP1Changed",
|
|
|
|
|
"CurrentStepsP2Changed",
|
2005-05-18 07:14:19 +00:00
|
|
|
"CurrentCourseChanged",
|
|
|
|
|
"CurrentTrailP1Changed",
|
|
|
|
|
"CurrentTrailP2Changed",
|
2005-10-10 04:36:04 +00:00
|
|
|
"GameplayLeadInChanged",
|
2005-02-25 05:23:29 +00:00
|
|
|
"EditStepsTypeChanged",
|
|
|
|
|
"EditSourceStepsChanged",
|
|
|
|
|
"EditSourceStepsTypeChanged",
|
2005-08-14 07:29:48 +00:00
|
|
|
"PreferredDifficutyP1Changed",
|
|
|
|
|
"PreferredDifficutyP2Changed",
|
|
|
|
|
"PreferredCourseDifficutyP1Changed",
|
|
|
|
|
"PreferredCourseDifficutyP2Changed",
|
2005-06-26 21:31:07 +00:00
|
|
|
"EditCourseEntryIndexChanged",
|
2005-08-04 21:13:29 +00:00
|
|
|
"EditLocalProfileIDChanged",
|
2005-04-09 09:34:54 +00:00
|
|
|
"GoalCompleteP1",
|
|
|
|
|
"GoalCompleteP2",
|
2005-04-24 11:03:02 +00:00
|
|
|
"NoteCrossed",
|
|
|
|
|
"NoteWillCrossIn500Ms",
|
|
|
|
|
"NoteWillCrossIn1000Ms",
|
|
|
|
|
"NoteWillCrossIn1500Ms",
|
2005-05-01 06:42:30 +00:00
|
|
|
"CardRemovedP1",
|
|
|
|
|
"CardRemovedP2",
|
2005-05-01 22:59:00 +00:00
|
|
|
"BeatCrossed",
|
2005-05-02 21:33:02 +00:00
|
|
|
"MenuUpP1",
|
|
|
|
|
"MenuUpP2",
|
|
|
|
|
"MenuDownP1",
|
|
|
|
|
"MenuDownP2",
|
|
|
|
|
"MenuLeftP1",
|
|
|
|
|
"MenuLeftP2",
|
|
|
|
|
"MenuRightP1",
|
|
|
|
|
"MenuRightP2",
|
2005-05-04 09:58:12 +00:00
|
|
|
"MadeChoiceP1",
|
|
|
|
|
"MadeChoiceP2",
|
2005-05-06 19:51:29 +00:00
|
|
|
"CoinInserted",
|
2005-05-07 00:27:31 +00:00
|
|
|
"SideJoinedP1",
|
|
|
|
|
"SideJoinedP2",
|
|
|
|
|
"PlayersFinalized",
|
2005-05-19 23:29:39 +00:00
|
|
|
"AssistTickChanged",
|
|
|
|
|
"AutosyncChanged",
|
2005-06-23 08:05:09 +00:00
|
|
|
"PreferredSongGroupChanged",
|
|
|
|
|
"PreferredCourseGroupChanged",
|
2005-09-09 21:49:29 +00:00
|
|
|
"SortOrderChanged",
|
2005-09-12 06:21:30 +00:00
|
|
|
"LessonTry1",
|
|
|
|
|
"LessonTry2",
|
|
|
|
|
"LessonTry3",
|
|
|
|
|
"LessonCleared",
|
|
|
|
|
"LessonFailed",
|
2005-11-29 23:15:11 +00:00
|
|
|
"StorageDevicesChanged",
|
2005-02-24 12:27:30 +00:00
|
|
|
};
|
2005-08-14 07:29:48 +00:00
|
|
|
XToString( Message, NUM_Message );
|
2005-02-24 12:27:30 +00:00
|
|
|
|
2005-07-12 03:07:54 +00:00
|
|
|
static RageMutex g_Mutex( "MessageManager" );
|
|
|
|
|
|
|
|
|
|
typedef set<IMessageSubscriber*> SubscribersSet;
|
|
|
|
|
static map<CString,SubscribersSet> g_MessageToSubscribers;
|
2005-02-24 12:27:30 +00:00
|
|
|
|
2005-02-09 05:20:49 +00:00
|
|
|
MessageManager::MessageManager()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MessageManager::~MessageManager()
|
|
|
|
|
{
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-23 18:53:54 +00:00
|
|
|
void MessageManager::Subscribe( IMessageSubscriber* pSubscriber, const CString& sMessage )
|
2005-02-09 05:20:49 +00:00
|
|
|
{
|
2005-07-12 03:07:54 +00:00
|
|
|
LockMut(g_Mutex);
|
|
|
|
|
|
|
|
|
|
SubscribersSet& subs = g_MessageToSubscribers[sMessage];
|
2005-02-09 05:20:49 +00:00
|
|
|
#if _DEBUG
|
2005-02-23 18:53:54 +00:00
|
|
|
SubscribersSet::iterator iter = subs.find(pSubscriber);
|
2005-02-09 05:20:49 +00:00
|
|
|
ASSERT_M( iter == subs.end(), "already subscribed" );
|
|
|
|
|
#endif
|
2005-02-23 18:53:54 +00:00
|
|
|
subs.insert( pSubscriber );
|
2005-02-09 05:20:49 +00:00
|
|
|
}
|
2005-02-24 15:40:05 +00:00
|
|
|
|
|
|
|
|
void MessageManager::Subscribe( IMessageSubscriber* pSubscriber, Message m )
|
|
|
|
|
{
|
|
|
|
|
Subscribe( pSubscriber, MessageToString(m) );
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-23 18:53:54 +00:00
|
|
|
void MessageManager::Unsubscribe( IMessageSubscriber* pSubscriber, const CString& sMessage )
|
2005-02-09 05:20:49 +00:00
|
|
|
{
|
2005-07-12 03:07:54 +00:00
|
|
|
LockMut(g_Mutex);
|
|
|
|
|
|
|
|
|
|
SubscribersSet& subs = g_MessageToSubscribers[sMessage];
|
2005-02-23 18:53:54 +00:00
|
|
|
SubscribersSet::iterator iter = subs.find(pSubscriber);
|
2005-02-09 05:20:49 +00:00
|
|
|
ASSERT( iter != subs.end() );
|
|
|
|
|
subs.erase( iter );
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-24 15:40:05 +00:00
|
|
|
void MessageManager::Unsubscribe( IMessageSubscriber* pSubscriber, Message m )
|
|
|
|
|
{
|
|
|
|
|
Unsubscribe( pSubscriber, MessageToString(m) );
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-25 05:23:29 +00:00
|
|
|
void MessageManager::Broadcast( const CString& sMessage ) const
|
2005-02-09 05:20:49 +00:00
|
|
|
{
|
2005-04-09 09:34:54 +00:00
|
|
|
ASSERT( !sMessage.empty() );
|
|
|
|
|
|
2005-07-12 03:07:54 +00:00
|
|
|
LockMut(g_Mutex);
|
|
|
|
|
|
|
|
|
|
map<CString,SubscribersSet>::const_iterator iter = g_MessageToSubscribers.find( sMessage );
|
|
|
|
|
if( iter == g_MessageToSubscribers.end() )
|
2005-02-25 05:23:29 +00:00
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
FOREACHS_CONST( IMessageSubscriber*, iter->second, p )
|
2005-02-09 05:20:49 +00:00
|
|
|
{
|
2005-02-25 05:23:29 +00:00
|
|
|
IMessageSubscriber *pSub = *p;
|
2005-07-12 03:07:54 +00:00
|
|
|
pSub->HandleMessageInternal( sMessage );
|
2005-02-09 05:20:49 +00:00
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
2005-02-26 00:38:54 +00:00
|
|
|
void MessageManager::Broadcast( Message m ) const
|
|
|
|
|
{
|
|
|
|
|
Broadcast( MessageToString(m) );
|
|
|
|
|
}
|
|
|
|
|
|
2005-07-12 03:07:54 +00:00
|
|
|
void IMessageSubscriber::ClearMessages( const CString sMessage )
|
|
|
|
|
{
|
|
|
|
|
LockMut(g_Mutex);
|
|
|
|
|
|
|
|
|
|
if( sMessage.empty() )
|
|
|
|
|
{
|
|
|
|
|
m_aMessages.clear();
|
|
|
|
|
return;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
for( int i=m_aMessages.size()-1; i>=0; i-- )
|
|
|
|
|
if( m_aMessages[i].sMessage == sMessage )
|
|
|
|
|
m_aMessages.erase( m_aMessages.begin()+i );
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IMessageSubscriber::HandleMessageInternal( const CString& sMessage )
|
|
|
|
|
{
|
|
|
|
|
QueuedMessage QM;
|
|
|
|
|
QM.sMessage = sMessage;
|
|
|
|
|
QM.fDelayRemaining = 0;
|
|
|
|
|
|
|
|
|
|
g_Mutex.Lock();
|
|
|
|
|
m_aMessages.push_back( QM );
|
|
|
|
|
g_Mutex.Unlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void IMessageSubscriber::ProcessMessages( float fDeltaTime )
|
|
|
|
|
{
|
|
|
|
|
/* Important optimization for the vast majority of cases: don't lock the
|
|
|
|
|
* mutex if we have no messages. */
|
|
|
|
|
if( m_aMessages.empty() )
|
|
|
|
|
return;
|
|
|
|
|
|
|
|
|
|
g_Mutex.Lock();
|
|
|
|
|
for( unsigned i=0; i<m_aMessages.size(); i++ )
|
|
|
|
|
m_aMessages[i].fDelayRemaining -= fDeltaTime;
|
|
|
|
|
|
|
|
|
|
for( unsigned i = 0; i < m_aMessages.size(); ++i )
|
|
|
|
|
{
|
|
|
|
|
/* Remove the message from the list. */
|
|
|
|
|
const CString sMessage = m_aMessages[i].sMessage;
|
|
|
|
|
m_aMessages.erase( m_aMessages.begin()+i );
|
|
|
|
|
--i;
|
|
|
|
|
|
|
|
|
|
unsigned iSize = m_aMessages.size();
|
|
|
|
|
|
|
|
|
|
g_Mutex.Unlock();
|
|
|
|
|
HandleMessage( sMessage );
|
|
|
|
|
g_Mutex.Lock();
|
|
|
|
|
|
|
|
|
|
/* If the size changed, start over. */
|
|
|
|
|
if( iSize != m_aMessages.size() )
|
|
|
|
|
i = 0;
|
|
|
|
|
}
|
|
|
|
|
g_Mutex.Unlock();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
2005-02-24 20:04:46 +00:00
|
|
|
// lua start
|
|
|
|
|
#include "LuaBinding.h"
|
|
|
|
|
|
2005-06-20 05:02:03 +00:00
|
|
|
class LunaMessageManager: public Luna<MessageManager>
|
2005-02-24 20:04:46 +00:00
|
|
|
{
|
|
|
|
|
public:
|
|
|
|
|
LunaMessageManager() { LUA->Register( Register ); }
|
|
|
|
|
|
|
|
|
|
static int Broadcast( T* p, lua_State *L )
|
|
|
|
|
{
|
|
|
|
|
p->Broadcast( SArg(1) );
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
static void Register(lua_State *L)
|
|
|
|
|
{
|
2005-09-10 02:47:04 +00:00
|
|
|
ADD_METHOD( Broadcast );
|
|
|
|
|
|
2005-02-24 20:04:46 +00:00
|
|
|
Luna<T>::Register( L );
|
|
|
|
|
|
|
|
|
|
// Add global singleton if constructed already. If it's not constructed yet,
|
|
|
|
|
// then we'll register it later when we reinit Lua just before
|
|
|
|
|
// initializing the display.
|
|
|
|
|
if( MESSAGEMAN )
|
|
|
|
|
{
|
|
|
|
|
lua_pushstring(L, "MESSAGEMAN");
|
2005-06-15 02:27:16 +00:00
|
|
|
MESSAGEMAN->PushSelf( L );
|
2005-02-24 20:04:46 +00:00
|
|
|
lua_settable(L, LUA_GLOBALSINDEX);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
LUA_REGISTER_CLASS( MessageManager )
|
|
|
|
|
// lua end
|
|
|
|
|
|
2005-02-09 05:20:49 +00:00
|
|
|
/*
|
|
|
|
|
* (c) 2003-2004 Chris Danford
|
|
|
|
|
* All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a
|
|
|
|
|
* copy of this software and associated documentation files (the
|
|
|
|
|
* "Software"), to deal in the Software without restriction, including
|
|
|
|
|
* without limitation the rights to use, copy, modify, merge, publish,
|
|
|
|
|
* distribute, and/or sell copies of the Software, and to permit persons to
|
|
|
|
|
* whom the Software is furnished to do so, provided that the above
|
|
|
|
|
* copyright notice(s) and this permission notice appear in all copies of
|
|
|
|
|
* the Software and that both the above copyright notice(s) and this
|
|
|
|
|
* permission notice appear in supporting documentation.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
|
|
|
|
|
* OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
|
|
|
|
|
* MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT OF
|
|
|
|
|
* THIRD PARTY RIGHTS. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR HOLDERS
|
|
|
|
|
* INCLUDED IN THIS NOTICE BE LIABLE FOR ANY CLAIM, OR ANY SPECIAL INDIRECT
|
|
|
|
|
* OR CONSEQUENTIAL DAMAGES, OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS
|
|
|
|
|
* OF USE, DATA OR PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR
|
|
|
|
|
* OTHER TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
|
|
|
|
|
* PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
|
*/
|