Init.cs 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. using KYFramework;
  2. using KYFramework.Network;
  3. using Timer = KYFramework.Timer;
  4. namespace SimulationServer;
  5. public static class Init
  6. {
  7. public static void Start()
  8. {
  9. try
  10. {
  11. AppDomain.CurrentDomain.UnhandledException += (sender, e) => { Log.Error(e.ExceptionObject.ToString()); };
  12. SynchronizationContext.SetSynchronizationContext(OneThreadSynchronizationContext.Instance);
  13. Game.EventSystem.Add(typeof(Init).Assembly);
  14. Game.EventSystem.Add(typeof(Entity).Assembly);
  15. Game.EventSystem.Add(typeof(NetworkComponent).Assembly);
  16. Logger.Instance.ILog = new NLogger("Client", "./Config/NLog/NLog.config");
  17. Game.Scene.AddComponent<Timer>();
  18. Game.Scene.AddComponent<TimerComponent>();
  19. //Game.Scene.AddComponent<ConfigComponent>();
  20. //UDP
  21. //Game.Scene.AddComponent<MessageDispatcherComponent>();
  22. //TCP
  23. //Game.Scene.AddComponent<OpcodeTypeComponent>();
  24. //Game.Scene.AddComponent<MessageDispatcherComponent>();
  25. //Game.Scene.AddComponent<ServerComponent, string>(File.ReadAllText("Config/ipconfig.txt"));
  26. Game.Scene.AddComponent<SessionComponent>();
  27. // 任务
  28. Game.Scene.AddComponent<TaskComponent>();
  29. Game.EventSystem.Publish(new ServerStart());
  30. }
  31. catch (Exception e)
  32. {
  33. Console.WriteLine(e);
  34. }
  35. }
  36. public static void Update()
  37. {
  38. OneThreadSynchronizationContext.Instance.Update();
  39. Game.EventSystem.Update();
  40. }
  41. public static void LateUpdate()
  42. {
  43. Game.EventSystem.LateUpdate();
  44. }
  45. public static void OnApplicationQuit()
  46. {
  47. Game.Close();
  48. }
  49. }