浏览代码

Refactor done

Individual scene starting from the editor not functional
/UI
Ciro Continisio 3 年前
当前提交
8a53579e
共有 3 个文件被更改,包括 72 次插入60 次删除
  1. 8
      UOP1_Project/Assets/Prefabs/GameplayEssentials/SceneLoader.prefab
  2. 9
      UOP1_Project/Assets/Scripts/SceneManagement/EditorInitialisationLoader.cs
  3. 115
      UOP1_Project/Assets/Scripts/SceneManagement/SceneLoader.cs

8
UOP1_Project/Assets/Prefabs/GameplayEssentials/SceneLoader.prefab


m_Script: {fileID: 11500000, guid: b6b928d1d6f59854499ed82bdeef2305, type: 3}
m_Name:
m_EditorClassIdentifier:
_persistentManagersScene: {fileID: 11400000, guid: c2119785ce96367428081d6eee0d932b,
type: 2}
_ToggleLoadingScreen: {fileID: 11400000, guid: ce8db9fc090944349ba225edb81028d4,
_toggleLoadingScreen: {fileID: 11400000, guid: ce8db9fc090944349ba225edb81028d4,
_OnSceneReady: {fileID: 11400000, guid: b729e40fc41dd8b4ea7aaf5c857f7186, type: 2}
_OnFade: {fileID: 11400000, guid: b40bb60f3ca40164e9d7acc6992bae10, type: 2}
_onSceneReady: {fileID: 11400000, guid: b729e40fc41dd8b4ea7aaf5c857f7186, type: 2}
_onFade: {fileID: 11400000, guid: b40bb60f3ca40164e9d7acc6992bae10, type: 2}

9
UOP1_Project/Assets/Scripts/SceneManagement/EditorInitialisationLoader.cs


//bool to know if we are coming from editor initializer mode
[HideInInspector] public bool _isEditorInitializerMode = false;
/*
private void Start()
{
Application.targetFrameRate = targetFramerate; // For debugging purposes

}
else
{
SceneManager.LoadSceneAsync(scenesToLoad[j].scenePath, LoadSceneMode.Additive);
//TODO: Make it work again
//SceneManager.LoadSceneAsync(scenesToLoad[j].scenePath, LoadSceneMode.Additive);
*/
#endif
}

115
UOP1_Project/Assets/Scripts/SceneManagement/SceneLoader.cs


/// </summary>
public class SceneLoader : MonoBehaviour
{
[SerializeField] private GameSceneSO _persistentManagersScene = default;
[SerializeField] private GameSceneSO _gameplayScene = default;
[Header("Load Events")]

[SerializeField] private VoidEventChannelSO _onSceneReady = default;
[SerializeField] private FadeChannelSO _onFade = default;
private List<AsyncOperationHandle<SceneInstance>> _temporarySceneLoadOpHandles = new List<AsyncOperationHandle<SceneInstance>>();
private AsyncOperationHandle<SceneInstance> _gameplayManagerSceneLoadOpHandle = new AsyncOperationHandle<SceneInstance>();
private List<AsyncOperationHandle<SceneInstance>> _loadingOperationHandles = new List<AsyncOperationHandle<SceneInstance>>();
private AsyncOperationHandle<SceneInstance> _gameplayManagerLoadingOpHandle;
//Parameters coming from scene loading requests
private GameSceneSO[] _scenesToLoad;
private GameSceneSO[] _currentlyLoadedScenes = new GameSceneSO[]{};
private bool _showLoadingScreen;
private GameSceneSO _activeScene; // The scene we want to set as active (for lighting/skybox)
private void OnEnable()
{

/// </summary>
private void LoadLocation(GameSceneSO[] locationsToLoad, bool showLoadingScreen)
{
//In case we are coming from the main menu, we need to get rid of the persistent Gameplay manager scene
if (_gameplayManagerSceneInstance.Scene.isLoaded)
Addressables.LoadSceneAsync(_gameplayManagerSceneLoadOpHandle,
LoadSceneMode.Additive, true).Completed += GameplayManagerLoaded;
_scenesToLoad = locationsToLoad;
_showLoadingScreen = showLoadingScreen;
UnloadPreviousScenes();
LoadScenes(locationsToLoad, showLoadingScreen);
//In case we are coming from the main menu, we need to load the persistent Gameplay manager scene first
if (_gameplayManagerSceneInstance.Scene == null
|| !_gameplayManagerSceneInstance.Scene.isLoaded)
{
StartCoroutine(ProcessGameplaySceneLoading(locationsToLoad, showLoadingScreen));
}
else
{
UnloadPreviousScenes();
}
private void GameplayManagerLoaded(AsyncOperationHandle<SceneInstance> obj)
private IEnumerator ProcessGameplaySceneLoading(GameSceneSO[] locationsToLoad, bool showLoadingScreen)
_gameplayManagerSceneInstance = (SceneInstance)obj.Result;
_gameplayManagerLoadingOpHandle = _gameplayScene.sceneReference.LoadSceneAsync(LoadSceneMode.Additive, true);
while(_gameplayManagerLoadingOpHandle.Status != AsyncOperationStatus.Succeeded)
{
yield return null;
}
_gameplayManagerSceneInstance = _gameplayManagerLoadingOpHandle.Result;
UnloadPreviousScenes();
private void LoadMenu(GameSceneSO[] menuToLoad, bool showLoadingScreen)
private void LoadMenu(GameSceneSO[] menusToLoad, bool showLoadingScreen)
_scenesToLoad = menusToLoad;
_showLoadingScreen = showLoadingScreen;
if(_gameplayManagerSceneInstance.Scene.isLoaded)
Addressables.UnloadSceneAsync(_gameplayManagerSceneLoadOpHandle, true);
if(_gameplayManagerSceneInstance.Scene != null
&& _gameplayManagerSceneInstance.Scene.isLoaded)
Addressables.UnloadSceneAsync(_gameplayManagerLoadingOpHandle, true);
LoadScenes(menuToLoad, showLoadingScreen);
for (int i = 0; i < _temporarySceneLoadOpHandles.Count; i++)
for (int i = 0; i < _currentlyLoadedScenes.Length; i++)
Addressables.UnloadSceneAsync(_temporarySceneLoadOpHandles[i], true);
_currentlyLoadedScenes[i].sceneReference.UnLoadScene();
LoadNewScenes();
private void LoadScenes(GameSceneSO[] locationsToLoad, bool showLoadingScreen)
private void LoadNewScenes()
//Take the first scene in the array as the scene we want to set active
_activeScene = locationsToLoad[0];
if (showLoadingScreen)
if (_showLoadingScreen)
for (int i = 0; i < locationsToLoad.Length; i++)
_loadingOperationHandles.Clear();
//Build the array of handles of the temporary scenes to load
for (int i = 0; i < _scenesToLoad.Length; i++)
_temporarySceneLoadOpHandles.Add(locationsToLoad[i].sceneReference.LoadSceneAsync(LoadSceneMode.Additive, true, 0));
_loadingOperationHandles.Add(_scenesToLoad[i].sceneReference.LoadSceneAsync(LoadSceneMode.Additive, true, 0));
StartCoroutine(LoadingProcess(showLoadingScreen));
StartCoroutine(LoadingProcess());
private IEnumerator LoadingProcess(bool showLoadingScreen)
private IEnumerator LoadingProcess()
bool _loadingDone = false;
bool done = _loadingOperationHandles.Count == 0;
//This while will exit when all scenes requested have been loaded
while (!_loadingDone)
//This while will exit when all scenes requested have been unloaded
while (!done)
for (int i = 0; i < _temporarySceneLoadOpHandles.Count; ++i)
for (int i = 0; i < _loadingOperationHandles.Count; ++i)
if (_temporarySceneLoadOpHandles[i].Status != AsyncOperationStatus.Succeeded)
if (_loadingOperationHandles[i].Status != AsyncOperationStatus.Succeeded)
_loadingDone = true;
done = true;
}
}

//Save loaded scenes (to be unloaded at next load request)
_currentlyLoadedScenes = _scenesToLoad;
if (showLoadingScreen)
if (_showLoadingScreen)
{
_toggleLoadingScreen.RaiseEvent(false);
}

/// </summary>
private void SetActiveScene()
{
SceneManager.SetActiveScene(SceneManager.GetSceneByPath(_activeScene.scenePath));
//All the scenes have been loaded, so we assume the first in the array is ready to become the active scene
Scene s = ((SceneInstance)_loadingOperationHandles[0].Result).Scene;
SceneManager.SetActiveScene(s);
}
/// <summary>
/// This function checks if a scene is already loaded
/// </summary>
/// <param name="scenePath"></param>
/// <returns>bool</returns>
private bool IsSceneLoaded(string scenePath)
{
for (int i = 0; i < SceneManager.sceneCount; i++)
{
Scene scene = SceneManager.GetSceneAt(i);
if (scene.path == scenePath)
{
return true;
}
}
return false;
}
private void ExitGame()

正在加载...
取消
保存