Esempio n. 1
0
 public void AddChatInfo(MessageCenterChatInfo messageCenterInfo)
 {
     if (messageCenterInfo != null)
     {
         ChatInfo chatInfo = new ChatInfo();
         chatInfo.name     = messageCenterInfo.Name;
         chatInfo.lasttime = messageCenterInfo.LastTime;
         chatInfo.id       = messageCenterInfo.Id;
         chatInfo.type     = (int)messageCenterInfo.Type;
         ChatInfoList list = this.GetLocalChatInfoList();
         if (list != null && list.chatinfo != null)
         {
             ChatInfo info = this.FindChatInfoItem(list, chatInfo.id, chatInfo.type);
             if (info == null)
             {
                 list.chatinfo.Add(chatInfo);
             }
             else
             {
                 info.lasttime = chatInfo.lasttime;
                 info.name     = chatInfo.name;
             }
         }
         else
         {
             list = new ChatInfoList();
             list.chatinfo.Add(chatInfo);
         }
         this.SaveLocalChatInfoList(list);
     }
 }
Esempio n. 2
0
 public void AddChatInfo(MessageCenterChatInfo messageCenterInfo)
 {
     if (messageCenterInfo != null)
     {
         ChatInfo chatInfo = new ChatInfo();
         chatInfo.name = messageCenterInfo.Name;
         chatInfo.lasttime = messageCenterInfo.LastTime;
         chatInfo.id = messageCenterInfo.Id;
         chatInfo.type = (int)messageCenterInfo.Type;
         ChatInfoList list = this.GetLocalChatInfoList();
         if (list != null && list.chatinfo != null)
         {
             ChatInfo info = this.FindChatInfoItem(list, chatInfo.id, chatInfo.type);
             if (info == null)
             {
                 list.chatinfo.Add(chatInfo);
             }
             else
             {
                 info.lasttime = chatInfo.lasttime;
                 info.name = chatInfo.name;
             }
         }
         else
         {
             list = new ChatInfoList();
             list.chatinfo.Add(chatInfo);
         }
         this.SaveLocalChatInfoList(list);
     }
 }
Esempio n. 3
0
        private ChatInfoList GetLocalChatInfoList()
        {
            System.IO.FileStream fs = null;
            ChatInfoList         result;

            try
            {
                string filePath = this.sessionService.DirLocalData + "\\messagecenter.properties";
                if (System.IO.File.Exists(filePath))
                {
                    fs = new System.IO.FileStream(filePath, System.IO.FileMode.Open);
                    ChatInfoList chatInfoList = Serializer.Deserialize <ChatInfoList>(fs);
                    fs.Close();
                    result = chatInfoList;
                    return(result);
                }
            }
            catch (System.Exception ex)
            {
                if (fs != null)
                {
                    fs.Close();
                }
                this.logger.Error("LocalDataUtil = " + ex.ToString());
            }
            result = null;
            return(result);
        }
Esempio n. 4
0
 public System.Collections.Generic.List <MessageCenterChatInfo> GetAllChatInfoBySort()
 {
     System.Collections.Generic.List <MessageCenterChatInfo> result;
     try
     {
         System.Collections.Generic.List <MessageCenterChatInfo> messageChatInfoList = null;
         ChatInfoList chatInfolist = this.GetLocalChatInfoList();
         if (chatInfolist != null && chatInfolist.chatinfo != null)
         {
             messageChatInfoList = new System.Collections.Generic.List <MessageCenterChatInfo>();
             foreach (ChatInfo chatInfo in chatInfolist.chatinfo)
             {
                 if (chatInfo != null)
                 {
                     messageChatInfoList.Add(new MessageCenterChatInfo
                     {
                         Id       = chatInfo.id,
                         Name     = chatInfo.name,
                         LastTime = chatInfo.lasttime,
                         Type     = (MessageCenterType)System.Enum.Parse(typeof(MessageCenterType), chatInfo.type.ToString())
                     });
                 }
             }
             messageChatInfoList.Sort(new System.Comparison <MessageCenterChatInfo>(this.CompareChatInfoValue));
             result = messageChatInfoList;
             return(result);
         }
     }
     catch (System.Exception e)
     {
         ServiceUtil.Instance.Logger.Error(e.ToString());
     }
     result = null;
     return(result);
 }
