12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System;
- using System.Numerics;
- namespace ET.Server
- {
- /// <summary>
- /// 抖音推送回调, 评论
- /// </summary>
- [ActorMessageHandler(SceneType.Game)]
- public class R2G_LiveCommentHandler: AMActorHandler<Scene, R2G_LiveComment>
- {
- protected override async ETTask Run(Scene scene, R2G_LiveComment request)
- {
- if (string.IsNullOrEmpty(request.OpenId))
- {
- Log.Debug($"未找到openId...");
- return;
- }
- // 房间是否存在
- Map map = scene.GetComponent<GameMapComponent>().GetMapByRoomId(request.RoomId);
- if (map == null)
- {
- Log.Debug($"未找到房间...");
- return;
- }
- if(string.IsNullOrEmpty(request.Content))
- {
- Log.Debug("null live comment");
- return;
- }
- // 初始模板id
- int[] units = { 101, 121, 111, 131 };
- var index = request.Content[0] - '1';
- if(index < 0 || index >= units.Length)
- {
- Log.Debug("illegal live comment");
- return;
- }
- Vector2 pos = map.GetRandomPlayerPos();
- await map.AddUnitPlayer(request.OpenId, units[index], 1, "", pos.X, pos.Y, request.NickName, request.Url);
- await ETTask.CompletedTask;
- }
- }
- }
|