mirror of
https://github.com/bdunderscore/modular-avatar.git
synced 2024-12-28 10:15:06 +08:00
3667dc319a
* add version defines * refactor: prefer BuildContext.ctor() overload taking GameObject * wrap unit tests entirely with MA_VRCSDK3_AVATARS * wrap unit tests smart with MA_VRCSDK3_AVATARS * wrap runtime entirely with MA_VRCSDK3_AVATARS * wrap VRC.SDKBase.IEditorOnly with MA_VRCSDK3_AVATARS * wrap editor entirely with MA_VRCSDK3_AVATARS * fix AvatarObjectReference.Get(Component) * wrap editor smart with MA_VRCSDK3_AVATARS * wrap BuildContext smart with MA_VRCSDK3_AVATARS * wrap PluginDefinition smart with MA_VRCSDK3_AVATARS * style: move conditional compiles one step outside
91 lines
3.2 KiB
C#
91 lines
3.2 KiB
C#
#if MA_VRCSDK3_AVATARS
|
|
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using nadena.dev.modular_avatar.core.editor.menu;
|
|
using UnityEditor;
|
|
using UnityEngine;
|
|
using VRC.SDK3.Avatars.Components;
|
|
using VRC.SDK3.Avatars.ScriptableObjects;
|
|
|
|
|
|
namespace nadena.dev.modular_avatar.core.editor
|
|
{
|
|
internal class MenuInstallHook
|
|
{
|
|
private static Texture2D _moreIcon = AssetDatabase.LoadAssetAtPath<Texture2D>(
|
|
"Packages/nadena.dev.modular-avatar/Runtime/Icons/Icon_More_A.png"
|
|
);
|
|
|
|
private BuildContext _context;
|
|
|
|
private VRCExpressionsMenu _rootMenu;
|
|
|
|
private Stack<ModularAvatarMenuInstaller> _visitedInstallerStack;
|
|
|
|
public void OnPreprocessAvatar(GameObject avatarRoot, BuildContext context)
|
|
{
|
|
_context = context;
|
|
|
|
ModularAvatarMenuInstaller[] menuInstallers = avatarRoot
|
|
.GetComponentsInChildren<ModularAvatarMenuInstaller>(true)
|
|
.Where(menuInstaller => menuInstaller.enabled)
|
|
.ToArray();
|
|
if (menuInstallers.Length == 0) return;
|
|
|
|
_visitedInstallerStack = new Stack<ModularAvatarMenuInstaller>();
|
|
|
|
VRCAvatarDescriptor avatar = avatarRoot.GetComponent<VRCAvatarDescriptor>();
|
|
|
|
if (avatar.expressionsMenu == null)
|
|
{
|
|
var menu = ScriptableObject.CreateInstance<VRCExpressionsMenu>();
|
|
_context.SaveAsset(menu);
|
|
avatar.expressionsMenu = menu;
|
|
context.ClonedMenus[menu] = menu;
|
|
}
|
|
|
|
_rootMenu = avatar.expressionsMenu;
|
|
var virtualMenu = VirtualMenu.ForAvatar(avatar, context);
|
|
avatar.expressionsMenu = virtualMenu.SerializeMenu(asset =>
|
|
{
|
|
context.SaveAsset(asset);
|
|
if (asset is VRCExpressionsMenu menu) SplitMenu(menu);
|
|
});
|
|
}
|
|
|
|
private void SplitMenu(VRCExpressionsMenu targetMenu)
|
|
{
|
|
while (targetMenu.controls.Count > VRCExpressionsMenu.MAX_CONTROLS)
|
|
{
|
|
// Split target menu
|
|
var newMenu = ScriptableObject.CreateInstance<VRCExpressionsMenu>();
|
|
_context.SaveAsset(newMenu);
|
|
const int 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,
|
|
parameter = new VRCExpressionsMenu.Control.Parameter
|
|
{
|
|
name = ""
|
|
},
|
|
subParameters = Array.Empty<VRCExpressionsMenu.Control.Parameter>(),
|
|
icon = _moreIcon,
|
|
labels = Array.Empty<VRCExpressionsMenu.Control.Label>()
|
|
});
|
|
|
|
targetMenu = newMenu;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
#endif |