Browse Source

【优化】贡献榜推送数据调整,推送RankInfo中不需要value值,只有当榜单顺序发生变化时才推送

johnclot69 1 năm trước cách đây
mục cha
commit
cc6b4f1d77

+ 1 - 1
DotNet/Hotfix/Scenes/Game/Map/MapEventComponentSystem.cs

@@ -206,7 +206,7 @@ namespace ET.Server
 
             List<Struct.BattleReports> list = new List<Struct.BattleReports>();
 
-            var battleReports = JsonConvert.DeserializeObject<List<Struct.BattleReports>>(data);
+            List<Struct.BattleReports> battleReports = JsonConvert.DeserializeObject<List<Struct.BattleReports>>(data);
             if (battleReports is not { Count: > 0 })
             {
                 return;

+ 23 - 6
DotNet/Hotfix/Scenes/Game/Map/MapRankComponentSystem.cs

@@ -75,8 +75,6 @@ namespace ET.Server
                 list.Sort((r1, r2) => r2.TotalDamage.CompareTo(r1.TotalDamage));
             }
 
-            self.ViewRankList.Clear();
-
             int ranking = 1;
 
             List<RankInfo> infoListProto = new List<RankInfo>();
@@ -86,25 +84,44 @@ namespace ET.Server
                 // 客户端消息
                 RankInfo info = new RankInfo();
                 info.Name = battleReports.Name;
-                info.Value = battleReports.TotalDamage;
                 info.Ranking = ranking;
                 infoListProto.Add(info);
 
-                self.ViewRankList.Add(ranking, battleReports);
-
                 ranking += 1;
             }
 
-            bool isEqual = self.ViewRankList.Values.SequenceEqual(list);
+            bool isEqual = self.IsEqual(infoListProto);
             if (isEqual)
             {
                 return;
             }
 
+            self.LastInfoListProto = infoListProto;
+
             foreach (WNPlayer player in map.Players.Values)
             {
                 MessageHelper.SendToClient(player, new G2C_RankNotify() { InfoList = infoListProto });
             }
         }
+
+        private static bool IsEqual(this MapRankComponent self, List<RankInfo> infoList)
+        {
+            if (self.LastInfoListProto.Count != infoList.Count)
+            {
+                return false;
+            }
+
+            for (int i = 0; i < infoList.Count; i++)
+            {
+                RankInfo info1 = infoList[i];
+                RankInfo info2 = self.LastInfoListProto[i];
+                if (info1 != null && info2 != null && (!info1.Name.Trim().Equals(info2.Name.Trim()) || info1.Ranking != info2.Ranking))
+                {
+                    return false;
+                }
+            }
+
+            return true;
+        }
     }
 }

+ 2 - 3
DotNet/Model/Scenes/Game/Map/MapRankComponent.cs

@@ -8,9 +8,8 @@ namespace ET.Server
         /** 排行榜缓存数据 **/
         [StaticField]
         public List<Struct.BattleReports> RankList = new List<Struct.BattleReports>();
-
-        /** 用于客户端显示的数据 [key:阵营, value:[key:排名, value:战报数据]]**/
+        /** 上一次推送得列表 **/
         [StaticField]
-        public Dictionary<int, Struct.BattleReports> ViewRankList = new Dictionary<int, Struct.BattleReports>();
+        public List<RankInfo> LastInfoListProto = new List<RankInfo>();
     }
 }