Init.cs 1.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. using System;
  2. using System.Threading;
  3. using CommandLine;
  4. using UnityEngine;
  5. namespace ET
  6. {
  7. public class Init: MonoBehaviour
  8. {
  9. private void Start()
  10. {
  11. DontDestroyOnLoad(gameObject);
  12. AppDomain.CurrentDomain.UnhandledException += (sender, e) =>
  13. {
  14. Log.Error(e.ExceptionObject.ToString());
  15. };
  16. Game.AddSingleton<MainThreadSynchronizationContext>();
  17. // 命令行参数
  18. string[] args = "".Split(" ");
  19. Parser.Default.ParseArguments<Options>(args)
  20. .WithNotParsed(error => throw new Exception($"命令行格式错误! {error}"))
  21. .WithParsed(Game.AddSingleton);
  22. Game.AddSingleton<TimeInfo>();
  23. Game.AddSingleton<Logger>().ILog = new UnityLogger();
  24. Game.AddSingleton<ObjectPool>();
  25. Game.AddSingleton<IdGenerater>();
  26. Game.AddSingleton<EventSystem>();
  27. Game.AddSingleton<TimerComponent>();
  28. Game.AddSingleton<CoroutineLockComponent>();
  29. ETTask.ExceptionHandler += Log.Error;
  30. Game.AddSingleton<CodeLoader>().Start();
  31. }
  32. private void Update()
  33. {
  34. Game.Update((int)(Time.deltaTime * 1000));
  35. }
  36. private void LateUpdate()
  37. {
  38. Game.LateUpdate();
  39. Game.FrameFinishUpdate();
  40. }
  41. private void OnApplicationQuit()
  42. {
  43. Game.Close();
  44. }
  45. }
  46. }