AttributeHelper.cs 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. namespace ET.Server
  4. {
  5. /// <summary>
  6. /// 玩家属性工具类
  7. /// </summary>
  8. public static class AttributeHelper
  9. {
  10. /// <summary>
  11. /// 将两个属性集合合并到一个集合里面
  12. /// </summary>
  13. /// <param name="src"></param>
  14. /// <param name="dest"></param>
  15. public static void AddData2AllData(Dictionary<PlayerBtlData,int> src, Dictionary<PlayerBtlData,int> dest)
  16. {
  17. if (src is not { Count: > 0 })
  18. {
  19. Log.Warning($"AddData2AllData src == null");
  20. return;
  21. }
  22. foreach (var keyValue in src)
  23. {
  24. try
  25. {
  26. int value = (dest.TryGetValue(keyValue.Key, out int v)? dest[keyValue.Key] : 0) + keyValue.Value;
  27. dest[keyValue.Key] = value;
  28. }
  29. catch (Exception e)
  30. {
  31. Log.Error($"AttributeHelper AddData2AllData: key={keyValue.Key}, e={e}");
  32. }
  33. }
  34. }
  35. }
  36. }