forked from mcneel/rpc
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathRpcEventMachine.cpp
73 lines (61 loc) · 1.4 KB
/
RpcEventMachine.cpp
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
#include "StdAfx.h"
#include "RpcEventMachine.h"
#define EVENT_BEGIN if (m_bEnabled) { for (int i = 0; i < m_aEventSinks.GetSize(); i++) { if (m_aEventSinks[i] != NULL) {
#define EVENT_CALL(f) m_aEventSinks[i]->f
#define EVENT_END } } } CleanUp();
CRpcEventMachine::CRpcEventMachine()
{
m_bEnabled = true;
}
void CRpcEventMachine::RegisterEventSink(CRpcEventSinkBase* pEventSink)
{
m_aEventSinks.Add(pEventSink);
}
void CRpcEventMachine::UnregisterEventSink(CRpcEventSinkBase* pEventSink)
{
const int iIndex = EventSinkIndex(pEventSink);
if (iIndex >= 0)
{
m_aEventSinks[iIndex] = NULL;
}
}
void CRpcEventMachine::EnableEvents(bool bEnabled)
{
m_bEnabled = bEnabled;
}
int CRpcEventMachine::EventSinkIndex(const CRpcEventSinkBase* pEventSink)
{
for (int i = 0; i < m_aEventSinks.GetSize(); i++)
{
if (m_aEventSinks[i] == pEventSink)
return i;
}
return -1;
}
void CRpcEventMachine::CleanUp(void)
{
int iIndex = 0;
while (iIndex < m_aEventSinks.GetSize())
{
if (NULL == m_aEventSinks[iIndex])
{
m_aEventSinks.RemoveAt(iIndex);
}
else
{
iIndex++;
}
}
}
void CRpcEventMachine::OnRpcParameterChanged(const RPCapi::ID* id)
{
EVENT_BEGIN;
EVENT_CALL(OnRpcParameterChanged(id));
EVENT_END;
}
void CRpcEventMachine::OnAnimationFrameChanged(CRhinoDoc& doc, int iOldFrame, int iNewFrame)
{
EVENT_BEGIN;
EVENT_CALL(OnAnimationFrameChanged(doc, iOldFrame, iNewFrame));
EVENT_END;
}