R2G_LiveGiftHandler.cs 7.3 KB

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