|
@@ -25,7 +25,7 @@ namespace ET.Server
|
|
|
self.UnitObjIds = new Dictionary<string, int>();
|
|
|
self.UnitPlayerLikes = new Dictionary<string, int>();
|
|
|
|
|
|
- // 场景事件组件
|
|
|
+ // 战斗服事件组件
|
|
|
self.AddComponent<MapEventComponent>();
|
|
|
// 场景复活组件
|
|
|
self.AddComponent<MapReliveTimeComponent>();
|
|
@@ -57,7 +57,11 @@ namespace ET.Server
|
|
|
return string.IsNullOrEmpty(result)? null : JsonConvert.DeserializeObject<GetPlayerData>(result);
|
|
|
}
|
|
|
|
|
|
- /** 从战斗服同步角色数据 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 从战斗服同步角色数据
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
public static void SyncPlayerHistoryData(this Map self, WNPlayer player)
|
|
|
{
|
|
|
GetPlayerData result = self.GetPlayerData(player.GetId());
|
|
@@ -70,28 +74,33 @@ namespace ET.Server
|
|
|
player.GetComponent<PlayerTempDataComponent>().SyncHistoryData(self.Prop, self.InstanceId, result);
|
|
|
}
|
|
|
|
|
|
- /** 场景添加角色 **/
|
|
|
- public static void AddPlayer(this Map self, WNPlayer player)
|
|
|
- {
|
|
|
- Log.Info($"addPlayer: playerId={player.GetId()}, mapId={self.MapId}, ip={player.Session.RemoteAddress}");
|
|
|
- self.SetForce(player);
|
|
|
- self.Players.TryAdd(player.GetId(), player);
|
|
|
- player.Map = self;
|
|
|
- }
|
|
|
-
|
|
|
- /** 获取场景角色 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 获取场景角色
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="playerId"></param>
|
|
|
+ /// <returns></returns>
|
|
|
public static WNPlayer GetPlayer(this Map self, long playerId)
|
|
|
{
|
|
|
return self.Players.TryGetValue(playerId, out WNPlayer player) ? player : null;
|
|
|
}
|
|
|
|
|
|
- /** 分配阵营 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 分配阵营
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
public static void SetForce(this Map self, WNPlayer player)
|
|
|
{
|
|
|
player.Force = (int)AreaForce.FORCEA;
|
|
|
}
|
|
|
|
|
|
- /** 移除角色,通用框架接口 切换场景/掉线会自动调用,尽量 不要手动调用 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 移除角色,通用框架接口 切换场景/掉线会自动调用,尽量 不要手动调用
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ /// <param name="keepObject"></param>
|
|
|
public static void RemovePlayer(this Map self, WNPlayer player, bool keepObject)
|
|
|
{
|
|
|
Log.Info($"removePlayer: playerId={player.GetId()}, mapId={self.MapId}, ip={player.Session.RemoteAddress}");
|
|
@@ -104,7 +113,11 @@ namespace ET.Server
|
|
|
player.GetComponent<PlayerTempDataComponent>().MapData.ready = false;
|
|
|
}
|
|
|
|
|
|
- /** 玩家进入场景请求 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 玩家进入场景请求
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
public static void PlayerEnterRequest(this Map self, WNPlayer player)
|
|
|
{
|
|
|
bool ready = player.GetComponent<PlayerTempDataComponent>().MapData.ready;
|
|
@@ -127,7 +140,52 @@ namespace ET.Server
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- /** 玩家离开场景请求 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 场景添加角色
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ public static void AddPlayer(this Map self, WNPlayer player)
|
|
|
+ {
|
|
|
+ Log.Info($"addPlayer: playerId={player.GetId()}, mapId={self.MapId}, ip={player.Session.RemoteAddress}");
|
|
|
+ self.SetForce(player);
|
|
|
+ self.Players.TryAdd(player.GetId(), player);
|
|
|
+ player.Map = self;
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 玩家进场景后推的消息
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ public static void PlayerReady(this Map self, WNPlayer player)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 角色成功进入场景
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ public static void PlayerEntered(this Map self, WNPlayer player)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 玩家登录事件
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ public static void PlayerLogin(this Map self, WNPlayer player)
|
|
|
+ {
|
|
|
+ }
|
|
|
+
|
|
|
+ /// <summary>
|
|
|
+ /// 玩家离开场景请求
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ /// <param name="keepObject"></param>
|
|
|
public static void PlayerLeaveRequest(this Map self, WNPlayer player, bool keepObject)
|
|
|
{
|
|
|
try
|
|
@@ -142,13 +200,24 @@ namespace ET.Server
|
|
|
Log.Debug($"playerLeaveRequest--------------------{player.GetName()} - {self.InstanceId} - {self.Prop.Name}");
|
|
|
}
|
|
|
|
|
|
- /** 绑定战斗服 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 绑定战斗服
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="player"></param>
|
|
|
+ /// <param name="serverId"></param>
|
|
|
public static void BindBattleServer(this Map self, WNPlayer player, string serverId)
|
|
|
{
|
|
|
self.BattleServerId = serverId;
|
|
|
}
|
|
|
|
|
|
- /** 创建单位 **/
|
|
|
+ /// <summary>
|
|
|
+ /// 创建单位
|
|
|
+ /// </summary>
|
|
|
+ /// <param name="self"></param>
|
|
|
+ /// <param name="data"></param>
|
|
|
+ /// <param name="needReturn"></param>
|
|
|
+ /// <returns></returns>
|
|
|
public static async ETTask<int> AddUnits(this Map self, List<Struct.MonsterUnit> data, bool needReturn)
|
|
|
{
|
|
|
if (data.Count <= 0)
|