RobotManagerComponentSystem.cs 1.5 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. using System;
  2. using System.Linq;
  3. namespace ET.Server
  4. {
  5. public static class RobotManagerComponentSystem
  6. {
  7. public static async ETTask<Scene> NewRobot(this RobotManagerComponent self, int zone)
  8. {
  9. await ETTask.CompletedTask;
  10. return null;
  11. //Scene clientScene = null;
  12. //try
  13. //{
  14. // clientScene = await Client.SceneFactory.CreateClientScene(zone, "Robot");
  15. // await Client.LoginHelper.Login(clientScene, zone.ToString(), zone.ToString());
  16. // await Client.EnterMapHelper.EnterMapAsync(clientScene);
  17. // Log.Debug($"create robot ok: {zone}");
  18. // return clientScene;
  19. //}
  20. //catch (Exception e)
  21. //{
  22. // clientScene?.Dispose();
  23. // throw new Exception($"RobotSceneManagerComponent create robot fail, zone: {zone}", e);
  24. //}
  25. }
  26. public static void RemoveAll(this RobotManagerComponent self)
  27. {
  28. foreach (Entity robot in self.Children.Values.ToArray())
  29. {
  30. robot.Dispose();
  31. }
  32. }
  33. public static void Remove(this RobotManagerComponent self, long id)
  34. {
  35. self.GetChild<Scene>(id)?.Dispose();
  36. }
  37. public static void Clear(this RobotManagerComponent self)
  38. {
  39. foreach (Entity entity in self.Children.Values.ToArray())
  40. {
  41. entity.Dispose();
  42. }
  43. }
  44. }
  45. }