sketchucation logo sketchucation
    • Login
    ℹ️ Licensed Extensions | FredoBatch, ElevationProfile, FredoSketch, LayOps, MatSim and Pic2Shape will require license from Sept 1st More Info

    Call for attention - context handlers and validation procs

    Scheduled Pinned Locked Moved Developers' Forum
    24 Posts 10 Posters 33.3k Views 10 Watching
    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.
    • thomthomT Offline
      thomthom
      last edited by

      I just updated the first post with the debug script - it now benchmarks the handlers, outputting the time they take to process to the Ruby Console.

      Thomas Thomassen — SketchUp Monkey & Coding addict
      List of my plugins and link to the CookieWare fund

      1 Reply Last reply Reply Quote 0
      • thomthomT Offline
        thomthom
        last edited by

        Sample output for a selection of about 100K entities:

        ### Context Handler ### 2D#loader.rb:181:inactivate' [...] 2D#.rb:44
        0.0 seconds

        Context Handler

        bezier.rb:501 [...] bezier.rb:501
        0.006 seconds

        Context Handler

        parametric.rb:320 [...] (eval):2696
        0.0 seconds

        Context Handler

        (eval):103:in `load' [...] pb_loader.rb:9
        0.0 seconds

        Context Handler

        tt_bitmap2mesh.rb:29 [...] tt_proxy_loader.rb:28
        0.0 seconds

        Context Handler

        tt_image_opacity.rb:30 [...] tt_proxy_loader.rb:28
        0.0 seconds

        Context Handler

        ui_manager.rb:261:in `build_ui' [...] tt_selection_toys.rb:240
        0.004 seconds

        Context Handler

        xLine.rb:51 [...] xLine.rb:51
        0.0 seconds

        Context Handler

        Lib6Plugin.rb:656:in `build_config_handlers' [...] ZLoader__FredoScale.rb:24
        0.0 seconds

        Context Handler

        Lib6Plugin.rb:656:in `build_config_handlers' [...] ZLoader__OnSurface.rb:26
        0.489 seconds

        Context Handler

        (eval):299:in `initialize' [...] dynamiccomponents.rb:38
        0.0 seconds

        Context Handler

        webtextures_loader.rb:886 [...] webtextures.rb:22
        0.0 seconds

        Context Handler

        bezierspline_main.rb:2413:in load_all_menus' [...] extensions.rb:36:in load'
        5.657 seconds`

        (Note I had modified xLine and Selection Toys prior to this test)

        Thomas Thomassen — SketchUp Monkey & Coding addict
        List of my plugins and link to the CookieWare fund

        1 Reply Last reply Reply Quote 0
        • fredo6F Offline
          fredo6
          last edited by

          @thomthom said:

          Sample output for a selection of about 100K entities:

          Context Handler

          bezierspline_main.rb:2413:in load_all_menus' [...] extensions.rb:36:in load'
          5.657 seconds[/ruby]

          I fixed the one for BezierSpline, with an upgrade.
          see http://forums.sketchucation.com/viewtopic.php?f=323&t=13563&p=100509#p100509

          Fredo

          1 Reply Last reply Reply Quote 0
          • thomthomT Offline
            thomthom
            last edited by

            👍

            Thomas Thomassen — SketchUp Monkey & Coding addict
            List of my plugins and link to the CookieWare fund

            1 Reply Last reply Reply Quote 0
            • P Offline
              Pout
              last edited by

              Reminds me of something simular I seem to have in big models when rightclicking a material.
              The rightclick window just doesn't pop-up

              1 Reply Last reply Reply Quote 0
              • thomthomT Offline
                thomthom
                last edited by

                @pout said:

                Reminds me of something simular I seem to have in big models when rightclicking a material.
                The rightclick window just doesn't pop-up

                Yea - I've noticed that too. Very annoying. But that menu isn't accessible to ruby plugins. So I think that one is on Google's shoulders.

                Thomas Thomassen — SketchUp Monkey & Coding addict
                List of my plugins and link to the CookieWare fund

                1 Reply Last reply Reply Quote 0
                • J Offline
                  Jim
                  last edited by

                  @unknownuser said:

                  @thomthom said:

                  Sample output for a selection of about 100K entities:

                  Context Handler

                  bezierspline_main.rb:2413:in load_all_menus' [...] extensions.rb:36:in load'
                  5.657 seconds[/ruby]

                  I fixed the one for BezierSpline, with an upgrade.
                  see http://forums.sketchucation.com/viewtopic.php?f=323&t=13563&p=100509#p100509

                  Fredo

                  Bezierspline_main is still sort-of slow for me - it takes 8 seconds for the context menu to pop-up for 75,000 selected entities. (I admit to having a sub-standard pc.)

                  Hi

                  1 Reply Last reply Reply Quote 0
                  • fredo6F Offline
                    fredo6
                    last edited by

                    @jim said:

                    Bezierspline_main is still sort-of slow for me - it takes 8 seconds for the context menu to pop-up for 75,000 selected entities. (I admit to having a sub-standard pc.)

                    Jim,

                    I made a change in the script.
                    see main post on BezierSpline

                    Is is better with this release

                    Thanks

                    Fredo

                    1 Reply Last reply Reply Quote 0
                    • thomthomT Offline
                      thomthom
                      last edited by

                      👍

                      Thomas Thomassen — SketchUp Monkey & Coding addict
                      List of my plugins and link to the CookieWare fund

                      1 Reply Last reply Reply Quote 0
                      • mitcorbM Offline
                        mitcorb
                        last edited by

                        Are you saying that each and every plugin is "polled" each time you wish to do something whether you "invoke" that/those plugins or not? If so, is that efficient? Keep in mind I don't know the terminology, and I certainly don't fully understand.

                        I take the slow, deliberate approach in my aimless wandering.

                        1 Reply Last reply Reply Quote 0
                        • thomthomT Offline
                          thomthom
                          last edited by

                          @mitcorb said:

                          Are you saying that each and every plugin is "polled" each time you wish to do something whether you "invoke" that/those plugins or not? If so, is that efficient? Keep in mind I don't know the terminology, and I certainly don't fully understand.

                          Not every plugin, but when a plugin want to add a context menu a function is run - and if the plugin tried to evaluate the whole selection or do any processor expensive calculations in this function it'll delay the context menu.

                          Thomas Thomassen — SketchUp Monkey & Coding addict
                          List of my plugins and link to the CookieWare fund

                          1 Reply Last reply Reply Quote 0
                          • mitcorbM Offline
                            mitcorb
                            last edited by

                            Ok, that makes some sense, thanks. Evidently, the context menu is lower in priority?

                            I take the slow, deliberate approach in my aimless wandering.

                            1 Reply Last reply Reply Quote 0
                            • Dan RathbunD Offline
                              Dan Rathbun
                              last edited by

                              not really... the context menu is "built on the fly"...

                              The menu needs to know what items and submenus it will need to display. It cannot know what they will be until Sketchup processes all the context_menu_handlers.

                              I'm not here much anymore.

                              1 Reply Last reply Reply Quote 0
                              • 1
                              • 2
                              • 2 / 2
                              • First post
                                Last post
                              Buy SketchPlus
                              Buy SUbD
                              Buy WrapR
                              Buy eBook
                              Buy Modelur
                              Buy Vertex Tools
                              Buy SketchCuisine
                              Buy FormFonts

                              Advertisement