-
Notifications
You must be signed in to change notification settings - Fork 0
/
gui.pde
237 lines (226 loc) · 6.46 KB
/
gui.pde
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
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
import java.awt.Robot;
import java.awt.AWTException;
static final int[][] C = {
{235, 100, 55},
{227, 199, 14},
{0, 138, 97},
{119, 193, 254},
{0, 98, 191},
{119, 79, 194},
{159, 29, 63},
}; // Designer: Ziyue Piao
GUI gui;
class GUI {
// boolean has_robby;
// Robot robby;
// int cursorX = 500;
// int cursorY = 500;
// boolean cursor_visible = true;
// GUI() {
// initControl();
// }
// void initControl() {
// if (TOUCH_SCREEN) {
// has_robby = false;
// return;
// }
// try {
// robby = new Robot();
// has_robby = true;
// last_mouse_X = mouseX;
// last_mouse_Y = mouseY;
// } catch (AWTException e) {
// println("Robot class not supported by your system!");
// has_robby = false;
// }
// }
// void loop() {
// if (DEBUGGING_NO_ARDUINO) {
// if (has_robby) {
// handleCursor();
// } else {
// cursorX = mouseX;
// cursorY = mouseY;
// }
// int diatone = cursorX * 7 / width;
// int pitch_class = diatone * 2;
// if (pitch_class >= 6) {
// pitch_class --;
// }
// int breath_velocity = round((1 - cursorY / (float)(height)) * MAX_VELOCITY);
// for (int i = 0; i < 6; i ++) {
// if (i < 6 - diatone) {
// network.onFingerChange(i, '_');
// } else {
// network.onFingerChange(i, '^');
// }
// }
// network.updateVelocity(breath_velocity);
// } else {
// int diatone = pitchClass2Diatone(midiOut.pitch_from_network % 12);
// cursorX = round(width * (diatone + .5) / 7);
// cursorY = round(max(0, map(network.velocity, 0, MAX_VELOCITY, height, 0)));
// }
// draw();
// }
// // static final int CURSOR_MSPF = 1000;
// // int handleCursor_last_millis = 0;
// int last_mouse_X;
// int last_mouse_Y;
// int mouse_v_x;
// int mouse_v_y;
// boolean teleported = false;
// void handleCursor() {
// if (focused) {
// // if (millis() - handleCursor_last_millis >= CURSOR_MSPF) {
// // handleCursor_last_millis = millis();
// if (teleported) {
// teleported = false;
// last_mouse_X = mouseX - mouse_v_x;
// last_mouse_Y = mouseY - mouse_v_y;
// }
// mouse_v_x = mouseX - last_mouse_X;
// mouse_v_y = mouseY - last_mouse_Y;
// cursorX += mouse_v_x;
// cursorY += mouse_v_y;
// last_mouse_X = mouseX;
// last_mouse_Y = mouseY;
// if (cursorX < 0) {
// cursorX += width;
// }
// if (cursorX > width) {
// cursorX -= width;
// }
// if (cursorY < 0) {
// cursorY = 0;
// }
// if (cursorY > height) {
// cursorY = height;
// }
// if (
// mouseX < width * .2 ||
// mouseX > width * .8 ||
// mouseY < height * .2 ||
// mouseY > height * .8
// ) {
// robby.mouseMove(width / 2, height / 2);
// teleported = true;
// }
// // }
// }
// }
// int diatone;
// void draw() {
// background(0);
// if (! focused) {
// fill(255);
// text("Click to continue", width / 2, height / 2);
// if (! cursor_visible) {
// cursor(HAND);
// cursor_visible = true;
// midiOut.clear();
// }
// return;
// }
// if (focused) {
// if (cursor_visible) {
// noCursor();
// cursor_visible = false;
// }
// }
// pushMatrix();
// translate(0, height);
// scale(1, -1);
// float slope = network.OCTAVE_VELOCITY / 12f;
// for (int i = 0; i < 7; i ++) {
// int pitch_class = i * 2;
// if (pitch_class >= 6) {
// pitch_class --;
// }
// float dy = pitch_class * slope;
// float intercept = dy + network.INTERCEPT_VELOCITY;
// int j = 0;
// for (
// float y = intercept - network.OCTAVE_VELOCITY * .5;
// y < MAX_VELOCITY;
// y += network.OCTAVE_VELOCITY
// ) {
// fill(C[i][0], C[i][1], C[i][2], min(255, (y / height + .25) * 256));
// int y0 = round(y * height / MAX_VELOCITY);
// int _h = network.OCTAVE_VELOCITY * height / MAX_VELOCITY;
// if (j == 0) {
// _h += y0;
// y0 = 0;
// }
// rect(
// width * i / 7, y0,
// width / 7, _h
// );
// j ++;
// }
// }
// fill(0);
// rect(0, 0, width, network.ON_OFF_THRESHOLD * height / MAX_VELOCITY);
// if (network.is_note_on) {
// diatone = pitchClass2Diatone(network.pitch_class);
// float dy = network.pitch_class * slope;
// float y = dy + network.INTERCEPT_VELOCITY + network.octave * network.OCTAVE_VELOCITY;
// int to_diatone = diatone;
// if (network.octave_residual > 0) {
// to_diatone ++;
// } else {
// to_diatone --;
// }
// to_diatone = (to_diatone + 7) % 7;
// fill(C[to_diatone][0], C[to_diatone][1], C[to_diatone][2], 60);
// rect(
// diatone * width / 7,
// y * height / MAX_VELOCITY,
// width / 7,
// height - cursorY - y * height / MAX_VELOCITY
// );
// }
// popMatrix();
// drawCursor();
// }
// int pitchClass2Diatone(int pitch_class) {
// return floor((pitch_class + 1) / 2f);
// }
// static final int CURSOT_R = 60;
// static final String SYMBOLS = "CDEFGAB";
// void drawCursor() {
// pushMatrix();
// translate(cursorX, cursorY);
// scale(CURSOR_SIZE);
// fill(255);
// rect(-CURSOT_R, -CURSOT_R, CURSOT_R*2, CURSOT_R*2);
// stroke(0);
// line(-CURSOT_R, 0, CURSOT_R, 0);
// noStroke();
// fill(0);
// if (network.is_note_on) {
// text(SYMBOLS.charAt(diatone) + String.valueOf(network.octave + TRANSPOSE_OCTAVES), 0, -18);
// String modi;
// if (network.octave_residual > 0) {
// modi = "+";
// } else {
// modi = "-";
// }
// int perc = abs(round(network.octave_residual * 2 * FLUTE_BEND_MAX * 100));
// if (perc < 10) {
// modi += '0';
// }
// modi += String.valueOf(perc) + '%';
// text(modi, 0, CURSOT_R - 18);
// }
// // fill(255);
// // stroke(0);
// // beginShape();
// // vertex(0, 0);
// // vertex(0, 60);
// // vertex(20, 45);
// // vertex(45, 45);
// // endShape(CLOSE);
// popMatrix();
// }
}