-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathMain.m~
251 lines (192 loc) · 6.49 KB
/
Main.m~
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
238
239
240
241
242
243
244
245
246
247
248
clc; close all;
%Show debug options
global DEBUG;
DEBUG = false;
global allSettings
allSettings = {}
%Initialize global variables
global Interactables; % The list of all interactables
Interactables = {};
global frameLength;
frameMultiplier = 2;
frameLength = 1024 * frameMultiplier;
global Fs;
Fs = 44100;
global inputDevice;
global outputDevice;
global test
test = [];
%Open the GUI
GUI();
function GUI %drag_drop
global input
figure('WindowButtonUpFcn',@dropObject,'units','normalized','Position',[0 0 0.4 0.4],'WindowButtonMotionFcn',@dragObject, 'ButtonDownFcn', @selectObject); % 'WindowButtonUpFcn',@dropObject
input = newNode('in', 'In',[0 0.50 0.15 0.15],@selectObject);
output = newNode('out','Out',[0.85 0.50 0.15 0.15], @selectObject);
Flanger = newNode('flanger','Flanger',[0.3 0.8 0.15 0.15],@selectObject);
Lowpass = newNode('lowpass','Low Pass',[0.5 0.8 0.15 0.15],@selectObject);
Highpass = newNode('highpass','High Pass',[0.4 0.6 0.15 0.15],@selectObject);
%settingsTest(Highpass);
spectrumNode = newNode('spectrum', 'Spectrum', [0.2 0.2 0.15 0.15], @selectObject)
%TestNode = newNode('in','Test Node',[0.55 0.55 0.15 0.15], @selectObject);
selectedObject = [];
holdTime = 0.5; %How long time to hold the mouse down before the hold function gets executed
timerStarted = false;
while true
updateConnectionPath(input);
input.retrieveBuffer();
%Functionality to register when the mouse button has been held down for x
%amount of time
if (timerStarted == true)
elapsedTime = toc; %Get the elapsed time
if (elapsedTime >= holdTime)
holdObject();
timerStarted = false;
end
end
drawnow();
end
%If an object is clicked on, it updates the selected object
function selectObject(hObject,eventdata)
disp(hObject)
if isa(hObject, 'matlab.ui.Figure')
disp('SELECTED')
tic; %Start timer
timerStarted = true;
return
end
selectedObject = findInteractableFromAnnoObject(hObject);
if ~isempty(selectedObject)
if ~isempty(selectedObject.anno)
selectedObject.select();
end
end
end
%When the mouse button is released call the drop function of the
%selected object and set the selectedObject to be empty
function dropObject(hObject,eventdata)
timerStarted = false;
if ~isempty(selectedObject)
if ~isempty(selectedObject.anno)
selectedObject.drop();
selectedObject = [];
end
end
end
%When the mouse is being moved, call drag function of the selected
%object
function dragObject(hObject,eventdata)
if ~isempty(selectedObject)
if ~isempty(selectedObject.anno)
selectedObject.drag();
end
end
end
function heldObject()
disp('HELD')
end
end
% Functions to create new interactable items
function node = newNode(effect, name, position, select)
node = [];
switch effect
case 'in'
node = InputNode(position,name,select)
case 'out'
node = OutputNode(position,name,select)
case 'flanger'
node = FlangerNode(position,name,select);
case 'lowpass'
node = LowpassNode(position, name, select);
case 'highpass'
node = HighpassNode(position, name, select);
case 'spectrum'
node = SpectrumNode(position, name, select);
end
if ~strcmp(effect, 'in')
node.inSocket = newSocket('in', node, select); % Reference property in node class
end
if ~strcmp(effect, 'out')
node.outSocket = newSocket('out', node, select);
end
global Interactables %Makes the global 'interactables' referencable
Interactables{end+1} = node; % Adds the node to the end of interactables list
return
end
% Function to create the in and out connection ellipses
function socket = newSocket(type, node, select)
if strcmp(type,'in')
socket = InSocket(node, 'ellipse','Position','ButtonDownFcn',select);
elseif strcmp(type,'out')
socket = OutSocket(node, 'ellipse','Position','ButtonDownFcn',select);
end
global Interactables %Makes the global 'interactables' referencable
Interactables{end+1} = socket; % Adds the node to the end of interactables list
return
end
%Finds the node that has the given annotation inside it
function interactable = findInteractableFromAnnoObject(annotation)
%Find Node class by looking for the
global Interactables
for i = 1:length(Interactables)
if Interactables{i}.anno == annotation
interactable = Interactables{i};
return
end
end
interactable = [];
end
%Sets all the connectionLines to be black
function updateConnectionPath(inNode)
%Find Node class by looking for the
global Interactables
%Set everything to black first
for i = 1:length(Interactables)
if isa(Interactables{i}, 'InSocket') || isa(Interactables{i}, 'OutSocket')
try
if ~isempty(Interactables{i}.connectionLine)
Interactables{i}.connectionLine.Color = 'k';
end
catch
end
end
end
%Change connection lines color in the path from in to out
node = inNode;
connected = false;
try
%check if in is connected to the output node
while ~isempty(node)
if isa(node, 'OutputNode')
connected = true;
break;
elseif ~isempty(node.outSocket.nextNode)
node = node.outSocket.nextNode;
else
node = [];
end
end
%Only change the color if the input is connected to the output node
if connected == false
return;
end
% Change color of all the lines that connects from in to output
node = inNode;
while ~isempty(node)
if isa(node, 'OutputNode')
return
end
if ~isempty(node.outSocket.connectionLine)
node.outSocket.connectionLine.Color = 'r';
if ~isempty(node.outSocket.nextNode)
node = node.outSocket.nextNode;
else
node = [];
end
else
node = [];
end
end
catch
end
end