#if UNITY_2022_2_OR_NEWER
using System;
namespace Unity.AI.Navigation.Editor.Converter
{
internal abstract class SystemConverter
{
///
/// Name of the converter.
///
public abstract string name { get; }
///
/// The information when hovering over the converter.
///
public abstract string info { get; }
///
/// A check if the converter is enabled or not. Can be used to do a check if prerequisites are met to have it enabled or disabled.
///
public virtual bool isEnabled => true;
///
/// A priority of the converter. The lower the number (can be negative), the earlier it will be executed. Can be used to make sure that a converter runs before another converter.
///
public virtual int priority => 0;
///
/// A check to see if the converter needs to create the index.
/// This will only need to be set to true if the converter is using search api, and search queries.
/// If set to true the converter framework will create the indexer and remove it after all search queries are done.
///
public virtual bool needsIndexing => false;
///
/// This method getting triggered when clicking the listview item in the UI.
///
public virtual void OnClicked(int index)
{
}
// This is so that we can have different segment in our UI, example Unity converters, your custom converters etc..
// This is not implemented yet
public virtual string category { get; }
// This is in which drop down item the converter belongs to.
// Not properly implemented yet
public abstract Type container { get; }
///
/// This runs when initializing the converter. To gather data for the UI and also for the converter if needed.
///
/// The context that will be used to initialize data for the converter.
public abstract void OnInitialize(InitializeConverterContext context, Action callback);
///
/// The method that will be run before Run method if needed.
///
public virtual void OnPreRun()
{
}
///
/// The method that will be run when converting the assets.
///
/// The context that will be used when executing converter.
public abstract void OnRun(ref RunItemContext context);
///
/// The method that will be run after the converters are done if needed.
///
public virtual void OnPostRun()
{
}
}
}
#endif