Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Decision] Picking Signatures <=> Picking Pins #56

Open
gregsn opened this issue Jun 20, 2022 · 0 comments
Open

[Decision] Picking Signatures <=> Picking Pins #56

gregsn opened this issue Jun 20, 2022 · 0 comments

Comments

@gregsn
Copy link
Member

gregsn commented Jun 20, 2022

Up to now the only way to select overloads was to pick single pins one by one. Users demanded a way of picking the overloads directly instead.

We now offer both modes:

  • picking overloads = picking nodes = signatures = a bunch of input pins
  • picking pins

From a technical point of view, it's the same basic idea (picking pins), only the way how you pick them differs.

Let's compare the two modes:

Signatures Single Pins
grafik grafik
grafik grafik
grafik grafik

In both modes, the common pins (pins that are present in all overloads) are omitted in order to avoid too much verbosity. E.g. all

  • Enumerable.GroupBy nodes come with a Key Selector input
  • Array.BinarySearch nodes come with Input and Value inputs
  • FromAdoptedTexture nodes come with a Context input
  • Enumerable.Min nodes come with the same pins, but their types differ. So they get listed.

Compatibility

The underlying system for overload selection stays the same, thus we have back-and-forth compatibility. The only difference is the way they get presented to the user, either

  • as packages of pins that make the different nodes identifiable or
  • as single pins that in combination will result in overload selection.

Here is an example of how a node reference gets serialized:
grafik
The only new bit is the attribute OverloadStrategy="AllPinsThatAreNotCommon". Earlier versions of vvvv gamma will just ignore that part and thus will be able to load new vl files. Newer versions will show all pins as one overload pick, removing the attribute would again just show the pins.

When are NodeReferences enhanced by PinReferences

Storing pin references in all node references would be too verbose and would blow up the vl files. So we only store the currently necessary parts to identify the overload. This is exactly what you get presented in the UI.

Node Configuration.zip

@gregsn gregsn changed the title Picking Signatures <=> Picking Pins [Decision] Picking Signatures <=> Picking Pins Jul 15, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

1 participant