Jelajahi Sumber

修改配置文件加载因为异步而顺序乱套的问题

johnclot69 1 tahun lalu
induk
melakukan
c19b60c38b

+ 13 - 0
DotNet/Hotfix/EntryLoadCfg_Server.cs

@@ -0,0 +1,13 @@
+using ET.EventType;
+
+namespace ET
+{
+    [Event(SceneType.Process)]
+    public class EntryLoadCfg_Server : AEvent<ET.EventType.EntryLoadCfg>
+    {
+        protected override async ETTask Run(Scene scene, EntryLoadCfg a)
+        {
+            await Game.AddSingleton<ConfigComponent>().LoadAsync();
+        }
+    }
+}

+ 32 - 2
Share/Tool/ExcelExporter/ExcelExporter.cs

@@ -284,6 +284,11 @@ namespace ET
         private static Assembly DynamicBuild(ConfigType configType)
         {
             string classPath = GetClassDir(configType);
+            if (!Directory.Exists(classPath))
+            {
+                Directory.CreateDirectory(classPath);
+            }
+            
             List<SyntaxTree> syntaxTrees = new List<SyntaxTree>();
             List<string> protoNames = new List<string>();
             foreach (string classFile in Directory.GetFiles(classPath, "*.cs"))
@@ -599,8 +604,33 @@ namespace ET
             foreach (string jsonPath in jsonPaths)
             {
                 string json = File.ReadAllText(jsonPath);
-                object deserialize = BsonSerializer.Deserialize(json, type);
-                final.Merge(deserialize);
+                try
+                {
+                    object deserialize = BsonSerializer.Deserialize(json, type);
+                    final.Merge(deserialize);
+                }
+                catch
+                {
+                    #region 为了定位该文件中具体那一行出现了异常
+                    List<string> list = new List<string>(json.Split('\n'));
+                    if (list.Count > 0)
+                        list.RemoveAt(0);
+                    if (list.Count > 0)
+                        list.RemoveAt(list.Count-1);
+                    foreach (string s in list)
+                    {
+                        try
+                        {
+                            BsonSerializer.Deserialize(s.Substring(0, s.Length-1), subType);
+                        }
+                        catch (Exception)
+                        {
+                            Log.Console($"json : {s}");
+                            throw;
+                        }
+                    }
+                    #endregion
+                }
             }
 
             string path = Path.Combine(dir, $"{protoName}Category.bytes");

+ 6 - 10
Unity/Assets/Scripts/Codes/Model/Share/Entry.cs

@@ -2,17 +2,13 @@
 {
     namespace EventType
     {
-        public struct EntryEvent1
-        {
-        }   
+        public struct EntryLoadCfg { }
+
+        public struct EntryEvent1 { }   
         
-        public struct EntryEvent2
-        {
-        } 
+        public struct EntryEvent2 { } 
         
-        public struct EntryEvent3
-        {
-        } 
+        public struct EntryEvent3 { } 
     }
     
     public static class Entry
@@ -37,7 +33,7 @@
             
             Game.AddSingleton<NetServices>();
             Game.AddSingleton<Root>();
-            await Game.AddSingleton<ConfigComponent>().LoadAsync();
+            await EventSystem.Instance.PublishAsync(Root.Instance.Scene, new EventType.EntryLoadCfg());
 
             await EventSystem.Instance.PublishAsync(Root.Instance.Scene, new EventType.EntryEvent1());
             await EventSystem.Instance.PublishAsync(Root.Instance.Scene, new EventType.EntryEvent2());

+ 1 - 1
Unity/Assets/Scripts/Core/Module/EventSystem/EventSystem.cs

@@ -629,7 +629,7 @@ namespace ET
                 return;
             }
 
-            SceneType sceneType = scene.SceneType;
+            SceneType sceneType = scene == null ? SceneType.None: scene.SceneType;
             foreach (EventInfo eventInfo in iEvents)
             {
                 if (sceneType != eventInfo.SceneType && eventInfo.SceneType != SceneType.None)

+ 4 - 1
Unity/Assets/Scripts/Core/Module/Network/KChannel.cs

@@ -496,7 +496,10 @@ namespace ET
 						break;
 					}
 				}
-				NetServices.Instance.OnRead(this.Service.Id, channelId, actorId, message);
+				if (message != null)
+				{
+					NetServices.Instance.OnRead(this.Service.Id, channelId, actorId, message);
+				}
 			}
 			catch (Exception e)
 			{