HELP setting up a SU code editor
-
I'll convert your template and apply it to something as a test...
I wish the forum had cut and paste for attachments....
-
what did you do when it asked for an Ruby installation?
-
I'm a veteran of both Eclipse and NetBeans and highly recommend both for large projects. Haven't seen the benefit of trying either for Ruby plugins.
I don't know of any progress on the polylingual problem. In Java, you could use HTML in the JavaDoc, but the editor didn't really get the "language switch here" message. Maybe it's gotten better in the last couple years.
This problem is taken to the extreme in WebDialog work. My current project has one file mixing Ruby, JavaScript, HTML and CSS. If you find a tool that will do syntax highlighting for something like this, do let us all know!
-
My TT_Lib library is growing and could really benefit from an IDE. And also is the Vertex Edit plugin I'm working on - which I sorely miss profiling for.
-
How does it work with Aptana and setting up a project in the Plugins folder?
Can I create a project which includes the loader .rb in my plugins folder and then the accompanying folder?I tried some other editors before, but they'd insist in adding all .rb files in the plugins folder.
-
@Martin I was going to PM this to you as I think it does all that+ more, and being open source also means gaps can be filled... by you clever ones....
@Thomas, I think you set up the project in your home directory with your sketchup ruby in /Plugins folder and it gets updated as you go along...
Martin, Dan, Jim, Todd, TIG, Fredo, TBD, Alex, Scott,,,,,,,ect,,,,,,,, please try it out, your assistance would be hugely beneficial..
EDIT: and I should also plead to AdamB for his Mac insight as well
This is not a mutually exclusive list it's groveling to ALL and any -
This is where I read about it and may answer some questions for the more advanced....http://www.cherny.com/webdev/91/code-text-editors-for-web-development
-
I have to admit that I do not understand what an IDE does over just using Notepad++ to write scripts? What is all this extra functionality that we keep talking about?
Chris
-
@chris fullmer said:
I have to admit that I do not understand what an IDE does over just using Notepad++ to write scripts? What is all this extra functionality that we keep talking about?
Chris
IDE usually allow you to hook a debugger to your code, so you can set breakpoints and step through code, evaluate variable values live and profile your code to find where the choking points are.
They also usually keep track of your methods and classes which will appear in lists - and the better ones extract your documentation comments so when you start typing the name of a method you defined the auto-complete will suggest your own methods (not just the standard ruby ones) and also display your own documentation comments.
And lots more in terms of keeping track of your files etc. Usually more useful for larger projects - but I have some plugins where I'd really like an intelligent IDE instead of just simple syntax colouring. -
@chris fullmer said:
just using Notepad++ to write scripts?
Chrismy recent endeavors to find the mysterious Mac 'bug' that appears to affect some scripts and not others and some Macs and not others, led me to a number of blogs about MS'Dos' debris causing issues, when I cleaned and reformatted using Unix Line Delimiters as suggested (as apposed to PC or Mac specific) some of the script worked without additional work, while there seemingly identical originals still didn't...
So I started looking for a powerful cross platform alternative to what I was using and free, open-source seemed sensible.
the problem lays in setting them up so they are as easy to use as the less complex ones when starting out, but are readily expanded as you pick up, mix in other languages etc...
This appears to meet my criteria, but maybe I should have an easy start list at the top of the thread that can be added to over time??
Give it a go, my first tip is Download Studio first, then let it download Rad Rails, which also contains RUBY, then set ruby prefs from there.
@Martin-is this what you mean?http://www.vimeo.com/6885985
-
@driven said:
... when I cleaned and reformatted using Unix Line Delimiters as suggested (as apposed to PC or Mac specific) some of the script worked without additional work, while there seemingly identical originals still didn't...
So Notepad++ has 3 options for EOL (which is apparentley auto set on install for the platform the user is on.) On my PC, it was set to 'Windows'.
The other options are 'Mac' and 'UNIX'.
IF UNIX EOLs work on Mac, how does it work for Ruby on a PC??
-
@dan rathbun said:
IF UNIX EOLs work on Mac, how does it work for Ruby on a PC??
That I don't know, I was attempting to modify PC rubies to work on the Mac.... although I did send a couple back to one developer who then ran them on his PC... be handy if they do, I suppose one way to check is if you switch coding on something known to work on your PC and see if it still does... I'm by no means saying that notepad causes all problems, or that changing encode is a miracle cure, but it seems that it is capable of producing errors, and is probably a good place to start when debugging , it's easy.....
Have you had a look at this editor/IDE?
john
PS, I've also set up SU on XP pro SP3 on one mac, but as it unix under the skin it may not be the best test bed...
-
Well being a Mac guy.. be careful here:
Notepad is a crappy plain jane text editor that comes with Windows; and is even known to screw up files made for windows.
Notepad++ is a full featured code editor based on the Scintilla core (which is cross-platform.) I just don't know anyone's ever compiled a Mac version.
Haven't had time to look at that editor, I'm happy with Notepad++ as an editor, that can be expanded with plugins. (such as a console, debugger interface etc.)
The problem is not a lack of editors or IDEs, or even those that work with Ruby,.. it's that Sketchup does NOT use standard Ruby. The answer is to get both Sketchup and an IDE to be using (or acceesing,) the same instance of Ruby. We don't have a choice NOW, because it's Sketchup that loads the Ruby instance, and into that instance is where Sketchup loads it's API extensions.
I WISH for the future, that the Google Team can be convinced to let us have more control over Ruby.
- A configure setting where WE tell Sketchup the location and name of the Ruby Interpreter binary (so it can be pointed to the standard Ruby bin directory of whatever version we want to run or test.)* The option to load the SU API extensions into a Ruby Process that is already running, and started by the user, or the IDE, rather than Sketchup. (Hoping here that when SU crashes, it doesn't take Ruby down with it.)
-
@dan rathbun said:
I'm happy with Notepad++ as an editor,
It's really strong with HTML and JavaScript, but pretty weak on Ruby. Minimal coloring, only a faint try at matching begin/end constructs, ...
-
@chris fullmer said:
I have to admit that I do not understand what an IDE does over just using Notepad++ ...
In the [not so] good old days, we had an editor, compiler, linker, debugger, etc. For reference, we had treeware. An IDE gathers them all in one place.
In the [not so] good old days, your cycle was edit, compile, link, run. With today's tools, compiling and linking happen in milliseconds (used to be minutes). An IDE has a single-key compile/link/run command. You probably click your console, up-arrow and Enter. Not quite as nice as one key, but really no big deal.
What we lack is a proper debugger. Additional IDE tools include screen painters for menus, input forms and so on. Also, complete help systems. Modern IDEs do so much that they also feature serious learning curves, so they are not appropriate tools for those who don't earn their daily bread by coding.
-
@martinrinehart said:
What we lack is a proper debugger.
I think that's goes without saying
@martinrinehart said:
Additional IDE tools include screen painters for menus, input forms and so on.
visual aids are a great help when learning anything
@martinrinehart said:
Also, complete help systems.
what could be better
@martinrinehart said:
Modern IDEs do so much that they also feature serious learning curves
unless guidance, and support are available, like Google provides for Gears, O3D, Android Development, or Apple for iPhone, or the open source community for newcomers.
@martinrinehart said:
so they are not appropriate tools for those who don't earn their daily bread by coding.
sorry, I think you just contradicted yourself here, these tools are designed to avoid your [not so] good old days learning curve,
I didn't think that YOU (the author of one of the most comprehensive "hey guy's SU codings NOT hard" books proscribed to the FOFO school of teaching and learning
I hadn't grasped that your, "hey guys, no need to look under the hood" API was devised to slow peoples own programing knowledge.
I must say I'm rather disappointed in your attitude.
A request for assistance in avoiding badly coded 'amateur' and efforts to understand what makes a cross-platform 'professional' scripts would find your support.
these scripts are often targeted at an extremely niche market, and a 'DIY' solution is often the only commercially viable option for those on both sides of the equation.
An idea I'm pursuing out of curiosity may help you in your 'professional' activities and I for one am to old to re-live your years of pain.
I do have 6 Acorn computers in my workshop, should I concentrate on learning programing on those...
john
-
I agree that a SketchUp IDE would be helpful, even for newcomers, so long as it provides an intuitive UI. I usually use Notepad++, but I wrote an article that presents a simplistic Eclipse plugin that accesses SketchUp.
The plugin provides syntax coloring and single-click script execution through the SketchUp bridge, but that's about it. If this interests you guys, I'd be happy to add features. The debugger is tough, but it's not impossible.
Matt
-
That's an interesting article.
@unknownuser said:
You can download Aptana Studio and RadRails, but the installation process is long and complicated. Besides, if you just want a Ruby editor, downloading a 30-day evaluation version of the gigantic Aptana Studio isn't worth it.
Complicated installation process? And the thing is free. http://www.aptana.org/
Anyway - are you able to set breakpoints etc in SU plugin scripts and run them from Eclipse?
-
@mattscar said:
The plugin provides syntax coloring and single-click script execution through the SketchUp bridge, but that's about it. If this interests you guys, I'd be happy to add features. The debugger is tough, but it's not impossible.
MattHi matt,
should I just turn this into a wish list then....
number 1 for me is Mac compatibility which the now ported, now free Aptana gives me, it also has a quite straight forward, simple ruby editor hidden in there, so can the plug added to it or is it completely separate issue?
I installed XP Pro sp3 on the Mac last week so I'll have a play with this there before asking to many naive questions, I'm sure requests
welcome aboard
john
-
Well, the bridge that Matt is using is a Windows-only thing - you'd need to ask TBD about the possibility of porting.
Advertisement