JCollider is a Java client for the SuperCollider sound synthesis server.

It has a stupid arbitrary limit of 5 arguments when constructing UGens. (see Documentation for UGen here) I'm referring to the ar method. They made made multiple copies of that method for variable numbers of arguments, but they stopped at 5 and I need 7. Those convenience functions look like this where they are defined.

public static GraphElem kr( String name, GraphElem in1, GraphElem in2, GraphElem in3, GraphElem in4, GraphElem in5 )
{
    return UGen.construct( name, kControlRate, -1, new GraphElem[] { in1, in2, in3, in4, in5 });
}

I tried just using the UGen.construct method myself, but it's apparently "not visible" from where I'm trying to use it (in a different package).

I then tried fixing this in the JCollider source by just extending the convenience methods to the equally stupid arbitrary limit of 7, but alas I couldn't compile it due to an ant script problem.

What is the correct way to use UGen.ar() with more than 5 arguments?

link|improve this question

feedback

2 Answers

up vote 1 down vote accepted

At the time I wrote that it was Java 1.4. So I decided that 5 was a good number :) (in fact it covers some reasonable percentage like 98% or so of the ugens). You can still use the inner part of what you pasted to work around it without touching the source, e.g. call UGen.construct( name, kControlRate, -1, new GraphElem[] { in1, in2, in3, in4, in5, in6, in7, ... }); Obviously nowadays you'd go for Java 5 style varargs.

If you are willing to use another language, give ScalaCollider a try, it's a much smoother experience.

link|improve this answer
Thanks, I know it's an old project, but it means a lot that you still answer questions about it. And in case you want to know what I made with JCollider, look at nathannifong.com/NetworkChimes I would be honored if you'd feature that on the list of projects using JCollider. – Nathan Apr 6 '11 at 4:09
Hey, nice project! I will add a link once I get to doing an update! – Sciss Apr 11 '11 at 2:51
feedback

I managed to get around the ant build problem and recompile JCollider with the increased limit of 7.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.