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.
|
|
|
|
|
*/
|
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
using System.Collections.Generic;
|
2022-08-28 04:38:52 +08:00
|
|
|
|
using UnityEngine;
|
2022-10-03 09:29:52 +08:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
#endif
|
2022-08-28 04:38:52 +08:00
|
|
|
|
|
|
|
|
|
namespace net.fushizen.modular_avatar.core
|
|
|
|
|
{
|
2022-08-30 06:13:26 +08:00
|
|
|
|
[ExecuteInEditMode]
|
2022-08-28 04:38:52 +08:00
|
|
|
|
public class ModularAvatarMergeArmature : AvatarTagComponent
|
|
|
|
|
{
|
2022-09-12 05:53:25 +08:00
|
|
|
|
private const float POS_EPSILON = 0.01f;
|
|
|
|
|
private const float ROT_EPSILON = 0.01f;
|
|
|
|
|
|
2022-10-03 09:16:58 +08:00
|
|
|
|
public AvatarObjectReference mergeTarget;
|
|
|
|
|
public GameObject mergeTargetObject => mergeTarget.Get(this);
|
|
|
|
|
|
2022-08-28 04:38:52 +08:00
|
|
|
|
public string prefix;
|
|
|
|
|
public string suffix;
|
2022-08-30 06:13:26 +08:00
|
|
|
|
public bool locked;
|
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
private class BoneBinding
|
|
|
|
|
{
|
|
|
|
|
public Transform baseBone;
|
|
|
|
|
public Transform mergeBone;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
public Vector3 lastLocalPos;
|
|
|
|
|
public Vector3 lastLocalScale;
|
|
|
|
|
public Quaternion lastLocalRot;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private List<BoneBinding> lockedBones;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-08-28 04:38:52 +08:00
|
|
|
|
void OnValidate()
|
|
|
|
|
{
|
2022-09-11 01:47:41 +08:00
|
|
|
|
RuntimeUtil.delayCall(() =>
|
2022-08-28 04:38:52 +08:00
|
|
|
|
{
|
2022-08-30 05:00:01 +08:00
|
|
|
|
if (this == null) return;
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
|
|
|
|
CheckLock();
|
2022-09-11 01:47:41 +08:00
|
|
|
|
});
|
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
|
|
|
|
{
|
2022-09-12 05:53:25 +08:00
|
|
|
|
RuntimeUtil.delayCall(CheckLock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnDisable()
|
|
|
|
|
{
|
|
|
|
|
RuntimeUtil.delayCall(CheckLock);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void OnDestroy()
|
|
|
|
|
{
|
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
EditorApplication.update -= EditorUpdate;
|
|
|
|
|
#endif
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void EditorUpdate()
|
|
|
|
|
{
|
|
|
|
|
if (this == null || lockedBones == null)
|
|
|
|
|
{
|
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
EditorApplication.update -= EditorUpdate;
|
|
|
|
|
#endif
|
|
|
|
|
return;
|
|
|
|
|
}
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
if (lockedBones != null)
|
2022-08-30 06:13:26 +08:00
|
|
|
|
{
|
2022-09-12 05:53:25 +08:00
|
|
|
|
foreach (var bone in lockedBones)
|
2022-08-30 06:13:26 +08:00
|
|
|
|
{
|
2022-09-12 05:53:25 +08:00
|
|
|
|
if (bone.baseBone == null || bone.mergeBone == null)
|
|
|
|
|
{
|
|
|
|
|
lockedBones = null;
|
|
|
|
|
break;
|
|
|
|
|
}
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
var mergeBone = bone.mergeBone;
|
|
|
|
|
var correspondingObject = bone.baseBone;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
bool lockBasePosition = bone.baseBone == mergeTargetObject.transform;
|
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
if ((mergeBone.localPosition - bone.lastLocalPos).sqrMagnitude > POS_EPSILON
|
|
|
|
|
|| (mergeBone.localScale - bone.lastLocalScale).sqrMagnitude > POS_EPSILON
|
|
|
|
|
|| Quaternion.Angle(bone.lastLocalRot, mergeBone.localRotation) > ROT_EPSILON)
|
2022-08-30 06:13:26 +08:00
|
|
|
|
{
|
2022-09-12 05:53:25 +08:00
|
|
|
|
if (lockBasePosition) mergeBone.position = correspondingObject.position;
|
|
|
|
|
else correspondingObject.localPosition = mergeBone.localPosition;
|
|
|
|
|
|
|
|
|
|
correspondingObject.localScale = mergeBone.localScale;
|
|
|
|
|
correspondingObject.localRotation = mergeBone.localRotation;
|
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
|
|
|
|
if (lockBasePosition) mergeBone.position = correspondingObject.position;
|
|
|
|
|
else mergeBone.localPosition = correspondingObject.localPosition;
|
|
|
|
|
mergeBone.localScale = correspondingObject.localScale;
|
|
|
|
|
mergeBone.localRotation = correspondingObject.localRotation;
|
2022-08-30 06:13:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
bone.lastLocalPos = mergeBone.localPosition;
|
|
|
|
|
bone.lastLocalScale = mergeBone.localScale;
|
|
|
|
|
bone.lastLocalRot = mergeBone.localRotation;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
void CheckLock()
|
|
|
|
|
{
|
|
|
|
|
if (RuntimeUtil.isPlaying) return;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
|
|
|
|
#if UNITY_EDITOR
|
2022-09-12 05:53:25 +08:00
|
|
|
|
EditorApplication.update -= EditorUpdate;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
#endif
|
2022-09-12 05:53:25 +08:00
|
|
|
|
|
|
|
|
|
bool shouldLock = locked && isActiveAndEnabled;
|
|
|
|
|
bool wasLocked = lockedBones != null;
|
|
|
|
|
if (shouldLock != wasLocked)
|
|
|
|
|
{
|
|
|
|
|
if (!shouldLock)
|
|
|
|
|
{
|
|
|
|
|
lockedBones = null;
|
2022-08-30 06:13:26 +08:00
|
|
|
|
}
|
|
|
|
|
else
|
|
|
|
|
{
|
2022-10-03 09:16:58 +08:00
|
|
|
|
if (mergeTargetObject == null) return;
|
2022-09-12 05:53:25 +08:00
|
|
|
|
lockedBones = new List<BoneBinding>();
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-08-30 06:13:26 +08:00
|
|
|
|
foreach (var xform in GetComponentsInChildren<Transform>(true))
|
|
|
|
|
{
|
|
|
|
|
Transform baseObject = FindCorresponding(xform);
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
lockedBones.Add(new BoneBinding()
|
2022-09-11 01:47:41 +08:00
|
|
|
|
{
|
2022-09-12 05:53:25 +08:00
|
|
|
|
baseBone = baseObject,
|
|
|
|
|
mergeBone = xform,
|
|
|
|
|
lastLocalPos = xform.localPosition,
|
|
|
|
|
lastLocalScale = xform.localScale,
|
|
|
|
|
lastLocalRot = xform.localRotation
|
|
|
|
|
});
|
2022-08-30 06:13:26 +08:00
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-09-12 05:53:25 +08:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
if (locked)
|
|
|
|
|
{
|
|
|
|
|
EditorApplication.update += EditorUpdate;
|
|
|
|
|
}
|
|
|
|
|
#endif
|
2022-08-30 06:13:26 +08:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private Transform FindCorresponding(Transform xform)
|
|
|
|
|
{
|
|
|
|
|
if (xform == null) return null;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
if (xform == transform) return mergeTargetObject.transform;
|
2022-08-30 06:13:26 +08:00
|
|
|
|
|
|
|
|
|
var correspondingParent = FindCorresponding(xform.parent);
|
|
|
|
|
if (correspondingParent == null) return null;
|
2022-10-03 09:16:58 +08:00
|
|
|
|
|
2022-08-30 06:13:26 +08:00
|
|
|
|
return correspondingParent.Find(prefix + xform.name + suffix);
|
|
|
|
|
}
|
2022-08-28 04:38:52 +08:00
|
|
|
|
}
|
|
|
|
|
}
|