modular-avatar/Runtime/ModularAvatarMenuItem.cs

78 lines
2.2 KiB
C#
Raw Normal View History

using nadena.dev.modular_avatar.core.menu;
using UnityEngine;
using VRC.SDK3.Avatars.ScriptableObjects;
namespace nadena.dev.modular_avatar.core
{
public enum SubmenuSource
{
MenuAsset,
Children,
}
[AddComponentMenu("Modular Avatar/MA Menu Item")]
public class ModularAvatarMenuItem : AvatarTagComponent, MenuSource
{
public VRCExpressionsMenu.Control Control;
public SubmenuSource MenuSource;
public GameObject menuSource_otherObjectChildren;
/// <summary>
/// If no control group is set (and an action is linked), this controls whether this control is synced.
/// </summary>
public bool isSynced = true;
public bool isSaved = true;
2023-04-04 18:33:19 +08:00
protected override void OnValidate()
{
base.OnValidate();
RuntimeUtil.InvalidateMenu();
2023-04-04 18:33:19 +08:00
if (Control == null)
{
Control = new VRCExpressionsMenu.Control();
}
}
public override void ResolveReferences()
2023-08-05 14:47:03 +08:00
{
// no-op
}
public void Visit(NodeContext context)
{
2023-04-04 18:33:19 +08:00
if (Control == null)
{
Control = new VRCExpressionsMenu.Control();
}
var cloned = new VirtualControl(Control);
cloned.subMenu = null;
cloned.name = gameObject.name;
if (cloned.type == VRCExpressionsMenu.Control.ControlType.SubMenu)
{
switch (this.MenuSource)
{
case SubmenuSource.MenuAsset:
cloned.SubmenuNode = context.NodeFor(this.Control.subMenu);
break;
case SubmenuSource.Children:
{
var root = this.menuSource_otherObjectChildren != null
? this.menuSource_otherObjectChildren
: this.gameObject;
cloned.SubmenuNode = context.NodeFor(new MenuNodesUnder(root));
break;
}
}
}
context.PushControl(cloned);
}
}
}