mirror of
https://github.com/Alex-Rachel/TEngine.git
synced 2025-08-14 16:51:28 +00:00
72 lines
2.8 KiB
C#
72 lines
2.8 KiB
C#
namespace ET.Client
|
|
{
|
|
|
|
public static partial class LSSceneChangeHelper
|
|
{
|
|
// 场景切换协程
|
|
public static async ETTask SceneChangeTo(Scene root, string sceneName, long sceneInstanceId)
|
|
{
|
|
root.RemoveComponent<Room>();
|
|
|
|
Room room = root.AddComponentWithId<Room>(sceneInstanceId);
|
|
room.Name = sceneName;
|
|
|
|
// 等待表现层订阅的事件完成
|
|
await EventSystem.Instance.PublishAsync(root, new EventType.LSSceneChangeStart() {Room = room});
|
|
|
|
root.GetComponent<ClientSenderCompnent>().Send(new C2Room_ChangeSceneFinish());
|
|
|
|
// 等待Room2C_EnterMap消息
|
|
WaitType.Wait_Room2C_Start waitRoom2CStart = await root.GetComponent<ObjectWait>().Wait<WaitType.Wait_Room2C_Start>();
|
|
|
|
room.LSWorld = new LSWorld(SceneType.LockStepClient);
|
|
room.Init(waitRoom2CStart.Message.UnitInfo, waitRoom2CStart.Message.StartTime);
|
|
|
|
room.AddComponent<LSClientUpdater>();
|
|
|
|
// 这个事件中可以订阅取消loading
|
|
EventSystem.Instance.Publish(root, new EventType.LSSceneInitFinish());
|
|
}
|
|
|
|
// 场景切换协程
|
|
public static async ETTask SceneChangeToReplay(Scene root, Replay replay)
|
|
{
|
|
root.RemoveComponent<Room>();
|
|
|
|
Room room = root.AddComponent<Room>();
|
|
room.Name = "Map1";
|
|
room.IsReplay = true;
|
|
room.Replay = replay;
|
|
room.LSWorld = new LSWorld(SceneType.LockStepClient);
|
|
room.Init(replay.UnitInfos, root.Fiber().TimeInfo.ServerFrameTime());
|
|
|
|
// 等待表现层订阅的事件完成
|
|
await EventSystem.Instance.PublishAsync(root, new EventType.LSSceneChangeStart() {Room = room});
|
|
|
|
|
|
room.AddComponent<LSReplayUpdater>();
|
|
// 这个事件中可以订阅取消loading
|
|
EventSystem.Instance.Publish(root, new EventType.LSSceneInitFinish());
|
|
}
|
|
|
|
// 场景切换协程
|
|
public static async ETTask SceneChangeToReconnect(Scene root, G2C_Reconnect message)
|
|
{
|
|
root.RemoveComponent<Room>();
|
|
|
|
Room room = root.AddComponent<Room>();
|
|
room.Name = "Map1";
|
|
|
|
room.LSWorld = new LSWorld(SceneType.LockStepClient);
|
|
room.Init(message.UnitInfos, message.StartTime, message.Frame);
|
|
|
|
// 等待表现层订阅的事件完成
|
|
await EventSystem.Instance.PublishAsync(root, new EventType.LSSceneChangeStart() {Room = room});
|
|
|
|
|
|
room.AddComponent<LSClientUpdater>();
|
|
// 这个事件中可以订阅取消loading
|
|
EventSystem.Instance.Publish(root, new EventType.LSSceneInitFinish());
|
|
}
|
|
}
|
|
} |