Quellcode durchsuchen

【优化】解决登录后关掉客户端再登录,GameDouyinComponent组件报错的问题

johnclot69 vor 1 Jahr
Ursprung
Commit
e29fce8e11

+ 4 - 4
DotNet/Hotfix/Scenes/Game/GameDouyinComponentSystem.cs

@@ -9,12 +9,12 @@ namespace ET.Server
     [FriendOf(typeof (GameDouyinComponent))]
     public static class GameDouyinComponentSystem
     {
-        public class GameDouyinComponentAwakeSystem: AwakeSystem<GameDouyinComponent>
+        public class GameDouyinComponentAwakeSystem: AwakeSystem<GameDouyinComponent, bool>
         {
-            protected override void Awake(GameDouyinComponent self)
+            protected override void Awake(GameDouyinComponent self, bool tokenIsNull)
             {
                 Log.Info($"创建抖音组件...");
-                self.InitAccessToken();
+                self.TokenIsNull = tokenIsNull;
             }
         }
 
@@ -49,7 +49,7 @@ namespace ET.Server
         /// 初始化抖音接口调用凭证
         /// </summary>
         /// <param name="self"></param>
-        private static void InitAccessToken(this GameDouyinComponent self)
+        public static void InitAccessToken(this GameDouyinComponent self)
         {
             // 请求头
             Dictionary<string, string> head = new Dictionary<string, string>();

+ 11 - 4
DotNet/Hotfix/Scenes/Game/Handler/C2G_LoginGameHandler.cs

@@ -29,6 +29,8 @@ namespace ET.Server
             PlayerInfo playerInfo = new PlayerInfo();
             playerInfo.Id = IdGenerater.Instance.GenerateUnitId(scene.DomainZone());
 
+            GameDouyinComponent douyinComponent = Root.Instance.Scene.GetComponent<GameDouyinComponent>();
+
             if (tokenIsNull)
             {
                 // Token为空初始化信息
@@ -37,14 +39,19 @@ namespace ET.Server
                 playerInfo.AvatarUrl = "";
                 playerInfo.Name = "主播-" + playerInfo.Id;
 
-                scene.AddComponent<GameDouyinComponent>().TokenIsNull = true;
+                if (douyinComponent == null)
+                {
+                    Root.Instance.Scene.AddComponent<GameDouyinComponent, bool>(true);
+                }
             }
             else
             {
-                // 添加抖音组件
-                GameDouyinComponent douyinComponent = scene.AddComponent<GameDouyinComponent>();
+                if (douyinComponent == null)
+                {
+                    douyinComponent = Root.Instance.Scene.AddComponent<GameDouyinComponent, bool>(false);
 
-                douyinComponent.TokenIsNull = false;
+                    douyinComponent.InitAccessToken();
+                }
 
                 JObject roomInfo = douyinComponent.GetRoomInfo(request.Token.Trim());
 

+ 3 - 3
DotNet/Hotfix/Scenes/Game/Map/MapSystem.cs

@@ -44,7 +44,7 @@ namespace ET.Server
                 // 抖音直播点赞任务组件
                 self.AddComponent<MapDouyinLiveLikeComponent>();
                 // 抖音直播礼物置顶
-                self.DomainScene().GetComponent<GameDouyinComponent>().TopGifts(self.RoomId);
+                Root.Instance.Scene.GetComponent<GameDouyinComponent>().TopGifts(self.RoomId);
             }
         }
 
@@ -459,7 +459,7 @@ namespace ET.Server
         /// <returns></returns>
         public static string GetDouyinAccessToken(this Map self)
         {
-            return self.DomainScene().GetComponent<GameDouyinComponent>().AccessToken;
+            return Root.Instance.Scene.GetComponent<GameDouyinComponent>().AccessToken;
         }
 
         /// <summary>
@@ -469,7 +469,7 @@ namespace ET.Server
         /// <returns></returns>
         public static bool TokenIsNull(this Map self)
         {
-            return self.DomainScene().GetComponent<GameDouyinComponent>().TokenIsNull;
+            return Root.Instance.Scene.GetComponent<GameDouyinComponent>().TokenIsNull;
         }
 
         /// <summary>

+ 1 - 1
DotNet/Model/Scenes/Game/GameDouyinComponent.cs

@@ -1,7 +1,7 @@
 namespace ET.Server
 {
     [ComponentOf(typeof (Scene))]
-    public class GameDouyinComponent: Entity, IAwake, IDestroy, IUpdate
+    public class GameDouyinComponent: Entity, IAwake<bool>, IDestroy, IUpdate
     {
         /** 抖音接口全局唯一调用凭据 **/
         public string AccessToken { get; set; }