2009-01-03 18:11:29 +00:00
|
|
|
TextMate {
|
2009-01-03 18:58:52 +00:00
|
|
|
classvar menu, <openClassInTextMate, <openReferencesInTextMate;
|
2009-01-03 18:11:29 +00:00
|
|
|
|
|
|
|
*initClass {
|
|
|
|
var opt;
|
|
|
|
|
|
|
|
menu = CocoaMenuItem(nil, 7, "TextMate", true);
|
2008-12-21 23:08:08 +00:00
|
|
|
|
2009-01-03 18:11:29 +00:00
|
|
|
opt = CocoaMenuItem(menu, 0, "TextMate to front", false) {
|
|
|
|
"osascript << END
|
|
|
|
tell application \"TextMate\" to activate
|
|
|
|
END
|
|
|
|
".unixCmd(postOutput: false)
|
|
|
|
};
|
|
|
|
opt.setShortCut("T");
|
|
|
|
|
|
|
|
openClassInTextMate = CocoaMenuItem(menu, 1, "Open class files in TextMate", false) { |item|
|
|
|
|
item.state = item.state.not;
|
|
|
|
};
|
|
|
|
openClassInTextMate.state = true;
|
|
|
|
openClassInTextMate.setShortCut("j", true, true);
|
2009-01-03 18:58:52 +00:00
|
|
|
|
|
|
|
openReferencesInTextMate = CocoaMenuItem(menu, 2, "Open references in TextMate", false) { |item|
|
|
|
|
item.state = item.state.not;
|
|
|
|
};
|
|
|
|
openReferencesInTextMate.state = true;
|
2009-01-03 22:39:52 +00:00
|
|
|
openReferencesInTextMate.setShortCut("r", true, true);
|
2009-01-03 18:11:29 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// http://github.com/rfwatson/sc3ctrl
|
2008-12-21 23:08:08 +00:00
|
|
|
SC3Controller {
|
|
|
|
classvar nodes;
|
|
|
|
|
|
|
|
*initClass {
|
|
|
|
nodes = List[];
|
|
|
|
|
2008-12-21 23:20:05 +00:00
|
|
|
Platform.case(\osx) {
|
2008-12-21 23:08:08 +00:00
|
|
|
StartUp.add {
|
|
|
|
this.addListeners;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*addListeners {
|
2008-12-21 23:20:05 +00:00
|
|
|
var node, postToFront;
|
|
|
|
|
|
|
|
postToFront = {
|
|
|
|
Document.listener.front;
|
|
|
|
};
|
|
|
|
|
2008-12-21 23:08:08 +00:00
|
|
|
if(nodes.isEmpty) {
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/cmd') { |t, r, msg|
|
2008-12-23 11:09:28 +00:00
|
|
|
{
|
2009-01-03 18:17:41 +00:00
|
|
|
thisThread.clock = SystemClock;
|
2008-12-23 11:09:28 +00:00
|
|
|
msg[1].asString.interpretPrint;
|
|
|
|
postToFront.();
|
2009-01-03 18:17:41 +00:00
|
|
|
}.defer
|
2008-12-21 23:08:08 +00:00
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/help') { |t, r, msg|
|
2009-01-03 18:58:52 +00:00
|
|
|
{
|
|
|
|
msg[1].asString.openHelpFile;
|
|
|
|
}.defer
|
2008-12-21 23:08:08 +00:00
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/class') { |t, r, msg|
|
2009-01-03 18:11:29 +00:00
|
|
|
// TM version only
|
|
|
|
var klass = msg[1].asString;
|
|
|
|
var allClasses = Class.allClasses.collect(_.asString);
|
|
|
|
|
|
|
|
{
|
|
|
|
if(TextMate.openClassInTextMate.state) {
|
|
|
|
if(allClasses.detect{ |str| str == klass }.notNil) { // .includes doesn't work?
|
|
|
|
var fname = klass.interpret.filenameSymbol;
|
|
|
|
var cmd = "grep -nh \"^" ++ klass ++ "\" \"" ++ fname ++ "\" > /tmp/grepout.tmp";
|
|
|
|
cmd.unixCmd(postOutput: false, action: {
|
|
|
|
File.use("/tmp/grepout.tmp", "r") { |f|
|
|
|
|
var content = f.readAllString;
|
|
|
|
var split = content.split($:);
|
|
|
|
if("^[0-9]+$".matchRegexp(split.first.asString)) {
|
2009-01-03 22:39:52 +00:00
|
|
|
("mate -l" ++ split.first + "\"" ++ fname ++ "\"").unixCmd(postOutput: false);
|
2009-01-03 18:11:29 +00:00
|
|
|
} {
|
2009-01-03 23:05:00 +00:00
|
|
|
("mate -l1 \"" ++ fname ++ "\"").unixCmd(postOutput: false);
|
2009-01-03 18:11:29 +00:00
|
|
|
}
|
|
|
|
};
|
|
|
|
});
|
|
|
|
}
|
|
|
|
} { // open in SC.app
|
|
|
|
klass.interpret.openCodeFile;
|
|
|
|
};
|
|
|
|
}.defer
|
2008-12-21 23:08:08 +00:00
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/implementations') { |t, r, msg|
|
2009-01-03 18:58:52 +00:00
|
|
|
if(TextMate.openReferencesInTextMate.state) {
|
2009-01-03 23:05:00 +00:00
|
|
|
{ this.methodTemplates(msg[1], true) }.defer
|
2009-01-03 18:58:52 +00:00
|
|
|
} { // open in SC.app
|
2009-01-03 23:05:00 +00:00
|
|
|
{ this.methodTemplates(msg[1], false) }.defer
|
2009-01-03 18:58:52 +00:00
|
|
|
}
|
2008-12-21 23:08:08 +00:00
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/references') { |t, r, msg|
|
2009-01-03 18:58:52 +00:00
|
|
|
if(TextMate.openReferencesInTextMate.state) {
|
2009-01-03 23:05:00 +00:00
|
|
|
{ this.methodReferences(msg[1], true) }.defer
|
2009-01-03 18:58:52 +00:00
|
|
|
} { // open in SC.app
|
2009-01-03 23:05:00 +00:00
|
|
|
{ this.methodReferences(msg[1], false) }.defer
|
2009-01-03 18:58:52 +00:00
|
|
|
}
|
2008-12-21 23:08:08 +00:00
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
2009-01-03 18:11:29 +00:00
|
|
|
|
2008-12-21 23:08:08 +00:00
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/stop') { |t, r, msg|
|
2008-12-23 11:09:28 +00:00
|
|
|
thisProcess.stop; nil;
|
2008-12-21 23:08:08 +00:00
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/clear') { |t, r, msg|
|
|
|
|
{
|
|
|
|
Document.listener.string = ""; "";
|
|
|
|
postToFront.();
|
|
|
|
}.defer;
|
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/postfront') { |t, r, msg|
|
|
|
|
{ postToFront.() }.defer;
|
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
|
|
|
|
node = OSCresponderNode(nil, '/sc3ctrl/recompile') { |t, r, msg|
|
|
|
|
{
|
|
|
|
thisProcess.recompile;
|
|
|
|
postToFront.();
|
|
|
|
}.defer;
|
|
|
|
}.add;
|
|
|
|
nodes.add(node);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
*removeAllListeners {
|
|
|
|
nodes.do(_.remove);
|
|
|
|
}
|
|
|
|
|
|
|
|
// adapated from Kernel.sc
|
2009-01-03 18:58:52 +00:00
|
|
|
*methodTemplates { |name, openInTextMate=false|
|
2008-12-21 23:08:08 +00:00
|
|
|
var out, found = 0, namestring;
|
|
|
|
out = CollStream.new;
|
|
|
|
out << "Implementations of '" << name << "' :\n";
|
|
|
|
Class.allClasses.do({ arg class;
|
|
|
|
class.methods.do({ arg method;
|
|
|
|
if (method.name == name, {
|
|
|
|
found = found + 1;
|
|
|
|
namestring = class.name ++ ":" ++ name;
|
|
|
|
out << " " << namestring << " : ";
|
|
|
|
if (method.argNames.isNil or: { method.argNames.size == 1 }, {
|
|
|
|
out << "this." << name;
|
|
|
|
if (name.isSetter, { out << "(val)"; });
|
|
|
|
},{
|
|
|
|
out << method.argNames.at(0);
|
|
|
|
if (name.asString.at(0).isAlpha, {
|
|
|
|
out << "." << name << "(";
|
|
|
|
method.argNames.do({ arg argName, i;
|
|
|
|
if (i > 0, {
|
|
|
|
if (i != 1, { out << ", " });
|
|
|
|
out << argName;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
out << ")";
|
|
|
|
},{
|
|
|
|
out << " " << name << " ";
|
|
|
|
out << method.argNames.at(1);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
out.nl;
|
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|
|
|
|
if(found == 0)
|
|
|
|
{
|
|
|
|
Post << "\nNo implementations of '" << name << "'.\n";
|
|
|
|
}
|
|
|
|
{
|
2009-01-03 18:58:52 +00:00
|
|
|
if(openInTextMate) {
|
|
|
|
var fname = "/tmp/" ++ Date.seed ++ ".sc";
|
|
|
|
File.use(fname, "w") { |f|
|
|
|
|
f << out.collection.asString;
|
2009-01-03 19:06:19 +00:00
|
|
|
("mate" + fname).unixCmd(postOutput: false);
|
2009-01-03 18:58:52 +00:00
|
|
|
};
|
|
|
|
} {
|
|
|
|
out.collection.newTextWindow(name.asString);
|
|
|
|
};
|
2008-12-21 23:08:08 +00:00
|
|
|
};
|
|
|
|
}
|
|
|
|
|
|
|
|
// adapted from Kernel.sc
|
2009-01-03 18:58:52 +00:00
|
|
|
*methodReferences { |name, openInTextMate|
|
2008-12-21 23:08:08 +00:00
|
|
|
var out, references;
|
|
|
|
name = name.asSymbol;
|
|
|
|
out = CollStream.new;
|
|
|
|
references = Class.findAllReferences(name);
|
|
|
|
|
|
|
|
if (references.notNil, {
|
|
|
|
out << "References to '" << name << "' :\n";
|
|
|
|
references.do({ arg ref; out << " " << ref.asString << "\n"; });
|
2009-01-03 18:58:52 +00:00
|
|
|
|
|
|
|
if(openInTextMate) {
|
|
|
|
var fname = "/tmp/" ++ Date.seed ++ ".sc";
|
|
|
|
File.use(fname, "w") { |f|
|
|
|
|
f << out.collection.asString;
|
2009-01-03 19:06:19 +00:00
|
|
|
("mate" + fname).unixCmd(postOutput: false);
|
2009-01-03 18:58:52 +00:00
|
|
|
};
|
|
|
|
} {
|
|
|
|
out.collection.newTextWindow(name.asString);
|
|
|
|
};
|
2008-12-21 23:08:08 +00:00
|
|
|
},{
|
|
|
|
Post << "\nNo references to '" << name << "'.\n";
|
|
|
|
});
|
|
|
|
}
|
|
|
|
}
|