HISE Logo Forum
    • Categories
    • Register
    • Login

    ScriptNode Feedback After a Month of Heavy Use

    Scheduled Pinned Locked Moved ScriptNode
    36 Posts 7 Posters 1.6k Views
    Loading More Posts
    • Oldest to Newest
    • Newest to Oldest
    • Most Votes
    Reply
    • Reply as topic
    Log in to reply
    This topic has been deleted. Only users with topic management privileges can see it.
    • Christoph HartC
      Christoph Hart @aaronventure
      last edited by

      @aaronventure said in ScriptNode Feedback After a Month of Heavy Use:

      So there's no longer a way to tell what is the base name of the node / node type.

      The tooltip will show the type, ID and name if you hover over the header.

      c2cf727d-c1a9-4b41-acc3-bc214f9c731d-image.png

      Christoph HartC 1 Reply Last reply Reply Quote 2
      • Christoph HartC
        Christoph Hart @Christoph Hart
        last edited by Christoph Hart

        Alright, the folded (and unfolded) width should now take the length of the node name into account so it won't truncate it anymore.

        8fb08f77-d39b-471e-8c4f-ffec9c57e309-image.png

        A griffinboyG 2 Replies Last reply Reply Quote 1
        • A
          aaronventure @Christoph Hart
          last edited by aaronventure

          @Christoph-Hart Amazing.

          To recap this thread, the only unsolved issues from my original post remain:

          • comment location in horizontally oriented nodes (though I understand if this would mess up node ordering as the cables run in the top and bottom)
          • navigation (auto-scroll on screen edges while holding left click drag to modulation target)

          From my wishlist, it's just:

          • logic operators
          • unscaled clamping
          • variables (which you already laid out the plan for).

          Everything else has been addressed, thank you.

          ustkU 1 Reply Last reply Reply Quote 0
          • ustkU
            ustk @aaronventure
            last edited by

            @aaronventure @Christoph-Hart Couldn't the comments be shown in a floating tile when hovering a specific area/icon on the node?

            Can't help pressing F5 in the forum...

            1 Reply Last reply Reply Quote 0
            • JulesVJ
              JulesV @aaronventure
              last edited by

              @aaronventure said in ScriptNode Feedback After a Month of Heavy Use:

              If you have 200 nodes...

              I'm sorry I'm new, but I'm trying to understand how something complex can be done with 200 nodes :)

              In my first attempts, I worked with a maximum of 20 nodes :)

              A 1 Reply Last reply Reply Quote 1
              • griffinboyG
                griffinboy @Christoph Hart
                last edited by

                @Christoph-Hart
                Oh hell yeah. Will it also work for when you enable the cpu usage label? That often gets cut off for me

                1 Reply Last reply Reply Quote 0
                • A
                  aaronventure @JulesV
                  last edited by

                  @JulesV a lot of parameters driving a lot of mini-algorithms that all talk to each other. It adds up very quickly.

                  Christoph HartC 1 Reply Last reply Reply Quote 0
                  • Christoph HartC
                    Christoph Hart @aaronventure
                    last edited by

                    Alright, I spend a bit more time on the scriptnode UX front:

                    • added "variables". However I went against your objection and named them local_cables because I think that's exactly what they are. Variables would suggest that they store data, which isn't the case, they just forward any value you send into it (just like a normal cable does but without the serial killer vibes when you use them in a big patch). There are a few helper functions that lets you convert cable connections to local cable nodes and vice versa (and on compilation all local cables will be replaced by normal cables so I don't add complexity to the C++ builder). Docs are here
                    • added a toggle button for hiding all help texts and replace them with a comment button. If you click on the comment button next to the node it will expand the comment (and hovering over the comment button will show the first line of the comment as tooltip).
                    • changed the layout of the help with flipped containers to be below the node.
                    • added a few items to the DSP node list component (to the left of the network editor). Local cables are listed now at the top with the same appearance as global cables do in the global Patch browser.
                    • the root chain parameters are now also listed in the Node list alongside with a slider that you can use for quickly inspecting / changing the value, a label to rename it (double click!) and a drag element that lets you create connections
                    • parameters of a chain have now a fixed UI element for dragging to create connections. Before you always had to enable the weird edit mode (which is now solely used to delete parameters).
                    • added some funky drag animation because why not.
                    ustkU 1 Reply Last reply Reply Quote 4
                    • ustkU
                      ustk @Christoph Hart
                      last edited by

                      @Christoph-Hart Nice additions there!
                      I know it's already a real nice improvement, but I'd like to add two things:

                      • Adding a default value property to parameters for easy reset (double-click or modifiers). I miss this all the time when developing SNEX nodes, but with stock nodes too

                      • Make the zoom sensibility adjustable as it is a nightmare on mac. This has been asked a long ago already but I imagine it slipped through. This would probably be a global setting though because the story is the same with the Interface Editor

                      Can't help pressing F5 in the forum...

                      Christoph HartC 1 Reply Last reply Reply Quote 0
                      • Christoph HartC
                        Christoph Hart @ustk
                        last edited by

                        @ustk said in ScriptNode Feedback After a Month of Heavy Use:

                        Make the zoom sensibility adjustable as it is a nightmare on mac. This has been asked a long ago already but I imagine it slipped through. This would probably be a global setting though because the story is the same with the Interface Editor

                        Can you reference the forum topic where we discussed this? I can't remember it but for my the zooming works fine on macOS.

                        Adding a default value property to parameters for easy reset (double-click or modifiers). I miss this all the time when developing SNEX nodes, but with stock nodes too

                        Yes this is reasonable, it's not entire trivial because I have to account for the possibility of people changing the range so that the initial default value lies outside the limits, but nothing impossible.

                        Christoph HartC ustkU 2 Replies Last reply Reply Quote 1
                        • Christoph HartC
                          Christoph Hart @Christoph Hart
                          last edited by

                          Alright, double click to return works now. A few notes:

                          • it will be stored as separate property in the value tree
                          • if there is no DefaultValue property present (like when you load older networks) it will use the current value as default value
                          • when you save the network it will remove all DefaultValue properties that are equal to their value (so that the XML tree will not get poluted with too much redundant noise)
                          • There's a new item in the popup menu of the range editor that lets you store the current value as double click value (Set as default value)
                          • if you change the range so that it's doesn't contain the default value, the double click feature will be deactivated until you set a new default value that's in the range).
                          A 1 Reply Last reply Reply Quote 4
                          • ustkU
                            ustk @Christoph Hart
                            last edited by

                            @Christoph-Hart said in ScriptNode Feedback After a Month of Heavy Use:

                            Can you reference the forum topic where we discussed this? I can't remember it but for my the zooming works fine on macOS.

                            Youhou! Back in time!
                            https://forum.hise.audio/topic/2577/faust2hise/20?_=1728381692975

                            Can't help pressing F5 in the forum...

                            1 Reply Last reply Reply Quote 0
                            • A
                              aaronventure
                              last edited by

                              In the spirit of continuity and information availability, here's one more suggestion: make the new feature where we see sources on hover along with parent node names available in the right click node properties. The connection part should also display the same level of info.

                              For the main network parameters, it should always displays the full node location (with all the parent nodes) for the targets. In large projects, some parameters can have lots of connections and it would be very helpful to be able to see all the targets and know exactly what they are with a single glance at the right click properties, especially while most of the network is folded.

                              1 Reply Last reply Reply Quote 0
                              • A
                                aaronventure @Christoph Hart
                                last edited by

                                @Christoph-Hart I'm reading through this thread again and the one thing I never got your opinion for are the logic operators.

                                Currently this is only possible by creating a SNEX file, because the expr nodes can't have multiple inputs.

                                If the logic op (or a new node) could do >, >=, <, <=, ==, !=, then a lot of new interesting things become possible in scriptnode, including custom splitting of a the parameter range (simply by setting the other input of the < / > which is plugged into the input toggle node), which in turn enables custom dynamic flex envelopes and many other things.

                                As I mentioned in the original post, the groundwork is all there, you'd just have to add these operators to the logic_op node to be used for comparison between two inputs.

                                A 1 Reply Last reply Reply Quote 0
                                • A
                                  aaronventure @aaronventure
                                  last edited by

                                  @aaronventure @Christoph-Hart I got your reply in the email notification, but it seems to be lost in time to forum updates. Thanks for the new node, I'll be checking it out now.

                                  A 1 Reply Last reply Reply Quote 0
                                  • A
                                    aaronventure @aaronventure
                                    last edited by

                                    @Christoph-Hart Would it please be possible to make it so that the compare node (and logic_op) can be plugged into soft_bypass node's switch?

                                    1 Reply Last reply Reply Quote 0
                                    • First post
                                      Last post

                                    12

                                    Online

                                    1.7k

                                    Users

                                    11.8k

                                    Topics

                                    102.4k

                                    Posts