1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Collections.Generic;
- namespace ET.Server
- {
- /// <summary>
- /// 玩家属性工具类
- /// </summary>
- public static class AttributeHelper
- {
- /// <summary>
- /// 将两个属性集合合并到一个集合里面
- /// </summary>
- /// <param name="src"></param>
- /// <param name="dest"></param>
- public static void AddData2AllData(Dictionary<PlayerBtlData,int> src, Dictionary<PlayerBtlData,int> dest)
- {
- if (src is not { Count: > 0 })
- {
- Log.Warning($"AddData2AllData src == null");
- return;
- }
- foreach (var keyValue in src)
- {
- try
- {
- int value = (dest.TryGetValue(keyValue.Key, out int v)? dest[keyValue.Key] : 0) + keyValue.Value;
- dest[keyValue.Key] = value;
- }
- catch (Exception e)
- {
- Log.Error($"AttributeHelper AddData2AllData: key={keyValue.Key}, e={e}");
- }
- }
- }
- }
- }
|