|
@@ -4,7 +4,7 @@ using System.Text.Json;
|
|
|
namespace ET.Server
|
|
|
{
|
|
|
/// <summary>
|
|
|
- /// 游戏开始
|
|
|
+ /// 向战斗服发送特定消息(触发编辑器事件)
|
|
|
/// </summary>
|
|
|
[MessageHandler(SceneType.Game)]
|
|
|
public class C2G_BattleNotifyHandler : AMRpcHandler<C2G_BattleNotify, G2C_BattleNotify>
|
|
@@ -29,10 +29,49 @@ namespace ET.Server
|
|
|
return;
|
|
|
}
|
|
|
|
|
|
- // 通知战斗服
|
|
|
- Struct.TriggerEventNotify notifyMsg = new Struct.TriggerEventNotify();
|
|
|
- notifyMsg.message = request.Message;
|
|
|
+ //甜甜圈礼物功能示例
|
|
|
+ /*if(eventname = "甜甜圈")
|
|
|
+ {
|
|
|
+ player.GetXmdsManager().notifyBattleServer(player.Map.Id.ToString(), NotifyBSName.TriggerEvent,
|
|
|
+ JsonSerializer.Serialize(new Struct.TriggerEventNotify() { message = BattleNotify.TiktokGift_52.ToString() }));
|
|
|
+ return;
|
|
|
+ }*/
|
|
|
|
|
|
+ Struct.TriggerEventNotify notifyMsg = new Struct.TriggerEventNotify() { message = request.Message };
|
|
|
+ //TODO:从玩家的openid换取在战场中的objectID
|
|
|
+ int objid = 7;
|
|
|
+ if (request.Message == BattleNotify.TiktokGift_1.ToString())
|
|
|
+ {
|
|
|
+ //仙女棒特殊处理示例
|
|
|
+ var hp = player.GetZoneManager().getUnitHP(player.Map.Id.ToString(), objid);
|
|
|
+ if(hp <= 0)
|
|
|
+ {
|
|
|
+ //如果自己不是dead状态,则随机复活他人
|
|
|
+ notifyMsg.message = BattleNotify.TiktokGift_1_ext.ToString();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ //送礼物的人的objectid填入到TriggerUnits中,有多个用半角逗号隔开
|
|
|
+ notifyMsg.TriggerUnits = objid.ToString();
|
|
|
+ }
|
|
|
+ }
|
|
|
+ else if(request.Message == BattleNotify.TiktokGift_10.ToString())
|
|
|
+ {
|
|
|
+ //能力药丸特殊处理示例
|
|
|
+ var hp = player.GetZoneManager().getUnitHP(player.Map.Id.ToString(), objid);
|
|
|
+ if (hp <= 0)
|
|
|
+ {
|
|
|
+ //如果自己不是dead状态,则随机复活他人
|
|
|
+ notifyMsg.message = BattleNotify.TiktokGift_10_ext.ToString();
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ //送礼物的人的objectid填入到TriggerUnits中,有多个用半角逗号隔开
|
|
|
+ notifyMsg.TriggerUnits = objid.ToString();
|
|
|
+ }
|
|
|
+ }
|
|
|
+
|
|
|
+ // 通知战斗服
|
|
|
player.GetXmdsManager().notifyBattleServer(player.Map.Id.ToString(), NotifyBSName.TriggerEvent, JsonSerializer.Serialize(notifyMsg));
|
|
|
|
|
|
reply();
|