-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathOpenBCI_GUI.pde
1382 lines (1141 loc) · 46.6 KB
/
OpenBCI_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
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
///////////////////////////////////////////////////////////////////////////////
//
// GUI for controlling the ADS1299-based OpenBCI
//
// Created: Chip Audette, Oct 2013 - May 2014
// Modified: Conor Russomanno & Joel Murphy, August 2014 - Dec 2014
// Modified (v2.0): Conor Russomanno & Joel Murphy (AJ Keller helped too), June 2016
// Modified (v3.0) AJ Keller (Conor Russomanno & Joel Murphy & Wangshu), September 2017
//
// Requires gwoptics graphing library for processing. Built on V0.5.0
// http://www.gwoptics.org/processing/gwoptics_p5lib/
//
// Requires ControlP5 library, but an older one. This will only work
// with the ControlP5 library that is included with this GitHub repository
//
// No warranty. Use at your own risk. Use for whatever you'd like.
//
////////////////////////////////////////////////////////////////////////////////
import ddf.minim.*; // To make sound. Following minim example "frequencyModulation"
import ddf.minim.ugens.*; // To make sound. Following minim example "frequencyModulation"
import java.lang.Math; //for exp, log, sqrt...they seem better than Processing's built-in
import processing.core.PApplet;
import java.util.*; //for Array.copyOfRange()
import java.util.Map.Entry;
import processing.serial.*; //for serial communication to Arduino/OpenBCI
import java.awt.event.*; //to allow for event listener on screen resize
import processing.net.*; // For TCP networking
import grafica.*;
import java.lang.reflect.*; // For callbacks
import java.io.InputStreamReader; // For input
import java.awt.MouseInfo;
import java.lang.Process;
// import java.net.InetAddress; // Used for ping, however not working right now.
import java.util.Random;
import java.awt.Robot; //used for simulating mouse clicks
import java.awt.AWTException;
import netP5.*; // for OSC
import oscP5.*; // for OSC
import hypermedia.net.*; //for UDP
import java.nio.ByteBuffer; //for UDP
import edu.ucsd.sccn.LSL; //for LSL
import java.lang.Object;
import gifAnimation.*;
import java.awt.BorderLayout;
import java.awt.Dimension;
import java.util.Collections;
import java.util.*;
import java.util.concurrent.ThreadLocalRandom;
import java.util.List;
import javax.swing.*;
import javax.swing.JButton;
import java.awt.event.ActionListener;
import java.awt.event.ActionEvent;
import javax.swing.JOptionPane;
import javax.swing.JLabel;
import javax.swing.ImageIcon;
import javax.swing.Timer;
//------------------------------------------------------------------------
// Global Variables & Instances
//------------------------------------------------------------------------
//used to switch between application states
final int SYSTEMMODE_INTROANIMATION = -10;
final int SYSTEMMODE_PREINIT = 0;
final int SYSTEMMODE_MIDINIT = 5;
final int SYSTEMMODE_POSTINIT = 10;
int systemMode = SYSTEMMODE_INTROANIMATION; /* Modes: -10 = intro sequence; 0 = system stopped/control panel setings; 10 = gui; 20 = help guide */
boolean midInit = false;
boolean abandonInit = false;
final int NCHAN_CYTON = 8;
final int NCHAN_CYTON_DAISY = 16;
final int NCHAN_GANGLION = 4;
boolean hasIntroAnimation = true;
PImage cog;
Gif loadingGIF;
Gif loadingGIF_blue;
boolean initSystemThreadLock = false;
// ---- Define variables related to OpenBCI_GUI UDPMarker functionality
UDP udpRX;
//choose where to get the EEG data
final int DATASOURCE_CYTON = 0; // new default, data from serial with Accel data CHIP 2014-11-03
final int DATASOURCE_GANGLION = 1; //looking for signal from OpenBCI board via Serial/COM port, no Aux data
final int DATASOURCE_PLAYBACKFILE = 2; //playback from a pre-recorded text file
final int DATASOURCE_SYNTHETIC = 3; //Synthetically generated data
public int eegDataSource = -1; //default to none of the options
final int INTERFACE_NONE = -1; // Used to indicate no choice made yet on interface
final int INTERFACE_SERIAL = 0; // Used only by cyton
final int INTERFACE_HUB_BLE = 1; // used only by ganglion
final int INTERFACE_HUB_WIFI = 2; // used by both cyton and ganglion
final int INTERFACE_HUB_BLED112 = 3; // used only by ganglion with bled dongle
//here are variables that are used if loading input data from a CSV text file...double slash ("\\") is necessary to make a single slash
String playbackData_fname = "N/A"; //only used if loading input data from a file
// String playbackData_fname; //leave blank to cause an "Open File" dialog box to appear at startup. USEFUL!
float playback_speed_fac = 1.0f; //make 1.0 for real-time. larger for faster playback
int currentTableRowIndex = 0;
Table_CSV playbackData_table;
int nextPlayback_millis = -100; //any negative number
// Initialize boards for constants
Cyton cyton = new Cyton(); //dummy creation to get access to constants, create real one later
Ganglion ganglion = new Ganglion(); //dummy creation to get access to constants, create real one later
// Intialize interface protocols
InterfaceSerial iSerial = new InterfaceSerial();
Hub hub = new Hub(); //dummy creation to get access to constants, create real one later
String openBCI_portName = "N/A"; //starts as N/A but is selected from control panel to match your OpenBCI USB Dongle's serial/COM
int openBCI_baud = 115200; //baud rate from the Arduino
String ganglion_portName = "N/A";
String wifi_portName = "N/A";
String wifi_ipAddress = "192.168.4.1";
final static String PROTOCOL_BLE = "ble";
final static String PROTOCOL_BLED112 = "bled112";
final static String PROTOCOL_SERIAL = "serial";
final static String PROTOCOL_WIFI = "wifi";
////// ---- Define variables related to OpenBCI board operations
//Define number of channels from cyton...first EEG channels, then aux channels
int nchan = NCHAN_CYTON; //Normally, 8 or 16. Choose a smaller number to show fewer on the GUI
int n_aux_ifEnabled = 3; // this is the accelerometer data CHIP 2014-11-03
//define variables related to warnings to the user about whether the EEG data is nearly railed (and, therefore, of dubious quality)
DataStatus is_railed[];
final int threshold_railed = int(pow(2, 23)-1000); //fully railed should be +/- 2^23, so set this threshold close to that value
final int threshold_railed_warn = int(pow(2, 23)*0.9); //set a somewhat smaller value as the warning threshold
//OpenBCI SD Card setting (if eegDataSource == 0)
int sdSetting = 0; //0 = do not write; 1 = 5 min; 2 = 15 min; 3 = 30 min; etc...
String sdSettingString = "Do not write to SD";
//cyton data packet
int nDataBackBuff;
DataPacket_ADS1299 dataPacketBuff[]; //allocate later in InitSystem
int curDataPacketInd = -1;
int curBDFDataPacketInd = -1;
int lastReadDataPacketInd = -1;
//related to sync'ing communiction to OpenBCI hardware?
boolean currentlySyncing = false;
long timeOfLastCommand = 0;
////// ---- End variables related to the OpenBCI boards
// define some timing variables for this program's operation
long timeOfLastFrame = 0;
int newPacketCounter = 0;
long timeOfInit;
long timeSinceStopRunning = 1000;
int prev_time_millis = 0;
// Calculate nPointsPerUpdate based on sampling rate and buffer update rate
// @update_millis: update the buffer every 40 milliseconds
// @nPointsPerUpdate: update the GUI after this many data points have been received.
// The sampling rate should be ideally a multiple of 25, so as to make actual buffer update rate exactly 40ms
final int update_millis = 40;
int nPointsPerUpdate; // no longer final, calculate every time in initSystem
// final int nPointsPerUpdate = 50; //update the GUI after this many data points have been received
// final int nPointsPerUpdate = 24; //update the GUI after this many data points have been received
// final int nPointsPerUpdate = 10; //update the GUI after this many data points have been received
//define some data fields for handling data here in processing
float dataBuffX[]; //define the size later
float dataBuffY_uV[][]; //2D array to handle multiple data channels, each row is a new channel so that dataBuffY[3][] is channel 4
float dataBuffY_filtY_uV[][];
float yLittleBuff[];
float yLittleBuff_uV[][]; //small buffer used to send data to the filters
float accelerometerBuff[][]; // accelerometer buff 500 points
float auxBuff[][];
float data_elec_imp_ohm[];
float displayTime_sec = 5f; //define how much time is shown on the time-domain montage plot (and how much is used in the FFT plot?)
float dataBuff_len_sec = displayTime_sec + 3f; //needs to be wider than actual display so that filter startup is hidden
//variables for writing EEG data out to a file
OutputFile_rawtxt fileoutput_odf;
OutputFile_BDF fileoutput_bdf;
String output_fname;
String fileName = "N/A";
final int OUTPUT_SOURCE_NONE = 0;
final int OUTPUT_SOURCE_ODF = 1; // The OpenBCI CSV Data Format
final int OUTPUT_SOURCE_BDF = 2; // The BDF data format http://www.biosemi.com/faq/file_format.htm
public int outputDataSource = OUTPUT_SOURCE_ODF;
// public int outputDataSource = OUTPUT_SOURCE_BDF;
// Serial output
String serial_output_portName = "/dev/tty.usbmodem1421"; //must edit this based on the name of the serial/COM port
Serial serial_output;
int serial_output_baud = 9600; //baud rate from the Arduino
//Control Panel for (re)configuring system settings
PlotFontInfo fontInfo;
//program constants
boolean isRunning = false;
boolean redrawScreenNow = true;
int openBCI_byteCount = 0;
byte inByte = -1; // Incoming serial data
StringBuilder board_message;
StringBuilder scanning_message;
int dollaBillz;
boolean isGettingPoll = false;
boolean spaceFound = false;
boolean scanningChannels = false;
int hexToInt = 0;
boolean dev = false;
//for screen resizing
boolean screenHasBeenResized = false;
float timeOfLastScreenResize = 0;
float timeOfGUIreinitialize = 0;
int reinitializeGUIdelay = 125;
//Tao's variabiles
int widthOfLastScreen = 0;
int heightOfLastScreen = 0;
//set window size
int win_x = 1024; //window width
int win_y = 768; //window height
PImage logo_blue;
PImage logo_white;
PFont f1;
PFont f2;
PFont f3;
PFont f4;
PFont h1; //large Montserrat
PFont h2; //large/medium Montserrat
PFont h3; //medium Montserrat
PFont h4; //small/medium Montserrat
PFont h5; //small Montserrat
PFont p1; //large Open Sans
PFont p2; //large/medium Open Sans
PFont p3; //medium Open Sans
PFont p15;
PFont p4; //medium/small Open Sans
PFont p13;
PFont p5; //small Open Sans
PFont p6; //small Open Sans
ButtonHelpText buttonHelpText;
//EMG_Widget emg_widget;
// PulseSensor_Widget pulseWidget;
boolean no_start_connection = false;
boolean has_processed = false;
boolean isOldData = false;
int indices = 0;
boolean synthesizeData = false;
int timeOfSetup = 0;
boolean isHubInitialized = false;
boolean isHubObjectInitialized = false;
color bgColor = color(1, 18, 41);
color openbciBlue = color(31, 69, 110);
int COLOR_SCHEME_DEFAULT = 1;
int COLOR_SCHEME_ALTERNATIVE_A = 2;
// int COLOR_SCHEME_ALTERNATIVE_B = 3;
int colorScheme = COLOR_SCHEME_ALTERNATIVE_A;
Process nodeHubby;
int hubPid = 0;
String nodeHubName = "OpenBCIHub";
Robot rob3115;
PApplet ourApplet;
int[] lehmurCode = {0,0,0,0,0,0,0,0,0,0,0,0};
int[] gridList = {0,0,0,0,0,0,0,0,0,0,0,0};
int[] elements = {1,2,3,4,5,6,7,8,9,10,11,12};
int d;
String[] labels = createLabels();
float auxCheck;
//------------------------------------------------------------------------
// Global Functions
//------------------------------------------------------------------------
//========================SETUP============================//
int frameRateCounter = 1; //0 = 24, 1 = 30, 2 = 45, 3 = 60
void setup() {
if (!isWindows()) hubStop(); //kill any existing hubs before starting a new one..
hubInit(); // putting down here gives windows time to close any open apps
println("Welcome to the Processing-based OpenBCI GUI!"); //Welcome line.
println("Last update: 9/5/2016"); //Welcome line.
println("For more information about how to work with this code base, please visit: http://docs.openbci.com/OpenBCI%20Software/");
//open window
size(1024, 768, P2D);
ourApplet = this;
if(frameRateCounter==0){
frameRate(24); //refresh rate ... this will slow automatically, if your processor can't handle the specified rate
}
if(frameRateCounter==1){
frameRate(30); //refresh rate ... this will slow automatically, if your processor can't handle the specified rate
}
if(frameRateCounter==2){
frameRate(45); //refresh rate ... this will slow automatically, if your processor can't handle the specified rate
}
if(frameRateCounter==3){
frameRate(60); //refresh rate ... this will slow automatically, if your processor can't handle the specified rate
}
smooth(); //turn this off if it's too slow
surface.setResizable(true); //updated from frame.setResizable in Processing 2
widthOfLastScreen = width; //for screen resizing (Thank's Tao)
heightOfLastScreen = height;
setupContainers();
//V1 FONTS
f1 = createFont("fonts/Raleway-SemiBold.otf", 16);
f2 = createFont("fonts/Raleway-Regular.otf", 15);
f3 = createFont("fonts/Raleway-SemiBold.otf", 15);
f4 = createFont("fonts/Raleway-SemiBold.otf", 64); // clear bigger fonts for widgets
h1 = createFont("fonts/Montserrat-Regular.otf", 20);
h2 = createFont("fonts/Montserrat-Regular.otf", 18);
h3 = createFont("fonts/Montserrat-Regular.otf", 16);
h4 = createFont("fonts/Montserrat-Regular.otf", 14);
h5 = createFont("fonts/Montserrat-Regular.otf", 12);
p1 = createFont("fonts/OpenSans-Regular.ttf", 20);
p2 = createFont("fonts/OpenSans-Regular.ttf", 18);
p3 = createFont("fonts/OpenSans-Regular.ttf", 16);
p15 = createFont("fonts/OpenSans-Regular.ttf", 15);
p4 = createFont("fonts/OpenSans-Regular.ttf", 14);
p13 = createFont("fonts/OpenSans-Regular.ttf", 13);
p5 = createFont("fonts/OpenSans-Regular.ttf", 12);
p6 = createFont("fonts/OpenSans-Regular.ttf", 10);
//listen for window resize ... used to adjust elements in application
frame.addComponentListener(new ComponentAdapter() {
public void componentResized(ComponentEvent e) {
if (e.getSource()==frame) {
println("OpenBCI_GUI: setup: RESIZED");
screenHasBeenResized = true;
timeOfLastScreenResize = millis();
// initializeGUI();
}
}
}
);
fontInfo = new PlotFontInfo();
helpWidget = new HelpWidget(0, win_y - 30, win_x, 30);
//setup topNav
topNav = new TopNav();
//from the user's perspective, the program hangs out on the ControlPanel until the user presses "Start System".
print("Graphics & GUI Library: ");
controlPanel = new ControlPanel(this);
//The effect of "Start System" is that initSystem() gets called, which starts up the conneciton to the OpenBCI
//hardware (via the "updateSyncState()" process) as well as initializing the rest of the GUI elements.
//Once the hardware is synchronized, the main GUI is drawn and the user switches over to the main GUI.
logo_blue = loadImage("logo_blue.png");
logo_white = loadImage("logo_white.png");
cog = loadImage("cog_1024x1024.png");
loadingGIF = new Gif(this, "OpenBCI-LoadingGIF-2.gif");
loadingGIF.loop();
loadingGIF_blue = new Gif(this, "OpenBCI-LoadingGIF-blue-256.gif");
loadingGIF_blue.loop();
playground = new Playground(navBarHeight);
buttonHelpText = new ButtonHelpText();
myPresentation = new Presentation();
// UDPMarker functionality
// Setup the UDP receiver
int portRX = 51000; // this is the UDP port the application will be listening on
String ip = "127.0.0.1"; // Currently only localhost is supported as UDP Marker source
//create new object for receiving
udpRX=new UDP(this,portRX,ip);
udpRX.setReceiveHandler("udpReceiveHandler");
udpRX.log(true);
udpRX.listen(true);
// Print some useful diagnostics
println("OpenBCI_GUI::Setup: Is RX mulitcast: "+udpRX.isMulticast());
println("OpenBCI_GUI::Setup: Has RX joined multicast: "+udpRX.isJoined());
timeOfSetup = millis(); //keep track of time when setup is finished... used to make sure enough time has passed before creating some other objects (such as the Ganglion instance)
}
//====================== END-OF-SETUP ==========================//
//====================UDP Packet Handler==========================//
// This function handles the received UDP packet
// See the documentation for the Java UDP class here:
// https://ubaa.net/shared/processing/udp/udp_class_udp.htm
String udpReceiveString = null;
void udpReceiveHandler(byte[] data, String ip, int portRX){
String udpString = new String(data);
println(udpString+" from: "+ip+" and port: "+portRX);
if (udpString.length() >=5 && udpString.indexOf("MARK") >= 0){
/* Old version with 10 markers
char c = value.charAt(4);
if ( c>= '0' && c <= '9'){
println("Found a valid UDP STIM of value: "+int(c)+" chr: "+c);
hub.sendCommand("`"+char(c-(int)'0'));
*/
int intValue = Integer.parseInt(udpString.substring(4));
if (intValue > 0 && intValue < 96){ // Since we only send single char ascii value markers (from space to char(126)
String sendString = "`"+char(intValue+31);
println("Marker value: "+udpString+" with numeric value of char("+intValue+") as : "+sendString);
hub.sendCommand(sendString);
} else {
println("udpReceiveHandler::Warning:invalid UDP STIM of value: "+intValue+" Received String: "+udpString);
}
} else {
println("udpReceiveHandler::Warning:invalid UDP marker packet: "+udpString);
}
typeGrid();
}
//======================== DRAW LOOP =============================//
void draw() {
drawLoop_counter++; //signPost("10");
systemUpdate(); //signPost("20");
systemDraw(); //signPost("30");
}
//====================== END-OF-DRAW ==========================//
/**
* This allows us to kill the running node process on quit.
*/
private void prepareExitHandler () {
Runtime.getRuntime().addShutdownHook(new Thread(new Runnable() {
public void run () {
System.out.println("SHUTDOWN HOOK");
try {
if (hubStop()) {
System.out.println("SHUTDOWN HUB");
} else {
System.out.println("FAILED TO SHUTDOWN HUB");
}
}
catch (Exception ex) {
ex.printStackTrace(); // not much else to do at this point
}
}
}
));
}
/**
* Starts the hub and sets prepares the exit handler.
*/
void hubInit() {
isHubInitialized = true;
if (!isWindows()) {
hubStart();
prepareExitHandler();
}
}
/**
* Starts the node hub working, tested on mac and windows.
*/
void hubStart() {
println("Launching application from local data dir");
try {
// https://forum.processing.org/two/discussion/13053/use-launch-for-applications-kept-in-data-folder
if (isWindows()) {
println("OpenBCI_GUI: hubStart: OS Detected: Windows");
nodeHubby = launch(dataPath("OpenBCIHub.exe"));
} else if (isLinux()) {
println("OpenBCI_GUI: hubStart: OS Detected: Linux");
nodeHubby = exec(dataPath("OpenBCIHub"));
} else {
println("OpenBCI_GUI: hubStart: OS Detected: Mac");
nodeHubby = launch(dataPath("OpenBCIHub.app"));
}
// hubRunning = true;
}
catch (Exception e) {
println("hubStart: " + e);
}
}
/**
* @description Single function to call at the termination program hook.
*/
boolean hubStop() {
if (isWindows()) {
return killRunningprocessWin();
} else {
killRunningProcessMac();
return true;
}
}
/**
* @description Helper function to determine if the system is linux or not.
* @return {boolean} true if os is linux, false otherwise.
*/
private boolean isLinux() {
return System.getProperty("os.name").toLowerCase().indexOf("linux") > -1;
}
/**
* @description Helper function to determine if the system is windows or not.
* @return {boolean} true if os is windows, false otherwise.
*/
private boolean isWindows() {
return System.getProperty("os.name").toLowerCase().indexOf("windows") > -1;
}
/**
* @description Helper function to determine if the system is macOS or not.
* @return {boolean} true if os is windows, false otherwise.
*/
private boolean isMac() {
return !isWindows() && !isLinux();
}
/**
* @description Parses the running process list for processes whose name have ganglion hub, if found, kills them one by one.
* function dubbed "death dealer"
*/
void killRunningProcessMac() {
try {
String line;
Process p = Runtime.getRuntime().exec("ps -e");
BufferedReader input =
new BufferedReader(new InputStreamReader(p.getInputStream()));
while ((line = input.readLine()) != null) {
if (line.contains(nodeHubName)) {
try {
endProcess(getProcessIdFromLineMac(line));
println("Killed: " + line);
}
catch (Exception err) {
println("Failed to stop process: " + line + "\n\n");
err.printStackTrace();
}
}
}
input.close();
}
catch (Exception err) {
err.printStackTrace();
}
}
/**
* @description Parses the running process list for processes whose name have ganglion hub, if found, kills them one by one.
* function dubbed "death dealer" aka "cat killer"
*/
boolean killRunningprocessWin() {
try {
Runtime.getRuntime().exec("taskkill /F /IM OpenBCIHub.exe");
return true;
}
catch (Exception err) {
err.printStackTrace();
return false;
}
}
/**
* @description Parses a mac process line and grabs the pid, the first component.
* @return {int} the process id
*/
int getProcessIdFromLineMac(String line) {
line = trim(line);
String[] components = line.split(" ");
return Integer.parseInt(components[0]);
}
void endProcess(int pid) {
Runtime rt = Runtime.getRuntime();
try {
rt.exec("kill -9 " + pid);
}
catch (IOException err) {
err.printStackTrace();
}
}
int pointCounter = 0;
int prevBytes = 0;
int prevMillis = millis();
int byteRate_perSec = 0;
int drawLoop_counter = 0;
//used to init system based on initial settings...Called from the "Start System" button in the GUI's ControlPanel
void setupWidgetManager() {
wm = new WidgetManager(this);
}
void initSystem() {
println();
println();
println("=================================================");
println("|| INITIALIZING SYSTEM ||");
println("=================================================");
println();
verbosePrint("OpenBCI_GUI: initSystem: -- Init 0 -- " + millis());
timeOfInit = millis(); //store this for timeout in case init takes too long
verbosePrint("timeOfInit = " + timeOfInit);
//prepare data variables
verbosePrint("OpenBCI_GUI: initSystem: Preparing data variables...");
if (eegDataSource == DATASOURCE_PLAYBACKFILE) {
//open and load the data file
println("OpenBCI_GUI: initSystem: loading playback data from " + playbackData_fname);
try {
playbackData_table = new Table_CSV(playbackData_fname);
playbackData_table.removeColumn(0);
} catch (Exception e) {
println("OpenBCI_GUI: initSystem: could not open file for playback: " + playbackData_fname);
println(" : quitting...");
hub.killAndShowMsg("Could not open file for playback: " + playbackData_fname);
}
println("OpenBCI_GUI: initSystem: loading complete. " + playbackData_table.getRowCount() + " rows of data, which is " + round(float(playbackData_table.getRowCount())/getSampleRateSafe()) + " seconds of EEG data");
//removing first column of data from data file...the first column is a time index and not eeg data
}
verbosePrint("OpenBCI_GUI: initSystem: Initializing core data objects");
// Nfft = getNfftSafe();
nDataBackBuff = 3*(int)getSampleRateSafe();
dataPacketBuff = new DataPacket_ADS1299[nDataBackBuff]; // call the constructor here
nPointsPerUpdate = int(round(float(update_millis) * getSampleRateSafe()/ 1000.f));
dataBuffX = new float[(int)(dataBuff_len_sec * getSampleRateSafe())];
dataBuffY_uV = new float[nchan][dataBuffX.length];
dataBuffY_filtY_uV = new float[nchan][dataBuffX.length];
yLittleBuff = new float[nPointsPerUpdate];
yLittleBuff_uV = new float[nchan][nPointsPerUpdate]; //small buffer used to send data to the filters
auxBuff = new float[3][nPointsPerUpdate];
accelerometerBuff = new float[3][500]; // 500 points
for (int i=0; i<n_aux_ifEnabled; i++) {
for (int j=0; j<accelerometerBuff[0].length; j++) {
accelerometerBuff[i][j] = 0;
}
}
//data_std_uV = new float[nchan];
data_elec_imp_ohm = new float[nchan];
is_railed = new DataStatus[nchan];
for (int i=0; i<nchan; i++) is_railed[i] = new DataStatus(threshold_railed, threshold_railed_warn);
for (int i=0; i<nDataBackBuff; i++) {
dataPacketBuff[i] = new DataPacket_ADS1299(nchan, n_aux_ifEnabled);
}
dataProcessing = new DataProcessing(nchan, getSampleRateSafe());
dataProcessing_user = new DataProcessing_User(nchan, getSampleRateSafe());
//initialize the data
prepareData(dataBuffX, dataBuffY_uV, getSampleRateSafe());
verbosePrint("OpenBCI_GUI: initSystem: -- Init 1 -- " + millis());
verbosePrint("OpenBCI_GUI: initSystem: Initializing FFT data objects");
//initialize the FFT objects
for (int Ichan=0; Ichan < nchan; Ichan++) {
// verbosePrint("Init FFT Buff – " + Ichan);
fftBuff[Ichan] = new FFT(getNfftSafe(), getSampleRateSafe());
} //make the FFT objects
initializeFFTObjects(fftBuff, dataBuffY_uV, getNfftSafe(), getSampleRateSafe());
//prepare some signal processing stuff
//for (int Ichan=0; Ichan < nchan; Ichan++) { detData_freqDomain[Ichan] = new DetectionData_FreqDomain(); }
verbosePrint("OpenBCI_GUI: initSystem: -- Init 2 -- " + millis());
verbosePrint("OpenBCI_GUI: initSystem: Closing ControlPanel...");
controlPanel.close();
topNav.controlPanelCollapser.setIsActive(false);
verbosePrint("OpenBCI_GUI: initSystem: Initializing comms with hub....");
hub.changeState(STATE_COMINIT);
// hub.searchDeviceStop();
//prepare the source of the input data
switch (eegDataSource) {
case DATASOURCE_CYTON:
int nEEDataValuesPerPacket = nchan;
boolean useAux = true;
if (cyton.getInterface() == INTERFACE_SERIAL) {
cyton = new Cyton(this, openBCI_portName, openBCI_baud, nEEDataValuesPerPacket, useAux, n_aux_ifEnabled, cyton.getInterface()); //this also starts the data transfer after XX seconds
} else {
if (hub.getWiFiStyle() == WIFI_DYNAMIC) {
cyton = new Cyton(this, wifi_portName, openBCI_baud, nEEDataValuesPerPacket, useAux, n_aux_ifEnabled, cyton.getInterface()); //this also starts the data transfer after XX seconds
} else {
cyton = new Cyton(this, wifi_ipAddress, openBCI_baud, nEEDataValuesPerPacket, useAux, n_aux_ifEnabled, cyton.getInterface()); //this also starts the data transfer after XX seconds
}
}
break;
case DATASOURCE_SYNTHETIC:
//do nothing
break;
case DATASOURCE_PLAYBACKFILE:
break;
case DATASOURCE_GANGLION:
if (ganglion.getInterface() == INTERFACE_HUB_BLE || ganglion.getInterface() == INTERFACE_HUB_BLED112) {
hub.connectBLE(ganglion_portName);
} else {
if (hub.getWiFiStyle() == WIFI_DYNAMIC) {
hub.connectWifi(wifi_portName);
} else {
hub.connectWifi(wifi_ipAddress);
}
}
break;
default:
break;
}
verbosePrint("OpenBCI_GUI: initSystem: -- Init 3 -- " + millis());
if (abandonInit) {
haltSystem();
println("Failed to connect to data source... 1");
outputError("Failed to connect to data source fail point 1");
} else {
println(" 3a -- " + millis());
//initilize the GUI
// initializeGUI(); //will soon be destroyed... and replaced with ... wm = new WidgetManager(this);
topNav.initSecondaryNav();
println(" 3b -- " + millis());
//open data file
if (eegDataSource == DATASOURCE_CYTON) openNewLogFile(fileName); //open a new log file
if (eegDataSource == DATASOURCE_GANGLION) openNewLogFile(fileName); // println("open ganglion output file");
// wm = new WidgetManager(this);
setupWidgetManager();
if (!abandonInit) {
println(" 3c -- " + millis());
// setupGUIWidgets(); //####
nextPlayback_millis = millis(); //used for synthesizeData and readFromFile. This restarts the clock that keeps the playback at the right pace.
w_timeSeries.hsc.loadDefaultChannelSettings();
if (eegDataSource != DATASOURCE_GANGLION && eegDataSource != DATASOURCE_CYTON) {
systemMode = SYSTEMMODE_POSTINIT; //tell system it's ok to leave control panel and start interfacing GUI
}
if (!abandonInit) {
controlPanel.close();
} else {
haltSystem();
println("Failed to connect to data source... 2");
// output("Failed to connect to data source...");
}
} else {
haltSystem();
println("Failed to connect to data source... 3");
// output("Failed to connect to data source...");
}
}
verbosePrint("OpenBCI_GUI: initSystem: -- Init 4 -- " + millis());
//reset init variables
midInit = false;
abandonInit = false;
}
/**
* @description Useful function to get the correct sample rate based on data source
* @returns `float` - The frequency / sample rate of the data source
*/
float getSampleRateSafe() {
if (eegDataSource == DATASOURCE_GANGLION) {
return ganglion.getSampleRate();
} else if (eegDataSource == DATASOURCE_CYTON){
return cyton.getSampleRate();
} else if (eegDataSource == DATASOURCE_PLAYBACKFILE) {
return playbackData_table.getSampleRate();
} else {
return 250;
}
}
/**
* @description Get the correct points of FFT based on sampling rate
* @returns `int` - Points of FFT. 125Hz, 200Hz, 250Hz -> 256points. 1000Hz -> 1024points. 1600Hz -> 2048 points.
*/
int getNfftSafe() {
int sampleRate = (int)getSampleRateSafe();
switch (sampleRate) {
case 1000:
return 1024;
case 1600:
return 2048;
case 125:
case 200:
case 250:
default:
return 256;
}
}
void startRunning() {
verbosePrint("startRunning...");
output("Data stream started.");
if (eegDataSource == DATASOURCE_GANGLION) {
if (ganglion != null) {
ganglion.startDataTransfer();
}
} else {
if (cyton != null) {
println("DEBUG: start data transfer");
cyton.startDataTransfer();
}
}
isRunning = true;
}
void stopRunning() {
// openBCI.changeState(0); //make sure it's no longer interpretting as binary
verbosePrint("OpenBCI_GUI: stopRunning: stop running...");
if (isRunning) {
output("Data stream stopped.");
}
if (eegDataSource == DATASOURCE_GANGLION) {
if (ganglion != null) {
ganglion.stopDataTransfer();
}
} else {
if (cyton != null) {
cyton.stopDataTransfer();
}
}
timeSinceStopRunning = millis(); //used as a timer to prevent misc. bytes from flooding serial...
isRunning = false;
// openBCI.changeState(0); //make sure it's no longer interpretting as binary
// systemMode = 0;
// closeLogFile();
}
//execute this function whenver the stop button is pressed
void stopButtonWasPressed() {
//toggle the data transfer state of the ADS1299...stop it or start it...
if (isRunning) {
verbosePrint("openBCI_GUI: stopButton was pressed...stopping data transfer...");
wm.setUpdating(false);
stopRunning();
topNav.stopButton.setString(topNav.stopButton_pressToStart_txt);
topNav.stopButton.setColorNotPressed(color(184, 220, 105));
if (eegDataSource == DATASOURCE_GANGLION && ganglion.isCheckingImpedance()) {
ganglion.impedanceStop();
w_ganglionImpedance.startStopCheck.but_txt = "Start Impedance Check";
}
} else { //not running
verbosePrint("openBCI_GUI: startButton was pressed...starting data transfer...");
wm.setUpdating(true);
startRunning();
topNav.stopButton.setString(topNav.stopButton_pressToStop_txt);
topNav.stopButton.setColorNotPressed(color(224, 56, 45));
nextPlayback_millis = millis(); //used for synthesizeData and readFromFile. This restarts the clock that keeps the playback at the right pace.
if (eegDataSource == DATASOURCE_GANGLION && ganglion.isCheckingImpedance()) {
ganglion.impedanceStop();
w_ganglionImpedance.startStopCheck.but_txt = "Start Impedance Check";
}
}
}
//halt the data collection
void haltSystem() {
println("openBCI_GUI: haltSystem: Halting system for reconfiguration of settings...");
if (initSystemButton.but_txt == "STOP SYSTEM") {
initSystemButton.but_txt = "START SYSTEM";
}
stopRunning(); //stop data transfer
if(cyton.isPortOpen()) {
if (w_pulsesensor.analogReadOn) {
hub.sendCommand("/0");
println("Stopping Analog Read to read accelerometer");
w_pulsesensor.analogModeButton.setString("Turn Analog Read On");
w_pulsesensor.analogReadOn = false;
}
}
//reset variables for data processing
curDataPacketInd = -1;
lastReadDataPacketInd = -1;
pointCounter = 0;
currentTableRowIndex = 0;
prevBytes = 0;
prevMillis = millis();
byteRate_perSec = 0;
drawLoop_counter = 0;
// eegDataSource = -1;
//set all data source list items inactive
//reset connect loadStrings
openBCI_portName = "N/A"; // Fixes inability to reconnect after halding JAM 1/2017
ganglion_portName = "N/A";
wifi_portName = "N/A";
controlPanel.resetListItems();
if (eegDataSource == DATASOURCE_CYTON) {
closeLogFile(); //close log file
cyton.closeSDandPort();
}
if (eegDataSource == DATASOURCE_GANGLION) {
if(ganglion.isCheckingImpedance()){
ganglion.impedanceStop();
w_ganglionImpedance.startStopCheck.but_txt = "Start Impedance Check";
}
closeLogFile(); //close log file
ganglion.closePort();
}
systemMode = SYSTEMMODE_PREINIT;
hub.changeState(STATE_NOCOM);
abandonInit = false;
bleList.items.clear();
wifiList.items.clear();
// TODO: Comment this back in
// if (ganglion.isBLE() || ganglion.isWifi() || cyton.isWifi()) {
// hub.searchDeviceStart();
// }
}
void delayedInit() {
// Initialize a plot
GPlot plot = new GPlot(this);
}
void systemUpdate() { // for updating data values and variables
if (isHubInitialized && isHubObjectInitialized == false && millis() - timeOfSetup >= 1500) {
hub = new Hub(this);
println("Instantiating hub object...");