File size: 23,350 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 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using UnityEngine;
namespace Unity.VisualScripting
{
public sealed class Flow : IPoolable, IDisposable
{
// We need to check for recursion by passing some additional
// context information to avoid the same port in multiple different
// nested flow graphs to count as the same item. Naively,
// we're using the parent as the context, which seems to work;
// it won't theoretically catch recursive nesting, but then recursive
// nesting already isn't supported anyway, so this way we avoid hashing
// or turning the stack into a reference.
// https://support.ludiq.io/communities/5/topics/2122-r
// We make this an equatable struct to avoid any allocation.
private struct RecursionNode : IEquatable<RecursionNode>
{
public IUnitPort port { get; }
public IGraphParent context { get; }
public RecursionNode(IUnitPort port, GraphPointer pointer)
{
this.port = port;
this.context = pointer.parent;
}
public bool Equals(RecursionNode other)
{
return other.port == port && other.context == context;
}
public override bool Equals(object obj)
{
return obj is RecursionNode other && Equals(other);
}
public override int GetHashCode()
{
return HashUtility.GetHashCode(port, context);
}
}
public GraphStack stack { get; private set; }
private Recursion<RecursionNode> recursion;
private readonly Dictionary<IUnitValuePort, object> locals = new Dictionary<IUnitValuePort, object>();
public readonly VariableDeclarations variables = new VariableDeclarations();
private readonly Stack<int> loops = new Stack<int>();
private readonly HashSet<GraphStack> preservedStacks = new HashSet<GraphStack>();
public MonoBehaviour coroutineRunner { get; private set; }
private ICollection<Flow> activeCoroutinesRegistry;
private bool coroutineStopRequested;
public bool isCoroutine { get; private set; }
private IEnumerator coroutineEnumerator;
public bool isPrediction { get; private set; }
private bool disposed;
public bool enableDebug
{
get
{
if (isPrediction)
{
return false;
}
if (!stack.hasDebugData)
{
return false;
}
return true;
}
}
public static Func<GraphPointer, bool> isInspectedBinding { get; set; }
public bool isInspected => isInspectedBinding?.Invoke(stack) ?? false;
#region Lifecycle
private Flow() { }
public static Flow New(GraphReference reference)
{
Ensure.That(nameof(reference)).IsNotNull(reference);
var flow = GenericPool<Flow>.New(() => new Flow()); ;
flow.stack = reference.ToStackPooled();
return flow;
}
void IPoolable.New()
{
disposed = false;
recursion = Recursion<RecursionNode>.New();
}
public void Dispose()
{
if (disposed)
{
throw new ObjectDisposedException(ToString());
}
GenericPool<Flow>.Free(this);
}
void IPoolable.Free()
{
stack?.Dispose();
recursion?.Dispose();
locals.Clear();
loops.Clear();
variables.Clear();
// Preserved stacks could remain if coroutine was interrupted
foreach (var preservedStack in preservedStacks)
{
preservedStack.Dispose();
}
preservedStacks.Clear();
loopIdentifier = -1;
stack = null;
recursion = null;
isCoroutine = false;
coroutineEnumerator = null;
coroutineRunner = null;
activeCoroutinesRegistry?.Remove(this);
activeCoroutinesRegistry = null;
coroutineStopRequested = false;
isPrediction = false;
disposed = true;
}
public GraphStack PreserveStack()
{
var preservedStack = stack.Clone();
preservedStacks.Add(preservedStack);
return preservedStack;
}
public void RestoreStack(GraphStack stack)
{
this.stack.CopyFrom(stack);
}
public void DisposePreservedStack(GraphStack stack)
{
stack.Dispose();
preservedStacks.Remove(stack);
}
#endregion
#region Loops
public int loopIdentifier = -1;
public int currentLoop
{
get
{
if (loops.Count > 0)
{
return loops.Peek();
}
else
{
return -1;
}
}
}
public bool LoopIsNotBroken(int loop)
{
return currentLoop == loop;
}
public int EnterLoop()
{
var loop = ++loopIdentifier;
loops.Push(loop);
return loop;
}
public void BreakLoop()
{
if (currentLoop < 0)
{
throw new InvalidOperationException("No active loop to break.");
}
loops.Pop();
}
public void ExitLoop(int loop)
{
if (loop != currentLoop)
{
// Already exited through break
return;
}
loops.Pop();
}
#endregion
#region Control
public void Run(ControlOutput port)
{
Invoke(port);
Dispose();
}
public void StartCoroutine(ControlOutput port, ICollection<Flow> registry = null)
{
isCoroutine = true;
coroutineRunner = stack.component;
if (coroutineRunner == null)
{
coroutineRunner = CoroutineRunner.instance;
}
activeCoroutinesRegistry = registry;
activeCoroutinesRegistry?.Add(this);
// We have to store the enumerator because Coroutine itself
// can't be cast to IDisposable, which we'll need when stopping.
coroutineEnumerator = Coroutine(port);
coroutineRunner.StartCoroutine(coroutineEnumerator);
}
public void StopCoroutine(bool disposeInstantly)
{
if (!isCoroutine)
{
throw new NotSupportedException("Stop may only be called on coroutines.");
}
if (disposeInstantly)
{
StopCoroutineImmediate();
}
else
{
// We prefer a soft coroutine stop here that will happen at the *next frame*,
// because we don't want the flow to be disposed just yet when the event node stops
// listening, as we still need it for clean up operations.
coroutineStopRequested = true;
}
}
internal void StopCoroutineImmediate()
{
if (coroutineRunner && coroutineEnumerator != null)
{
coroutineRunner.StopCoroutine(coroutineEnumerator);
// Unity doesn't dispose coroutines enumerators when calling StopCoroutine, so we have to do it manually:
// https://forum.unity.com/threads/finally-block-not-executing-in-a-stopped-coroutine.320611/
((IDisposable)coroutineEnumerator).Dispose();
}
}
private IEnumerator Coroutine(ControlOutput startPort)
{
try
{
foreach (var instruction in InvokeCoroutine(startPort))
{
if (coroutineStopRequested)
{
yield break;
}
yield return instruction;
if (coroutineStopRequested)
{
yield break;
}
}
}
finally
{
// Manual disposal might have already occurred from StopCoroutine,
// so we have to avoid double disposal, which would throw.
if (!disposed)
{
Dispose();
}
}
}
public void Invoke(ControlOutput output)
{
Ensure.That(nameof(output)).IsNotNull(output);
var connection = output.connection;
if (connection == null)
{
return;
}
var input = connection.destination;
var recursionNode = new RecursionNode(output, stack);
BeforeInvoke(output, recursionNode);
try
{
var nextPort = InvokeDelegate(input);
if (nextPort != null)
{
Invoke(nextPort);
}
}
finally
{
AfterInvoke(output, recursionNode);
}
}
private IEnumerable InvokeCoroutine(ControlOutput output)
{
var connection = output.connection;
if (connection == null)
{
yield break;
}
var input = connection.destination;
var recursionNode = new RecursionNode(output, stack);
BeforeInvoke(output, recursionNode);
if (input.supportsCoroutine)
{
foreach (var instruction in InvokeCoroutineDelegate(input))
{
if (instruction is ControlOutput)
{
foreach (var unwrappedInstruction in InvokeCoroutine((ControlOutput)instruction))
{
yield return unwrappedInstruction;
}
}
else
{
yield return instruction;
}
}
}
else
{
ControlOutput nextPort = InvokeDelegate(input);
if (nextPort != null)
{
foreach (var instruction in InvokeCoroutine(nextPort))
{
yield return instruction;
}
}
}
AfterInvoke(output, recursionNode);
}
private RecursionNode BeforeInvoke(ControlOutput output, RecursionNode recursionNode)
{
try
{
recursion?.Enter(recursionNode);
}
catch (StackOverflowException ex)
{
output.unit.HandleException(stack, ex);
throw;
}
var connection = output.connection;
var input = connection.destination;
if (enableDebug)
{
var connectionEditorData = stack.GetElementDebugData<IUnitConnectionDebugData>(connection);
var inputUnitEditorData = stack.GetElementDebugData<IUnitDebugData>(input.unit);
connectionEditorData.lastInvokeFrame = EditorTimeBinding.frame;
connectionEditorData.lastInvokeTime = EditorTimeBinding.time;
inputUnitEditorData.lastInvokeFrame = EditorTimeBinding.frame;
inputUnitEditorData.lastInvokeTime = EditorTimeBinding.time;
}
return recursionNode;
}
private void AfterInvoke(ControlOutput output, RecursionNode recursionNode)
{
recursion?.Exit(recursionNode);
}
private ControlOutput InvokeDelegate(ControlInput input)
{
try
{
if (input.requiresCoroutine)
{
throw new InvalidOperationException($"Port '{input.key}' on '{input.unit}' can only be triggered in a coroutine.");
}
return input.action(this);
}
catch (Exception ex)
{
input.unit.HandleException(stack, ex);
throw;
}
}
private IEnumerable InvokeCoroutineDelegate(ControlInput input)
{
var instructions = input.coroutineAction(this);
while (true)
{
object instruction;
try
{
if (!instructions.MoveNext())
{
break;
}
instruction = instructions.Current;
}
catch (Exception ex)
{
input.unit.HandleException(stack, ex);
throw;
}
yield return instruction;
}
}
#endregion
#region Values
public bool IsLocal(IUnitValuePort port)
{
Ensure.That(nameof(port)).IsNotNull(port);
return locals.ContainsKey(port);
}
public void SetValue(IUnitValuePort port, object value)
{
Ensure.That(nameof(port)).IsNotNull(port);
Ensure.That(nameof(value)).IsOfType(value, port.type);
if (locals.ContainsKey(port))
{
locals[port] = value;
}
else
{
locals.Add(port, value);
}
}
public object GetValue(ValueInput input)
{
if (locals.TryGetValue(input, out var local))
{
return local;
}
var connection = input.connection;
if (connection != null)
{
if (enableDebug)
{
var connectionEditorData = stack.GetElementDebugData<IUnitConnectionDebugData>(connection);
connectionEditorData.lastInvokeFrame = EditorTimeBinding.frame;
connectionEditorData.lastInvokeTime = EditorTimeBinding.time;
}
var output = connection.source;
var value = GetValue(output);
if (enableDebug)
{
var connectionEditorData = stack.GetElementDebugData<ValueConnection.DebugData>(connection);
connectionEditorData.lastValue = value;
connectionEditorData.assignedLastValue = true;
}
return value;
}
else if (TryGetDefaultValue(input, out var defaultValue))
{
return defaultValue;
}
else
{
throw new MissingValuePortInputException(input.key);
}
}
private object GetValue(ValueOutput output)
{
if (locals.TryGetValue(output, out var local))
{
return local;
}
if (!output.supportsFetch)
{
throw new InvalidOperationException($"The value of '{output.key}' on '{output.unit}' cannot be fetched dynamically, it must be assigned.");
}
var recursionNode = new RecursionNode(output, stack);
try
{
recursion?.Enter(recursionNode);
}
catch (StackOverflowException ex)
{
output.unit.HandleException(stack, ex);
throw;
}
try
{
if (enableDebug)
{
var outputUnitEditorData = stack.GetElementDebugData<IUnitDebugData>(output.unit);
outputUnitEditorData.lastInvokeFrame = EditorTimeBinding.frame;
outputUnitEditorData.lastInvokeTime = EditorTimeBinding.time;
}
var value = GetValueDelegate(output);
return value;
}
finally
{
recursion?.Exit(recursionNode);
}
}
public object GetValue(ValueInput input, Type type)
{
return ConversionUtility.Convert(GetValue(input), type);
}
public T GetValue<T>(ValueInput input)
{
return (T)GetValue(input, typeof(T));
}
public object GetConvertedValue(ValueInput input)
{
return GetValue(input, input.type);
}
private object GetDefaultValue(ValueInput input)
{
if (!TryGetDefaultValue(input, out var defaultValue))
{
throw new InvalidOperationException("Value input port does not have a default value.");
}
return defaultValue;
}
public bool TryGetDefaultValue(ValueInput input, out object defaultValue)
{
if (!input.unit.defaultValues.TryGetValue(input.key, out defaultValue))
{
return false;
}
if (input.nullMeansSelf && defaultValue == null)
{
defaultValue = stack.self;
}
return true;
}
private object GetValueDelegate(ValueOutput output)
{
try
{
return output.getValue(this);
}
catch (Exception ex)
{
output.unit.HandleException(stack, ex);
throw;
}
}
public static object FetchValue(ValueInput input, GraphReference reference)
{
var flow = New(reference);
var result = flow.GetValue(input);
flow.Dispose();
return result;
}
public static object FetchValue(ValueInput input, Type type, GraphReference reference)
{
return ConversionUtility.Convert(FetchValue(input, reference), type);
}
public static T FetchValue<T>(ValueInput input, GraphReference reference)
{
return (T)FetchValue(input, typeof(T), reference);
}
#endregion
#region Value Prediction
public static bool CanPredict(IUnitValuePort port, GraphReference reference)
{
Ensure.That(nameof(port)).IsNotNull(port);
var flow = New(reference);
flow.isPrediction = true;
bool canPredict;
if (port is ValueInput)
{
canPredict = flow.CanPredict((ValueInput)port);
}
else if (port is ValueOutput)
{
canPredict = flow.CanPredict((ValueOutput)port);
}
else
{
throw new NotSupportedException();
}
flow.Dispose();
return canPredict;
}
private bool CanPredict(ValueInput input)
{
if (!input.hasValidConnection)
{
if (!TryGetDefaultValue(input, out var defaultValue))
{
return false;
}
if (typeof(Component).IsAssignableFrom(input.type))
{
defaultValue = defaultValue?.ConvertTo(input.type);
}
if (!input.allowsNull && defaultValue == null)
{
return false;
}
return true;
}
var output = input.validConnectedPorts.Single();
if (!CanPredict(output))
{
return false;
}
var connectedValue = GetValue(output);
if (!ConversionUtility.CanConvert(connectedValue, input.type, false))
{
return false;
}
if (typeof(Component).IsAssignableFrom(input.type))
{
connectedValue = connectedValue?.ConvertTo(input.type);
}
if (!input.allowsNull && connectedValue == null)
{
return false;
}
return true;
}
private bool CanPredict(ValueOutput output)
{
// Shortcircuit the expensive check if the port isn't marked as predictable
if (!output.supportsPrediction)
{
return false;
}
var recursionNode = new RecursionNode(output, stack);
if (!recursion?.TryEnter(recursionNode) ?? false)
{
return false;
}
// Check each value dependency
foreach (var relation in output.unit.relations.WithDestination(output))
{
if (relation.source is ValueInput)
{
var source = (ValueInput)relation.source;
if (!CanPredict(source))
{
recursion?.Exit(recursionNode);
return false;
}
}
}
var value = CanPredictDelegate(output);
recursion?.Exit(recursionNode);
return value;
}
private bool CanPredictDelegate(ValueOutput output)
{
try
{
return output.canPredictValue(this);
}
catch (Exception ex)
{
Debug.LogWarning($"Prediction check failed for '{output.key}' on '{output.unit}':\n{ex}");
return false;
}
}
public static object Predict(IUnitValuePort port, GraphReference reference)
{
Ensure.That(nameof(port)).IsNotNull(port);
var flow = New(reference);
flow.isPrediction = true;
object value;
if (port is ValueInput)
{
value = flow.GetValue((ValueInput)port);
}
else if (port is ValueOutput)
{
value = flow.GetValue((ValueOutput)port);
}
else
{
throw new NotSupportedException();
}
flow.Dispose();
return value;
}
public static object Predict(IUnitValuePort port, GraphReference reference, Type type)
{
return ConversionUtility.Convert(Predict(port, reference), type);
}
public static T Predict<T>(IUnitValuePort port, GraphReference pointer)
{
return (T)Predict(port, pointer, typeof(T));
}
#endregion
}
}
|