File size: 25,334 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 | using System;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
using System.Threading;
using UnityEngine;
using UnityObject = UnityEngine.Object;
namespace Unity.VisualScripting
{
public class UnitOptionTree : ExtensibleFuzzyOptionTree
{
#region Initialization
public UnitOptionTree(GUIContent label) : base(label)
{
favorites = new Favorites(this);
showBackgroundWorkerProgress = true;
}
public override IFuzzyOption Option(object item)
{
if (item is Namespace @namespace)
{
return new NamespaceOption(@namespace, true);
}
if (item is Type type)
{
return new TypeOption(type, true);
}
return base.Option(item);
}
public override void Prewarm()
{
filter = filter ?? UnitOptionFilter.Any;
try
{
options = new HashSet<IUnitOption>(UnitBase.Subset(filter, reference));
}
catch (Exception ex)
{
Debug.LogError($"Failed to fetch node options for fuzzy finder (error log below).\nTry rebuilding the node options from '{UnitOptionUtility.GenerateUnitDatabasePath}'.\n\n{ex}");
options = new HashSet<IUnitOption>();
}
typesWithMembers = new HashSet<Type>();
foreach (var option in options)
{
if (option is IMemberUnitOption memberUnitOption && memberUnitOption.targetType != null)
{
typesWithMembers.Add(memberUnitOption.targetType);
}
}
}
private HashSet<IUnitOption> options;
private HashSet<Type> typesWithMembers;
#endregion
#region Configuration
public UnitOptionFilter filter { get; set; }
public GraphReference reference { get; set; }
public bool includeNone { get; set; }
public bool surfaceCommonTypeLiterals { get; set; }
public object[] rootOverride { get; set; }
public FlowGraph graph => reference.graph as FlowGraph;
public GameObject self => reference.self;
public ActionDirection direction { get; set; } = ActionDirection.Any;
#endregion
#region Hierarchy
private readonly FuzzyGroup enumsGroup = new FuzzyGroup("(Enums)", typeof(Enum).Icon());
private readonly FuzzyGroup selfGroup = new FuzzyGroup("This", typeof(GameObject).Icon());
private IEnumerable<UnitCategory> SpecialCategories()
{
yield return new UnitCategory("Codebase");
yield return new UnitCategory("Events");
yield return new UnitCategory("Variables");
yield return new UnitCategory("Math");
yield return new UnitCategory("Nesting");
yield return new UnitCategory("Graphs");
}
public override IEnumerable<object> Root()
{
if (rootOverride != null && rootOverride.Length > 0)
{
foreach (var item in rootOverride)
{
yield return item;
}
yield break;
}
if (filter.CompatibleOutputType != null)
{
var outputType = filter.CompatibleOutputType;
var outputTypeLiteral = options.FirstOrDefault(option => option is LiteralOption literalOption && literalOption.literalType == outputType);
if (outputTypeLiteral != null)
{
yield return outputTypeLiteral;
}
HashSet<Type> noSurfaceConstructors = new HashSet<Type>()
{
typeof(string),
typeof(object)
};
if (!noSurfaceConstructors.Contains(outputType))
{
var outputTypeConstructors = options.Where(option => option is InvokeMemberOption invokeMemberOption &&
invokeMemberOption.targetType == outputType &&
invokeMemberOption.unit.member.isConstructor);
foreach (var outputTypeConstructor in outputTypeConstructors)
{
yield return outputTypeConstructor;
}
}
if (outputType == typeof(bool))
{
foreach (var logicOperation in CategoryChildren(new UnitCategory("Logic")))
{
yield return logicOperation;
}
}
if (outputType.IsNumeric())
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Scalar")))
{
yield return mathOperation;
}
}
if (outputType == typeof(Vector2))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Vector 2")))
{
yield return mathOperation;
}
}
if (outputType == typeof(Vector3))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Vector 3")))
{
yield return mathOperation;
}
}
if (outputType == typeof(Vector4))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Vector 4")))
{
yield return mathOperation;
}
}
}
if (surfaceCommonTypeLiterals)
{
foreach (var commonType in EditorTypeUtility.commonTypes)
{
if (commonType == filter.CompatibleOutputType)
{
continue;
}
var commonTypeLiteral = options.FirstOrDefault(option => option is LiteralOption literalOption && literalOption.literalType == commonType);
if (commonTypeLiteral != null)
{
yield return commonTypeLiteral;
}
}
}
if (filter.CompatibleInputType != null)
{
var inputType = filter.CompatibleInputType;
if (!inputType.IsPrimitive && inputType != typeof(object))
{
yield return inputType;
}
if (inputType == typeof(bool))
{
yield return options.Single(o => o.UnitIs<If>());
yield return options.Single(o => o.UnitIs<SelectUnit>());
}
if (inputType == typeof(bool) || inputType.IsNumeric())
{
foreach (var logicOperation in CategoryChildren(new UnitCategory("Logic")))
{
yield return logicOperation;
}
}
if (inputType.IsNumeric())
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Scalar")))
{
yield return mathOperation;
}
}
if (inputType == typeof(Vector2))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Vector 2")))
{
yield return mathOperation;
}
}
if (inputType == typeof(Vector3))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Vector 3")))
{
yield return mathOperation;
}
}
if (inputType == typeof(Vector4))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Math/Vector 4")))
{
yield return mathOperation;
}
}
if (typeof(IEnumerable).IsAssignableFrom(inputType) && (inputType != typeof(string) && inputType != typeof(Transform)))
{
foreach (var mathOperation in CategoryChildren(new UnitCategory("Collections"), false))
{
yield return mathOperation;
}
}
if (typeof(IList).IsAssignableFrom(inputType))
{
foreach (var listOperation in CategoryChildren(new UnitCategory("Collections/Lists")))
{
yield return listOperation;
}
}
if (typeof(IDictionary).IsAssignableFrom(inputType))
{
foreach (var dictionaryOperation in CategoryChildren(new UnitCategory("Collections/Dictionaries")))
{
yield return dictionaryOperation;
}
}
}
if (filter.NoConnection)
{
yield return new StickyNoteOption();
}
if (UnityAPI.Await
(
() =>
{
if (self != null)
{
selfGroup.label = self.name;
selfGroup.icon = self.Icon();
return true;
}
return false;
}
)
)
{
yield return selfGroup;
}
foreach (var category in options.Select(option => option.category?.root)
.NotNull()
.Concat(SpecialCategories())
.Distinct()
.OrderBy(c => c.name))
{
yield return category;
}
foreach (var extensionRootItem in base.Root())
{
yield return extensionRootItem;
}
if (filter.Self)
{
var self = options.FirstOrDefault(option => option.UnitIs<This>());
if (self != null)
{
yield return self;
}
}
foreach (var unit in CategoryChildren(null))
{
yield return unit;
}
if (includeNone)
{
yield return null;
}
}
public override IEnumerable<object> Children(object parent)
{
if (parent is Namespace @namespace)
{
return NamespaceChildren(@namespace);
}
else if (parent is Type type)
{
return TypeChildren(type);
}
else if (parent == enumsGroup)
{
return EnumsChildren();
}
else if (parent == selfGroup)
{
return SelfChildren();
}
else if (parent is UnitCategory unitCategory)
{
return CategoryChildren(unitCategory);
}
else if (parent is VariableKind variableKind)
{
return VariableKindChildren(variableKind);
}
else
{
return base.Children(parent);
}
}
private IEnumerable<object> SelfChildren()
{
yield return typeof(GameObject);
// Self components can be null if no script is assigned to them
// https://support.ludiq.io/forums/5-bolt/topics/817-/
foreach (var selfComponentType in UnityAPI.Await(() => self.GetComponents<Component>().NotUnityNull().Select(c => c.GetType())))
{
yield return selfComponentType;
}
}
private IEnumerable<object> CodebaseChildren()
{
foreach (var rootNamespace in typesWithMembers.Where(t => !t.IsEnum)
.Select(t => t.Namespace().Root)
.OrderBy(ns => ns.DisplayName(false))
.Distinct())
{
yield return rootNamespace;
}
if (filter.Literals && options.Any(option => option is LiteralOption literalOption && literalOption.literalType.IsEnum))
{
yield return enumsGroup;
}
}
private IEnumerable<object> MathChildren()
{
foreach (var mathMember in GetMembers(typeof(Mathf)).Where(option => !((MemberUnit)option.unit).member.requiresTarget))
{
yield return mathMember;
}
}
private IEnumerable<object> TimeChildren()
{
foreach (var timeMember in GetMembers(typeof(Time)).Where(option => !((MemberUnit)option.unit).member.requiresTarget))
{
yield return timeMember;
}
}
private IEnumerable<object> NestingChildren()
{
foreach (var nester in options.Where(option => option.UnitIs<IGraphNesterElement>() && ((IGraphNesterElement)option.unit).nest.macro == null)
.OrderBy(option => option.label))
{
yield return nester;
}
}
private IEnumerable<object> MacroChildren()
{
foreach (var macroNester in options.Where(option => option.UnitIs<IGraphNesterElement>() && ((IGraphNesterElement)option.unit).nest.macro != null)
.OrderBy(option => option.label))
{
yield return macroNester;
}
}
private IEnumerable<object> VariablesChildren()
{
yield return VariableKind.Flow;
yield return VariableKind.Graph;
yield return VariableKind.Object;
yield return VariableKind.Scene;
yield return VariableKind.Application;
yield return VariableKind.Saved;
}
private IEnumerable<object> VariableKindChildren(VariableKind kind)
{
foreach (var variable in options.OfType<IUnifiedVariableUnitOption>()
.Where(option => option.kind == kind)
.OrderBy(option => option.name))
{
yield return variable;
}
}
private IEnumerable<object> NamespaceChildren(Namespace @namespace)
{
foreach (var childNamespace in GetChildrenNamespaces(@namespace))
{
yield return childNamespace;
}
foreach (var type in GetNamespaceTypes(@namespace))
{
yield return type;
}
}
private IEnumerable<Namespace> GetChildrenNamespaces(Namespace @namespace)
{
if (!@namespace.IsGlobal)
{
foreach (var childNamespace in typesWithMembers.Where(t => !t.IsEnum)
.SelectMany(t => t.Namespace().AndAncestors())
.Distinct()
.Where(ns => ns.Parent == @namespace)
.OrderBy(ns => ns.DisplayName(false)))
{
yield return childNamespace;
}
}
}
private IEnumerable<Type> GetNamespaceTypes(Namespace @namespace)
{
foreach (var type in typesWithMembers.Where(t => t.Namespace() == @namespace && !t.IsEnum)
.OrderBy(t => t.DisplayName()))
{
yield return type;
}
}
private IEnumerable<object> TypeChildren(Type type)
{
foreach (var literal in options.Where(option => option is LiteralOption literalOption && literalOption.literalType == type))
{
yield return literal;
}
foreach (var expose in options.Where(option => option is ExposeOption exposeOption && exposeOption.exposedType == type))
{
yield return expose;
}
if (type.IsStruct())
{
foreach (var createStruct in options.Where(option => option is CreateStructOption createStructOption && createStructOption.structType == type))
{
yield return createStruct;
}
}
foreach (var member in GetMembers(type))
{
yield return member;
}
}
private IEnumerable<IUnitOption> GetMembers(Type type)
{
foreach (var member in options.Where(option => option is IMemberUnitOption memberUnitOption && memberUnitOption.targetType == type && option.unit.canDefine)
.OrderBy(option => BoltCore.Configuration.groupInheritedMembers && ((MemberUnit)option.unit).member.isPseudoInherited)
.ThenBy(option => option.order)
.ThenBy(option => option.label))
{
yield return member;
}
}
private IEnumerable<object> EnumsChildren()
{
foreach (var literal in options.Where(option => option is LiteralOption literalOption && literalOption.literalType.IsEnum)
.OrderBy(option => option.label))
{
yield return literal;
}
}
private IEnumerable<object> CategoryChildren(UnitCategory category, bool subCategories = true)
{
if (category != null && subCategories)
{
foreach (var subCategory in options.SelectMany(option => option.category == null ? Enumerable.Empty<UnitCategory>() : option.category.AndAncestors())
.Distinct()
.Where(c => c.parent == category)
.OrderBy(c => c.name))
{
yield return subCategory;
}
}
foreach (var unit in options.Where(option => option.category == category)
.Where(option => !option.unitType.HasAttribute<SpecialUnitAttribute>())
.OrderBy(option => option.order)
.ThenBy(option => option.label))
{
yield return unit;
}
if (category != null)
{
if (category.root.name == "Events")
{
foreach (var eventChild in EventsChildren(category))
{
yield return eventChild;
}
}
else if (category.fullName == "Codebase")
{
foreach (var codebaseChild in CodebaseChildren())
{
yield return codebaseChild;
}
}
else if (category.fullName == "Variables")
{
foreach (var variableChild in VariablesChildren())
{
yield return variableChild;
}
}
else if (category.fullName == "Math")
{
foreach (var mathChild in MathChildren())
{
yield return mathChild;
}
}
else if (category.fullName == "Time")
{
foreach (var timeChild in TimeChildren())
{
yield return timeChild;
}
}
else if (category.fullName == "Nesting")
{
foreach (var nestingChild in NestingChildren())
{
yield return nestingChild;
}
}
else if (category.fullName == "Graphs")
{
foreach (var macroChild in MacroChildren())
{
yield return macroChild;
}
}
}
}
private IEnumerable<object> EventsChildren(UnitCategory category)
{
foreach (var unit in options.Where(option => option.UnitIs<IEventUnit>() && option.category == category)
.OrderBy(option => option.order)
.ThenBy(option => option.label))
{
yield return unit;
}
}
#endregion
#region Search
public override bool searchable { get; } = true;
public override IEnumerable<ISearchResult> SearchResults(string query, CancellationToken cancellation)
{
foreach (var typeResult in typesWithMembers.Cancellable(cancellation).OrderableSearchFilter(query, t => t.DisplayName()))
{
yield return typeResult;
}
foreach (var optionResult in options.Cancellable(cancellation)
.OrderableSearchFilter(query, o => o.haystack, o => o.formerHaystack)
.WithoutInheritedDuplicates(r => r.result, cancellation))
{
yield return optionResult;
}
}
public override string SearchResultLabel(object item, string query)
{
if (item is Type type)
{
return TypeOption.SearchResultLabel(type, query);
}
else if (item is IUnitOption unitOption)
{
return unitOption.SearchResultLabel(query);
}
else
{
return base.SearchResultLabel(item, query);
}
}
#endregion
#region Favorites
public override ICollection<object> favorites { get; }
public override bool CanFavorite(object item)
{
return (item as IUnitOption)?.favoritable ?? false;
}
public override string FavoritesLabel(object item)
{
return SearchResultLabel(item, null);
}
public override void OnFavoritesChange()
{
BoltFlow.Configuration.Save();
}
private class Favorites : ICollection<object>
{
public Favorites(UnitOptionTree tree)
{
this.tree = tree;
}
private UnitOptionTree tree { get; }
private IEnumerable<IUnitOption> options => tree.options.Where(option => BoltFlow.Configuration.favoriteUnitOptions.Contains(option.favoriteKey));
public bool IsReadOnly => false;
public int Count => BoltFlow.Configuration.favoriteUnitOptions.Count;
public IEnumerator<object> GetEnumerator()
{
foreach (var option in options)
{
yield return option;
}
}
IEnumerator IEnumerable.GetEnumerator()
{
return GetEnumerator();
}
public bool Contains(object item)
{
var option = (IUnitOption)item;
return BoltFlow.Configuration.favoriteUnitOptions.Contains(option.favoriteKey);
}
public void Add(object item)
{
var option = (IUnitOption)item;
BoltFlow.Configuration.favoriteUnitOptions.Add(option.favoriteKey);
}
public bool Remove(object item)
{
var option = (IUnitOption)item;
return BoltFlow.Configuration.favoriteUnitOptions.Remove(option.favoriteKey);
}
public void Clear()
{
BoltFlow.Configuration.favoriteUnitOptions.Clear();
}
public void CopyTo(object[] array, int arrayIndex)
{
if (array == null)
{
throw new ArgumentNullException(nameof(array));
}
if (arrayIndex < 0)
{
throw new ArgumentOutOfRangeException(nameof(arrayIndex));
}
if (array.Length - arrayIndex < Count)
{
throw new ArgumentException();
}
var i = 0;
foreach (var item in this)
{
array[i + arrayIndex] = item;
i++;
}
}
}
#endregion
}
}
|