generated from max/template-unity-project
198 lines
6.5 KiB
C#
198 lines
6.5 KiB
C#
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Text.RegularExpressions;
|
|
using UnityEditor;
|
|
using UnityEditor.SceneManagement;
|
|
using UnityEngine;
|
|
using UnityEngine.SceneManagement;
|
|
|
|
namespace VertexColor.ScenePartition.Editor
|
|
{
|
|
[CreateAssetMenu(fileName = "Scene", menuName = "Max/ScenePartitionSO")]
|
|
public class ScenePartitionSO : ScriptableObject
|
|
{
|
|
[field: SerializeField]
|
|
public SceneAsset SceneAsset { get; private set; } = null;
|
|
public string SceneName => SceneAsset == null ? name : SceneAsset.name;
|
|
|
|
public List<uint> alwaysLoadIds = new List<uint> { 0, 1, 2, 3, 4 };
|
|
|
|
public ScenePartitionData ScenePartitionData
|
|
{
|
|
get
|
|
{
|
|
scenePartitionData ??= ScenePartitionSS.instance.GetScenePartitionData(this);
|
|
return scenePartitionData;
|
|
}
|
|
}
|
|
private ScenePartitionData scenePartitionData = null;
|
|
|
|
public void CreateScene()
|
|
{
|
|
if (SceneAsset != null) return;
|
|
|
|
string scenePath = Path.Combine(AssetDatabase.GetAssetPath(this), $"../{this.name}.unity");
|
|
|
|
Scene scene = EditorSceneManager.NewScene(NewSceneSetup.EmptyScene, NewSceneMode.Single);
|
|
EditorSceneManager.SaveScene(scene, scenePath);
|
|
Save();
|
|
|
|
AssetDatabase.SaveAssets();
|
|
AssetDatabase.Refresh();
|
|
|
|
SceneAsset = AssetDatabase.LoadAssetAtPath<SceneAsset>(scenePath);
|
|
|
|
AssetDatabase.SaveAssets();
|
|
AssetDatabase.Refresh();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Load partitions from disk and construct the scene file.
|
|
/// </summary>
|
|
public void LoadAll()
|
|
{
|
|
CreateScenePartitions();
|
|
SortedSet<uint> ids = new SortedSet<uint>(ScenePartitionData.ScenePartitions.Keys);
|
|
LoadScenePartitions(ids);
|
|
}
|
|
|
|
private void CreateScenePartitions()
|
|
{
|
|
string dataPath = ScenePartitionUtils.GetDataPath(this);
|
|
string[] files = Directory.GetFiles(dataPath);
|
|
|
|
ScenePartitionData.ScenePartitions = new ScenePartitionSortedList();
|
|
|
|
for (int i = 0; i < files.Length; i++)
|
|
{
|
|
ScenePartition scenePartition = new ScenePartition(files[i]);
|
|
ScenePartitionData.ScenePartitions.Add(scenePartition.id, scenePartition);
|
|
}
|
|
}
|
|
|
|
private void LoadScenePartitions(SortedSet<uint> partitionIds)
|
|
{
|
|
if (!ScenePartitionData.HasCreatedPartitions) return;
|
|
|
|
string scenePath = ScenePartitionUtils.GetScenePath(this);
|
|
|
|
List<string> data = new List<string>();
|
|
|
|
ScenePartitionData.LoadedScenePartitions.Clear();
|
|
|
|
// Add default ids.
|
|
for (int i = 0; i < alwaysLoadIds.Count; i++)
|
|
{
|
|
if (ScenePartitionData.ScenePartitions.ContainsKey(alwaysLoadIds[i]))
|
|
{
|
|
partitionIds.Add(alwaysLoadIds[i]);
|
|
}
|
|
}
|
|
|
|
// Create scene data.
|
|
foreach (uint id in partitionIds)
|
|
{
|
|
ScenePartition p = ScenePartitionData.ScenePartitions[id];
|
|
data.AddRange(File.ReadAllLines(p.filePath));
|
|
ScenePartitionData.LoadedScenePartitions.Add(p.id, p);
|
|
}
|
|
|
|
// Create scene.
|
|
File.WriteAllLines(scenePath, data);
|
|
|
|
AssetDatabase.Refresh();
|
|
}
|
|
|
|
/// <summary>
|
|
/// Convert scene to partitions and save them to disk.
|
|
/// </summary>
|
|
public void Save()
|
|
{
|
|
DeleteLoadedPartitions(); // Delete the loaded partitions from disk so we can write the new ones.
|
|
|
|
string pattern = @"&(\d+)";
|
|
string dataPath = ScenePartitionUtils.GetDataPath(this);
|
|
string scenePath = ScenePartitionUtils.GetScenePath(this);
|
|
|
|
// Read the data from the scene file.
|
|
string[] data = File.ReadAllLines(scenePath);
|
|
|
|
// Split it into blocks.
|
|
int lastIndex = data.Length;
|
|
for (int i = data.Length - 1; i >= 0; i--)
|
|
{
|
|
if (data[i].StartsWith("---")) // --- is the start of a new yaml document.
|
|
{
|
|
Match match = Regex.Match(data[i], pattern);
|
|
|
|
if (match.Success)
|
|
{
|
|
// Extract the file number
|
|
string id = match.Groups[1].Value;
|
|
|
|
// Write data to disk.
|
|
File.WriteAllLines($"{dataPath}/{SceneName}-{id}.yaml", data[i..lastIndex]);
|
|
}
|
|
|
|
lastIndex = i;
|
|
}
|
|
}
|
|
|
|
// Write header to disk.
|
|
File.WriteAllLines($"{dataPath}/{SceneName}.yaml", data[0..lastIndex]);
|
|
}
|
|
|
|
/// <summary>
|
|
/// Empty the scene and save it (so it has no changes in source control).
|
|
/// </summary>
|
|
public void Unload()
|
|
{
|
|
string dataPath = ScenePartitionUtils.GetDataPath(this);
|
|
string scenePath = ScenePartitionUtils.GetScenePath(this);
|
|
|
|
Scene scene = EditorSceneManager.OpenScene(scenePath, OpenSceneMode.Single);
|
|
|
|
GameObject[] gameObjects = scene.GetRootGameObjects();
|
|
|
|
for (int i = gameObjects.Length - 1; i >= 0; i--)
|
|
{
|
|
DestroyImmediate(gameObjects[i]);
|
|
}
|
|
|
|
EditorSceneManager.SaveScene(scene);
|
|
|
|
ScenePartitionData.LoadedScenePartitions.Clear();
|
|
|
|
AssetDatabase.Refresh();
|
|
}
|
|
|
|
private void DeleteLoadedPartitions()
|
|
{
|
|
if (!ScenePartitionData.HasLoadedPartitions) return;
|
|
|
|
foreach (KeyValuePair<uint, ScenePartition> scenePartition in ScenePartitionData.LoadedScenePartitions)
|
|
{
|
|
if (!File.Exists(scenePartition.Value.filePath)) continue;
|
|
|
|
File.Delete(scenePartition.Value.filePath);
|
|
}
|
|
}
|
|
|
|
public void LoadPartitions(uint[] ids)
|
|
{
|
|
SortedSet<uint> partitionIds = new SortedSet<uint>();
|
|
|
|
for (int i = 0; i < ids.Length; i++)
|
|
{
|
|
SortedSet<uint> connections = ScenePartitionUtils.FindDeeplyLinkedObjects(ScenePartitionData.ScenePartitions, ids[i]);
|
|
|
|
foreach (uint c in connections)
|
|
{
|
|
partitionIds.Add(c);
|
|
}
|
|
}
|
|
|
|
LoadScenePartitions(partitionIds);
|
|
}
|
|
}
|
|
} |