|
@@ -15,48 +15,66 @@ namespace ET.Server
|
|
|
|
|
|
if (map == null)
|
|
|
{
|
|
|
- Log.Debug($"未找到房间...roomId={request.RoomId}");
|
|
|
+ Log.Error($"未找到房间...roomId={request.RoomId}");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
Struct.UnitPlayerData unitPlayerData = map.GetUnitPlayerData(request.OpenId);
|
|
|
-
|
|
|
// 数据是否存在
|
|
|
if (unitPlayerData == null)
|
|
|
{
|
|
|
- Log.Debug($"未找到单位玩家数据...openId={request.OpenId}");
|
|
|
+ Log.Error($"未找到单位玩家数据...openId={request.OpenId}");
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
+ unitPlayerData.GiftMoney += (int)request.GiftValue;
|
|
|
+
|
|
|
+ // 推送客户端
|
|
|
+ if (map.Player != null)
|
|
|
+ {
|
|
|
+ MessageHelper.SendToClient(map.Player, new G2C_GiftInfoPush { NickName = request.NickName, GiftType = DouyinItem.GiftHash[request.GiftId],
|
|
|
+ GiftNum = (int)request.GiftNum, Url = "", TotalMoney = unitPlayerData.GiftMoney, UnitId = unitPlayerData.ObjId});
|
|
|
+ }
|
|
|
+
|
|
|
Struct.TriggerEventNotify notify = null;
|
|
|
+ if (request.GiftId == DouyinItem.GiftId_1)
|
|
|
+ {
|
|
|
+ //TODO:复活合适的人
|
|
|
+ map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(new Struct.TriggerEventNotify()
|
|
|
+ {
|
|
|
+ message = BattleNotify.TiktokGift_1.ToString(),
|
|
|
+ TriggerUnits = unitPlayerData.ObjId.ToString()
|
|
|
+ })) ;
|
|
|
+ return;
|
|
|
+ }
|
|
|
+ else if(request.GiftId == DouyinItem.GiftId_10)
|
|
|
+ {
|
|
|
+ //TODO:复活合适的人
|
|
|
+ map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(new Struct.TriggerEventNotify()
|
|
|
+ {
|
|
|
+ message = BattleNotify.TiktokGift_10.ToString(),
|
|
|
+ TriggerUnits = unitPlayerData.ObjId.ToString()
|
|
|
+ }));
|
|
|
+ return;
|
|
|
+ }
|
|
|
|
|
|
for (int i = 0; i < request.GiftNum; i++)
|
|
|
{
|
|
|
switch (request.GiftId)
|
|
|
{
|
|
|
- case DouyinItem.GiftId_1:
|
|
|
- // 仙女棒
|
|
|
- notify = new Struct.TriggerEventNotify();
|
|
|
- notify.message = BattleNotify.TiktokGift_1.ToString();
|
|
|
- notify.TriggerUnits = unitPlayerData.ObjId.ToString();
|
|
|
- break;
|
|
|
- case DouyinItem.GiftId_10:
|
|
|
- // 能量药丸
|
|
|
- notify = new Struct.TriggerEventNotify();
|
|
|
- notify.message = BattleNotify.TiktokGift_10.ToString();
|
|
|
- notify.TriggerUnits = unitPlayerData.ObjId.ToString();
|
|
|
- break;
|
|
|
case DouyinItem.GiftId_52:
|
|
|
// 甜甜圈
|
|
|
const long maxLevel = 3; // 等级上限
|
|
|
- long level = unitPlayerData.Level + request.GiftNum;
|
|
|
- if (level >= maxLevel)
|
|
|
+ notify = new Struct.TriggerEventNotify();
|
|
|
+ if (unitPlayerData.Level < maxLevel)
|
|
|
{
|
|
|
- level = maxLevel;
|
|
|
+ ++unitPlayerData.Level;
|
|
|
+ notify.message = BattleNotify.TiktokGift_52.ToString();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ notify.message = BattleNotify.TiktokGift_52_ext.ToString();
|
|
|
}
|
|
|
- unitPlayerData.Level = level;
|
|
|
- notify = new Struct.TriggerEventNotify();
|
|
|
- notify.message = level < 3? BattleNotify.TiktokGift_52.ToString() : BattleNotify.TiktokGift_52_ext.ToString();
|
|
|
notify.TriggerUnits = unitPlayerData.ObjId.ToString();
|
|
|
break;
|
|
|
case DouyinItem.GiftId_99:
|
|
@@ -80,15 +98,9 @@ namespace ET.Server
|
|
|
}
|
|
|
|
|
|
map.GetXmdsManager().notifyBattleServer(map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notify));
|
|
|
+ //间隔30ms,触发一次礼物效果
|
|
|
+ await TimerComponent.Instance.WaitAsync(30);
|
|
|
}
|
|
|
-
|
|
|
- // 推送客户端
|
|
|
- if (map.Player != null)
|
|
|
- {
|
|
|
- MessageHelper.SendToClient(map.Player, new G2C_GiftInfoPush{ NickName = request.NickName, GiftType = notify.message, GiftNum = request.GiftNum});
|
|
|
- }
|
|
|
-
|
|
|
- await ETTask.CompletedTask;
|
|
|
}
|
|
|
}
|
|
|
}
|