Browse Source

【游戏服】增加‘仙女棒’‘甜甜圈’等礼物的处理逻辑示例

大爷 1 year ago
parent
commit
c4f6e1b55b

+ 43 - 4
DotNet/Hotfix/Scenes/Game/Handler/C2G_BattleNotifyHandler.cs

@@ -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();

+ 3 - 0
DotNet/Model/Const/Struct.cs

@@ -294,6 +294,9 @@
         {
             /** 事件名称 **/
             public string message { get; set; }
+
+            //触发的单位objectId列表
+            public string TriggerUnits { get; set; }
         }
     }
 }