mirror of
https://github.com/sinai-dev/UnityExplorer.git
synced 2025-06-16 22:27:45 +08:00
125 lines
3.8 KiB
C#
125 lines
3.8 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using UnityEngine;
|
|
using UnityEngine.UI;
|
|
using UnityExplorer.UI.CacheObject;
|
|
using UnityExplorer.UI.ObjectPool;
|
|
using UnityExplorer.UI.Panels;
|
|
|
|
namespace UnityExplorer.UI.Inspectors
|
|
{
|
|
public static class InspectorManager
|
|
{
|
|
public static readonly List<InspectorBase> Inspectors = new List<InspectorBase>();
|
|
|
|
public static InspectorBase ActiveInspector { get; private set; }
|
|
|
|
public static float PanelWidth;
|
|
|
|
public static void Inspect(object obj, CacheObjectBase sourceCache = null)
|
|
{
|
|
if (obj.IsNullOrDestroyed())
|
|
return;
|
|
|
|
obj = obj.TryCast();
|
|
|
|
if (TryFocusActiveInspector(obj))
|
|
return;
|
|
|
|
// var type = obj.GetActualType();
|
|
//if (type.IsEnumerable())
|
|
// CreateInspector<ListInspector>(obj, false, sourceCache);
|
|
//// todo dict
|
|
if (obj is GameObject)
|
|
CreateInspector<GameObjectInspector>(obj);
|
|
else
|
|
CreateInspector<ReflectionInspector>(obj, false, sourceCache);
|
|
}
|
|
|
|
private static bool TryFocusActiveInspector(object target)
|
|
{
|
|
foreach (var inspector in Inspectors)
|
|
{
|
|
if (inspector.Target.ReferenceEqual(target))
|
|
{
|
|
UIManager.SetPanelActive(UIManager.Panels.Inspector, true);
|
|
SetInspectorActive(inspector);
|
|
return true;
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
|
|
public static void Inspect(Type type)
|
|
{
|
|
CreateInspector<ReflectionInspector>(type, true);
|
|
}
|
|
|
|
public static void SetInspectorActive(InspectorBase inspector)
|
|
{
|
|
UnsetActiveInspector();
|
|
|
|
ActiveInspector = inspector;
|
|
inspector.OnSetActive();
|
|
}
|
|
|
|
public static void UnsetActiveInspector()
|
|
{
|
|
if (ActiveInspector != null)
|
|
ActiveInspector.OnSetInactive();
|
|
}
|
|
|
|
private static void CreateInspector<T>(object target, bool staticReflection = false, CacheObjectBase sourceCache = null) where T : InspectorBase
|
|
{
|
|
var inspector = Pool<T>.Borrow();
|
|
Inspectors.Add(inspector);
|
|
inspector.Target = target;
|
|
|
|
if (sourceCache != null && sourceCache.CanWrite)
|
|
{
|
|
// only set parent cache object if we are inspecting a struct, otherwise there is no point.
|
|
if (target.GetType().IsValueType && inspector is ReflectionInspector ri)
|
|
ri.ParentCacheObject = sourceCache;
|
|
}
|
|
|
|
UIManager.SetPanelActive(UIManager.Panels.Inspector, true);
|
|
inspector.UIRoot.transform.SetParent(InspectorPanel.Instance.ContentHolder.transform, false);
|
|
|
|
if (inspector is ReflectionInspector reflectInspector)
|
|
reflectInspector.StaticOnly = staticReflection;
|
|
|
|
inspector.OnBorrowedFromPool(target);
|
|
SetInspectorActive(inspector);
|
|
}
|
|
|
|
internal static void ReleaseInspector<T>(T inspector) where T : InspectorBase
|
|
{
|
|
inspector.OnReturnToPool();
|
|
Pool<T>.Return(inspector);
|
|
|
|
Inspectors.Remove(inspector);
|
|
}
|
|
|
|
internal static void Update()
|
|
{
|
|
for (int i = Inspectors.Count - 1; i >= 0; i--)
|
|
Inspectors[i].Update();
|
|
}
|
|
|
|
internal static void OnPanelResized(float width)
|
|
{
|
|
PanelWidth = width;
|
|
|
|
foreach (var obj in Inspectors)
|
|
{
|
|
if (obj is ReflectionInspector inspector)
|
|
{
|
|
inspector.SetLayouts();
|
|
}
|
|
}
|
|
}
|
|
}
|
|
}
|