• Login
sketchucation logo sketchucation
  • Login
πŸ€‘ 30% Off | Artisan 2 on sale until April 30th Buy Now

[Plugin] Material_Maintenance v2.2 - 2013-01-13

Scheduled Pinned Locked Moved Plugins
155 Posts 19 Posters 49.5k 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.
  • M Offline
    Myhand
    last edited by 1 Dec 2012, 19:21

    Thank you everyone for your help and good advice. Here is a version with noth of the protocol chars in the normal ascii range. I have chosen 30, and 31 the record and unit separator characters. They are not printable so there is a small chance there might again be problems on the MAC I guess, but this works fine on Windows.

    John, CMD do you mind trying again please? Debug is still on, so if this works I will publish a version without the tracing code.

    Debug version

    http://www.keepingmyhandin.com/

    1 Reply Last reply Reply Quote 0
    • D Offline
      driven
      last edited by 2 Dec 2012, 00:22

      the good news is

      # SU returns  =>
       RUBY_VERSION = 1.8.5
      (eval);3119; warning; parenthesize argument(s) for future version
      (eval);3142; warning; parenthesize argument(s) for future version
      key = Units
      value = 0.0
      key = StampOffset
      value = 12.0
      key = GridSpacingX
      value = 120.0
      key = SmooveRadius
      value = 360.0
      key = GridSpacingY
      value = 120.0
      !!!=> fromUIHandler; parameter string = 73-0__vzrefreshMaterialstruefalsefalse
      p1 = >>73-0<<
      p1 = >>__vz<<
      p1 = >>refreshMaterials<<
      p1 = >>true<<
      p1 = >>false<<
      p1 = >>false<<
      calling function >>refreshMaterials<<
      String Time = 5.9e-05
      Total Entities = 1
      
      
      # SU returns  =>
       RUBY_VERSION = 1.8.7
      key = Units
      value = 0.0
      !!!=> fromUIHandler; parameter string = 73-0__vzrefreshMaterialstruefalsefalse
      p1 = >>73-0<<
      p1 = >>__vz<<
      p1 = >>refreshMaterials<<
      p1 = >>true<<
      p1 = >>false<<
      p1 = >>false<<
      calling function >>refreshMaterials<<
      String Time = 6.4e-05
      

      seems to work with either RUBY_VERSION, but the verbosity level is higher in 1.8.5
      john

      learn from the mistakes of others, you may not live long enough to make them all yourself...

      1 Reply Last reply Reply Quote 0
      • C Offline
        cmd
        last edited by 2 Dec 2012, 03:57

        @myhand said:

        John, CMD, do you mind testing the attached version please?

        The previous debug version did not change the JS code as I thought it did. This one does. It is the last try with the current control chars, and if this does not work I will create a patch with a multiple chars in the standard ascii range.

        Again this requires a uninstall of the old plugin, restart of Sketchup and a install of the new debug version.

        Again please send me the output.

        Myhand,

        Attached is the output immediately after launching the Material Maintenance plugin.

        CMD


        MM_Ruby output.txt

        • CMD
        1 Reply Last reply Reply Quote 0
        • T Offline
          TIG Moderator
          last edited by 2 Dec 2012, 11:17

          The text file when opened in 'Notepad++.exe' as 'UTF-8 without BOM' shows this: Capture.PNG BUT when the same text is pasted into here it displays differently...
          !!!=> fromUIHandler: parameter string = 73-0__vzrefreshMaterialstruefalsefalse Error: #<NoMethodError: private methodputs' called for "73-0":String>`
          Presumably the 'RS' record-separator character [ASCII-030] is non-printing...
          Not sure how 'puts' seems broken πŸ˜•
          Are you parsing the string using split and the 'RS' as at splitter ?
          You should then be able to 'puts' the array elements ??

          TIG

          1 Reply Last reply Reply Quote 0
          • M Offline
            Myhand
            last edited by 2 Dec 2012, 13:31

            @tig said:

            The text file when opened in 'Notepad++.exe' as 'UTF-8 without BOM' shows this: [attachment=0:2y0lvhlv]<!-- ia0 -->Capture.PNG<!-- ia0 -->[/attachment:2y0lvhlv] BUT when the same text is pasted into here it displays differently...
            !!!=> fromUIHandler: parameter string = 73-0__vzrefreshMaterialstruefalsefalse Error: #<NoMethodError: private methodputs' called for "73-0":String>`
            Presumably the 'RS' record-separator character [ASCII-030] is non-printing...
            Not sure how 'puts' seems broken πŸ˜•
            Are you parsing the string using split and the 'RS' as at splitter ?
            You should then be able to 'puts' the array elements ??

            Yes I am splitting the string with the 'RS' char. Very strange error message indeed. The code snippet where it fails is:

            ` puts "!!!=> fromUIHandler: parameter string = #{parameterString}";

              params = unmarshalParams(parameterString);
              
              params.each { |p|
                p.puts "p1 = >>#{p}<<";   // This is line 109
              }`
            

            Again this works fine on Windows, and appears to now also work for driven on his MAC so at a bit of a loss here.

            One other strange thing with this is that the output should look like this:

            
            !!!=> fromUIHandler; parameter string = 75-0__materialsRefreshedrefreshMaterialstruefalsefalse
            p1 = >>75-0<<
            p1 = >>__materialsRefreshed<<
            p1 = >>refreshMaterials<<
            p1 = >>true<<
            p1 = >>false<<
            p1 = >>false<<
            calling function >>refreshMaterials<<
            
            

            i.e. the second parameter should be "__materialsRefreshed" not "__vz" which it appears to be for both the MAC implementations. Strictly speaking this should not work even for driven.

            CMD, are you sure you have done a clean uninstall and install?

            http://www.keepingmyhandin.com/

            1 Reply Last reply Reply Quote 0
            • T Offline
              TIG Moderator
              last edited by 2 Dec 2012, 13:37

              But params.each{|p|puts "p1 = >>#{p}<<"}
              should be the way ?
              NOT p.puts

              TIG

              1 Reply Last reply Reply Quote 0
              • M Offline
                Myhand
                last edited by 2 Dec 2012, 14:08

                @tig said:

                But params.each{|p|puts "p1 = >>#{p}<<"}
                should be the way ?
                NOT p.puts

                😳 thanks TIG!

                Still strange it worked on windows and driven's MAC and that the second parameter comes looks wrong but as long as it works.

                I am making a new build without the trace code which I will upload soon.

                http://www.keepingmyhandin.com/

                1 Reply Last reply Reply Quote 0
                • M Offline
                  Myhand
                  last edited by 2 Dec 2012, 14:19

                  Bug fix version V2.1.1 released.

                  Can be found here:

                  http://www.keepingmyhandin.com/Downhome/Sketchup/material_maintenance_2

                  CMD this should fix your problem also as the trace code that had the bug in is also now removed.

                  http://www.keepingmyhandin.com/

                  1 Reply Last reply Reply Quote 0
                  • T Offline
                    Tpdart
                    last edited by 3 Dec 2012, 11:07

                    It may be me, but I've put the .rbz in the plugins folder, restarted SU but I cannot find the command or interface. Any thoughts?

                    Thanks!

                    1 Reply Last reply Reply Quote 0
                    • G Offline
                      Gaieus
                      last edited by 3 Dec 2012, 11:21

                      You do not use an RBZ file like that. Please, read this tutorial on installing plugins:
                      http://sketchucation.com/resources/tutorials/37-beginner/108-installing-sketchup-plugins

                      Gai...

                      1 Reply Last reply Reply Quote 0
                      • T Offline
                        Tpdart
                        last edited by 3 Dec 2012, 11:40

                        DOH!
                        I didn't install the extension- once I PROPERLY followed the instructions it looks great I can't wait to try it out on an inherited complex model with many similar materials.

                        1 Reply Last reply Reply Quote 0
                        • C Offline
                          cmd
                          last edited by 3 Dec 2012, 14:16

                          @myhand said:

                          Bug fix version V2.1.1 released.

                          ... CMD this should fix your problem also as the trace code that had the bug in is also now removed.

                          Myhand,

                          Good stuff! no more errors!

                          .... but I am not getting material thumbnails nor am I getting component images to display.

                          Is this due to the change for mac?


                          Screen Shot 2012-12-03 at 7.16.11 AM.png

                          • CMD
                          1 Reply Last reply Reply Quote 0
                          • T Offline
                            TIG Moderator
                            last edited by 3 Dec 2012, 14:52

                            @cmd
                            If you write this in the Ruby Console ENV['TMPDIR'] + <enter> it gives the path to your 'temp' folder.
                            In that folder ought to be a subfolder named 'material_maintenance' and in that the xxx.png material thumbnails and xxx.comp.png component thumbnails ? They might have weird looking 'id' type names...
                            The subfolder is emptied when the tool runs, or it's made if it is missing.
                            It could be that the files are getting made but some enduring issue in the html/js on MAC is preventing them displaying ??
                            Can you confirm if the subfolder/files exist...

                            TIG

                            1 Reply Last reply Reply Quote 0
                            • M Offline
                              Myhand
                              last edited by 3 Dec 2012, 14:56

                              @cmd said:

                              Myhand,

                              Good stuff! no more errors!

                              .... but I am not getting material thumbnails nor am I getting component images to display.

                              Is this due to the change for mac?

                              I suspect it can be to do with the temp folder location on your MAC. I save the thumbs in a folder I create within the system temp folder. I use a technique (from ThomThom's very good article on materials http://www.thomthom.net/thoughts/2012/03/the-secrets-of-sketchups-materials/ )
                              to "guess" the temp folder.

                              temp_path = File.expand_path( ENV['TMPDIR'] || ENV['TMP'] || ENV['TEMP'] )

                              It might be that this does not work on your system and we might have to add some options to the list.

                              driven, did you see the thumbs on your system?

                              http://www.keepingmyhandin.com/

                              1 Reply Last reply Reply Quote 0
                              • T Offline
                                TIG Moderator
                                last edited by 3 Dec 2012, 15:05

                                The ENV['TMPDIR'] should work on MAC, with the other two for PCs.
                                CMD needs to go look see if the subfolder/thumbnails are getting made...
                                If they aren't there's an issue with this bit; if they are the issue is with the html/js end ?

                                TIG

                                1 Reply Last reply Reply Quote 0
                                • T Offline
                                  thomthom
                                  last edited by 3 Dec 2012, 15:07

                                  I have experienced some OSX user that didn't have the environment set up correctly - there was no environment temp variable defined at all. That was a once-time thing though.

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

                                  1 Reply Last reply Reply Quote 0
                                  • T Offline
                                    TIG Moderator
                                    last edited by 3 Dec 2012, 15:14

                                    OK ... then
                                    ENV.sort.each{|e|p e};p
                                    will list everything available...
                                    πŸ˜’

                                    TIG

                                    1 Reply Last reply Reply Quote 0
                                    • O Offline
                                      Oxer
                                      last edited by 3 Dec 2012, 18:56

                                      I have the same problem like cmd, the material thumbnails don't appear, I work on Mac OSX.
                                      Other question, is it possible translate the plugin to another language?
                                      Thanks Myhand !!

                                      "The result is the end what is important is the process" by Oxer
                                      [http://www.oxervision.blogspot.com/(http://www.oxervision.blogspot.com/)]

                                      1 Reply Last reply Reply Quote 0
                                      • M Offline
                                        Myhand
                                        last edited by 3 Dec 2012, 21:19

                                        @oxer said:

                                        I have the same problem like cmd, the material thumbnails don't appear, I work on Mac OSX.

                                        Can you please follow TIG's instructions below and let us know the results?

                                        @tig said:

                                        @cmd
                                        If you write this in the Ruby Console ENV['TMPDIR'] + <enter> it gives the path to your 'temp' folder.
                                        In that folder ought to be a subfolder named 'material_maintenance' and in that the xxx.png material thumbnails and xxx.comp.png component thumbnails ? They might have weird looking 'id' type names...
                                        The subfolder is emptied when the tool runs, or it's made if it is missing.
                                        It could be that the files are getting made but some enduring issue in the html/js on MAC is preventing them displaying ??
                                        Can you confirm if the subfolder/files exist...

                                        Can you also please run

                                        ENV.sort.each{|e|p e};p

                                        and attach the console output.

                                        http://www.keepingmyhandin.com/

                                        1 Reply Last reply Reply Quote 0
                                        • C Offline
                                          cmd
                                          last edited by 3 Dec 2012, 23:15

                                          @myhand said:

                                          @tig said:

                                          Can you confirm if the subfolder/files exist...

                                          Myhand & TIG

                                          Yes... the folders and image files do exist.

                                          CMD


                                          Screen Shot 2012-12-03 at 4.14.37 PM.png

                                          • CMD
                                          1 Reply Last reply Reply Quote 0
                                          • 1
                                          • 2
                                          • 3
                                          • 4
                                          • 5
                                          • 6
                                          • 7
                                          • 8
                                          • 4 / 8
                                          4 / 8
                                          • First post
                                            78/155
                                            Last post
                                          Buy SketchPlus
                                          Buy SUbD
                                          Buy WrapR
                                          Buy eBook
                                          Buy Modelur
                                          Buy Vertex Tools
                                          Buy SketchCuisine
                                          Buy FormFonts

                                          Advertisement