R2G_LiveGiftHandler.cs 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. using System;
  2. using System.Linq;
  3. using System.Numerics;
  4. using System.Text;
  5. using System.Text.Json;
  6. namespace ET.Server
  7. {
  8. /// <summary>
  9. /// 抖音推送回调, 送礼物
  10. /// </summary>
  11. [ActorMessageHandler(SceneType.Game)]
  12. public class R2G_LiveGiftHandler: AMActorHandler<Scene, R2G_LiveGift>
  13. {
  14. protected override async ETTask Run(Scene scene, R2G_LiveGift request)
  15. {
  16. // 房间是否存在
  17. Map map = scene.GetComponent<GameMapComponent>().GetMapByRoomId(request.RoomId);
  18. if (map == null)
  19. {
  20. Log.Error($"未找到房间...roomId={request.RoomId}");
  21. return;
  22. }
  23. Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerByOpenId(request.OpenId);
  24. // 数据是否存在
  25. if (unitPlayerData == null)
  26. {
  27. Log.Error($"未找到单位玩家数据...openId={request.OpenId}");
  28. return;
  29. }
  30. unitPlayerData.GiftMoney += (int)request.GiftValue;
  31. // 推送客户端
  32. if (map.Player != null)
  33. {
  34. MessageHelper.SendToClient(map.Player, new G2C_GiftInfoPush { NickName = request.NickName, GiftType = DouyinItem.GiftHash[request.GiftId],
  35. GiftNum = (int)request.GiftNum, Url = request.Url, TotalMoney = unitPlayerData.GiftMoney, UnitId = unitPlayerData.ObjId});
  36. }
  37. Struct.TriggerEventNotify notify = null;
  38. if (DouyinItem.GiftId_1.Equals(request.GiftId) || DouyinItem.GiftId_10.Equals(request.GiftId))
  39. {
  40. // 仙女棒 自己死了复活自己, 自己没死复活其他人, 不够则补充单位
  41. // 能量药丸 自己死了复活自己, 自己没死复活其他3个人, 不够则补充单位
  42. StringBuilder objIds = new StringBuilder();
  43. notify = new Struct.TriggerEventNotify();
  44. if (unitPlayerData.DeadState == 1)
  45. {
  46. objIds.Append(unitPlayerData.ObjId);
  47. }
  48. else
  49. {
  50. long cnt = request.GiftNum * (DouyinItem.GiftId_1.Equals(request.GiftId)? 1 : 3);
  51. foreach (int objId in map.DeadUnitPlayer)
  52. {
  53. if (objId > 0)
  54. {
  55. objIds.Append(objId).Append(',');
  56. cnt -= 1;
  57. }
  58. if (cnt <= 0)
  59. {
  60. break;
  61. }
  62. }
  63. if (cnt > 0)
  64. {
  65. // 补充单位
  66. for (int i = 0; i < cnt; i++)
  67. {
  68. // 临时openId
  69. string _openId = (10000 + new Random().Next(999)).ToString();
  70. Vector2 pos = map.GetRandomPlayerPos();
  71. string name = map.GetRandomPlayerName();
  72. await map.AddUnitPlayer(_openId, 0, 1, "", pos.X, pos.Y, name, "");
  73. }
  74. }
  75. }
  76. notify.message = DouyinItem.GiftId_1.Equals(request.GiftId)? BattleNotify.TiktokGift_1.ToString() : BattleNotify.TiktokGift_10.ToString();
  77. notify.TriggerUnits = objIds.ToString();
  78. map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notify));
  79. // Log.Debug($"============================================仙女棒/能量药丸 notifyBattleServer - data={JsonSerializer.Serialize(notify)}");
  80. }
  81. else
  82. {
  83. for (int i = 0; i < request.GiftNum; i++)
  84. {
  85. switch (request.GiftId)
  86. {
  87. case DouyinItem.GiftId_52:
  88. // 甜甜圈
  89. const long maxLevel = 3; // 等级上限
  90. notify = new Struct.TriggerEventNotify();
  91. if (unitPlayerData.Level < maxLevel)
  92. {
  93. ++unitPlayerData.Level;
  94. notify.message = BattleNotify.TiktokGift_52.ToString();
  95. }
  96. else
  97. {
  98. notify.message = BattleNotify.TiktokGift_52_ext.ToString();
  99. }
  100. notify.TriggerUnits = unitPlayerData.ObjId.ToString();
  101. break;
  102. case DouyinItem.GiftId_99:
  103. // 能量电池
  104. notify = new Struct.TriggerEventNotify();
  105. notify.message = BattleNotify.TiktokGift_99.ToString();
  106. notify.TriggerUnits = unitPlayerData.ObjId.ToString();
  107. // 对应的贡献值
  108. map.AddContributeValue(request.OpenId, 99);
  109. break;
  110. case DouyinItem.GiftId_199:
  111. // 恶魔炸弹
  112. notify = new Struct.TriggerEventNotify();
  113. notify.message = BattleNotify.TiktokGift_199.ToString();
  114. notify.TriggerUnits = unitPlayerData.ObjId.ToString();
  115. // 对应的贡献值
  116. map.AddContributeValue(request.OpenId, 199);
  117. break;
  118. case DouyinItem.GiftId_520:
  119. // 神秘空投
  120. notify = new Struct.TriggerEventNotify();
  121. notify.message = BattleNotify.TiktokGift_520.ToString();
  122. notify.TriggerUnits = unitPlayerData.ObjId.ToString();
  123. // 对应的贡献值
  124. map.AddContributeValue(request.OpenId, 520);
  125. break;
  126. }
  127. map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notify));
  128. //间隔30ms,触发一次礼物效果
  129. await TimerComponent.Instance.WaitAsync(30);
  130. }
  131. }
  132. }
  133. }
  134. }