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

    [Tutorial] SketchUp Ruby C Extension

    Scheduled Pinned Locked Moved Developers' Forum
    176 Posts 16 Posters 25.9k Views 16 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

      Right'o! Gotcha. Been reading more up on C and GCC.

      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
        tomasz
        last edited by

        Thanks Thomas for the example.

        I do not understand what is 'extconf.rb' for. I have compiled my extension under VC++ 2008 without running the file and without using any makefile... Is it bad ? πŸ˜• πŸ’š

        Author of [Thea Render for SketchUp](http://www.thearender.com/sketchup)

        1 Reply Last reply Reply Quote 0
        • tbdT Offline
          tbd
          last edited by

          extconf.rb - external configuration, it generates the makefile to create the extension. using makefile you can automate builds and tests.

          SketchUp Ruby Consultant | Podium 1.x developer
          http://plugins.ro

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

            extconf.rb generates a make file you can use with make under OSX and nmake under Windows.
            http://ruby-doc.org/docs/ProgrammingRuby/html/ext_ruby.html#UG

            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

              @unknownuser said:

              I have compiled my extension under VC++ 2008

              How big difference is making a Ruby Extension in C++ as oppose to C? ...seeing how Ruby is built in C... ❓

              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
                tomasz
                last edited by

                @unknownuser said:

                extconf.rb - external configuration, it generates the makefile to create the extension. using makefile you can automate builds and tests.

                Got it! In VC++ I have to configure it on my own.

                @thomthom said:

                How big difference is making a Ruby Extension in C++ as oppose to C? ...seeing how Ruby is built in C... ❓

                You certainly would need to enclose declaration of the extension initialization with extern "C":

                extern "C" {
                void Init_SX_HelloWorld(); 
                }
                

                I am not really an expert, but I guess all the rest would stay same.

                Author of [Thea Render for SketchUp](http://www.thearender.com/sketchup)

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

                  Added a new example with basic functions. Will start on the tutorial text and images next.

                  Btw, does anyone know how one can make extconf.rb and make/nmake output their files to a given folder? I'd like to make it so that each platform outputs its generated files to separate directories.

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

                  1 Reply Last reply Reply Quote 0
                  • Chris FullmerC Offline
                    Chris Fullmer
                    last edited by

                    What C++ compiler or development environment are you going to write this for so I can go download it and start poking around in it?

                    Lately you've been tan, suspicious for the winter.
                    All my Plugins I've written

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

                      I am writing the extensions in C. But under windows I installed Visual C++ Express 2010 because it has the required Windows headers and nmake to compile it. I have some crude notes in the README.txt in the repo. Under OSX you need X Tools from the OSX DVD.

                      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

                        Note that I never use the Visual C++ IDE editor.

                        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

                          Just wondering if there's any reason that MinGW instead of MSVC++ could not be used to compile c extensions. I assume the c extension is a libaray and doesn't require any Windows-specific GUI stuff - it's just a library of functions, right?

                          Hi

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

                            @thomthom said:

                            Btw, does anyone know how one can make extconf.rb and make/nmake output their files to a given folder? I'd like to make it so that each platform outputs its generated files to separate directories.

                            Did you check the methods defined in "mkmf.rb" ?
                            (You can also see "Appendix C. Functions Available in extconf.rb" in the "README.EXT" file.)

                            .. also check our the "extmk.rb" file in the ext dir.

                            I'm not here much anymore.

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

                              @jim said:

                              Just wondering if there's any reason that MinGW instead of MSVC++ could not be used to compile c extensions. I assume the c extension is a libaray and doesn't require any Windows-specific GUI stuff - it's just a library of functions, right?

                              Dunno. I'd think it'd be possible. But I really have no clue when it comes to compiling. It'd be nice to have tutorials for different compilers. So please feel free to jump on the bandwagon πŸ˜‰ )

                              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

                                @dan rathbun said:

                                Did you check the methods defined in "mkmf.rb" ?
                                (You can also see "Appendix C. Functions Available in extconf.rb" in the "README.EXT" file.)

                                .. also check our the "extmk.rb" file in the ext dir.

                                Yea, got a wee bit lost... πŸ˜•

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

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

                                  @thomthom said:

                                  Yea, got a wee bit lost... πŸ˜•

                                  I know (insert head-spinning emoticon here).

                                  Lets try these:
                                  A Simple Makefile Tutorial

                                  Makefile Tutorial

                                  I think the constant you want is DESTDIR or $(DESTDIR)

                                  I'm not here much anymore.

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

                                    πŸ‘

                                    Will have a look. Currently when I use nmake I get some warning about some of the compiler flags. Maybe I can eliminate them. I'd prefer that so there's less noise coming from the compiler. Easier to spot other warnings.

                                    ( That first link is sightly messed up though, as they didn't escape angle brackets inside the code examples: #include <hellomake.h> eaten by the browser - at least under Firefox.

                                    I've come across a partial documentation of mkmf: http://www.ensta-paristech.fr/~diam/ruby/online/ruby-doc-stdlib/libdoc/mkmf/rdoc/index.html

                                    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

                                      @thomthom said:

                                      Dunno. I'd think it'd be possible. But I really have no clue when it comes to compiling. It'd be nice to have tutorials for different compilers. So please feel free to jump on the bandwagon )

                                      I could not get MinGW working using Ruby 1.8.6. I could get the examples to compile using Ruby 1.9.3, but they just crashed SketchUp.

                                      But both example seem to compile and work just fine in SketchUp using VC++ Express and Ruby 1.8.6 per your instructions in the Readme file.


                                      0120.png

                                      Hi

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

                                        @jim said:

                                        I could not get MinGW working using Ruby 1.8.6.

                                        Ruby v1.8.6-p287 was the last 'distro' to be compiled with MSVC. (.. which is likely why the GSUDT released SU8 with this patch level, even though their were newer v1.8.6 patch levels available.)

                                        All patch levels above p287 were distro'd (via Windows One-Click Installer,) compiled with MinGW.

                                        That is not to say, however that someone (including Google,) could build the newer patch levels with MSVC, or do a manual install by downloading precompiled binaries from:
                                        ftp;//ftp.ruby-lang.org/pub/ruby/binaries/mswin32/
                                        (.. However not all patch levels are available.)

                                        I'm not here much anymore.

                                        1 Reply Last reply Reply Quote 0
                                        • T Offline
                                          tomasz
                                          last edited by

                                          Shouldn't the C extension be protected by a sort of a "namespace"? I mean shouldn't Point3d {}; be SX_Ext_Point3D {};? If we have two diffetent DLL's, do their functions exist in a same 'space' πŸ˜„ ?

                                          Author of [Thea Render for SketchUp](http://www.thearender.com/sketchup)

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

                                            @unknownuser said:

                                            Shouldn't the C extension be protected by a sort of a "namespace"? I mean shouldn't Point3d {}; be SX_Ext_Point3D {};? If we have two diffetent DLL's, do their functions exist in a same 'space' πŸ˜„ ?

                                            No - only the Ruby modules, classes and methods you define - like in a normal Ruby Script. Everything else is isolated.

                                            As you see in the init function:

                                            <span class="syntaxdefault"><br />void&nbsp;Init_SX_Basics</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">void&nbsp;</span><span class="syntaxkeyword">)<br />{<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;Modules<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">mSUExtTest&nbsp;</span><span class="syntaxkeyword">=&nbsp;</span><span class="syntaxdefault">rb_define_module</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxstring">"SUExtTest"&nbsp;</span><span class="syntaxkeyword">);<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;Constants<br />&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;>&nbsp;SUExtTest;;SX_BASIC_VERSION<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">rb_define_const</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">mSUExtTest</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxstring">"SX_BASIC_VERSION"</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">rb_str_new2</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxstring">"0.1.0"&nbsp;</span><span class="syntaxkeyword">)&nbsp;);<br />&nbsp;&nbsp;&nbsp;&nbsp;<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;Methods<br />&nbsp;&nbsp;&nbsp;&nbsp;//&nbsp;>&nbsp;SUExtTest.foo<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">rb_define_module_function</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">mSUExtTest</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxstring">"foo"</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">h_foobar</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">0&nbsp;</span><span class="syntaxkeyword">);<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;>&nbsp;SUExtTest.multiply(&nbsp;number1,&nbsp;number2&nbsp;)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">rb_define_module_function</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">mSUExtTest</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxstring">"multiply"</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">h_multiply</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">2&nbsp;</span><span class="syntaxkeyword">);<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;>&nbsp;SUExtTest.pi_array(&nbsp;array&nbsp;)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">rb_define_module_function</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">mSUExtTest</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxstring">"pi_array"</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">h_pi_array</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">1&nbsp;</span><span class="syntaxkeyword">);<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;>&nbsp;SUExtTest.random_points(&nbsp;size&nbsp;)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">rb_define_module_function</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">mSUExtTest</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxstring">"random_points"</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">h_random_points</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">1&nbsp;</span><span class="syntaxkeyword">);<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxcomment">//&nbsp;>&nbsp;SUExtTest.closest_distance(&nbsp;point_set1,&nbsp;point_set2&nbsp;)<br />&nbsp;&nbsp;&nbsp;&nbsp;</span><span class="syntaxdefault">rb_define_module_function</span><span class="syntaxkeyword">(&nbsp;</span><span class="syntaxdefault">mSUExtTest</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxstring">"closest_distance"</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">h_closest_distance</span><span class="syntaxkeyword">,&nbsp;</span><span class="syntaxdefault">2&nbsp;</span><span class="syntaxkeyword">);<br />}<br />&nbsp;</span><span class="syntaxdefault"></span>
                                            

                                            It's the rb_define_* that will make the extension share anything with the Ruby environment - everything else is isolated.

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

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

                                            Advertisement