|
@@ -28,7 +28,7 @@ namespace ET.Server
|
|
|
{
|
|
|
case "unitDead":
|
|
|
{
|
|
|
- OnUnitDead(map, msg);
|
|
|
+ map.GetComponent<MapEventComponent>().OnUnitDead(map, msg);
|
|
|
return;
|
|
|
}
|
|
|
case "message":
|
|
@@ -123,67 +123,5 @@ namespace ET.Server
|
|
|
{
|
|
|
Log.Debug($"MapNotifyEvent msg: {JsonConvert.SerializeObject(msg, Formatting.Indented)}");
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
-
|
|
|
- private static void OnUnitDead(Map map, JObject msg)
|
|
|
- {
|
|
|
- int unitType = Convert.ToInt32(msg.SelectToken("unitType"));
|
|
|
-
|
|
|
- long hitFinalPlayerId = msg.SelectToken("hitFinal").ToString() == "" ? 0 : Convert.ToInt64(msg.SelectToken("hitFinal"));
|
|
|
- long belongPlayerId = msg.SelectToken("belongPlayerId").ToString() == "" ? 0 : Convert.ToInt64(msg.SelectToken("belongPlayerId"));
|
|
|
- long[] atkAssistantList = JsonConvert.DeserializeObject<long[]>(Convert.ToString(msg.SelectToken("atkAssistantList")) ?? string.Empty);
|
|
|
- WNPlayer hitFinalPlayer = null;
|
|
|
-
|
|
|
-
|
|
|
- if (belongPlayerId > 0)
|
|
|
- {
|
|
|
- hitFinalPlayer = map.GetPlayer(belongPlayerId);
|
|
|
- }
|
|
|
-
|
|
|
- if (hitFinalPlayer == null && hitFinalPlayerId > 0)
|
|
|
- {
|
|
|
- hitFinalPlayer = map.GetPlayer(hitFinalPlayerId);
|
|
|
- }
|
|
|
-
|
|
|
- switch (unitType)
|
|
|
- {
|
|
|
- case 0:
|
|
|
-
|
|
|
- int unitTemplateId = Convert.ToInt32(msg.SelectToken("unitTemplateId"));
|
|
|
- Monster monsterProp = MonsterCategory.Instance.Get(unitTemplateId);
|
|
|
- if (monsterProp == null)
|
|
|
- {
|
|
|
- Log.Error($"unitDead not fount montster : {unitTemplateId}, {map.MapId}, {msg}");
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
- map.GetComponent<MapEventComponent>().OnUnitDead(monsterProp, map);
|
|
|
- }
|
|
|
- break;
|
|
|
- case 1:
|
|
|
-
|
|
|
- long unitPlayerId = Convert.ToInt64(msg.SelectToken("unitPlayerId"));
|
|
|
-
|
|
|
- if (hitFinalPlayerId <= 0)
|
|
|
- {
|
|
|
-
|
|
|
- int attackerTemplateId = Convert.ToInt32(msg.SelectToken("attackerTemplateId"));
|
|
|
- Log.Debug($"玩家死亡...被boss杀死...playerId={unitPlayerId}, bossId={attackerTemplateId}");
|
|
|
- }
|
|
|
- else
|
|
|
- {
|
|
|
-
|
|
|
- Log.Debug($"玩家死亡...被玩家杀死...playerId={unitPlayerId}, 攻击者={hitFinalPlayerId}");
|
|
|
- }
|
|
|
- break;
|
|
|
- case 2:
|
|
|
-
|
|
|
- break;
|
|
|
- }
|
|
|
- }
|
|
|
}
|
|
|
}
|