您最多选择25个主题
主题必须以中文或者字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符
139 行
3.7 KiB
139 行
3.7 KiB
using System;
|
|
using System.Linq;
|
|
using System.Reflection;
|
|
using System.Collections.Generic;
|
|
|
|
namespace UnityEditor.VFXToolbox.ImageSequencer
|
|
{
|
|
internal partial class FrameProcessorStack
|
|
{
|
|
public ProcessingFrameSequence inputSequence
|
|
{
|
|
get
|
|
{
|
|
return m_InputSequence;
|
|
}
|
|
}
|
|
|
|
public ProcessingFrameSequence outputSequence
|
|
{
|
|
get
|
|
{
|
|
if (m_Processors.Count > 0)
|
|
return m_Processors[m_Processors.Count - 1].OutputSequence;
|
|
else
|
|
return m_InputSequence;
|
|
}
|
|
}
|
|
|
|
public ImageSequencer imageSequencer
|
|
{
|
|
get { return m_ImageSequencer; }
|
|
}
|
|
|
|
public List<FrameProcessor> processors
|
|
{
|
|
get
|
|
{
|
|
return m_Processors;
|
|
}
|
|
}
|
|
|
|
private List<FrameProcessor> m_Processors;
|
|
private ProcessingFrameSequence m_InputSequence;
|
|
private ImageSequencer m_ImageSequencer;
|
|
|
|
public FrameProcessorStack(ProcessingFrameSequence inputSequence, ImageSequencer imageSequencer)
|
|
{
|
|
m_InputSequence = inputSequence;
|
|
m_Processors = new List<FrameProcessor>();
|
|
m_ImageSequencer = imageSequencer;
|
|
|
|
}
|
|
|
|
public void Dispose()
|
|
{
|
|
foreach(FrameProcessor p in m_Processors)
|
|
{
|
|
p.Dispose();
|
|
}
|
|
m_Processors.Clear();
|
|
}
|
|
|
|
public ProcessingFrameSequence GetOutputSequence()
|
|
{
|
|
if(m_Processors.Count > 0)
|
|
{
|
|
return m_Processors[m_Processors.Count - 1].OutputSequence;
|
|
}
|
|
else
|
|
{
|
|
return inputSequence;
|
|
}
|
|
}
|
|
|
|
public ProcessingFrameSequence GetInputSequence(FrameProcessor processor)
|
|
{
|
|
int index = m_Processors.IndexOf(processor);
|
|
|
|
if (index > 0)
|
|
{
|
|
return m_Processors[index - 1].OutputSequence;
|
|
}
|
|
else
|
|
return m_InputSequence;
|
|
}
|
|
|
|
public FrameProcessor GetNextProcessor(FrameProcessor processor)
|
|
{
|
|
int index = m_Processors.IndexOf(processor);
|
|
if(index < m_Processors.Count-1)
|
|
{
|
|
return m_Processors[index + 1];
|
|
}
|
|
return null;
|
|
}
|
|
|
|
public void Invalidate(FrameProcessor processor)
|
|
{
|
|
int index = m_Processors.IndexOf(processor);
|
|
if(index != -1)
|
|
m_Processors[index].Invalidate();
|
|
}
|
|
|
|
public void InvalidateAll()
|
|
{
|
|
if (m_Processors.Count > 0)
|
|
m_Processors[0].Invalidate();
|
|
}
|
|
|
|
|
|
public Dictionary<Type, ProcessorAttribute> settingsDefinitions { get; private set; }
|
|
|
|
public void UpdateProcessorsFromAssembly()
|
|
{
|
|
settingsDefinitions = new Dictionary<Type, ProcessorAttribute>();
|
|
|
|
var assembly = Assembly.GetAssembly(typeof(ProcessorBase));
|
|
var types = assembly.GetTypes();
|
|
var processorType = typeof(ProcessorBase);
|
|
var attrType = typeof(ProcessorAttribute);
|
|
|
|
var allProcessorTypes = types
|
|
.Where(t => t.IsClass
|
|
&& !t.IsAbstract
|
|
&& t.IsSubclassOf(processorType)
|
|
&& t.IsDefined(attrType, false));
|
|
|
|
foreach (var type in allProcessorTypes)
|
|
{
|
|
var attr = (ProcessorAttribute)type.GetCustomAttributes(attrType, false)[0];
|
|
|
|
settingsDefinitions.Add(type, attr);
|
|
}
|
|
}
|
|
|
|
|
|
}
|
|
|
|
}
|