Esempio n. 5
0
        public void SetMsgInfo(UInt64 sGUID, string nickName, string msgInfo, MsgTalkEnum talkState, int headID, bool islocal)
        {
            GUID      = sGUID;
            NickName  = nickName;
            TalkState = talkState;
            HeadID    = headID;
            IChatInfo info = new IChatInfo();

            info.mIsLocalPlayer = islocal;
            info.mMsg           = msgInfo;
            info.mHead          = headID;
            info.SetNickName(nickName);
            info.mTalkState = talkState;
            ChatInfoList.Add(info);
        }
Esempio n. 6
0
        private ChatInfo FindChatInfoItem(ChatInfoList list, long id, int type)
        {
            ChatInfo result;

            foreach (ChatInfo info in list.chatinfo)
            {
                if (info != null)
                {
                    if (info.type == type && info.id == id)
                    {
                        result = info;
                        return(result);
                    }
                }
            }
            result = null;
            return(result);
        }
Esempio n. 7
0
 public void SetAllChatInfo(System.Collections.Generic.List <MessageCenterChatInfo> list)
 {
     if (list != null)
     {
         ChatInfoList chatInfoList = new ChatInfoList();
         foreach (MessageCenterChatInfo info in list)
         {
             if (info != null)
             {
                 ChatInfo chatInfo = new ChatInfo();
                 chatInfo.id       = info.Id;
                 chatInfo.name     = info.Name;
                 chatInfo.lasttime = info.LastTime;
                 chatInfo.type     = (int)info.Type;
                 chatInfoList.chatinfo.Add(chatInfo);
             }
         }
         this.SaveLocalChatInfoList(chatInfoList);
     }
 }
Esempio n. 8
0
 private void SaveLocalChatInfoList(ChatInfoList list)
 {
     if (list != null)
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         System.IO.FileStream   fs = null;
         this.SerializeChatInfoList(ms, list);
         ms.Position = 0L;
         if (this.sessionService == null)
         {
             this.sessionService = ServiceUtil.Instance.SessionService;
         }
         string filePath = this.sessionService.DirLocalData + "\\messagecenter.properties";
         try
         {
             if (System.IO.File.Exists(filePath))
             {
                 System.IO.File.Delete(filePath);
             }
             fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create);
             ms.WriteTo(fs);
             ms.Flush();
             fs.Flush();
         }
         catch (System.Exception ex)
         {
             this.logger.Error("LocalDataUtil = " + ex.ToString());
         }
         finally
         {
             if (ms != null)
             {
                 ms.Close();
             }
             if (fs != null)
             {
                 fs.Close();
             }
         }
     }
 }
Esempio n. 9
0
 private void SaveLocalChatInfoList(ChatInfoList list)
 {
     if (list != null)
     {
         System.IO.MemoryStream ms = new System.IO.MemoryStream();
         System.IO.FileStream fs = null;
         this.SerializeChatInfoList(ms, list);
         ms.Position = 0L;
         if (this.sessionService == null)
         {
             this.sessionService = ServiceUtil.Instance.SessionService;
         }
         string filePath = this.sessionService.DirLocalData + "\\messagecenter.properties";
         try
         {
             if (System.IO.File.Exists(filePath))
             {
                 System.IO.File.Delete(filePath);
             }
             fs = new System.IO.FileStream(filePath, System.IO.FileMode.Create);
             ms.WriteTo(fs);
             ms.Flush();
             fs.Flush();
         }
         catch (System.Exception ex)
         {
             this.logger.Error("LocalDataUtil = " + ex.ToString());
         }
         finally
         {
             if (ms != null)
             {
                 ms.Close();
             }
             if (fs != null)
             {
                 fs.Close();
             }
         }
     }
 }
Esempio n. 10
0
 private ChatInfo FindChatInfoItem(ChatInfoList list, long id, int type)
 {
     ChatInfo result;
     foreach (ChatInfo info in list.chatinfo)
     {
         if (info != null)
         {
             if (info.type == type && info.id == id)
             {
                 result = info;
                 return result;
             }
         }
     }
     result = null;
     return result;
 }
Esempio n. 11
0
 public void SetAllChatInfo(System.Collections.Generic.List<MessageCenterChatInfo> list)
 {
     if (list != null)
     {
         ChatInfoList chatInfoList = new ChatInfoList();
         foreach (MessageCenterChatInfo info in list)
         {
             if (info != null)
             {
                 ChatInfo chatInfo = new ChatInfo();
                 chatInfo.id = info.Id;
                 chatInfo.name = info.Name;
                 chatInfo.lasttime = info.LastTime;
                 chatInfo.type = (int)info.Type;
                 chatInfoList.chatinfo.Add(chatInfo);
             }
         }
         this.SaveLocalChatInfoList(chatInfoList);
     }
 }