Package | Description |
---|---|
de.sciss.jcollider | |
de.sciss.jcollider.gui |
Modifier and Type | Class and Description |
---|---|
class |
Group
Mimics SCLang's Group class,
that is, it's a client side
representation of a group in the synthesis graph
|
class |
Synth
Mimics SCLang's Synth class,
that is, it's a client side
representation of a synth in the synthesis graph
|
Modifier and Type | Method and Description |
---|---|
Node |
Group.getHeadNode() |
Node |
NodeEvent.getNode() |
Node |
Node.getPredNode()
Queries the node's predecessor in the
graph tree.
|
Node |
Node.getSuccNode()
Queries the node's successor in the
graph tree.
|
Node |
Group.getTailNode() |
Modifier and Type | Method and Description |
---|---|
de.sciss.net.OSCMessage |
Group.addAfterMsg(Node aNode) |
de.sciss.net.OSCMessage |
Synth.addAfterMsg(Node aNode,
String[] argNames,
float[] argValues) |
de.sciss.net.OSCMessage |
Group.addBeforeMsg(Node aNode) |
de.sciss.net.OSCMessage |
Synth.addBeforeMsg(Node aNode,
String[] argNames,
float[] argValues) |
de.sciss.net.OSCMessage |
Group.addReplaceMsg(Node aNode) |
de.sciss.net.OSCMessage |
Synth.addReplaceMsg(Node aNode,
String[] argNames,
float[] argValues) |
static Group |
Group.after(Node aNode) |
static Synth |
Synth.after(Node aNode,
String defName) |
static Synth |
Synth.after(Node aNode,
String defName,
String[] argNames,
float[] argValues) |
static Group |
Group.before(Node aNode) |
static Synth |
Synth.before(Node aNode,
String defName) |
static Synth |
Synth.before(Node aNode,
String defName,
String[] argNames,
float[] argValues) |
static NodeEvent |
NodeEvent.fromOSCMessage(de.sciss.net.OSCMessage msg,
Object source,
long when,
Node node)
Constructs a
NodeEvent from a valid node
notification OSC message. |
static void |
Synth.grain(String defName,
Node target) |
static void |
Synth.grain(String defName,
String[] argNames,
float[] argValues,
Node target) |
static void |
Synth.grain(String defName,
String[] argNames,
float[] argValues,
Node target,
int addAction) |
static Synth |
Synth.head(Node aGroup,
String defName,
String[] argNames,
float[] argValues) |
void |
Node.moveAfter(Node aNode)
Moves the node after another node in the server graph.
|
de.sciss.net.OSCMessage |
Node.moveAfterMsg(Node aNode)
Creates an OSC
/n_after message. |
void |
Node.moveBefore(Node aNode)
Moves the node before another node in the server graph.
|
de.sciss.net.OSCMessage |
Node.moveBeforeMsg(Node aNode)
Creates an OSC
/n_before message. |
void |
Group.moveNodeToHead(Node aNode) |
de.sciss.net.OSCMessage |
Group.moveNodeToHeadMsg(Node aNode) |
void |
Group.moveNodeToTail(Node aNode) |
de.sciss.net.OSCMessage |
Group.moveNodeToTailMsg(Node aNode) |
de.sciss.net.OSCMessage |
Synth.newMsg(Node target) |
de.sciss.net.OSCMessage |
Group.newMsg(Node target,
int addAction)
Note: this sets the group!
|
de.sciss.net.OSCMessage |
Synth.newMsg(Node target,
String[] argNames,
float[] argValues) |
de.sciss.net.OSCMessage |
Synth.newMsg(Node target,
String[] argNames,
float[] argValues,
int addAction) |
static Synth |
Synth.newPaused(String defName,
String[] argNames,
float[] argValues,
Node target) |
static Synth |
Synth.newPaused(String defName,
String[] argNames,
float[] argValues,
Node target,
int addAction) |
Synth |
Buffer.play(boolean loop,
float amp,
int outBus,
float fadeTime,
Node target,
int addAction)
Plays the buffer contents.
|
Synth |
SynthDef.play(Node target,
String[] argNames,
float[] argValues,
int addAction)
Sends the def to the server and creates a synth from this def.
|
void |
NodeWatcher.register(Node node)
Adds a node to the list of known nodes.
|
void |
NodeWatcher.register(Node node,
boolean assumePlaying) |
static Group |
Group.replace(Node nodeToReplace) |
static Synth |
Synth.replace(Node nodeToReplace,
String defName) |
static Synth |
Synth.replace(Node nodeToReplace,
String defName,
String[] argNames,
float[] argValues) |
protected void |
Group.setHeadNode(Node headNode) |
protected void |
Node.setPredNode(Node predNode)
Sets the node's predecessor node.
|
protected void |
Node.setSuccNode(Node succNode)
Sets the node's successor node.
|
protected void |
Group.setTailNode(Node tailNode) |
static Synth |
Synth.tail(Node aGroup,
String defName,
String[] argNames,
float[] argValues) |
void |
NodeWatcher.unregister(Node node)
Unregister a node, that is remove it from the list of
known nodes.
|
Constructor and Description |
---|
Group(Node target,
int addAction) |
NodeEvent(Object source,
int ID,
long when,
Node node,
int nodeID,
int parentID,
int predID,
int succID,
int nodeType,
int headID,
int tailID)
Constructs a
NodeEvent from a detailed description. |
Synth(String defName,
Node target) |
Synth(String defName,
String[] argNames,
float[] argValues,
Node target) |
Synth(String defName,
String[] argNames,
float[] argValues,
Node target,
int addAction) |
Modifier and Type | Method and Description |
---|---|
void |
NodeTreeManager.setRoot(Node rootNode) |
Constructor and Description |
---|
NodeTreeManager(NodeWatcher nw,
Node rootNode)
Creates a new
NodeTreeManager for a given
NodeWatcher instance and root Node . |
NodeTreePanel(NodeWatcher nw,
Node rootNode)
Creates a panel with default gadgets.
|
NodeTreePanel(NodeWatcher nw,
Node rootNode,
int flags)
Creates a new
NodeTreePanel for a given node watcher
and root element. |
Copyright © 2015–2022 SciJava. All rights reserved.