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

    [Tutorial] SketchUp Ruby C Extension

    已排程 已置頂 已鎖定 已移動 Developers' Forum
    176 貼文 16 Posters 25.9k 瀏覽 16 Watching
    正在載入更多貼文
    • 從舊到新
    • 從新到舊
    • 最多點贊
    回覆
    • 在新貼文中回覆
    登入後回覆
    此主題已被刪除。只有擁有主題管理權限的使用者可以查看。
    • thomthomT 離線
      thomthom
      最後由 編輯

      @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 條回覆 最後回覆 回覆 引用 0
      • thomthomT 離線
        thomthom
        最後由 編輯

        @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 條回覆 最後回覆 回覆 引用 0
        • Dan RathbunD 離線
          Dan Rathbun
          最後由 編輯

          @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 條回覆 最後回覆 回覆 引用 0
          • thomthomT 離線
            thomthom
            最後由 編輯

            👍

            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 條回覆 最後回覆 回覆 引用 0
            • J 離線
              Jim
              最後由 編輯

              @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 條回覆 最後回覆 回覆 引用 0
              • Dan RathbunD 離線
                Dan Rathbun
                最後由 編輯

                @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 條回覆 最後回覆 回覆 引用 0
                • T 離線
                  tomasz
                  最後由 編輯

                  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 條回覆 最後回覆 回覆 引用 0
                  • thomthomT 離線
                    thomthom
                    最後由 編輯

                    @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 條回覆 最後回覆 回覆 引用 0
                    • C 離線
                      chyn2000
                      最後由 編輯

                      Hi Guys.

                      First, I want to say that this project you have started is awesome. I had just decided I needed a ruby extension to get a speed boost for a plug-in project. I found a lot of tutorials on making extensions, but most were for either linux or for MS Visual Studio 6 on Windows. I'm not using either environment. I am on Windows 7 (64bit).

                      Sooooo, I have followed TBD's example program the best I can.

                      • I have downloaded the SUExt files.
                      • I have downloaded the Ruby Installer and Source per the SUExt readme file and installed Ruby.
                      • I have installed Pelles C.

                      I tried to open suext.ppj file and Pelles C kept throwing an error about "suext.obj is wrongly located in -path_to_project-". So I tried suext6.ppj and it seemed to be fine. It even seemed to build once I pointed Pelles C to where my Ruby installation was at.

                      From here I'm a little lost. Am I done? I brought up the irb and typed in: require 'path_to_project/suext.so'
                      The results were as follows:

                      LoadError: 127: The specified procedure could not be found. - Init_path_to_project\suext
                      path_to_project\suext.so
                      from path_to_project\suext.so
                      from path_to_ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
                      from (irb):1
                      from :0

                      What am I missing?

                      Thanks
                      -Chyn

                      1 條回覆 最後回覆 回覆 引用 0
                      • thomthomT 離線
                        thomthom
                        最後由 編輯

                        When you require a C Extension, do not include the file extension.

                        So instead of:
                        require 'path_to_project/suext.so'

                        do:
                        require 'path_to_project/suext'

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

                        1 條回覆 最後回覆 回覆 引用 0
                        • C 離線
                          chyn2000
                          最後由 編輯

                          Ok. That certainly changed things a little.

                          I type:
                          irb(main):002:0> require 'path_to_project\suext'

                          and get back:
                          LoadError: 127: The specified procedure could not be found. - Init_path_to_project\suext
                          path_to_project\suext.so
                          from path_to_project\suext.so
                          from path_to_ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
                          from (irb):2
                          from :0

                          1 條回覆 最後回覆 回覆 引用 0
                          • TIGT 離線
                            TIG Moderator
                            最後由 編輯


                            or
                            /
                            ?

                            TIG

                            1 條回覆 最後回覆 回覆 引用 0
                            • C 離線
                              chyn2000
                              最後由 編輯

                              Both. The '/'s and ''s that are in the post were copied and pasted. I didn't change any of them. Let me know if you want the original output. I just shortened the paths for readability.

                              -Chyn

                              1 條回覆 最後回覆 回覆 引用 0
                              • J 離線
                                Jim
                                最後由 編輯

                                TIG means try using this --> / <-- instead of that --> ** <-- in your require statement.

                                Hi

                                1 條回覆 最後回覆 回覆 引用 0
                                • C 離線
                                  chyn2000
                                  最後由 編輯

                                  Ah. Gotchya now.

                                  Nirg. Same result...

                                  Anything else? Maybe is one of you guys have successfully built the example you could post it for download. That would make sure I've got my environment set up correctly.

                                  -Chyn

                                  1 條回覆 最後回覆 回覆 引用 0
                                  • thomthomT 離線
                                    thomthom
                                    最後由 編輯

                                    How did you build it? Seems something has gotten confused and the path has gotten mixed into the name of the initializing procedure for the C Extension.

                                    @chyn2000 said:

                                    LoadError: 127: The specified procedure could not be found. - Init_path_to_project\suext

                                    It tries to call a function named Init_path_to_project\suext - where, given the name suext it should be trying to call Init_suext.

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

                                    1 條回覆 最後回覆 回覆 引用 0
                                    • C 離線
                                      chyn2000
                                      最後由 編輯

                                      I built in Pelles C.

                                      So, the path isn't hard coded in the program. I can place a copy of the suext.so on my d:\ and it changes the error out put to match:

                                      irb(main):002:0> require 'D:\suext'
                                      LoadError: 127: The specified procedure could not be found. - Init_D:\suext
                                      D:\suext.so
                                      from D:\suext.so
                                      from d:/Ruby/lib/ruby/site_ruby/1.8/rubygems/custom_require.rb:31:in `require'
                                      from (irb):2
                                      from :0

                                      Is there a specific directory I should have the file at?

                                      1 條回覆 最後回覆 回覆 引用 0
                                      • Dan RathbunD 離線
                                        Dan Rathbun
                                        最後由 編輯

                                        %(#BF8000)[path_to_ruby/lib/ruby/site_ruby/1.8/rubygems/**custom_require.rb**]

                                        Why are you customizing the require() method ?

                                        Try it WITHOUT loading this custom script...

                                        I'm not here much anymore.

                                        1 條回覆 最後回覆 回覆 引用 0
                                        • J 離線
                                          Jim
                                          最後由 編輯

                                          @dan rathbun said:

                                          Why are you customizing the require() method ?

                                          He isn't - this is something done by RubyGems.

                                          Hi

                                          1 條回覆 最後回覆 回覆 引用 0
                                          • Dan RathbunD 離線
                                            Dan Rathbun
                                            最後由 編輯

                                            OK.. my bad.. N/M

                                            I'm not here much anymore.

                                            1 條回覆 最後回覆 回覆 引用 0
                                            • 1
                                            • 2
                                            • 3
                                            • 4
                                            • 5
                                            • 8
                                            • 9
                                            • 3 / 9
                                            • 第一個貼文
                                              最後的貼文
                                            Buy SketchPlus
                                            Buy SUbD
                                            Buy WrapR
                                            Buy eBook
                                            Buy Modelur
                                            Buy Vertex Tools
                                            Buy SketchCuisine
                                            Buy FormFonts

                                            Advertisement