|
@@ -31,84 +31,6 @@ namespace ET.Server
|
|
return;
|
|
return;
|
|
}
|
|
}
|
|
|
|
|
|
- //客户端测试功能
|
|
|
|
- // if (request.Message.StartsWith("test:"))
|
|
|
|
- // {
|
|
|
|
- // var map = player.Map;
|
|
|
|
- // if(map == null || map.UnitPlayers == null)
|
|
|
|
- // {
|
|
|
|
- // Log.Debug("map not exist, abort cmd");
|
|
|
|
- // return;
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // long roomId = 0;
|
|
|
|
- // var maphash = GameMapComponent.Instance.rooms;
|
|
|
|
- // foreach ( var rid in maphash.Keys )
|
|
|
|
- // {
|
|
|
|
- // if (maphash[rid] == map.Id)
|
|
|
|
- // {
|
|
|
|
- // roomId = rid;
|
|
|
|
- // break;
|
|
|
|
- // }
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // long instanceid = 0;
|
|
|
|
- // List<StartSceneConfig> list = RealmGateAddressHelper.GetAllGame(1);
|
|
|
|
- // foreach (StartSceneConfig config in list.Where(config => config is { Id: 10001 }))
|
|
|
|
- // {
|
|
|
|
- // instanceid = config.InstanceId;
|
|
|
|
- // break;
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // var funcIndex = int.Parse(request.Message[5..]);
|
|
|
|
- // if(funcIndex == 8)
|
|
|
|
- // {
|
|
|
|
- // string _openId = "xx";
|
|
|
|
- // while (true)
|
|
|
|
- // {
|
|
|
|
- // _openId = (10000 + new Random().Next(99999999)).ToString();
|
|
|
|
- // if (player.Map.GetUnitPlayerByOpenId(_openId) != null) continue;
|
|
|
|
- // break;
|
|
|
|
- // }
|
|
|
|
- // var name = GetRandomPlayerName();
|
|
|
|
- // var url = GetRandomUrl();
|
|
|
|
- // string[] content = { "1", "2", "3", "4" };
|
|
|
|
- // MessageHelper.SendActor(instanceid, new R2G_LiveComment() { OpenId = _openId, Url = url, RoomId = roomId, NickName = name, Content = RandomGenerator.RandomArray(content)});
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // var players = map.UnitPlayers.Values.ToArray();
|
|
|
|
- // if (players.Length == 0)
|
|
|
|
- // {
|
|
|
|
- // Log.Debug("Player count == 0, abort cmd");
|
|
|
|
- // return;
|
|
|
|
- // }
|
|
|
|
- // var rand = new Random();
|
|
|
|
- // var randunit = players[rand.Next(players.Length)];
|
|
|
|
- // if (funcIndex == 7)
|
|
|
|
- // {
|
|
|
|
- // MessageHelper.SendActor(instanceid, new R2G_LiveLike() { OpenId = randunit.OpenId, RoomId = roomId, NickName = randunit.Name, Url = randunit.Url, Likes = 30 });
|
|
|
|
- // }
|
|
|
|
- // else if(funcIndex <= 6 && funcIndex >= 1)
|
|
|
|
- // {
|
|
|
|
- // string[] GIFT = { DouyinItem.GiftId_1, DouyinItem.GiftId_10, DouyinItem.GiftId_52, DouyinItem.GiftId_99, DouyinItem.GiftId_199, DouyinItem.GiftId_520 };
|
|
|
|
- // int[] GiftValue = { 10, 100, 520, 990, 1990, 5200 };
|
|
|
|
- // int cnt = 1;
|
|
|
|
- // switch(funcIndex)
|
|
|
|
- // {
|
|
|
|
- // case 1:
|
|
|
|
- // cnt = (int)Math.Sqrt(rand.Next(1, 100));
|
|
|
|
- // break;
|
|
|
|
- // case 2:
|
|
|
|
- // cnt = rand.Next(1, 10);
|
|
|
|
- // break;
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // MessageHelper.SendActor(instanceid, new R2G_LiveGift() { OpenId = randunit.OpenId, RoomId = roomId, NickName = randunit.Name, Url = randunit.Url, GiftId = GIFT[funcIndex-1], GiftNum = cnt, GiftValue = GiftValue[funcIndex-1] * cnt });
|
|
|
|
- // }
|
|
|
|
- //
|
|
|
|
- // return;
|
|
|
|
- // }
|
|
|
|
-
|
|
|
|
// 通知战斗服
|
|
// 通知战斗服
|
|
player.GetXmdsManager().notifyBattleServer(player.Map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(new Struct.TriggerEventNotify() { message = request.Message }));
|
|
player.GetXmdsManager().notifyBattleServer(player.Map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(new Struct.TriggerEventNotify() { message = request.Message }));
|
|
|
|
|