2022-09-09 11:40:52 +08:00
|
|
|
|
/*
|
|
|
|
|
* MIT License
|
|
|
|
|
*
|
|
|
|
|
* Copyright (c) 2022 bd_
|
|
|
|
|
*
|
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
|
*
|
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
|
|
|
|
*
|
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
|
|
|
* SOFTWARE.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
using System.Collections.Generic;
|
2022-08-28 10:04:53 +08:00
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEditor.Animations;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using VRC.SDK3.Avatars.Components;
|
|
|
|
|
using VRC.SDKBase.Editor.BuildPipeline;
|
|
|
|
|
|
|
|
|
|
namespace net.fushizen.modular_avatar.core.editor
|
|
|
|
|
{
|
|
|
|
|
public class MergeAnimatorHook : IVRCSDKPreprocessAvatarCallback
|
|
|
|
|
{
|
2022-08-30 05:00:11 +08:00
|
|
|
|
private const string SAMPLE_PATH_PACKAGE = "Packages/com.vrchat.avatars/Samples/AV3 Demo Assets/Animation/Controllers";
|
2022-08-28 10:04:53 +08:00
|
|
|
|
private const string SAMPLE_PATH_LEGACY = "Assets/VRCSDK/Examples3/Animation/Controllers";
|
|
|
|
|
|
|
|
|
|
public int callbackOrder => HookSequence.SEQ_MERGE_ANIMATORS;
|
2022-08-30 09:35:16 +08:00
|
|
|
|
|
|
|
|
|
private Dictionary<VRCAvatarDescriptor.AnimLayerType, AnimatorController> defaultControllers_ =
|
|
|
|
|
new Dictionary<VRCAvatarDescriptor.AnimLayerType, AnimatorController>();
|
2022-08-28 10:04:53 +08:00
|
|
|
|
|
|
|
|
|
Dictionary<VRCAvatarDescriptor.AnimLayerType, AnimatorCombiner> mergeSessions =
|
|
|
|
|
new Dictionary<VRCAvatarDescriptor.AnimLayerType, AnimatorCombiner>();
|
|
|
|
|
|
|
|
|
|
public bool OnPreprocessAvatar(GameObject avatarGameObject)
|
|
|
|
|
{
|
|
|
|
|
var descriptor = avatarGameObject.GetComponent<VRCAvatarDescriptor>();
|
|
|
|
|
|
|
|
|
|
InitSessions(descriptor.baseAnimationLayers);
|
|
|
|
|
InitSessions(descriptor.specialAnimationLayers);
|
|
|
|
|
|
2022-08-30 05:00:11 +08:00
|
|
|
|
var toMerge = avatarGameObject.transform.GetComponentsInChildren<ModularAvatarMergeAnimator>(true);
|
2022-08-28 10:04:53 +08:00
|
|
|
|
|
|
|
|
|
foreach (var merge in toMerge)
|
|
|
|
|
{
|
2022-08-30 09:35:16 +08:00
|
|
|
|
if (merge.animator == null) continue;
|
|
|
|
|
|
|
|
|
|
if (!mergeSessions.TryGetValue(merge.layerType, out var session))
|
2022-08-28 10:04:53 +08:00
|
|
|
|
{
|
2022-08-30 09:35:16 +08:00
|
|
|
|
session = new AnimatorCombiner();
|
|
|
|
|
mergeSessions[merge.layerType] = session;
|
|
|
|
|
if (defaultControllers_.ContainsKey(merge.layerType))
|
|
|
|
|
{
|
|
|
|
|
session.AddController("", defaultControllers_[merge.layerType]);
|
|
|
|
|
}
|
2022-08-28 10:04:53 +08:00
|
|
|
|
var relativePath = RuntimeUtil.RelativePath(avatarGameObject, merge.gameObject);
|
|
|
|
|
mergeSessions[merge.layerType].AddController(
|
|
|
|
|
relativePath != "" ? relativePath + "/" : "",
|
|
|
|
|
(AnimatorController) merge.animator
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
if (merge.deleteAttachedAnimator)
|
|
|
|
|
{
|
|
|
|
|
var animator = merge.GetComponent<Animator>();
|
|
|
|
|
if (animator != null) Object.DestroyImmediate(animator);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
descriptor.baseAnimationLayers = FinishSessions(descriptor.baseAnimationLayers);
|
|
|
|
|
descriptor.specialAnimationLayers = FinishSessions(descriptor.specialAnimationLayers);
|
|
|
|
|
|
|
|
|
|
return true;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private VRCAvatarDescriptor.CustomAnimLayer[] FinishSessions(
|
|
|
|
|
VRCAvatarDescriptor.CustomAnimLayer[] layers
|
|
|
|
|
)
|
|
|
|
|
{
|
|
|
|
|
layers = (VRCAvatarDescriptor.CustomAnimLayer[]) layers.Clone();
|
|
|
|
|
|
|
|
|
|
for (int i = 0; i < layers.Length; i++)
|
|
|
|
|
{
|
2022-08-30 09:35:16 +08:00
|
|
|
|
if (mergeSessions.TryGetValue(layers[i].type, out var session))
|
|
|
|
|
{
|
|
|
|
|
layers[i].isDefault = false;
|
|
|
|
|
layers[i].animatorController = session.Finish();
|
|
|
|
|
}
|
2022-08-28 10:04:53 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return layers;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InitSessions(VRCAvatarDescriptor.CustomAnimLayer[] layers)
|
|
|
|
|
{
|
|
|
|
|
foreach (var layer in layers)
|
|
|
|
|
{
|
|
|
|
|
var controller = ResolveLayerController(layer);
|
|
|
|
|
if (controller == null) controller = new AnimatorController();
|
|
|
|
|
|
2022-08-30 09:35:16 +08:00
|
|
|
|
defaultControllers_[layer.type] = controller;
|
2022-08-28 10:04:53 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
private static AnimatorController ResolveLayerController(VRCAvatarDescriptor.CustomAnimLayer layer)
|
|
|
|
|
{
|
|
|
|
|
AnimatorController controller = null;
|
|
|
|
|
|
|
|
|
|
if (!layer.isDefault && layer.animatorController != null &&
|
|
|
|
|
layer.animatorController is AnimatorController c)
|
|
|
|
|
{
|
|
|
|
|
controller = c;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
string name;
|
|
|
|
|
switch (layer.type)
|
|
|
|
|
{
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.Action:
|
|
|
|
|
name = "Action";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.Additive:
|
|
|
|
|
name = "Idle";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.Base:
|
|
|
|
|
name = "Locomotion";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.Gesture:
|
|
|
|
|
name = "Hands";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.Sitting:
|
|
|
|
|
name = "Sitting";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.FX:
|
|
|
|
|
name = "Face";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.TPose:
|
|
|
|
|
name = "UtilityTPose";
|
|
|
|
|
break;
|
|
|
|
|
case VRCAvatarDescriptor.AnimLayerType.IKPose:
|
|
|
|
|
name = "UtilityIKPose";
|
|
|
|
|
break;
|
|
|
|
|
default:
|
|
|
|
|
name = null;
|
|
|
|
|
break;
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-30 05:00:11 +08:00
|
|
|
|
if (name != null)
|
2022-08-28 10:04:53 +08:00
|
|
|
|
{
|
2022-08-30 05:00:11 +08:00
|
|
|
|
name = "/vrc_AvatarV3" + name + "Layer.controller";
|
2022-08-28 10:04:53 +08:00
|
|
|
|
|
|
|
|
|
controller = AssetDatabase.LoadAssetAtPath<AnimatorController>(SAMPLE_PATH_PACKAGE + name);
|
|
|
|
|
if (controller == null)
|
|
|
|
|
{
|
|
|
|
|
controller = AssetDatabase.LoadAssetAtPath<AnimatorController>(SAMPLE_PATH_LEGACY + name);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return controller;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|