2022-09-09 11:40:52 +08:00
|
|
|
|
/*
|
|
|
|
|
* MIT License
|
2023-08-05 14:47:03 +08:00
|
|
|
|
*
|
2022-09-09 11:40:52 +08:00
|
|
|
|
* Copyright (c) 2022 bd_
|
2023-08-05 14:47:03 +08:00
|
|
|
|
*
|
2022-09-09 11:40:52 +08:00
|
|
|
|
* 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:
|
2023-08-05 14:47:03 +08:00
|
|
|
|
*
|
2022-09-09 11:40:52 +08:00
|
|
|
|
* The above copyright notice and this permission notice shall be included in all
|
|
|
|
|
* copies or substantial portions of the Software.
|
2023-08-05 14:47:03 +08:00
|
|
|
|
*
|
2022-09-09 11:40:52 +08:00
|
|
|
|
* 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.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-10-05 10:43:46 +08:00
|
|
|
|
using System;
|
2022-09-12 05:53:25 +08:00
|
|
|
|
using System.Collections.Generic;
|
2023-09-24 15:59:43 +08:00
|
|
|
|
using nadena.dev.modular_avatar.core.armature_lock;
|
2022-08-28 04:38:52 +08:00
|
|
|
|
using UnityEngine;
|
2023-09-24 15:59:43 +08:00
|
|
|
|
using UnityEngine.Serialization;
|
2022-08-28 04:38:52 +08:00
|
|
|
|
|
2022-11-11 12:39:58 +08:00
|
|
|
|
namespace nadena.dev.modular_avatar.core
|
2022-08-28 04:38:52 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
[Serializable]
|
|
|
|
|
public enum ArmatureLockMode
|
|
|
|
|
{
|
|
|
|
|
Legacy,
|
|
|
|
|
NotLocked,
|
|
|
|
|
BaseToMerge,
|
|
|
|
|
BidirectionalExact
|
|
|
|
|
}
|
|
|
|
|
|
2022-08-30 06:13:26 +08:00
|
|
|
|
[ExecuteInEditMode]
|
2022-10-20 10:42:33 +08:00
|
|
|
|
[DisallowMultipleComponent]
|
2022-11-10 09:49:00 +08:00
|
|
|
|
[AddComponentMenu("Modular Avatar/MA Merge Armature")]
|
2022-08-28 04:38:52 +08:00
|
|
|
|
public class ModularAvatarMergeArmature : AvatarTagComponent
|
|
|
|
|
{
|
2023-07-29 17:04:59 +08:00
|
|
|
|
public AvatarObjectReference mergeTarget = new AvatarObjectReference();
|
2022-10-03 09:16:58 +08:00
|
|
|
|
public GameObject mergeTargetObject => mergeTarget.Get(this);
|
|
|
|
|
|
2023-07-29 17:04:59 +08:00
|
|
|
|
public string prefix = "";
|
|
|
|
|
public string suffix = "";
|
2023-09-24 15:59:43 +08:00
|
|
|
|
|
|
|
|
|
[FormerlySerializedAs("locked")] public bool legacyLocked;
|
|
|
|
|
|
|
|
|
|
public ArmatureLockMode LockMode = ArmatureLockMode.Legacy;
|
|
|
|
|
|
2023-07-29 17:04:59 +08:00
|
|
|
|
public bool mangleNames = true;
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
private ArmatureLockController _lockController;
|
|
|
|
|
|
|
|
|
|
internal Transform FindCorrespondingBone(Transform bone, Transform baseParent)
|
2022-09-12 05:53:25 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
var childName = bone.gameObject.name;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
if (!childName.StartsWith(prefix) || !childName.EndsWith(suffix)) return null;
|
|
|
|
|
var targetObjectName = childName.Substring(prefix.Length,
|
|
|
|
|
childName.Length - prefix.Length - suffix.Length);
|
|
|
|
|
return baseParent.Find(targetObjectName);
|
2022-09-12 05:53:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-01-19 20:32:44 +08:00
|
|
|
|
protected override void OnValidate()
|
2022-08-28 04:38:52 +08:00
|
|
|
|
{
|
2023-01-19 20:32:44 +08:00
|
|
|
|
base.OnValidate();
|
2023-09-24 15:59:43 +08:00
|
|
|
|
MigrateLockConfig();
|
|
|
|
|
RuntimeUtil.delayCall(SetLockMode);
|
|
|
|
|
}
|
2023-01-19 20:32:44 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
private void SetLockMode()
|
|
|
|
|
{
|
2023-09-24 16:16:23 +08:00
|
|
|
|
if (this == null) return;
|
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
if (_lockController == null)
|
2022-08-28 04:38:52 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
_lockController = ArmatureLockController.ForMerge(this, GetBonesForLock);
|
|
|
|
|
}
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
if (_lockController.Mode != LockMode)
|
|
|
|
|
{
|
|
|
|
|
_lockController.Mode = LockMode;
|
|
|
|
|
|
|
|
|
|
if (!_lockController.IsStable())
|
|
|
|
|
{
|
|
|
|
|
_lockController.Mode = LockMode = ArmatureLockMode.NotLocked;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_lockController.Enabled = isActiveAndEnabled;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void MigrateLockConfig()
|
|
|
|
|
{
|
|
|
|
|
if (LockMode == ArmatureLockMode.Legacy)
|
|
|
|
|
{
|
|
|
|
|
LockMode = legacyLocked ? ArmatureLockMode.BidirectionalExact : ArmatureLockMode.BaseToMerge;
|
|
|
|
|
}
|
2022-08-28 04:38:52 +08:00
|
|
|
|
}
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
private void OnEnable()
|
2022-08-30 06:13:26 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
MigrateLockConfig();
|
|
|
|
|
|
|
|
|
|
SetLockMode();
|
2022-09-12 05:53:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnDisable()
|
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
_lockController.Enabled = false;
|
2022-09-12 05:53:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-07-30 00:15:16 +08:00
|
|
|
|
protected override void OnDestroy()
|
2022-09-12 05:53:25 +08:00
|
|
|
|
{
|
2023-07-30 00:15:16 +08:00
|
|
|
|
base.OnDestroy();
|
2023-09-24 15:59:43 +08:00
|
|
|
|
_lockController?.Dispose();
|
|
|
|
|
_lockController = null;
|
2022-09-12 05:53:25 +08:00
|
|
|
|
}
|
|
|
|
|
|
2023-09-24 13:44:07 +08:00
|
|
|
|
public override void ResolveReferences()
|
2023-08-05 14:47:03 +08:00
|
|
|
|
{
|
|
|
|
|
mergeTarget?.Get(this);
|
|
|
|
|
}
|
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
private List<(Transform, Transform)> GetBonesForLock()
|
2022-09-12 05:53:25 +08:00
|
|
|
|
{
|
2023-10-09 17:59:50 +08:00
|
|
|
|
if (this == null) return null;
|
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
var mergeRoot = this.transform;
|
|
|
|
|
var baseRoot = mergeTarget.Get(this);
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
if (baseRoot == null) return null;
|
2022-11-08 10:49:44 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
List<(Transform, Transform)> mergeBones = new List<(Transform, Transform)>();
|
2022-09-12 05:53:25 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
ScanHierarchy(mergeRoot, baseRoot.transform);
|
2022-09-12 05:53:25 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
return mergeBones;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
|
2023-09-24 15:59:43 +08:00
|
|
|
|
void ScanHierarchy(Transform merge, Transform baseBone)
|
2022-09-12 05:53:25 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
foreach (Transform t in merge)
|
2022-08-30 06:13:26 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
var baseChild = FindCorrespondingBone(t, baseBone);
|
|
|
|
|
if (baseChild != null)
|
2022-08-30 06:13:26 +08:00
|
|
|
|
{
|
2023-09-24 15:59:43 +08:00
|
|
|
|
mergeBones.Add((t, baseChild));
|
|
|
|
|
ScanHierarchy(t, baseChild);
|
2022-08-30 06:13:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-05 10:43:46 +08:00
|
|
|
|
|
|
|
|
|
public void InferPrefixSuffix()
|
|
|
|
|
{
|
|
|
|
|
// We only infer if targeting the armature (below the Hips bone)
|
|
|
|
|
var rootAnimator = RuntimeUtil.FindAvatarInParents(transform)?.GetComponent<Animator>();
|
|
|
|
|
if (rootAnimator == null) return;
|
|
|
|
|
|
|
|
|
|
var hips = rootAnimator.GetBoneTransform(HumanBodyBones.Hips);
|
|
|
|
|
if (hips == null || hips.transform.parent != mergeTargetObject.transform) return;
|
|
|
|
|
|
|
|
|
|
// We also require that the attached object has exactly one child (presumably the hips)
|
|
|
|
|
if (transform.childCount != 1) return;
|
|
|
|
|
|
|
|
|
|
// Infer the prefix and suffix by comparing the names of the mergeTargetObject's hips with the child of the
|
|
|
|
|
// GameObject we're attached to.
|
|
|
|
|
var baseName = hips.name;
|
|
|
|
|
var mergeName = transform.GetChild(0).name;
|
|
|
|
|
|
|
|
|
|
var prefixLength = mergeName.IndexOf(baseName, StringComparison.InvariantCulture);
|
|
|
|
|
if (prefixLength < 0) return;
|
|
|
|
|
|
|
|
|
|
var suffixLength = mergeName.Length - prefixLength - baseName.Length;
|
|
|
|
|
|
|
|
|
|
prefix = mergeName.Substring(0, prefixLength);
|
|
|
|
|
suffix = mergeName.Substring(mergeName.Length - suffixLength);
|
|
|
|
|
|
|
|
|
|
if (!string.IsNullOrEmpty(prefix) || !string.IsNullOrEmpty(suffix))
|
|
|
|
|
{
|
|
|
|
|
RuntimeUtil.MarkDirty(this);
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-08-28 04:38:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|