|
@@ -234,7 +234,7 @@ namespace ET.Server
|
|
|
/// <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)
|
|
|
+ private static async ETTask<int> AddUnits(this Map self, List<Struct.MonsterUnit> data, bool needReturn)
|
|
|
{
|
|
|
if (data.Count <= 0)
|
|
|
{
|
|
@@ -256,7 +256,7 @@ namespace ET.Server
|
|
|
return addUnitsResult;
|
|
|
}
|
|
|
|
|
|
- public static async ETTask<int> AddUnits(this Map self, Struct.MonsterUnit data, bool needReturn)
|
|
|
+ private static async ETTask<int> AddUnits(this Map self, Struct.MonsterUnit data, bool needReturn)
|
|
|
{
|
|
|
List<Struct.MonsterUnit> listData = new List<Struct.MonsterUnit>();
|
|
|
listData.Add(data);
|
|
@@ -274,22 +274,6 @@ namespace ET.Server
|
|
|
await ETTask.CompletedTask;
|
|
|
}
|
|
|
|
|
|
- /// <summary>
|
|
|
- /// 场景复活数据
|
|
|
- /// </summary>
|
|
|
- /// <param name="self"></param>
|
|
|
- /// <param name="type">1:原地复活;2:出生点复活;3:复活点复活. 4:技能复活.</param>
|
|
|
- public static string ReliveData(this Map self, ReliveType type)
|
|
|
- {
|
|
|
- JObject jsonObject = new ();
|
|
|
- jsonObject.Add("type", (int)type);
|
|
|
- jsonObject.Add("qty", 0);
|
|
|
- jsonObject.Add("itemType", "diamond");
|
|
|
- jsonObject.Add("hp", 8);
|
|
|
- jsonObject.Add("mp", 0);
|
|
|
- return JsonConvert.SerializeObject(jsonObject, Formatting.Indented);
|
|
|
- }
|
|
|
-
|
|
|
/// <summary>
|
|
|
/// 是否结束
|
|
|
/// </summary>
|
|
@@ -306,22 +290,61 @@ namespace ET.Server
|
|
|
/// <param name="self"></param>
|
|
|
/// <param name="openId"></param>
|
|
|
/// <param name="templateId"></param>
|
|
|
- /// <param name="objId"></param>
|
|
|
- /// <param name="likes"></param>
|
|
|
+ /// <param name="force"></param>
|
|
|
+ /// <param name="flag"></param>
|
|
|
+ /// <param name="x"></param>
|
|
|
+ /// <param name="y"></param>
|
|
|
/// <param name="name"></param>
|
|
|
/// <param name="url"></param>
|
|
|
- public static Struct.UnitPlayerData AddUnitPlayer(this Map self, string openId, int templateId, int objId, long likes, string name, string url)
|
|
|
+ /// <returns></returns>
|
|
|
+ public static async ETTask<Struct.UnitPlayerData> AddUnitPlayer(this Map self, string openId, int templateId, int force, string flag, float x, float y, string name, string url)
|
|
|
{
|
|
|
- if (string.IsNullOrEmpty(openId) || templateId <= 0 || objId <= 0 || self.IsGameOver())
|
|
|
+ if (self.IsGameOver())
|
|
|
{
|
|
|
return null;
|
|
|
}
|
|
|
|
|
|
+ if (templateId <= 0)
|
|
|
+ {
|
|
|
+ int[] units = new int[] { 101, 121, 111, 131 };
|
|
|
+
|
|
|
+ templateId = RandomGenerator.RandomArray(units);
|
|
|
+ }
|
|
|
+
|
|
|
+ // 战斗服数据
|
|
|
+ Struct.MonsterUnit unit = new Struct.MonsterUnit();
|
|
|
+ unit.id = templateId;
|
|
|
+ unit.force = force;
|
|
|
+ if (!string.IsNullOrEmpty(flag))
|
|
|
+ {
|
|
|
+ unit.flag = flag;
|
|
|
+ }
|
|
|
+ else
|
|
|
+ {
|
|
|
+ unit.x = x;
|
|
|
+ unit.y = y;
|
|
|
+ }
|
|
|
+ unit.autoGuard = true;
|
|
|
+ unit.name = string.IsNullOrEmpty(name)? self.GetRandomPlayerName() : name;
|
|
|
+ unit.alias = url;
|
|
|
+
|
|
|
+ int objId = await self.AddUnits(unit, true);
|
|
|
+
|
|
|
Struct.UnitPlayerData unitPlayerData = null;
|
|
|
|
|
|
+ if (string.IsNullOrEmpty(openId))
|
|
|
+ {
|
|
|
+ openId = (10000 + new Random().Next(999)).ToString();
|
|
|
+ }
|
|
|
+
|
|
|
+ // 本地数据
|
|
|
if (self.UnitPlayers.ContainsKey(openId))
|
|
|
{
|
|
|
unitPlayerData = self.UnitPlayers[openId];
|
|
|
+
|
|
|
+ // 移除一下之前的场景单位
|
|
|
+ self.RemovePointUnit(unitPlayerData.ObjId).Coroutine();
|
|
|
+
|
|
|
unitPlayerData.TemplateId = templateId;
|
|
|
unitPlayerData.ObjId = objId;
|
|
|
unitPlayerData.Name = name;
|