public bool Custom(ref VarList args) { StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); int iCount = args.GetCount(); if (!AddMsgVarList(ref ar, ref args, 0, iCount)) { return(false); } Array.Clear(varifyCustom, 0, varifyCustom.Length); fxVerify.GetCustomVerify(mCustomIndex, iCount, ar.GetData(), ar.GetLength(), ref varifyCustom); ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CUSTOM); //消息ID ar.WriteUserDataNoLen(varifyCustom); //校验码 ar.WriteInt32(mCustomIndex++); ar.WriteInt16(iCount); if (!AddMsgVarList(ref ar, ref args, 0, iCount)) { LogSystem.Log("add para error"); return(false); } return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool ChooseRole(string role_name) { if (role_name == null) { LogSystem.LogError("Role Name Is Empty!"); return(false); } if (0 == role_name.Length) { LogSystem.Log("sendChooseRole packet role name is empty!"); return(false); } byte[] name = new byte[ServerInfo.ROLENAME_MAX_LENGTH * 2 + 1]; Array.Copy(System.Text.Encoding.Default.GetBytes(role_name), name, role_name.Length); StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CHOOSE_ROLE);//消息ID //unsigned short wsName[OUTER_OBJNAME_LENGTH + 1]; // 名称 //unsigned char nVerify[16]; // 校验码 //char strInfo[1]; ar.WriteUnicodeLen(role_name, (ServerInfo.ROLENAME_MAX_LENGTH + 1) * 2);//玩家名 byte[] verify = new byte[16]; fxVerify.GetChooseRoleVerify(role_name, ref verify); ar.WriteUserDataNoLen(verify); //检验码 ar.WriteInt8(0); //附加信息 return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool ClientReady() { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_READY);//消息ID return(m_sender.Send(ar.GetData(), ar.GetLength())); }
/// <summary> /// 发送心跳消息 /// </summary> /// <returns></returns> public bool SendBeat() { StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_BEAT); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
//发送请求移动消息 //public bool RequestMove(int mode, int arg_num, float[] args, string info) public bool RequestMove(ref VarList args, ref VarList ret) { try { if (args.GetCount() < 1) { ret.AddBool(false); return(false); } int mode = args.GetInt(0); int arg_num = args.GetCount() - 1; StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_REQUEST_MOVE);//消息ID ar.WriteInt8(mode); ar.WriteInt16(arg_num); for (int i = 0; i < arg_num; i++) { float value = args.GetFloat(1 + i); ar.WriteFloat(value); } return(m_sender.Send(ar.GetData(), ar.GetLength())); } catch (System.Exception ex) { LogSystem.LogError(ex); return(false); } }
//确认加密码改变 public bool RetEncode(int serial, string info, int address) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_RET_ENCODE);//消息ID byte[] b = new byte[32]; b = System.Text.Encoding.ASCII.GetBytes(info); ar.WriteUserDataNoLen(b); ar.WriteInt32(address); byte[] data = new byte[256]; int index = 0; MsgEncode.WriteInt32(ref data, ref index, (uint)serial); MsgEncode.WriteInt32(ref data, ref index, (uint)address); //32位固定长度 Array.Copy(b, 0, data, index, b.Length); index += b.Length; //校验码4个字节,对消息加密获取验证码 byte[] varify = MsgEncode.Instance.Encode(data, index, 4); //byte[] varify = new byte[4]; ar.WriteUserDataNoLen(varify); MsgEncode.Instance.Serial = (uint)serial; return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool DeleteRole(string role_name) { if (role_name == null) { //Log.TraceError("Role Name Is Empty!"); return(false); } if (0 == role_name.Length) { //Log.Trace("DeleteRole role name is empty!"); return(false); } //byte[] name = new byte[ServerInfo.ROLENAME_MAX_LENGTH * 2 + 1]; //Array.Copy(System.Text.Encoding.Default.GetBytes(role_name), name, role_name.Length); StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_DELETE_ROLE);//消息ID //unsigned short wsName[OUTER_OBJNAME_LENGTH + 1]; // 名称 ar.WriteUnicodeLen(role_name, (ServerInfo.ROLENAME_MAX_LENGTH + 1) * 2);//玩家名 return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool GetVerify() { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_GET_VERIFY);//消息ID return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool GetWorldInfo(int type) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_WORLD_INFO);//消息ID ar.WriteInt32(type); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool Speech(string info) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_SPEECH);//消息ID ar.WriteWideStrNoLen(info); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool CheckVersion() { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CHECK_VERSION);//消息ID return(m_sender.Send(ar.GetData(), ar.GetLength())); }
/// <summary> /// 断线重连接 /// </summary> /// <param name="account">账号</param> /// <param name="pswd">密码</param> /// <param name="validate_string">计费串</param> /// <param name="device_uid">设备号</param> /// <param name="in_stub">是否是本地副本(false)</param> /// <returns></returns> public bool LoginReconnect(string account, string pswd, string validate_string, string device_uid, bool in_stub = false) { if (account == null || pswd == null || validate_string == null || device_uid == null) { return(false); } StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_LOGIN); //消息ID ar.WriteInt32(MsgEncode.Instance.Version); //版本号 byte[] varify = new byte[4]; ar.WriteUserDataNoLen(varify); //验证码 ar.WriteUserData(MsgEncode.Instance.EncodeString(account)); //账号 ar.WriteUserData(MsgEncode.Instance.EncodeString(pswd)); //密码 ar.WriteString(validate_string); //登录串 ar.WriteInt32(100); //登录类型 LOGIN_TYPE_RECONNECT 100 ar.WriteString(device_uid); string strPropMd5 = null; string strRecdMd5 = null; if (mRecver != null) { strPropMd5 = mRecver.GetPropertyTableMd5(); strRecdMd5 = mRecver.GetRecordTableMd5(); } if (strPropMd5 != null) { ar.WriteString(strPropMd5); } else { ar.WriteString(""); } if (strRecdMd5 != null) { ar.WriteString(strRecdMd5); } else { ar.WriteString(""); } if (in_stub) { ar.WriteInt8(1); } else { ar.WriteInt8(0); } return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool GetWorldInfo2(int type, string info) { StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_WORLD_INFO);//消息ID ar.WriteInt32(type); ar.WriteWideStr(info); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
//发送请求移动消息 //public bool RequestMove(int mode, int arg_num, float[] args, string info) public bool RequestMove(ref VarList args, ref VarList ret) { try { if (args.GetCount() < 3) { //Log.Trace(" arguments count must be > 3"); ret.AddBool(false); return(false); } int mode = args.GetInt(0); int arg_num = args.GetInt(1); if (arg_num > 256) { //Log.Trace("more arguments"); ret.AddBool(false); return(false); } if (args.GetCount() < (arg_num + 2)) { //Log.Trace("too few arguments"); ret.AddBool(false); return(false); } StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_REQUEST_MOVE);//消息ID ar.WriteInt8(mode); ar.WriteInt16(arg_num); for (int i = 0; i < arg_num; i++) { float value = args.GetFloat(2 + i); ar.WriteFloat(value); } string info = ""; if (args.GetCount() > (arg_num + 2)) { info = args.GetString(arg_num + 2); } ar.WriteStringNoLen(info); return(m_sender.Send(ar.GetData(), ar.GetLength())); } catch (System.Exception ex) { Log.TraceExcep(ref ex); return(false); } }
public bool LoginPlatform(int type, string json) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_SEND_TO_LOGIN_MSG); //消息ID ar.WriteInt32(MsgEncode.Instance.Version); //版本号 byte[] varify = new byte[4]; ar.WriteUserDataNoLen(varify); //验证码 ar.WriteInt8(type); //消息类型 ar.WriteString(json); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool LoginByString(string account, string login_string) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_LOGIN); //消息ID ar.WriteInt32(MsgEncode.Instance.Version); //版本号 byte[] varify = new byte[4]; ar.WriteUserDataNoLen(varify); //验证码 ar.WriteString(account); //账号 ar.WriteString(""); //密码 ar.WriteString(login_string); //登录串 ar.WriteInt32(2); //登录类型 return(m_sender.Send(ar.GetData(), ar.GetLength())); }
/// <summary> /// 发送加密确认消息 /// </summary> /// <returns>发送是否成</returns> public bool ClientRetEncode() { StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_RET_ENCODE);//消息ID ar.WriteUserDataNoLen(fxVerify.mbtInfo); ar.WriteInt32(fxVerify.miAddress); byte[] btVerify = new byte[16]; //如果下面没再使用output 就要保证对象不被垃圾回收掉 fxVerify.GetRetEncodeVerify(ref btVerify); ar.WriteUserDataNoLen(btVerify); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool ChooseRole(string role_name) { if (role_name == null) { //Log.TraceError("Role Name Is Empty!"); return(false); } if (0 == role_name.Length) { //Log.Trace("sendChooseRole packet role name is empty!"); return(false); } //byte[] name = new byte[ServerInfo.ROLENAME_MAX_LENGTH * 2 + 1]; //Array.Copy(System.Text.Encoding.Default.GetBytes(role_name), name, role_name.Length); StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CHOOSE_ROLE);//消息ID //unsigned short wsName[OUTER_OBJNAME_LENGTH + 1]; // 名称 //unsigned char nVerify[4]; // 校验码 //char strInfo[1]; ar.WriteUnicodeLen(role_name, (ServerInfo.ROLENAME_MAX_LENGTH + 1) * 2);//玩家名 //byte[] verify = new byte[4]; //校验码4个字节,对消息加密获取验证码 byte[] data = new byte[256]; int index = 0; //序号,名字加入校验 MsgEncode.WriteInt32(ref data, ref index, (uint)MsgEncode.Instance.Serial); MsgEncode.WriteUnicodeLen(ref data, ref index, role_name, (ServerInfo.ROLENAME_MAX_LENGTH + 1) * 2); byte[] verify = MsgEncode.Instance.Encode(data, index, 4); ar.WriteUserDataNoLen(verify); //检验码 ar.WriteInt8(0); //附加信息 MsgEncode.Instance.MsgSerial++; return(m_sender.Send(ar.GetData(), ar.GetLength())); }
//发送带验证码的登录消息 public bool LoginVerify(string account, string password, string verify, string device_uid) { if (account == null || password == null || verify == null || device_uid == null) { return(false); } StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_LOGIN); //消息ID ar.WriteInt32(MsgEncode.Instance.Version); //版本号 byte[] varify = Encoding.Default.GetBytes(verify); ar.WriteUserDataNoLen(varify); //验证码 ar.WriteString(account); //账号 ar.WriteString(password); //密码 ar.WriteString(""); //登录串 ar.WriteInt32(100); //登录类型 LOGIN_TYPE_RECONNECT 100 ar.WriteString(device_uid); string strPropMd5 = null; string strRecdMd5 = null; if (mRecver != null) { strPropMd5 = mRecver.GetPropertyTableMd5(); strRecdMd5 = mRecver.GetRecordTableMd5(); } if (strPropMd5 != null) { ar.WriteString(strPropMd5); } else { ar.WriteString(""); } if (strRecdMd5 != null) { ar.WriteString(strRecdMd5); } else { ar.WriteString(""); } return(m_sender.Send(ar.GetData(), ar.GetLength())); }
/// <summary> /// 发送网络延时检测消息 /// </summary> /// <param name="uType"></param> /// <returns></returns> public bool SendTracert(uint uType = 0) { StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_TRACERT); //毫秒数 long clientsteamp = (long)DateTime.Now.Ticks / 10000 & 0xfffffff; // 客户端的时间戳,精确到毫秒数 ar.WriteUInt32((uint)clientsteamp); ar.WriteUInt8(uType); uSerial = (++uSerial) % 1000; ar.WriteUInt32(uSerial); ar.WriteUInt16(0); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool Login(string account, string password, string device_uid) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_LOGIN); //消息ID ar.WriteInt32(MsgEncode.Instance.Version); //版本号 byte[] varify = new byte[4]; ar.WriteUserDataNoLen(varify); ar.WriteUserData(MsgEncode.Instance.EncodeString(account)); //账号 ar.WriteUserData(MsgEncode.Instance.EncodeString(password)); //密码 ar.WriteString(device_uid); //设备uiid ar.WriteString("0"); //登录串 ar.WriteInt32(1); //登录类型 return(m_sender.Send(ar.GetData(), ar.GetLength())); }
/// <summary> /// 服务器定位消息 /// </summary> /// <param name="data"></param> /// <param name="len"></param> /// <returns></returns> private int proc_server_location(ref Byte[] data, int len) { if (len < 16) { return(len); } LoadArchive arLoad = LoadArchive.Load(data, len); // Byte[] buffer = new Byte[1024]; StoreArchive arStore = StoreArchive.Load(m_pBuffer_SP, 4096); uint nMsgType = 0; arLoad.ReadUInt8(ref nMsgType); arStore.WriteUInt8(nMsgType); ObjectID objectId = ObjectID.zero; arLoad.ReadObject(ref objectId); arStore.WriteObject(objectId); int x = 0; arLoad.ReadInt16(ref x); arStore.WriteFloat(x / 100.0f); int y = 0; arLoad.ReadInt16(ref y); arStore.WriteFloat(y / 100.0f); int z = 0; arLoad.ReadInt16(ref z); arStore.WriteFloat(z / 100.0f); int orient = 0; arLoad.ReadInt16(ref orient); arStore.WriteFloat(orient / 100.0f); data = arStore.GetData(); return(arStore.GetLength()); }
public bool CreateRole(ref VarList args) { try { if ((args.GetCount() < 2) || (args.GetType(1) != VarType.WideStr)) { LogSystem.Log("arguments error"); return(false); } string roleName = args.GetWideStr(1); //role name byte[] name = new byte[ServerInfo.ROLENAME_MAX_LENGTH * 2 + 1]; Array.Copy(System.Text.Encoding.Default.GetBytes(roleName), name, roleName.Length); //verify // byte[] verify = new byte[16]; StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CREATE_ROLE); ar.WriteInt32(args.GetInt(0)); ar.WriteUnicodeLen(roleName, (ServerInfo.ROLENAME_MAX_LENGTH + 1) * 2); ///ar.WriteUserDataNoLen(verify); ar.WriteUInt16((uint)(args.GetCount() - 2)); ///ar.WriteInt32(); if (!AddMsgVarList(ar, args, 2, args.GetCount())) { return(false); } return(m_sender.Send(ar.GetData(), ar.GetLength())); } catch (System.Exception ex) { LogSystem.LogError(ex); return(false); } }
public bool CreateRole(ref VarList args) { try { if ((args.GetCount() < 2) || (args.GetType(1) != VarType.WideStr)) { //Log.Trace("arguments error"); return(false); } string roleName = args.GetWideStr(1); //role name //byte[] name = new byte[ServerInfo.ROLENAME_MAX_LENGTH * 2 + 1]; //Array.Copy(System.Text.Encoding.Default.GetBytes(roleName), name, roleName.Length); //verify byte[] verify = new byte[4]; //校验码4个字节,对消息加密获取验证码 byte[] varify = MsgEncode.Instance.Encode(ref args, 4); StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CREATE_ROLE); ar.WriteInt32(args.GetInt(0)); ar.WriteUnicodeLen(roleName, (ServerInfo.ROLENAME_MAX_LENGTH + 1) * 2); ar.WriteInt16(1); ar.WriteInt8(2); ar.WriteInt32(args.GetInt(2)); //ar.WriteUserDataNoLen(verify); ar.WriteUserDataNoLen(varify); ar.WriteInt8(0); return(m_sender.Send(ar.GetData(), ar.GetLength())); } catch (System.Exception ex) { Log.TraceExcep(ref ex); return(false); } }
public bool Custom(ref VarList args) { StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_CUSTOM);//消息ID //校验码4个字节,对消息加密获取验证码 byte[] varify = MsgEncode.Instance.Encode(ref args, 4); ar.WriteUserDataNoLen(varify); ar.WriteInt16(MsgEncode.Instance.MsgSerial); ar.WriteInt16(args.GetCount()); Log.Trace("Custom"); if (!AddMsgVarList(ref ar, ref args, 0, args.GetCount())) { Log.Trace("add para error"); return(false); } Log.Trace("Send"); MsgEncode.Instance.MsgSerial++; return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool Select(string object_ident, int func_id) { if (object_ident == null) { LogSystem.LogError("GameSender Select object_ident is null"); return(false); } if (0 == object_ident.Length) { LogSystem.LogError("GameSender Select object_ident is empty"); return(false); } StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_SELECT);//消息ID //unsigned char nVerify[16]; // 校验码 //int nSerial; // 消息序列号 //outer_object_t ObjectId; // 对象标识 //int nFunctionId; // 功能号为0表示执行缺省功能 //byte[] message = TypeConvert.encode(m_buffer,ar.GetLength()); ObjectID obj = ObjectID.FromString(object_ident); byte[] verify = new byte[16]; fxVerify.GetSelectVerify(func_id, (int)(obj.m_nSerial), mCustomIndex, (int)(obj.m_nIdent), ref verify); ar.WriteUserDataNoLen(verify); //检验码 ar.WriteInt32(mCustomIndex++); //消息序列号 ar.WriteObject(obj); //对象标识 ar.WriteInt32(func_id); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
public bool Select(string object_ident, int func_id) { if (object_ident == null) { //Log.TraceError("GameSender Select object_ident is null"); return(false); } ObjectID objID = ObjectID.FromString(object_ident); StoreArchive ar = new StoreArchive(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_SELECT);//消息ID //unsigned char nVerify[4]; // 校验码 //int nSerial; // 消息序列号 //outer_object_t ObjectId; // 对象标识 //int nFunctionId; // 功能号为0表示执行缺省功能 //byte[] message = TypeConvert.encode(m_buffer,ar.GetLength()); byte[] data = new byte[256]; int index = 0; //序号,名字加入校验 MsgEncode.WriteInt16(ref data, ref index, (uint)MsgEncode.Instance.Serial); MsgEncode.WriteInt16(ref data, ref index, (uint)MsgEncode.Instance.MsgSerial); MsgEncode.WriteInt32(ref data, ref index, (uint)func_id); MsgEncode.WriteObject(ref data, ref index, objID); byte[] verify = MsgEncode.Instance.Encode(data, index, 4); ar.WriteUserDataNoLen(verify); //检验码 ar.WriteInt32(MsgEncode.Instance.MsgSerial); //消息序列号 ar.WriteObject(objID); //对象标识 ar.WriteInt32(func_id); return(m_sender.Send(ar.GetData(), ar.GetLength())); }
//发送带验证码的登录消息 public bool LoginVerify(string account, string password, string verify, string device_uid) { if (account == null || password == null || verify == null || device_uid == null) { return(false); } StoreArchive ar = StoreArchive.Load(m_buffer, m_buffer.Length); ar.WriteInt8(GlobalClineMsgId.CLIENT_LOGIN); //消息ID ar.WriteInt32(OUTER_PROTOCOL_VERSION); //版本号 byte[] varify = Encoding.Default.GetBytes(verify); ar.WriteUserDataNoLen(varify);//验证码 byte[] btAccount = null; byte[] btPassword = null; int iAccountSize = 0; int iPasswordSize = 0; bool bVerifyok1 = fxVerify.EncodeAccount(account, ref btAccount, ref iAccountSize); bool bVerifyok2 = fxVerify.EncodePassword(password, ref btPassword, ref iPasswordSize); if (bVerifyok1 && bVerifyok2) { ar.WriteUserData(btAccount); //账号 ar.WriteUserData(btPassword); //密码 } else { ar.WriteString(account); ar.WriteString(password); } ar.WriteString(string.Empty); //登录串 ar.WriteInt32(1); //登录类型 LOGIN_TYPE_RECONNECT 100 ar.WriteInt8(0); ///是否是本地副本 ar.WriteString(device_uid); string strPropMd5 = string.Empty; string strRecdMd5 = string.Empty; if (mRecver != null) { strPropMd5 = mRecver.GetPropertyTableMd5(); strRecdMd5 = mRecver.GetRecordTableMd5(); } if (strPropMd5 != null) { ar.WriteString(strPropMd5); } else { ar.WriteString(string.Empty); } if (strRecdMd5 != null) { ar.WriteString(strRecdMd5); } else { ar.WriteString(string.Empty); } return(m_sender.Send(ar.GetData(), ar.GetLength())); }
/// <summary> /// 服务器移动消息 /// </summary> /// <param name="data"></param> /// <param name="len"></param> /// <returns></returns> private int proc_server_moving(ref Byte[] data, int len) { if (len < 28) { return(len); } LoadArchive arLoad = LoadArchive.Load(data, len); // Byte[] buffer = new Byte[1024]; StoreArchive arStore = StoreArchive.Load(m_pBuffer_SP, 4096); uint nMsgType = 0; arLoad.ReadUInt8(ref nMsgType); arStore.WriteUInt8(nMsgType); ObjectID objectId = ObjectID.zero; arLoad.ReadObject(ref objectId); arStore.WriteObject(objectId); int x = 0; arLoad.ReadInt16(ref x); arStore.WriteFloat(x / 100.0f); int y = 0; arLoad.ReadInt16(ref y); arStore.WriteFloat(y / 100.0f); int z = 0; arLoad.ReadInt16(ref z); arStore.WriteFloat(z / 100.0f); int orient = 0; arLoad.ReadInt16(ref orient); arStore.WriteFloat(orient / 100.0f); int moveSpeed = 0; arLoad.ReadInt16(ref moveSpeed); arStore.WriteFloat(moveSpeed / 100.0f); int rotateSpeed = 0; arLoad.ReadInt16(ref rotateSpeed); arStore.WriteFloat(rotateSpeed / 100.0f); int jumpSpeed = 0; arLoad.ReadInt16(ref jumpSpeed); arStore.WriteFloat(jumpSpeed / 100.0f); int gravity = 0; arLoad.ReadInt16(ref gravity); arStore.WriteFloat(gravity / 100.0f); int mode = 0; arLoad.ReadInt32(ref mode); arStore.WriteInt32(mode); data = arStore.GetData(); return(arStore.GetLength()); }
/// <summary> /// 服务器所有目标点移动 /// </summary> /// <param name="data"></param> /// <param name="len"></param> /// <returns></returns> private int proc_server_all_dest(ref Byte[] data, int len) { LoadArchive arLoad = LoadArchive.Load(data, len); // Byte[] buffer = new Byte[1024]; StoreArchive arStore = StoreArchive.Load(m_pBuffer_SP, 4096); uint nMsgType = 0; arLoad.ReadUInt8(ref nMsgType); arStore.WriteUInt8(nMsgType); uint nCount = 0; arLoad.ReadUInt16(ref nCount); arStore.WriteUInt16(nCount); if (nCount > 50) { LogSystem.Log("proc_server_all_dest"); return(len); } for (int i = 0; i < nCount; ++i) { ObjectID objectId = ObjectID.zero; arLoad.ReadObject(ref objectId); arStore.WriteObject(objectId); int x = 0; arLoad.ReadInt16(ref x); arStore.WriteFloat(x / 100.0f); int y = 0; arLoad.ReadInt16(ref y); arStore.WriteFloat(y / 100.0f); int z = 0; arLoad.ReadInt16(ref z); arStore.WriteFloat(z / 100.0f); int orient = 0; arLoad.ReadInt16(ref orient); arStore.WriteFloat(orient / 100.0f); int moveSpeed = 0; arLoad.ReadInt16(ref moveSpeed); arStore.WriteFloat(moveSpeed / 100.0f); int rotateSpeed = 0; arLoad.ReadInt16(ref rotateSpeed); arStore.WriteFloat(rotateSpeed / 100.0f); int jumpSpeed = 0; arLoad.ReadInt16(ref jumpSpeed); arStore.WriteFloat(jumpSpeed / 100.0f); int gravity = 0; arLoad.ReadInt16(ref gravity); arStore.WriteFloat(gravity / 100.0f); int mode = 0; arLoad.ReadInt32(ref mode); arStore.WriteInt32(mode); } data = arStore.GetData(); return(arStore.GetLength()); }