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

    Cluster Components

    Scheduled Pinned Locked Moved SketchUp Discussions
    sketchup
    27 Posts 6 Posters 4.8k Views 6 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.
    • W Offline
      watkins
      last edited by

      Dear Andrew,

      Jim Foltz has written a script for exporting Outliner to a text file.

      Link Preview Image
      Plugin: Export Outliner

      I wrote this for a specific type of output; something called CI ID (or something.) This plugin exports the outliner to a text file. Download...

      favicon

      (sketchuptips.blogspot.com)

      Regards,
      Bob

      1 Reply Last reply Reply Quote 0
      • aadbuildA Offline
        aadbuild
        last edited by

        Thanks for all your feed back its much appreciated. I will try to make unique first and then I will try the rubies and get it through to excel. When I come up with a positive result I will let you all know. Thanks again.

        Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

        https://www.plusspec.com

        1 Reply Last reply Reply Quote 0
        • TIGT Offline
          TIG Moderator
          last edited by

          My ComponentReporter+.rb script also makes a reports on your model/selection and makes various spreadsheets of components and subcomponents info etc. It wouldn't be hard to read off further details like attributes if needed - however, you could avoid attributes by making unique and then (re)naming each your components as their 'part-code'...

          .

          TIG

          1 Reply Last reply Reply Quote 0
          • aadbuildA Offline
            aadbuild
            last edited by

            Hi all, I made my components unique and used the entity info to rename the components, everything worked out perfect. I didnt have as much luck with the attributes ruby. I downloaded attributes reporter (http://www.smustard.com/script/AttribReporter)I opened a trial model and right clicked on a component then clicked on attribute reporter. A dialogue box named attribute reporter with dictionary and a box came up. I typed in "trial text" and clicked ok. A message came up reading " Attibutes + reports saved to: my docs. CSD-Attributes+report.csv. I navigated to the sheet with great antisipation and it was there and had a tab named attribute reporter but had no information in any cells. Am I missing an important step?sliding door assemblies

            Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

            https://www.plusspec.com

            1 Reply Last reply Reply Quote 0
            • chrisglasierC Offline
              chrisglasier
              last edited by

              I hope you don't mind my barging in on your thread; I have no short term fix just a longer term solution that you and others may like to consider. Based on Sketchup's webdialog (which allows html/javascripts and Sketchup/Ruby interaction) it is this:

              Rather than manually clustering components in Sketchup simply pick plain text names to identify them as shown on this nameset.

              Sketchup nameset - doors.jpg

              A nameset is something like a spreadsheet, except its cells move to display just their association with others. Each name with its address (the white trail that leads back to the project) is a unique identifier which provides access to its record, an unlimited series of CSS type name/value pairs that includes sizes, coordinates, source (real and model), price, timing ... and so on, obtained from many sources.

              Rather than putting in and then extracting information from a modelling application, you generate models (or clusters) and analyses from the same unfettered plain text data - e.g. you can use web technology to generate different sizes, or abstract and even buy the ironmongery for a whole project.

              Here's some code I used to pick up components and position them.

              //javascript
              
              function productsRun(){
              
              entryNo = parentNo
              coreIdentityExtractor()
              
              para = new Array(theFile,theX,theY,theZ)
              para = para.join(",")
              
              if(sketchup == 1) window.location.href = 'skp;find@'+para     }
              
              
              #Ruby
              
              @dlg.add_action_callback("find") {|d, p|
              	a= p.split(",")
              	
              	subDir ="Components/NamesetComponents/"
              	fileName = a[0]+".skp"
                    
              	theX = Integer(a[1]).mm
              	theY = Integer(a[2]).mm
              	theZ = Integer(a[3]).mm
                  
                    point = Geom;;Point3d.new theX,theY,theZ
                     
                    transform = Geom;;Transformation.new point
                    model = Sketchup.active_model
                    entities = model.active_entities
                    path = Sketchup.find_support_file fileName, subDir
                    
                    definitions = model.definitions
                    componentdefinition = definitions.load path
                    instance = entities.add_instance componentdefinition, transform   }
              
              

              Hope you find this helpful/interesting ...

              Chris

              With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

              1 Reply Last reply Reply Quote 0
              • aadbuildA Offline
                aadbuild
                last edited by

                Thanks Chris for your input, its good to know that there are many ways to acheive a similar or better result. I will post you a private message on what I would like the final out come to be. (it sounds as though you may be talking about what I am seeking as a final result). I dont want to bore the rest of the people following this topic although If any one wants me to post the message here just reply and I will try not write a cure for insomnia (hehe).

                Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

                https://www.plusspec.com

                1 Reply Last reply Reply Quote 0
                • chrisglasierC Offline
                  chrisglasier
                  last edited by

                  I have taken the liberty of extracting parts of your PM that may be of interest to others.

                  @aadbuild said:

                  You will have to forgive me I am not exactly sure how and what the nameset actually does and how it takes the information from sketchup.

                  A nameset names all the physical things in a human endeavour using plain text and freely available code. This means it can be used by anyone who has an interest in it. Just put the name somewhere accessible and add a universal function call; those authorised can then add their bit. Information you used to make clusters in Sketchup is now captured in the name's record; select a device in the top panel for Sketchup to assemble the components, as in the coding example, or another, to make a time schedule and so on. You might consider a name and its address to be something like a barcode that is key to automating all sorts of things previously done by people (in your case, making clusters). Everyday work, not just code, becomes object-oriented.

                  @aadbuild said:

                  Let me know if am getting way to far ahead of what nameset can do....

                  No I don't think so but I would like to test this in the forum, if anyone is interested. The nameset concept does not work well without modelling and so when I discovered Sketchup and the webdialog everything seemed pre-ordained (well that's probably going too far!). Hopefully, the nameset plugin can be cooperatively developed for use pretty soon.

                  Chris

                  With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                  1 Reply Last reply Reply Quote 0
                  • TIGT Offline
                    TIG Moderator
                    last edited by

                    Here is a zip containing the original file and the 3 ComponentReporter+ reports that take seconds to make. You could easily rewrite the script to read component's attributes as well if needed...


                    CompoReport+Example.zip

                    TIG

                    1 Reply Last reply Reply Quote 0
                    • aadbuildA Offline
                      aadbuild
                      last edited by

                      Hi Tig, I had a look at the info on the excel sheets that you exported and attached. As i looked through the sheet I had one of those moments where I got all excited as this is what I have been trying to achieve for bloody ages. I will try to get leave from the wife and kids tonight to get it formated so I can use it. You are a champion TIG. I would like to have a crack at editing the script to include attributes but unfortunatly my ruby experiance is very limited. Can any one recomend a ruby book for dislexics?

                      Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

                      https://www.plusspec.com

                      1 Reply Last reply Reply Quote 0
                      • chrisglasierC Offline
                        chrisglasier
                        last edited by

                        I sent you two PMs on Friday but you don't seem to have picked them up yet ... any problem?

                        Chris

                        With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                        1 Reply Last reply Reply Quote 0
                        • chrisglasierC Offline
                          chrisglasier
                          last edited by

                          No problem. That's good. Thanks for letting me know.

                          Chris

                          With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                          1 Reply Last reply Reply Quote 0
                          • aadbuildA Offline
                            aadbuild
                            last edited by

                            Hi Chris please excuse my absence unfortunatley I have been caught up in work I will get back to you as soon as I get time with some component instances

                            Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

                            https://www.plusspec.com

                            1 Reply Last reply Reply Quote 0
                            • chrisglasierC Offline
                              chrisglasier
                              last edited by

                              @aadbuild said:

                              Hi Chris please excuse my absence unfortunatley I have been caught up in work I will get back to you as soon as I get time with some component instances

                              That's OK. It was kind of you to offer. I have plenty to do making new devices, annotating the code, testing and so on. I put screenshots of completed devices on http://sites.google.com/site/namesets/ - a measure of progress if you like. You or anyone else are welcome to have a look and comment. You may also find this helpful:

                              Compo3.jpg

                              The prototype nameset is for a six storey apartment block with elevator and all the usual stuff. If anyone else would also like to volunteer some components, all will be gratefully received and acknowledged.

                              My regards

                              Chris

                              With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                              1 Reply Last reply Reply Quote 0
                              • aadbuildA Offline
                                aadbuild
                                last edited by

                                Hi Chris the guilt got to me while I was laying in bed Sunday morning so I dragged my fat arse out and made a model and threw in as many components that i thought would be of assistance. I also put in an excel breakdown of components from TIGS ruby (above). Let me know if you need anything else..

                                Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

                                https://www.plusspec.com

                                1 Reply Last reply Reply Quote 0
                                • chrisglasierC Offline
                                  chrisglasier
                                  last edited by

                                  Thanks Andrew ... now I feel guilty!

                                  I am sure your components will be most useful but I need some time to examine them. But I also need skps of furniture, fittings, plumbing and suchlike as the basic idea is to use them to define space requirements (working from inside out). You can see from the records extract below that in the early stages of design the minimum spaces set by the components' layouts accumulates the w's and d's back to the start. (As decisions are made and approved they become W's and D's - i.e. fixed.)

                                  
                                  1;index; 2;genericName; 2;givenName; 3;childNo; 4;parentNo; 5;theType; 6;collection; 7;product; 8;grouping; 9;composite 
                                  0;10;1;Start;5;0;3;11;4;10;w;2017;d;1524
                                  0;11;3;14;3;13;3;12;1;Site;2;Site;5;6;4;10;w;2017;d;1524
                                  0;12;1;Constraints;2;Constraints;4;11;5;8
                                  0;13;3;17;3;16;3;15;1;Design;2;Design;4;11;5;8;w;2017;d;1524
                                  0;14;1;Brief;2;Brief;4;11;5;8
                                  0;15;1;Landscape;2;Landscape;4;13;5;8
                                  0;16;1;Roads;2;Roads;4;13;5;8
                                  0;17;3;18;1;Buildings;2;Buildings;4;13;5;8;w;2017;d;1524
                                  0;18;1;Building;2;Building;4;17;5;6;w;2017;d;1524;3;46;3;45;3;44;3;43;3;42;3;41;3;19;3;40;3;39;3;38;3;47
                                  0;19;3;27;3;20;1;Floor;2;Floor 5;4;18;5;6;w;2017;d;1524
                                  0;20;3;37;3;36;3;35;3;34;3;33;1;Spaces;2;Spaces;4;19;5;8;w;1637;d;1524;3;32;3;31;3;21;3;30;3;29
                                  0;21;3;22;1;Space;2;Bathroom;4;20;5;6;w;1637;d;1524
                                  0;22;1;Sanitary;2;Sanitary;4;21;5;8;3;26;3;25;3;24;w;1637;d;1524
                                  0;24;1;Bath;2;Bath;4;22;5;7;x;1037;y;0;z;0;w;600;d;1524;h;500;model;Bath;rx;90;ry;0;rz;0
                                  0;25;1;Basin;2;Basin;4;22;5;7;x;0;y;0;z;450;w;457;d;400;h;210;model;Washbasin
                                  0;26;1;WC;2;WC;4;22;5;7;x;457;y;0;z;0;w;555;d;600;h;600;model;WC
                                  0;27;3;53;3;52;3;48;3;28;1;Elements;2;Elements;4;19;5;8;w;2017;d;100
                                  0;28;1;Wall;2;Wall;4;27;5;9;s;cube;x;-100;y;0;z;0;w;2117;d;100;h;2800
                                  
                                  

                                  These records are similar (though more expandable) to the components breakdown but so far they are one way - Javascript to Sketchup. It would be good to make it bilateral so that those who prefer to use Sketchup to establish names, dimensions and so on can do so in the knowledge that their data will be made interoperative.

                                  I am going to buy a headset so I can call you on Google Talk (I think the basic idea should be reasonably clear now not to confuse you with my babble) and also make a video as you suggested!

                                  Toddle pip!

                                  Chris

                                  With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                                  1 Reply Last reply Reply Quote 0
                                  • aadbuildA Offline
                                    aadbuild
                                    last edited by

                                    Hi chris, a quick question with the java script imports, are they going to be similar to clicking on components and inserting a java script component?

                                    Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

                                    https://www.plusspec.com

                                    1 Reply Last reply Reply Quote 0
                                    • chrisglasierC Offline
                                      chrisglasier
                                      last edited by

                                      @aadbuild said:

                                      Hi chris, a quick question with the java script imports, are they going to be similar to clicking on components and inserting a java script component?

                                      Whilst the HTML file (including the scripts) in the web dialog is a plugin I don't think it good to think of the functions in the scripts as imports; they are more like commands from a TV remote control. The nameset design doesn't require you to work in the Sketchup display, but it would be good if it were bilateral - for example, clicking on a component in Sketchup reruns the names display, clicking on a name in a nameset causes the blue boxes in the related components to appear in Sketchup. One scenario is one big screen being worked by several people, each with a nameset - visions of war rooms in old films but without the girls in nylons pushing RAF planes around like croupiers.

                                      Got the headset but I won't bother you tonight. Anyway we are off to the movies (looking to pick up a few tips!)

                                      Tp

                                      Chris

                                      With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                                      1 Reply Last reply Reply Quote 0
                                      • chrisglasierC Offline
                                        chrisglasier
                                        last edited by

                                        So the line was not so good - never mind.

                                        Just to recap ...

                                        When you click on a name, namesets finds its plain text record, grabs the name of its component skp file(s) and the x, y, and z coordinates and passes the whole lot to a ruby to display the components in Sketchup in the right locations.

                                        A TV remote control button changes the channel. A nameset name changes a sketchup display. It can also change or compile time schedules, status reports, purchase orders, site instructions, snagging lists and so forth; this is the main point.

                                        I am sure you are right about the screen capture movies, they should make all this verbosity redundant.

                                        Tp

                                        Chris

                                        Added trial video to web site July 22
                                        http://www.youtube.com/watch?v=HWxRrfJq0Cs

                                        With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

                                        1 Reply Last reply Reply Quote 0
                                        • aadbuildA Offline
                                          aadbuild
                                          last edited by

                                          Hi Chris, I have just had the chance to see your youtube video, I was having trouble understanding some of your emails as my mind is on many things. I am sure you are on to a winner with your script it looks to be coming along well. Please dont hesitate to contact me if you need any help, I will do my best to make the time. Unfortunately my participation is equivalent to a bad internet connection, in and out at an unpredictabe rate with no warning.

                                          Every building designed can be affordable & buildable, to help we built PlusSpec; VDC & BIM for Sketchup

                                          https://www.plusspec.com

                                          1 Reply Last reply Reply Quote 0
                                          • chrisglasierC Offline
                                            chrisglasier
                                            last edited by

                                            Thanks Andrew. Here is the state of play right now.

                                            31 July 2008

                                            Remember the only direct use of the Sketchup interface is opening the plugin. Everything else is done by the Javascripts. Jim has been most supportive with his Ruby expertise, and I want to acknowledge that.

                                            The next step is sorting out the maths to account for the xyz's of the nested components and nested collections of components. This is a bit of a headache. Enough to drive even an Aussie to drink.

                                            Keep in touch. I understand the pressures of running a business. So no worrries.

                                            Toodle pip!

                                            Chris

                                            With TBA interfaces we can analyse what is to be achieved so that IT can help with automation to achieve it.

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

                                            Advertisement