File size: 9,621 Bytes
18a519f | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 | using System;
using System.Collections.Generic;
using System.Linq;
using UnityEditor;
using UnityEngine;
namespace Unity.VisualScripting
{
[Editor(typeof(IUnit))]
public class UnitEditor : GraphElementEditor<FlowGraphContext>
{
public UnitEditor(Metadata metadata) : base(metadata) { }
protected IUnit unit => (IUnit)element;
protected new UnitDescription description => (UnitDescription)base.description;
protected new UnitAnalysis analysis => (UnitAnalysis)base.analysis;
protected override float GetHeight(float width, GUIContent label)
{
var height = 0f;
height += GetHeaderHeight(width);
height += GetWrappedInspectorHeight(width);
if (exception != null)
{
height += GetExceptionHeight(width);
}
height += analysis.warnings.Sum(warning => warning.GetHeight(width));
if (unit.inputs.Any())
{
height += GetPortsHeight(width, new GUIContent("Inputs"), unit.inputs.Cast<IUnitPort>());
}
if (unit.outputs.Any())
{
height += GetPortsHeight(width, new GUIContent("Outputs"), unit.outputs.Cast<IUnitPort>());
}
return height;
}
protected override void OnGUI(Rect position, GUIContent label)
{
y = 0;
OnHeaderGUI(position);
EditorGUI.BeginChangeCheck();
OnWrappedInspectorGUI(position);
if (EditorGUI.EndChangeCheck())
{
unit.Define();
}
if (exception != null)
{
y--;
OnExceptionGUI(position.VerticalSection(ref y, GetExceptionHeight(position.width) + 1));
}
foreach (var warning in analysis.warnings)
{
y--;
warning.OnGUI(position.VerticalSection(ref y, warning.GetHeight(position.width) + 1));
}
if (unit.inputs.Any())
{
y--;
OnPortsGUI(position, new GUIContent("Inputs"), unit.inputs.Cast<IUnitPort>());
}
if (unit.outputs.Any())
{
y--;
OnPortsGUI(position, new GUIContent("Outputs"), unit.outputs.Cast<IUnitPort>());
}
}
private float GetPortsInnerWidth(float totalWidth)
{
return totalWidth - Styles.portsBackground.padding.left - Styles.portsBackground.padding.right;
}
private float GetPortsHeight(float totalWidth, GUIContent label, IEnumerable<IUnitPort> ports)
{
var innerWidth = GetPortsInnerWidth(totalWidth);
var height = 0f;
height += Styles.portsBackground.padding.top;
height += Styles.portsLabel.CalcHeight(label, innerWidth);
foreach (var port in ports)
{
height += Styles.spaceBetweenPorts;
height += GetPortHeight(innerWidth, port);
}
height += Styles.portsBackground.padding.bottom;
return height;
}
private void OnPortsGUI(Rect position, GUIContent label, IEnumerable<IUnitPort> ports)
{
var backgroundPosition = new Rect
(
position.x,
y,
position.width,
GetPortsHeight(position.width, label, ports)
);
if (e.type == EventType.Repaint)
{
Styles.portsBackground.Draw(backgroundPosition, false, false, false, false);
}
var innerWidth = GetPortsInnerWidth(position.width);
y += Styles.portsBackground.padding.top;
position.x += Styles.portsBackground.padding.left;
var labelPosition = new Rect
(
position.x,
y,
innerWidth,
Styles.portsLabel.CalcHeight(label, innerWidth)
);
GUI.Label(labelPosition, label, Styles.portsLabel);
y += labelPosition.height;
foreach (var port in ports)
{
y += Styles.spaceBetweenPorts;
var portPosition = new Rect
(
position.x,
y,
innerWidth,
GetPortHeight(innerWidth, port)
);
OnPortGUI(portPosition, port);
y += portPosition.height;
}
y += Styles.portsBackground.padding.bottom;
}
private GUIContent GetLabelContent(IUnitPort port)
{
string type;
if (port is IUnitControlPort)
{
type = "Flow";
}
else if (port is IUnitValuePort)
{
type = ((IUnitValuePort)port).type.DisplayName();
}
else if (port is IUnitInvalidPort)
{
type = "Invalid";
}
else
{
throw new NotSupportedException();
}
return new GUIContent(string.Format($"<b>{port.Description<UnitPortDescription>().label}</b> <color=#{ColorPalette.unityForegroundDim.ToHexString()}>: {LudiqGUIUtility.EscapeRichText(type)}</color>"));
}
private float GetPortHeight(float paddedWidth, IUnitPort port)
{
var portDescription = port.Description<UnitPortDescription>();
var labelWidth = paddedWidth - Styles.portIcon.fixedWidth - Styles.portIcon.margin.right;
var height = 0f;
height += Styles.portLabel.CalcHeight(GetLabelContent(port), labelWidth);
var summary = portDescription.summary;
if (!StringUtility.IsNullOrWhiteSpace(summary))
{
height += Styles.portDescription.CalcHeight(new GUIContent(summary), labelWidth);
}
return height;
}
private void OnPortGUI(Rect portPosition, IUnitPort port)
{
var portDescription = port.Description<UnitPortDescription>();
var labelWidth = portPosition.width - Styles.portIcon.fixedWidth - Styles.portIcon.margin.right;
var iconPosition = new Rect
(
portPosition.x,
portPosition.y,
Styles.portIcon.fixedWidth,
Styles.portIcon.fixedHeight
);
var icon = portDescription.icon?[IconSize.Small];
if (icon != null)
{
GUI.DrawTexture(iconPosition, icon);
}
var labelContent = GetLabelContent(port);
var labelPosition = new Rect
(
iconPosition.xMax + Styles.portIcon.margin.right,
portPosition.y,
labelWidth,
Styles.portLabel.CalcHeight(labelContent, labelWidth)
);
GUI.Label(labelPosition, labelContent, Styles.portLabel);
var summary = portDescription.summary;
if (!StringUtility.IsNullOrWhiteSpace(summary))
{
var descriptionContent = new GUIContent(summary);
var descriptionPosition = new Rect
(
labelPosition.x,
labelPosition.yMax,
labelWidth,
Styles.portDescription.CalcHeight(descriptionContent, labelWidth)
);
GUI.Label(descriptionPosition, descriptionContent, Styles.portDescription);
}
}
public new static class Styles
{
static Styles()
{
portsBackground = new GUIStyle("IN BigTitle");
portsBackground.padding = new RectOffset(10, 5, 7, 10);
portsLabel = new GUIStyle(EditorStyles.label);
portsLabel.fontSize = 13;
portsLabel.padding = new RectOffset(0, 0, 0, 3);
portLabel = new GUIStyle(EditorStyles.label);
portLabel.imagePosition = ImagePosition.TextOnly;
portLabel.wordWrap = true;
portLabel.richText = true;
portDescription = new GUIStyle(EditorStyles.label);
portDescription.imagePosition = ImagePosition.TextOnly;
portDescription.wordWrap = true;
portDescription.richText = true;
portDescription.fontSize = 10;
portDescription.normal.textColor = ColorPalette.unityForegroundDim;
portIcon = new GUIStyle();
portIcon.imagePosition = ImagePosition.ImageOnly;
portIcon.fixedWidth = portIcon.fixedHeight = IconSize.Small;
portIcon.margin.right = 5;
inspectorBackground = new GUIStyle();
inspectorBackground.padding = new RectOffset(10, 10, 10, 10);
}
public static readonly GUIStyle portsBackground;
public static readonly GUIStyle portsLabel;
public static readonly GUIStyle portLabel;
public static readonly GUIStyle portDescription;
public static readonly GUIStyle portIcon;
public static readonly float spaceBetweenPorts = 5;
public static readonly GUIStyle inspectorBackground;
}
}
}
|