mirror of
https://github.com/codewriter-packages/Tri-Inspector.git
synced 2025-01-22 16:28:23 -05:00
72 lines
1.9 KiB
C#
72 lines
1.9 KiB
C#
using System;
|
|
using Sirenix.OdinInspector.Editor;
|
|
using Sirenix.OdinInspector.Editor.Validation;
|
|
using TriInspector.Editor.Integrations.Odin;
|
|
|
|
[assembly: RegisterValidator(typeof(OdinFieldValidator<>))]
|
|
|
|
namespace TriInspector.Editor.Integrations.Odin
|
|
{
|
|
public class OdinFieldValidator<T> : ValueValidator<T>, IDisposable
|
|
{
|
|
private bool _initialized;
|
|
private TriPropertyTreeForOdin<T> _propertyTree;
|
|
|
|
public override RevalidationCriteria RevalidationCriteria { get; }
|
|
= RevalidationCriteria.OnValueChangeOrChildValueChange;
|
|
|
|
public override bool CanValidateProperty(InspectorProperty property)
|
|
{
|
|
if (property.IsTreeRoot)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
var type = property.Info.TypeOfValue;
|
|
|
|
if (type == null)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (!TriOdinUtility.IsDrawnByTri(type))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
if (typeof(UnityEngine.Object).IsAssignableFrom(type))
|
|
{
|
|
return false;
|
|
}
|
|
|
|
for (var parent = property.Parent; parent != null; parent = parent.Parent)
|
|
{
|
|
var parentType = parent.Info.TypeOfValue;
|
|
if (TriOdinUtility.IsDrawnByTri(parentType))
|
|
{
|
|
return false;
|
|
}
|
|
}
|
|
|
|
return true;
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
_propertyTree?.Dispose();
|
|
}
|
|
|
|
protected override void Validate(ValidationResult result)
|
|
{
|
|
if (!_initialized)
|
|
{
|
|
_initialized = true;
|
|
_propertyTree = new TriPropertyTreeForOdin<T>(ValueEntry);
|
|
}
|
|
|
|
_propertyTree.Update();
|
|
_propertyTree.RunValidation();
|
|
_propertyTree.CopyValidationResultsTo(result);
|
|
}
|
|
}
|
|
} |