EntryEvent2_InitServer.cs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  1. using System;
  2. using System.Net;
  3. using ET;
  4. namespace ET.Server
  5. {
  6. [Event(SceneType.Process)]
  7. public class EntryEvent2_InitServer: BEvent<ET.EventType.EntryEvent2>
  8. {
  9. protected override async ETTask OnEvent(ET.EventType.EntryEvent2 args)
  10. {
  11. Root.Instance.Scene.AddComponent<AIDispatcherComponent>();
  12. // 发送普通actor消息
  13. Root.Instance.Scene.AddComponent<ActorMessageSenderComponent>();
  14. // 发送location actor消息
  15. Root.Instance.Scene.AddComponent<ActorLocationSenderComponent>();
  16. // 访问location server的组件
  17. Root.Instance.Scene.AddComponent<LocationProxyComponent>();
  18. Root.Instance.Scene.AddComponent<ActorMessageDispatcherComponent>();
  19. Root.Instance.Scene.AddComponent<ServerSceneManagerComponent>();
  20. Root.Instance.Scene.AddComponent<RobotCaseComponent>();
  21. // 访问mongodb数据库组件
  22. Root.Instance.Scene.AddComponent<DBManagerComponent>();
  23. StartProcessConfig processConfig = StartProcessConfigCategory.Instance.Get(Options.Instance.Process);
  24. Log.Debug($"AppType: {Options.Instance.AppType}");
  25. switch (Options.Instance.AppType)
  26. {
  27. case AppType.Server:
  28. {
  29. Root.Instance.Scene.AddComponent<NetInnerComponent, IPEndPoint>(processConfig.InnerIPPort);
  30. var processScenes = StartSceneConfigCategory.Instance.GetByProcess(Options.Instance.Process);
  31. foreach (StartSceneConfig startConfig in processScenes)
  32. {
  33. await SceneFactory.CreateServerScene(ServerSceneManagerComponent.Instance, startConfig.Id, startConfig.InstanceId, startConfig.Zone, startConfig.Name,
  34. startConfig.Type, startConfig);
  35. }
  36. break;
  37. }
  38. case AppType.Watcher:
  39. {
  40. StartMachineConfig startMachineConfig = WatcherHelper.GetThisMachineConfig();
  41. WatcherComponent watcherComponent = Root.Instance.Scene.AddComponent<WatcherComponent>();
  42. watcherComponent.Start(Options.Instance.CreateScenes);
  43. Root.Instance.Scene.AddComponent<NetInnerComponent, IPEndPoint>(NetworkHelper.ToIPEndPoint($"{startMachineConfig.InnerIP}:{startMachineConfig.WatcherPort}"));
  44. break;
  45. }
  46. case AppType.GameTool:
  47. break;
  48. }
  49. if (Options.Instance.Console == 1)
  50. {
  51. Root.Instance.Scene.AddComponent<ConsoleComponent>();
  52. }
  53. }
  54. }
  55. }