2020-05-16 15:17:04 +02:00
|
|
|
|
#if UNITY_EDITOR
|
|
|
|
|
using System;
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
using System.Linq;
|
|
|
|
|
using UnityEditor;
|
|
|
|
|
using UnityEngine;
|
2022-12-28 14:06:42 +01:00
|
|
|
|
|
|
|
|
|
namespace Textus.SerializeReferenceUI.Editor
|
2020-05-16 15:17:04 +02:00
|
|
|
|
{
|
2022-12-28 14:06:42 +01:00
|
|
|
|
public static class SerializeReferenceGenericSelectionMenu
|
2022-12-28 14:03:46 +01:00
|
|
|
|
{
|
2022-12-28 14:06:42 +01:00
|
|
|
|
/// Purpose.
|
|
|
|
|
/// This is generic selection menu (will appear at position).
|
|
|
|
|
/// Filtering.
|
|
|
|
|
/// You can add substring filter here to filter by search string.
|
|
|
|
|
/// As well ass type or interface restrictions.
|
|
|
|
|
/// As well as any custom restriction that is based on input type.
|
|
|
|
|
/// And it will be performed on each Appropriate type found by TypeCache.
|
|
|
|
|
public static void ShowContextMenuForManagedReference(this SerializedProperty property, Rect position, IEnumerable<Func<Type, bool>> filters = null)
|
|
|
|
|
{
|
|
|
|
|
GenericMenu context = new GenericMenu();
|
|
|
|
|
FillContextMenu(filters, context, property);
|
|
|
|
|
context.DropDown(position);
|
|
|
|
|
}
|
2021-04-30 16:41:33 +02:00
|
|
|
|
|
2022-12-28 14:06:42 +01:00
|
|
|
|
/// Purpose.
|
|
|
|
|
/// This is generic selection menu (will appear at click position).
|
|
|
|
|
/// Filtering.
|
|
|
|
|
/// You can add substring filter here to filter by search string.
|
|
|
|
|
/// As well ass type or interface restrictions.
|
|
|
|
|
/// As well as any custom restriction that is based on input type.
|
|
|
|
|
/// And it will be performed on each Appropriate type found by TypeCache.
|
|
|
|
|
public static void ShowContextMenuForManagedReference(this SerializedProperty property, IEnumerable<Func<Type, bool>> filters = null)
|
|
|
|
|
{
|
|
|
|
|
GenericMenu context = new GenericMenu();
|
|
|
|
|
FillContextMenu(filters, context, property);
|
|
|
|
|
context.ShowAsContext();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void FillContextMenu(IEnumerable<Func<Type, bool>> enumerableFilters, GenericMenu contextMenu, SerializedProperty property)
|
|
|
|
|
{
|
|
|
|
|
List<Func<Type, bool>> filters = enumerableFilters.ToList();// Prevents possible multiple enumerations
|
|
|
|
|
|
|
|
|
|
// Adds "Make Null" menu command
|
|
|
|
|
contextMenu.AddItem(new GUIContent("Null"), false, property.SetManagedReferenceToNull);
|
2022-12-28 14:03:46 +01:00
|
|
|
|
|
2022-12-28 14:06:42 +01:00
|
|
|
|
// Collects appropriate types
|
|
|
|
|
IEnumerable<Type> appropriateTypes = property.GetAppropriateTypesForAssigningToManagedReference(filters);
|
|
|
|
|
|
|
|
|
|
// Adds appropriate types to menu
|
|
|
|
|
foreach (Type appropriateType in appropriateTypes)
|
|
|
|
|
{
|
|
|
|
|
AddItemToContextMenu(appropriateType, contextMenu, property);
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private static void AddItemToContextMenu(Type type, GenericMenu genericMenuContext, SerializedProperty property)
|
2022-12-28 14:03:46 +01:00
|
|
|
|
{
|
2022-12-28 14:06:42 +01:00
|
|
|
|
string assemblyName = type.Assembly.ToString().Split('(', ',')[0];
|
|
|
|
|
string entryName = type + " ( " + assemblyName + " )";
|
|
|
|
|
genericMenuContext.AddItem(new GUIContent(entryName), false, AssignNewInstanceCommand, new GenericMenuParameterForAssignInstanceCommand(type, property));
|
2022-12-28 14:03:46 +01:00
|
|
|
|
}
|
2020-05-16 15:17:04 +02:00
|
|
|
|
|
2022-12-28 14:06:42 +01:00
|
|
|
|
private static void AssignNewInstanceCommand(object objectGenericMenuParameter)
|
2020-05-16 15:17:04 +02:00
|
|
|
|
{
|
2022-12-28 14:06:42 +01:00
|
|
|
|
GenericMenuParameterForAssignInstanceCommand parameter = (GenericMenuParameterForAssignInstanceCommand)objectGenericMenuParameter;
|
|
|
|
|
Type type = parameter.Type;
|
|
|
|
|
SerializedProperty property = parameter.Property;
|
|
|
|
|
property.AssignNewInstanceOfTypeToManagedReference(type);
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
private readonly struct GenericMenuParameterForAssignInstanceCommand
|
|
|
|
|
{
|
|
|
|
|
public GenericMenuParameterForAssignInstanceCommand(Type type, SerializedProperty property)
|
|
|
|
|
{
|
|
|
|
|
Type = type;
|
|
|
|
|
Property = property;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public readonly SerializedProperty Property;
|
|
|
|
|
public readonly Type Type;
|
2020-05-16 15:17:04 +02:00
|
|
|
|
}
|
2022-12-28 14:06:42 +01:00
|
|
|
|
}
|
|
|
|
|
}
|
2020-05-16 15:17:04 +02:00
|
|
|
|
#endif
|