VertexAnimation/Runtime/Scripts/VA_AnimationLibraryComponentAuthoring.cs

130 lines
4.3 KiB
C#
Raw Normal View History

2022-12-04 15:47:07 +01:00
using System;
using Unity.Entities;
using Unity.Collections;
2022-12-04 15:47:07 +01:00
using Unity.Mathematics;
2022-12-04 04:18:35 +01:00
using UnityEngine;
using Hash128 = Unity.Entities.Hash128;
2022-12-04 15:47:07 +01:00
using Random = Unity.Mathematics.Random;
namespace TAO.VertexAnimation
{
2022-12-04 04:18:35 +01:00
[UnityEngine.DisallowMultipleComponent]
public class VA_AnimationLibraryComponentAuthoring : UnityEngine.MonoBehaviour
{
2022-12-04 04:18:35 +01:00
public VA_AnimationLibrary AnimationLibrary;
public bool DebugMode = false;
2022-12-04 15:47:07 +01:00
public uint Seed;
}
2022-12-04 04:18:35 +01:00
internal struct SkinnedMeshEntity : IBufferElementData
{
public Entity Value;
}
2022-12-04 04:18:35 +01:00
public struct VA_AnimationLibraryComponent : IComponentData
{
public BlobAssetReference<VA_AnimationLibraryData> AnimLibAssetRef;
public BlobAssetStore BlobAssetStore;
}
public class VA_AnimationLibraryComponentBaker : Baker < VA_AnimationLibraryComponentAuthoring >
{
public override void Bake( VA_AnimationLibraryComponentAuthoring authoring )
{
authoring.AnimationLibrary.Init();
VA_AnimationLibraryComponent animationLibrary = new VA_AnimationLibraryComponent();
using (BlobBuilder blobBuilder = new BlobBuilder(Allocator.Temp))
{
2022-12-04 04:18:35 +01:00
// Construct the root.
ref VA_AnimationLibraryData animationDataBlobAsset = ref blobBuilder.ConstructRoot<VA_AnimationLibraryData>();
2022-12-04 04:18:35 +01:00
// Set all the data.
BlobBuilderArray<VA_AnimationData> animationDataArray = blobBuilder.Allocate(ref animationDataBlobAsset.animations, authoring.AnimationLibrary.animationData.Count);
2022-12-04 04:18:35 +01:00
for (int i = 0; i < animationDataArray.Length; i++)
{
// Copy data.
animationDataArray[i] = authoring.AnimationLibrary.animationData[i];
2022-12-04 04:18:35 +01:00
if (authoring.DebugMode)
{
UnityEngine.Debug.Log("VA_AnimationLibrary added " + animationDataArray[i].name.ToString());
}
}
2022-12-04 04:18:35 +01:00
// Construct blob asset reference.
//BlobAssetReference<VA_AnimationLibraryData> animLibAssetRef = blobBuilder.CreateBlobAssetReference<VA_AnimationLibraryData>(Allocator.Persistent);
// Static because of multi scene setup.
animationLibrary.AnimLibAssetRef = blobBuilder.CreateBlobAssetReference<VA_AnimationLibraryData>(Allocator.Persistent);
Hash128 hash128 = new Hash128( VA_AnimationLibraryUtils.AnimationLibraryAssetStoreName );
// Add it to the asset store.
animationLibrary.BlobAssetStore = new BlobAssetStore( 50);
animationLibrary.BlobAssetStore.TryAdd(hash128, ref animationLibrary.AnimLibAssetRef);
2022-12-04 04:18:35 +01:00
if (authoring.DebugMode)
{
UnityEngine.Debug.Log("VA_AnimationLibrary has " + animationLibrary.AnimLibAssetRef.Value.animations.Length.ToString() + " animations.");
}
}
AddComponent( animationLibrary );
BlobAssetReference<VA_AnimationLibraryData> animLib = animationLibrary.AnimLibAssetRef;
2022-12-04 15:47:07 +01:00
// Get the animation lib data.
ref VA_AnimationLibraryData animationsRef = ref animLib.Value;
Random random = new Random( authoring.Seed );
int index = random.NextInt( 20 );
2022-12-04 04:18:35 +01:00
// Add animator to 'parent'.
VA_AnimatorComponent animatorComponent = new VA_AnimatorComponent
{
2022-12-04 15:47:07 +01:00
AnimationName = animationsRef.animations[index].name,
animationIndex = index,
2022-12-04 04:18:35 +01:00
animationIndexNext = -1,
animationTime = 0,
animationLibrary = animLib
};
AddComponent(animatorComponent);
2022-12-04 15:47:07 +01:00
VA_AnimatorStateComponent animatorStateComponent = new VA_AnimatorStateComponent
{
Enabled = true,
CurrentAnimationName = animationsRef.animations[index].name,
AnimationIndex = index,
AnimationIndexNext = -1,
};
AddComponent( animatorStateComponent );
2022-12-04 04:18:35 +01:00
var boneEntityArray = AddBuffer<SkinnedMeshEntity>();
2022-12-04 04:18:35 +01:00
MeshRenderer[] skinnedMeshRenderers =
authoring.transform.GetComponentsInChildren < MeshRenderer >();
boneEntityArray.ResizeUninitialized(skinnedMeshRenderers.Length);
2022-12-04 04:18:35 +01:00
for (int boneIndex = 0; boneIndex < skinnedMeshRenderers.Length; ++boneIndex)
{
var boneEntity = GetEntity(skinnedMeshRenderers[boneIndex]);
boneEntityArray[boneIndex] = new SkinnedMeshEntity {Value = boneEntity};
}
}
2022-12-04 04:18:35 +01:00
}
//[GenerateAuthoringComponent]
public struct VA_AnimatorComponent : IComponentData
{
2022-12-04 15:47:07 +01:00
public FixedString64Bytes AnimationName;
2022-12-04 04:18:35 +01:00
public int animationIndex;
public int animationIndexNext;
public float animationTime;
public BlobAssetReference<VA_AnimationLibraryData> animationLibrary;
}
2022-12-04 15:47:07 +01:00
public struct VA_AnimatorStateComponent : IComponentData
{
public bool Enabled;
public FixedString64Bytes CurrentAnimationName;
public int AnimationIndex;
public int AnimationIndexNext;
public Random Rand;
}
}