2022-10-16 10:18:58 +08:00
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEngine;
|
|
|
|
|
using VRC.SDK3.Avatars.Components;
|
|
|
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
|
|
|
|
|
|
|
|
|
namespace net.fushizen.modular_avatar.core.editor
|
|
|
|
|
{
|
|
|
|
|
public class MenuInstallHook
|
|
|
|
|
{
|
|
|
|
|
private Dictionary<VRCExpressionsMenu, VRCExpressionsMenu> _clonedMenus;
|
|
|
|
|
private Dictionary<VRCExpressionsMenu, VRCExpressionsMenu> _installTargets;
|
|
|
|
|
|
2022-11-07 11:33:48 +08:00
|
|
|
|
private VRCExpressionsMenu _rootMenu;
|
|
|
|
|
|
2022-10-16 10:18:58 +08:00
|
|
|
|
public void OnPreprocessAvatar(GameObject avatarRoot)
|
|
|
|
|
{
|
2022-11-07 11:33:48 +08:00
|
|
|
|
var menuInstallers = avatarRoot.GetComponentsInChildren<ModularAvatarMenuInstaller>(true)
|
|
|
|
|
.Where(c => c.enabled)
|
|
|
|
|
.ToArray();
|
2022-10-16 10:18:58 +08:00
|
|
|
|
if (menuInstallers.Length == 0) return;
|
|
|
|
|
|
|
|
|
|
_clonedMenus = new Dictionary<VRCExpressionsMenu, VRCExpressionsMenu>();
|
|
|
|
|
|
|
|
|
|
var avatar = avatarRoot.GetComponent<VRCAvatarDescriptor>();
|
|
|
|
|
|
2022-11-07 11:33:48 +08:00
|
|
|
|
if (avatar.expressionsMenu == null)
|
|
|
|
|
{
|
|
|
|
|
var menu = ScriptableObject.CreateInstance<VRCExpressionsMenu>();
|
|
|
|
|
AssetDatabase.CreateAsset(menu, Util.GenerateAssetPath());
|
|
|
|
|
avatar.expressionsMenu = menu;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
_rootMenu = avatar.expressionsMenu;
|
2022-10-16 10:18:58 +08:00
|
|
|
|
avatar.expressionsMenu = CloneMenu(avatar.expressionsMenu);
|
|
|
|
|
_installTargets = new Dictionary<VRCExpressionsMenu, VRCExpressionsMenu>(_clonedMenus);
|
|
|
|
|
|
|
|
|
|
foreach (var install in menuInstallers)
|
|
|
|
|
{
|
|
|
|
|
InstallMenu(install);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private void InstallMenu(ModularAvatarMenuInstaller installer)
|
|
|
|
|
{
|
2022-11-07 11:33:48 +08:00
|
|
|
|
if (!installer.enabled) return;
|
|
|
|
|
|
|
|
|
|
if (installer.installTargetMenu == null)
|
|
|
|
|
{
|
|
|
|
|
installer.installTargetMenu = _rootMenu;
|
|
|
|
|
}
|
|
|
|
|
|
2022-10-16 10:18:58 +08:00
|
|
|
|
if (installer.installTargetMenu == null || installer.menuToAppend == null) return;
|
|
|
|
|
if (!_installTargets.TryGetValue(installer.installTargetMenu, out var targetMenu)) return;
|
|
|
|
|
if (_installTargets.ContainsKey(installer.menuToAppend)) return;
|
|
|
|
|
|
|
|
|
|
targetMenu.controls.AddRange(installer.menuToAppend.controls);
|
|
|
|
|
|
|
|
|
|
while (targetMenu.controls.Count > VRCExpressionsMenu.MAX_CONTROLS)
|
|
|
|
|
{
|
|
|
|
|
// Split target menu
|
|
|
|
|
var newMenu = ScriptableObject.CreateInstance<VRCExpressionsMenu>();
|
|
|
|
|
AssetDatabase.CreateAsset(newMenu, Util.GenerateAssetPath());
|
|
|
|
|
var keepCount = VRCExpressionsMenu.MAX_CONTROLS - 1;
|
|
|
|
|
newMenu.controls.AddRange(targetMenu.controls.Skip(keepCount));
|
|
|
|
|
targetMenu.controls.RemoveRange(keepCount,
|
|
|
|
|
targetMenu.controls.Count - keepCount
|
|
|
|
|
);
|
|
|
|
|
|
|
|
|
|
targetMenu.controls.Add(new VRCExpressionsMenu.Control()
|
|
|
|
|
{
|
|
|
|
|
name = "More",
|
|
|
|
|
type = VRCExpressionsMenu.Control.ControlType.SubMenu,
|
|
|
|
|
subMenu = newMenu
|
|
|
|
|
});
|
|
|
|
|
|
|
|
|
|
_installTargets[installer.installTargetMenu] = newMenu;
|
|
|
|
|
targetMenu = newMenu;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private VRCExpressionsMenu CloneMenu(VRCExpressionsMenu menu)
|
|
|
|
|
{
|
|
|
|
|
if (menu == null) return null;
|
|
|
|
|
if (_clonedMenus.TryGetValue(menu, out var newMenu)) return newMenu;
|
|
|
|
|
newMenu = Object.Instantiate(menu);
|
|
|
|
|
AssetDatabase.CreateAsset(newMenu, Util.GenerateAssetPath());
|
|
|
|
|
_clonedMenus[menu] = newMenu;
|
|
|
|
|
|
|
|
|
|
foreach (var control in newMenu.controls)
|
|
|
|
|
{
|
|
|
|
|
if (control.type == VRCExpressionsMenu.Control.ControlType.SubMenu)
|
|
|
|
|
{
|
|
|
|
|
control.subMenu = CloneMenu(control.subMenu);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
return newMenu;
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|