mirror of
https://github.com/maxartz15/VertexAnimation.git
synced 2025-06-12 22:39:56 +02:00
AssetBuilder
Removed functionality from the books. Seperated editor and play data.
This commit is contained in:
@ -10,9 +10,9 @@ namespace TAO.VertexAnimation.Editor
|
||||
private Vector2 textureGroupScollPos;
|
||||
private Vector2 animationPagesScollPos;
|
||||
|
||||
private UnityEditor.Editor previewEditor = null;
|
||||
private int previewIndex = 0;
|
||||
private int curviewIndex = 0;
|
||||
//private UnityEditor.Editor previewEditor = null;
|
||||
//private int previewIndex = 0;
|
||||
//private int curviewIndex = 0;
|
||||
|
||||
void OnEnable()
|
||||
{
|
||||
@ -29,6 +29,7 @@ namespace TAO.VertexAnimation.Editor
|
||||
SyncListSize();
|
||||
AnimationPagesGUI();
|
||||
MaterialGUI();
|
||||
AssetBuilderGUI();
|
||||
Texture2DGUI();
|
||||
|
||||
serializedObject.ApplyModifiedProperties();
|
||||
@ -36,20 +37,20 @@ namespace TAO.VertexAnimation.Editor
|
||||
|
||||
private void SyncListSize()
|
||||
{
|
||||
foreach (var page in animationBook.animationPages)
|
||||
foreach (var page in animationBook.editorData.animationPages)
|
||||
{
|
||||
if(page.textures.Count < animationBook.textureGroups.Count)
|
||||
if(page.textures.Count < animationBook.editorData.textureGroups.Count)
|
||||
{
|
||||
int diff = animationBook.textureGroups.Count - page.textures.Count;
|
||||
int diff = animationBook.editorData.textureGroups.Count - page.textures.Count;
|
||||
|
||||
for (int i = 0; i < diff; i++)
|
||||
{
|
||||
page.textures.Add(null);
|
||||
}
|
||||
}
|
||||
else if(page.textures.Count > animationBook.textureGroups.Count)
|
||||
else if(page.textures.Count > animationBook.editorData.textureGroups.Count)
|
||||
{
|
||||
int diff = page.textures.Count - animationBook.textureGroups.Count;
|
||||
int diff = page.textures.Count - animationBook.editorData.textureGroups.Count;
|
||||
|
||||
for (int i = 0; i < diff; i++)
|
||||
{
|
||||
@ -61,16 +62,19 @@ namespace TAO.VertexAnimation.Editor
|
||||
|
||||
private void GeneralGUI()
|
||||
{
|
||||
SerializedProperty editorData = serializedObject.FindProperty("editorData");
|
||||
|
||||
using (new EditorGUILayout.VerticalScope())
|
||||
{
|
||||
EditorGUILayout.LabelField("General", EditorStyles.centeredGreyMiniLabel);
|
||||
EditorGUILayout.PropertyField(serializedObject.FindProperty("maxFrames"));
|
||||
EditorGUILayout.PropertyField(editorData.FindPropertyRelative("maxFrames"));
|
||||
}
|
||||
}
|
||||
|
||||
private void TextureGroupsGUI()
|
||||
{
|
||||
SerializedProperty textureGroups = serializedObject.FindProperty("textureGroups");
|
||||
SerializedProperty editorData = serializedObject.FindProperty("editorData");
|
||||
SerializedProperty textureGroups = editorData.FindPropertyRelative("textureGroups");
|
||||
int removeWidth = 16;
|
||||
int nameWidth = 152;
|
||||
int optionWidth = 110;
|
||||
@ -114,7 +118,7 @@ namespace TAO.VertexAnimation.Editor
|
||||
|
||||
if (GUILayout.Button("+", EditorStyles.miniButton))
|
||||
{
|
||||
animationBook.textureGroups.Add(new TextureGroup
|
||||
animationBook.editorData.textureGroups.Add(new VA_AnimationBook.EditorTextureGroup
|
||||
{
|
||||
shaderParamName = "_ShaderPropertyName",
|
||||
isLinear = false
|
||||
@ -125,7 +129,8 @@ namespace TAO.VertexAnimation.Editor
|
||||
|
||||
private void AnimationPagesGUI()
|
||||
{
|
||||
SerializedProperty animationPages = serializedObject.FindProperty("animationPages");
|
||||
SerializedProperty editorData = serializedObject.FindProperty("editorData");
|
||||
SerializedProperty animationPages = editorData.FindPropertyRelative("animationPages");
|
||||
int removeWidth = 16;
|
||||
int nameWidth = 100;
|
||||
int frameWidth = 50;
|
||||
@ -141,7 +146,7 @@ namespace TAO.VertexAnimation.Editor
|
||||
EditorGUILayout.LabelField("", GUILayout.Width(removeWidth));
|
||||
EditorGUILayout.LabelField("name", GUILayout.Width(nameWidth));
|
||||
EditorGUILayout.LabelField("frames", GUILayout.Width(frameWidth));
|
||||
foreach (var t in animationBook.textureGroups)
|
||||
foreach (var t in animationBook.editorData.textureGroups)
|
||||
{
|
||||
EditorGUILayout.LabelField(t.shaderParamName, GUILayout.MinWidth(textureWidth));
|
||||
}
|
||||
@ -180,7 +185,7 @@ namespace TAO.VertexAnimation.Editor
|
||||
if (GUILayout.Button("auto fill", EditorStyles.miniButton))
|
||||
{
|
||||
Undo.RecordObject(animationBook, "AutoFill");
|
||||
animationBook.AutoFill();
|
||||
VA_AssetBuilder.AutoFill(ref animationBook);
|
||||
EditorUtility.SetDirty(animationBook);
|
||||
}
|
||||
}
|
||||
@ -188,20 +193,40 @@ namespace TAO.VertexAnimation.Editor
|
||||
|
||||
private void MaterialGUI()
|
||||
{
|
||||
SerializedProperty editorData = serializedObject.FindProperty("editorData");
|
||||
|
||||
using (new EditorGUILayout.VerticalScope())
|
||||
{
|
||||
EditorGUILayout.LabelField("Materials", EditorStyles.centeredGreyMiniLabel);
|
||||
EditorGUILayout.PropertyField(serializedObject.FindProperty("materials"));
|
||||
EditorGUILayout.PropertyField(editorData.FindPropertyRelative("materials"));
|
||||
}
|
||||
}
|
||||
|
||||
private void AssetBuilderGUI()
|
||||
{
|
||||
using (new EditorGUILayout.HorizontalScope())
|
||||
{
|
||||
if (GUILayout.Button("build assets", EditorStyles.miniButtonLeft))
|
||||
{
|
||||
VA_AssetBuilder.GeneratePlayData();
|
||||
}
|
||||
|
||||
if (GUILayout.Button("clear assets", EditorStyles.miniButtonRight))
|
||||
{
|
||||
VA_AssetBuilder.ClearBuildData();
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
private void Texture2DGUI()
|
||||
{
|
||||
SerializedProperty editorData = serializedObject.FindProperty("editorData");
|
||||
|
||||
if (HasPreviewGUI())
|
||||
{
|
||||
using (new EditorGUILayout.VerticalScope())
|
||||
{
|
||||
SerializedProperty texture2DArray = serializedObject.FindProperty("texture2DArray");
|
||||
SerializedProperty texture2DArray = editorData.FindPropertyRelative("texture2DArray");
|
||||
|
||||
EditorGUILayout.LabelField("Texture2DArray", EditorStyles.centeredGreyMiniLabel);
|
||||
|
||||
@ -210,32 +235,32 @@ namespace TAO.VertexAnimation.Editor
|
||||
EditorGUILayout.PropertyField(texture2DArray);
|
||||
}
|
||||
|
||||
previewIndex = EditorGUILayout.IntSlider("Preview" ,previewIndex, 0, texture2DArray.arraySize - 1);
|
||||
//previewIndex = EditorGUILayout.IntSlider("Preview" ,previewIndex, 0, texture2DArray.arraySize - 1);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public override bool HasPreviewGUI()
|
||||
{
|
||||
bool hasPreview = false;
|
||||
//public override bool HasPreviewGUI()
|
||||
//{
|
||||
// bool hasPreview = false;
|
||||
|
||||
if(animationBook.texture2DArray != null && animationBook.texture2DArray.Count > 0 && animationBook.texture2DArray[previewIndex] != null)
|
||||
{
|
||||
hasPreview = true;
|
||||
}
|
||||
// if(animationBook.editorData.texture2DArray != null && animationBook.editorData.texture2DArray.Count > 0 && animationBook.editorData.texture2DArray[previewIndex] != null)
|
||||
// {
|
||||
// hasPreview = true;
|
||||
// }
|
||||
|
||||
return hasPreview;
|
||||
}
|
||||
// return hasPreview;
|
||||
//}
|
||||
|
||||
public override void OnPreviewGUI(Rect r, GUIStyle background)
|
||||
{
|
||||
if (previewEditor == null || curviewIndex != previewIndex)
|
||||
{
|
||||
curviewIndex = previewIndex;
|
||||
previewEditor = CreateEditor(animationBook.texture2DArray[previewIndex]);
|
||||
}
|
||||
//public override void OnPreviewGUI(Rect r, GUIStyle background)
|
||||
//{
|
||||
// if (previewEditor == null || curviewIndex != previewIndex)
|
||||
// {
|
||||
// curviewIndex = previewIndex;
|
||||
// previewEditor = CreateEditor(animationBook.editorData.texture2DArray[previewIndex]);
|
||||
// }
|
||||
|
||||
previewEditor.OnInteractivePreviewGUI(r, background);
|
||||
}
|
||||
// previewEditor.OnInteractivePreviewGUI(r, background);
|
||||
//}
|
||||
}
|
||||
}
|
328
Editor/Scripts/VA_AssetBuilder.cs
Normal file
328
Editor/Scripts/VA_AssetBuilder.cs
Normal file
@ -0,0 +1,328 @@
|
||||
using System.Collections.Generic;
|
||||
using UnityEngine;
|
||||
using UnityEditor;
|
||||
using UnityEditor.Build;
|
||||
using UnityEditor.Build.Reporting;
|
||||
using Unity.Collections;
|
||||
|
||||
namespace TAO.VertexAnimation.Editor
|
||||
{
|
||||
[InitializeOnLoad]
|
||||
public class VA_AssetBuilder : IPreprocessBuildWithReport, IPostprocessBuildWithReport
|
||||
{
|
||||
static VA_AssetBuilder()
|
||||
{
|
||||
EditorApplication.playModeStateChanged += OnPlayModeEnter;
|
||||
}
|
||||
|
||||
public int callbackOrder => 0;
|
||||
private static bool deleteGeneratedAssets = true;
|
||||
|
||||
private const string parentFolder = "Assets";
|
||||
private const string childFolder = "VA_AssetBuilder";
|
||||
private static string FolderPath => string.Format("{0}/{1}", parentFolder, childFolder);
|
||||
|
||||
public void OnPreprocessBuild(BuildReport report)
|
||||
{
|
||||
GeneratePlayData();
|
||||
Debug.Log("VA_AssetBuilder generated play data.");
|
||||
}
|
||||
|
||||
public void OnPostprocessBuild(BuildReport report)
|
||||
{
|
||||
if(!deleteGeneratedAssets)
|
||||
{
|
||||
return;
|
||||
}
|
||||
|
||||
ClearBuildData();
|
||||
Debug.Log("VA_AssetBuilder cleared play data.");
|
||||
}
|
||||
|
||||
private static void OnPlayModeEnter(PlayModeStateChange state)
|
||||
{
|
||||
switch (state)
|
||||
{
|
||||
case PlayModeStateChange.EnteredEditMode:
|
||||
//ClearBuildData();
|
||||
//Debug.Log("VA_AssetBuilder cleared editor data.");
|
||||
break;
|
||||
case PlayModeStateChange.ExitingEditMode:
|
||||
//GeneratePlayData();
|
||||
GenerateEditorData();
|
||||
Debug.Log("VA_AssetBuilder generated editor data.");
|
||||
break;
|
||||
case PlayModeStateChange.EnteredPlayMode:
|
||||
break;
|
||||
case PlayModeStateChange.ExitingPlayMode:
|
||||
break;
|
||||
default:
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
||||
public static void GenerateEditorData()
|
||||
{
|
||||
string filter = string.Format("t:{0}", typeof(VA_AnimationBook).Name);
|
||||
string[] guids = AssetDatabase.FindAssets(filter);
|
||||
|
||||
foreach (var guid in guids)
|
||||
{
|
||||
VA_AnimationBook book = AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(guid), typeof(VA_AnimationBook)) as VA_AnimationBook;
|
||||
|
||||
// Generate run time data.
|
||||
//GenerateTextures(ref book);
|
||||
|
||||
// Assign run time data.
|
||||
ConvertEditorDataToPlayData(ref book);
|
||||
}
|
||||
}
|
||||
|
||||
[MenuItem("Assets/TAO Vertex Animation/Generate Build Data", false, 65)]
|
||||
public static void GeneratePlayData()
|
||||
{
|
||||
string filter = string.Format("t:{0}", typeof(VA_AnimationBook).Name);
|
||||
string[] guids = AssetDatabase.FindAssets(filter);
|
||||
|
||||
foreach (var guid in guids)
|
||||
{
|
||||
VA_AnimationBook book = AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(guid), typeof(VA_AnimationBook)) as VA_AnimationBook;
|
||||
|
||||
// Generate all assets.
|
||||
GenerateTextures(ref book);
|
||||
|
||||
// Assign run time data.
|
||||
ConvertEditorDataToPlayData(ref book);
|
||||
|
||||
// Save them to disk.
|
||||
if (!AssetDatabase.IsValidFolder(FolderPath))
|
||||
{
|
||||
deleteGeneratedAssets = true;
|
||||
AssetDatabase.CreateFolder(parentFolder, childFolder);
|
||||
}
|
||||
else
|
||||
{
|
||||
deleteGeneratedAssets = false;
|
||||
}
|
||||
|
||||
// Generate run time data.
|
||||
List<string> savedAssets = new List<string>();
|
||||
foreach (var t in book.editorData.texture2DArray)
|
||||
{
|
||||
string assetPath = string.Format("{0}/{1}.asset", FolderPath, t.name);
|
||||
|
||||
// Delete existing asset.
|
||||
if (!string.IsNullOrEmpty(AssetDatabase.AssetPathToGUID(assetPath)))
|
||||
{
|
||||
AssetDatabase.DeleteAsset(assetPath);
|
||||
}
|
||||
|
||||
AssetDatabase.CreateAsset(t, assetPath);
|
||||
savedAssets.Add(assetPath);
|
||||
}
|
||||
AssetDatabase.SaveAssets();
|
||||
|
||||
book.playData.texture2DArray = new List<Texture2DArray>();
|
||||
foreach (var s in savedAssets)
|
||||
{
|
||||
var savedT = AssetDatabase.LoadAssetAtPath(s, typeof(Texture2DArray)) as Texture2DArray;
|
||||
book.playData.texture2DArray.Add(savedT);
|
||||
}
|
||||
AssetDatabase.SaveAssets();
|
||||
}
|
||||
}
|
||||
|
||||
[MenuItem("Assets/TAO Vertex Animation/Clear Build Data", false, 66)]
|
||||
public static void ClearBuildData()
|
||||
{
|
||||
string filter = string.Format("t:{0}", typeof(VA_AnimationBook).Name);
|
||||
string[] guids = AssetDatabase.FindAssets(filter);
|
||||
|
||||
// Clear Generated Data.
|
||||
foreach (var guid in guids)
|
||||
{
|
||||
VA_AnimationBook book = AssetDatabase.LoadAssetAtPath(AssetDatabase.GUIDToAssetPath(guid), typeof(VA_AnimationBook)) as VA_AnimationBook;
|
||||
book.playData.texture2DArray = null;
|
||||
}
|
||||
|
||||
// Remove generated assets from disk.
|
||||
if (AssetDatabase.IsValidFolder(FolderPath))
|
||||
{
|
||||
AssetDatabase.DeleteAsset(FolderPath);
|
||||
}
|
||||
|
||||
AssetDatabase.SaveAssets();
|
||||
}
|
||||
|
||||
// Assign the texture ID's to the texture entries.
|
||||
private static void ReferenceDuplicates(ref VA_AnimationBook book)
|
||||
{
|
||||
for (int i = 0; i < book.editorData.textureGroups.Count; i++)
|
||||
{
|
||||
List<Texture2D> t = new List<Texture2D>();
|
||||
|
||||
for (int j = 0; j < book.editorData.animationPages.Count; j++)
|
||||
{
|
||||
// Check if exist.
|
||||
if (!t.Contains(book.editorData.animationPages[j].textures[i].texture2D))
|
||||
{
|
||||
t.Add(book.editorData.animationPages[j].textures[i].texture2D);
|
||||
}
|
||||
|
||||
// Add index reference.
|
||||
book.editorData.animationPages[j].textures[i].textureArrayIndex = t.IndexOf(book.editorData.animationPages[j].textures[i].texture2D);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Get the textures from a specific texture index.
|
||||
private static List<Texture2D> GetTextures(ref VA_AnimationBook book, int textureIndex)
|
||||
{
|
||||
List<Texture2D> textures = new List<Texture2D>();
|
||||
|
||||
foreach (var ap in book.editorData.animationPages)
|
||||
{
|
||||
// Check if exist.
|
||||
if (!textures.Contains(ap.textures[textureIndex].texture2D))
|
||||
{
|
||||
textures.Add(ap.textures[textureIndex].texture2D);
|
||||
}
|
||||
}
|
||||
|
||||
return textures;
|
||||
}
|
||||
|
||||
// Generate texture arrays.
|
||||
public static void GenerateTextures(ref VA_AnimationBook book)
|
||||
{
|
||||
ReferenceDuplicates(ref book);
|
||||
|
||||
book.editorData.texture2DArray = new List<Texture2DArray>();
|
||||
|
||||
for (int i = 0; i < book.editorData.textureGroups.Count; i++)
|
||||
{
|
||||
var t = GetTextures(ref book, i).ToArray();
|
||||
|
||||
if (VA_Texture2DArrayUtils.IsValidForTextureArray(t))
|
||||
{
|
||||
book.editorData.texture2DArray.Add(VA_Texture2DArrayUtils.CreateTextureArray(t, false, book.editorData.textureGroups[i].isLinear, book.editorData.textureGroups[i].wrapMode, book.editorData.textureGroups[i].filterMode, 1, book.name + book.editorData.textureGroups[i].shaderParamName));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
// Auto fill names and frames.
|
||||
public static void AutoFill(ref VA_AnimationBook book)
|
||||
{
|
||||
if (book.editorData.animationPages != null)
|
||||
{
|
||||
for (int i = 0; i < book.editorData.animationPages.Count; i++)
|
||||
{
|
||||
VA_AnimationBook.EditorAnimationPage ap = book.editorData.animationPages[i];
|
||||
if (ap.textures != null && ap.textures.Count > 0)
|
||||
{
|
||||
string textureName = ap.textures[0].texture2D.name;
|
||||
|
||||
string[] parts = textureName.Split('_');
|
||||
|
||||
foreach (var p in parts)
|
||||
{
|
||||
if (p.StartsWith("N-"))
|
||||
{
|
||||
ap.name = p.Remove(0, 2);
|
||||
}
|
||||
else if (p.StartsWith("F-"))
|
||||
{
|
||||
if (int.TryParse(p.Remove(0, 2), out int frames))
|
||||
{
|
||||
ap.frames = frames;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
book.editorData.animationPages[i] = ap;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
public static int GetFirstAnimationMapIndex(in List<VA_AnimationBook.EditorTextureEntry> textures, in List<VA_AnimationBook.EditorTextureGroup> textureGroups)
|
||||
{
|
||||
for (int i = 0; i < textureGroups.Count; i++)
|
||||
{
|
||||
if (textureGroups[i].textureType == VA_AnimationBook.TextureType.AnimationMap)
|
||||
{
|
||||
return textures[i].textureArrayIndex;
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
public static int GetFirstColorMapIndex(in List<VA_AnimationBook.EditorTextureEntry> textures, in List<VA_AnimationBook.EditorTextureGroup> textureGroups)
|
||||
{
|
||||
for (int i = 0; i < textureGroups.Count; i++)
|
||||
{
|
||||
if (textureGroups[i].textureType == VA_AnimationBook.TextureType.ColorMap)
|
||||
{
|
||||
return textures[i].textureArrayIndex;
|
||||
}
|
||||
}
|
||||
|
||||
return -1;
|
||||
}
|
||||
|
||||
// Convert editor data into play data.
|
||||
// NOTE: Textures need to be assigned with stored ones on build.
|
||||
public static void ConvertEditorDataToPlayData(ref VA_AnimationBook book)
|
||||
{
|
||||
book.playData = new VA_AnimationBook.PlayData
|
||||
{
|
||||
maxFrames = book.editorData.maxFrames,
|
||||
materials = book.editorData.materials
|
||||
};
|
||||
|
||||
foreach (var tg in book.editorData.textureGroups)
|
||||
{
|
||||
book.playData.textureGroups.Add(new VA_AnimationBook.PlayTextureGroup
|
||||
{
|
||||
shaderParamName = tg.shaderParamName,
|
||||
textureType = tg.textureType
|
||||
});
|
||||
}
|
||||
|
||||
foreach (var ap in book.editorData.animationPages)
|
||||
{
|
||||
// NOTE: for some reason FixedString32 data gets lost when entering play mode.
|
||||
// That is why this is here... and also the animationPages...
|
||||
//book.playData.animations.Add(new VA_AnimationData
|
||||
//{
|
||||
// name = ap.name,
|
||||
// frames = ap.frames,
|
||||
// maxFrames = book.editorData.maxFrames,
|
||||
// frameTime = 1.0f / book.editorData.maxFrames,
|
||||
// duration = 1.0f / book.editorData.maxFrames * ap.frames,
|
||||
// animationMapIndex = GetFirstAnimationMapIndex(in ap.textures, in book.editorData.textureGroups),
|
||||
// colorMapIndex = GetFirstColorMapIndex(in ap.textures, in book.editorData.textureGroups)
|
||||
//});
|
||||
|
||||
var pap = new VA_AnimationBook.PlayAnimationPage
|
||||
{
|
||||
name = ap.name,
|
||||
frames = ap.frames,
|
||||
textures = new List<VA_AnimationBook.PlayTextureEntry>()
|
||||
};
|
||||
|
||||
foreach (var t in ap.textures)
|
||||
{
|
||||
pap.textures.Add(new VA_AnimationBook.PlayTextureEntry
|
||||
{
|
||||
textureArrayIndex = t.textureArrayIndex
|
||||
});
|
||||
}
|
||||
|
||||
book.playData.animationPages.Add(pap);
|
||||
}
|
||||
|
||||
book.playData.texture2DArray = book.editorData.texture2DArray;
|
||||
}
|
||||
}
|
||||
}
|
11
Editor/Scripts/VA_AssetBuilder.cs.meta
Normal file
11
Editor/Scripts/VA_AssetBuilder.cs.meta
Normal file
@ -0,0 +1,11 @@
|
||||
fileFormatVersion: 2
|
||||
guid: f21cb651117dd1c4681e87105b7a3f10
|
||||
MonoImporter:
|
||||
externalObjects: {}
|
||||
serializedVersion: 2
|
||||
defaultReferences: []
|
||||
executionOrder: 0
|
||||
icon: {instanceID: 0}
|
||||
userData:
|
||||
assetBundleName:
|
||||
assetBundleVariant:
|
@ -1,7 +1,9 @@
|
||||
{
|
||||
"name": "TAO.VertexAnimation.Editor",
|
||||
"rootNamespace": "TAO.VertexAnimation.Editor",
|
||||
"references": [
|
||||
"TAO.VertexAnimation"
|
||||
"TAO.VertexAnimation",
|
||||
"Unity.Collections"
|
||||
],
|
||||
"includePlatforms": [
|
||||
"Editor"
|
||||
|
Reference in New Issue
Block a user