forked from OpenArkStudio/ArkClient_Net
-
Notifications
You must be signed in to change notification settings - Fork 0
/
AFCNet.cs
169 lines (136 loc) · 4.62 KB
/
AFCNet.cs
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
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
using System.Collections;
using AFTCPClient;
using System;
using System.Collections.Generic;
using System.IO;
using System.Net;
using System.Net.Sockets;
using System.Threading;
using System.Linq;
using System.Text;
using System.Runtime.InteropServices;
public class AFCNet : AFINet
{
public AFClientNet mxClient = null;
public ArrayList mReciveaMsgList = new ArrayList();
private Hashtable mhtMsgDelegation = new Hashtable();
private Hashtable mhtEventDelegation = new Hashtable();
OnConnectDelegation mxOnConnectDelegation;
OnDisConnectDelegation mxOnDisConnectDelegation;
public AFCNet()
{
}
public override void StartConnect(string strIP, int nPort)
{
mxClient = new AFClientNet(this);
mxClient.Connect(strIP, nPort);
}
public override void Update()
{
if (null != mxClient)
{
mxClient.Update();
}
}
public override void SendMsg(MsgHead head, byte[] bodyByte)
{
head.unDataLen = (UInt32)bodyByte.Length + (UInt32)ConstDefine.AF_PACKET_HEAD_SIZE;
byte[] headByte = StructureTransform.StructureToByteArrayEndian(head);
byte[] sendBytes = new byte[head.unDataLen];
headByte.CopyTo(sendBytes, 0);
bodyByte.CopyTo(sendBytes, headByte.Length);
mxClient.SendBytes(sendBytes);
string strTime = DateTime.Now.Hour + ":" + DateTime.Now.Minute + ":" + DateTime.Now.Second;
string strData = "S***:" + strTime + " MsgID:" + head.unMsgID + " Len:" + head.unDataLen;
mReciveaMsgList.Add(strData);
}
public override void Disconnect()
{
if (null != mxClient)
{
mxClient.Disconnect();
}
}
public override bool RegisteredDelegation(int eMsgID, MsgDelegation msgDelegate)
{
if (!mhtMsgDelegation.ContainsKey(eMsgID))
{
MsgDelegation myDelegationHandler = new MsgDelegation(msgDelegate);
mhtMsgDelegation.Add(eMsgID, myDelegationHandler);
}
else
{
MsgDelegation myDelegationHandler = (MsgDelegation)mhtMsgDelegation[eMsgID];
myDelegationHandler += new MsgDelegation(msgDelegate);
}
return true;
}
public override bool RegisteredResultCodeDelegation(int eCode, ResultCodeDelegation msgDelegate)
{
if (!mhtEventDelegation.ContainsKey(eCode))
{
ResultCodeDelegation myDelegationHandler = new ResultCodeDelegation(msgDelegate);
mhtEventDelegation.Add(eCode, myDelegationHandler);
}
else
{
ResultCodeDelegation myDelegationHandler = (ResultCodeDelegation)mhtMsgDelegation[eCode];
myDelegationHandler += new ResultCodeDelegation(msgDelegate);
}
return true;
}
public override bool RegisteredDisConnectDelegation(OnDisConnectDelegation onDisConnectDelegate)
{
mxOnDisConnectDelegation += onDisConnectDelegate;
return true;
}
public override bool RegisteredConnectDelegation(OnConnectDelegation onConnectDelegate)
{
mxOnConnectDelegation += onConnectDelegate;
return true;
}
public void Log(string text)
{
}
public override bool DoResultCodeDelegation(int eCode)
{
if (mhtEventDelegation.ContainsKey(eCode))
{
ResultCodeDelegation myDelegationHandler = (ResultCodeDelegation)mhtEventDelegation[eCode];
myDelegationHandler(eCode);
return true;
}
return false;
}
public bool DoDelegation(int eMsg, MsgHead head, MemoryStream stream)
{
if (mhtMsgDelegation.ContainsKey(eMsg))
{
MsgDelegation myDelegationHandler = (MsgDelegation)mhtMsgDelegation[eMsg];
myDelegationHandler(head, stream);
return true;
}
return false;
}
/////////////////////////////////////////////////////////////////////////////////////////////////////////////////////
public void OnMessageEvent(MsgHead head, byte[] bytes)
{
if (head.unDataLen != bytes.Length + ConstDefine.AF_PACKET_HEAD_SIZE)
{
return;
}
int eMsg = (int)head.unMsgID;
string strTime = DateTime.Now.Hour + ":" + DateTime.Now.Minute + ":" + DateTime.Now.Second;
string strData = "R:" + strTime + " MsgID:" + head.unMsgID + " Len:" + head.unDataLen;
mReciveaMsgList.Add(strData);
DoDelegation(eMsg, head, new MemoryStream(bytes));
}
public void OnDisConnect()
{
mxOnDisConnectDelegation();
}
public void OnConnect()
{
mxOnConnectDelegation();
}
}