1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
|
/*
* Copyright 2009 Phil Burk, Mobileer Inc
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package com.jsyn.ports;
/**
* A port that contains multiple parts with blocks of data.
*
* @author Phil Burk 2009 Mobileer Inc
*/
public class UnitBlockPort extends UnitPort {
PortBlockPart[] parts;
public UnitBlockPort(int numParts, String name, double defaultValue) {
super(name);
makeParts(numParts, defaultValue);
}
public UnitBlockPort(String name) {
this(1, name, 0.0);
}
protected void makeParts(int numParts, double defaultValue) {
parts = new PortBlockPart[numParts];
for (int i = 0; i < numParts; i++) {
parts[i] = new PortBlockPart(this, defaultValue);
}
}
@Override
public int getNumParts() {
return parts.length;
}
/**
* Convenience call to get(0).
*
* @return value of 0th part as set
*/
public double get() {
return get(0);
}
public double getValue() {
return getValue(0);
}
/**
* This is used inside UnitGenerators to get the current values for a port. It works regardless
* of whether the port is connected or not.
*
* @return
*/
public double[] getValues() {
return parts[0].getValues();
}
/** Only for use in the audio thread when implementing UnitGenerators. */
public double[] getValues(int partNum) {
return parts[partNum].getValues();
}
/** Get the immediate current value of the port. */
public double getValue(int partNum) {
return parts[partNum].getValue();
}
public double get(int partNum) {
return parts[partNum].get();
}
/** Only for use in the audio thread when implementing UnitGenerators. */
protected void setValueInternal(int partNum, double value) {
parts[partNum].setValue(value);
}
/** Only for use in the audio thread when implementing UnitGenerators. */
public void setValueInternal(double value) {
setValueInternal(0, value);
}
public boolean isConnected() {
return isConnected(0);
}
public boolean isConnected(int partNum) {
return parts[partNum].isConnected();
}
public void disconnectAll(int partNum) {
parts[partNum].disconnectAll();
}
public void disconnectAll() {
disconnectAll(0);
}
}
|