R2G_LiveLikeHandler.cs 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. using System.Numerics;
  2. using System.Text.Json;
  3. namespace ET.Server
  4. {
  5. /// <summary>
  6. /// 抖音推送回调, 点赞
  7. /// </summary>
  8. [ActorMessageHandler(SceneType.Game)]
  9. public class R2G_LiveLikeHandler : AMActorHandler<Scene, R2G_LiveLike>
  10. {
  11. protected override async ETTask Run(Scene scene, R2G_LiveLike request)
  12. {
  13. // 房间是否存在
  14. Map map = scene.GetComponent<GameMapComponent>().GetMapByRoomId(request.RoomId);
  15. if (map == null)
  16. {
  17. Log.Debug($"未找到房间...roomId={request.RoomId}");
  18. return;
  19. }
  20. // 数据是否存在
  21. Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerByOpenId(request.OpenId);
  22. if (unitPlayerData == null)
  23. {
  24. Vector2 pos = map.GetRandomPlayerPos();
  25. unitPlayerData = await map.AddUnitPlayer(request.OpenId, 0, 1, "", pos.X, pos.Y, request.NickName, request.Url);
  26. }
  27. // 累计增加点赞数
  28. unitPlayerData.Likes += request.Likes;
  29. map.TotalLikeNum += request.Likes;
  30. // 点赞增加贡献值
  31. unitPlayerData.ContributeValue += request.Likes;
  32. const int configNum = 1000; //到达多少值后,总数量减去这个值,然后继续累加
  33. bool notifyBattleServer = false;
  34. // 点赞总数>=ConfigNum时, 通知战斗服
  35. if (map.TotalLikeNum >= configNum)
  36. {
  37. // 设置总数
  38. map.TotalLikeNum -= configNum;
  39. map.ConfigNum += 1;
  40. notifyBattleServer = true;
  41. }
  42. // 推送客户端
  43. if (map.Player != null)
  44. {
  45. long totalNum = map.ConfigNum * configNum + map.TotalLikeNum;
  46. MessageHelper.SendToClient(map.Player, new G2C_LikeInfoPush{ TotalNum = totalNum, ConfigNum = configNum});
  47. }
  48. if (notifyBattleServer)
  49. {
  50. Struct.TriggerEventNotify notify = new Struct.TriggerEventNotify();
  51. notify.message = BattleNotify.TiktokLike_energy.ToString();
  52. notify.TriggerUnits = unitPlayerData.ObjId.ToString();
  53. map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notify));
  54. }
  55. await ETTask.CompletedTask;
  56. }
  57. }
  58. }