| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- using System;
- using System.IO;
- using System.Threading;
- using Google.Protobuf;
- using UnityEngine;
- namespace ETModel
- {
- public class Init : MonoBehaviour
- {
- private void Start()
- {
- this.StartAsync().NoAwait();
- }
-
- private async ETVoid StartAsync()
- {
- try
- {
- SynchronizationContext.SetSynchronizationContext(OneThreadSynchronizationContext.Instance);
- DontDestroyOnLoad(gameObject);
- Game.EventSystem.Add(DLLType.Model, typeof(Init).Assembly);
- Game.Scene.AddComponent<GlobalConfigComponent>();
- Game.Scene.AddComponent<NetOuterComponent>();
- Game.Scene.AddComponent<ResourcesComponent>();
- Game.Scene.AddComponent<PlayerComponent>();
- Game.Scene.AddComponent<UnitComponent>();
- Game.Scene.AddComponent<UIComponent>();
- // 下载ab包
- await BundleHelper.DownloadBundle();
- Game.Hotfix.LoadHotfixAssembly();
- // 加载配置
- Game.Scene.GetComponent<ResourcesComponent>().LoadBundle("config.unity3d");
- Game.Scene.AddComponent<ConfigComponent>();
- Game.Scene.GetComponent<ResourcesComponent>().UnloadBundle("config.unity3d");
- Game.Scene.AddComponent<OpcodeTypeComponent>();
- Game.Scene.AddComponent<MessageDispatcherComponent>();
- Game.Hotfix.GotoHotfix();
- Game.EventSystem.Run(EventIdType.TestHotfixSubscribMonoEvent, "TestHotfixSubscribMonoEvent");
- }
- catch (Exception e)
- {
- Log.Error(e);
- }
- }
- private void Update()
- {
- OneThreadSynchronizationContext.Instance.Update();
- Game.Hotfix.Update?.Invoke();
- Game.EventSystem.Update();
- }
- private void LateUpdate()
- {
- Game.Hotfix.LateUpdate?.Invoke();
- Game.EventSystem.LateUpdate();
- }
- private void OnApplicationQuit()
- {
- Game.Hotfix.OnApplicationQuit?.Invoke();
- Game.Close();
- }
- }
- }
|