R2G_LiveCommentHandler.cs 1.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Numerics;
  3. namespace ET.Server
  4. {
  5. /// <summary>
  6. /// 抖音推送回调, 评论
  7. /// </summary>
  8. [ActorMessageHandler(SceneType.Game)]
  9. public class R2G_LiveCommentHandler: AMActorHandler<Scene, R2G_LiveComment>
  10. {
  11. protected override async ETTask Run(Scene scene, R2G_LiveComment request)
  12. {
  13. if (string.IsNullOrEmpty(request.OpenId))
  14. {
  15. Log.Debug($"未找到openId...");
  16. return;
  17. }
  18. // 房间是否存在
  19. Map map = scene.GetComponent<GameMapComponent>().GetMapByRoomId(request.RoomId);
  20. if (map == null)
  21. {
  22. Log.Debug($"未找到房间...");
  23. return;
  24. }
  25. if(string.IsNullOrEmpty(request.Content))
  26. {
  27. Log.Debug("null live comment");
  28. return;
  29. }
  30. // 初始模板id
  31. int[] units = { 101, 121, 111, 131 };
  32. var index = request.Content[0] - '1';
  33. if(index < 0 || index >= units.Length)
  34. {
  35. Log.Debug("illegal live comment");
  36. return;
  37. }
  38. Vector2 pos = map.GetRandomPlayerPos();
  39. await map.AddUnitPlayer(request.OpenId, units[index], 1, "", pos.X, pos.Y, request.NickName, request.Url);
  40. await ETTask.CompletedTask;
  41. }
  42. }
  43. }