-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathWaveformsView.m
2046 lines (1851 loc) · 67.5 KB
/
WaveformsView.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
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
//
// WaveformsView.m
// FeatureViewer
//
// Created by Grogee on 10/3/10.
// Copyright 2010 __MyCompanyName__. All rights reserved.
//
#import "WaveformsView.h"
#ifndef MIN
#define MIN(a,b) ((a)>(b)?(b):(a))
#endif
#define PI 3.141516
@implementation WaveformsView
@synthesize highlightWaves;
@synthesize highlightedChannels;
@synthesize shouldDrawLabels;//,drawMean,drawStd;
@synthesize overlay;
@synthesize wfMean, wfStd;
-(void)awakeFromNib
{
wfDataloaded = NO;
shouldDrawLabels = NO;
drawMean = YES;
drawStd = YES;
//register for defaults updates
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveNotification:) name: NSUserDefaultsDidChangeNotification object:nil];
}
-(BOOL)acceptsFirstResponder
{
return YES;
}
+(NSOpenGLPixelFormat*) defaultPixelFormat
{
NSOpenGLPixelFormatAttribute attrs[] =
{
NSOpenGLPFAAllRenderers,YES,
NSOpenGLPFADoubleBuffer, YES,
NSOpenGLPFAColorSize, 24,
NSOpenGLPFAAlphaSize, 8,
NSOpenGLPFADepthSize, 16,
0
};
NSOpenGLPixelFormat *pixelFormat = [[NSOpenGLPixelFormat alloc] initWithAttributes:attrs];
return pixelFormat;
}
-(id) initWithFrame:(NSRect)frameRect
{
return [self initWithFrame:frameRect pixelFormat: [WaveformsView defaultPixelFormat]];
}
-(id) initWithFrame:(NSRect)frameRect pixelFormat:(NSOpenGLPixelFormat*)format
{
self = [super initWithFrame:frameRect];
if( self != nil)
{
_pixelFormat = [format retain];
[self setOpenGLContext: [[NSOpenGLContext alloc] initWithFormat:format shareContext:nil]];
[[self openGLContext] makeCurrentContext];
[[NSNotificationCenter defaultCenter] addObserver: self
selector:@selector(_surfaceNeedsUpdate:)
name: NSViewGlobalFrameDidChangeNotification object: self];
//[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(receiveNotification:)
// name:@"highlight" object:nil];
}
return self;
}
-(void) _surfaceNeedsUpdate:(NSNotification*)notification
{
[self update];
}
-(void) lockFocus
{
NSOpenGLContext *context = [self openGLContext];
[super lockFocus];
if( [context view] != self )
{
[context setView:self];
}
[context makeCurrentContext];
}
-(BOOL) isOpaque
{
return YES;
}
-(void) setOpenGLContext:(NSOpenGLContext *)context
{
_oglContext = [context retain];
}
-(NSOpenGLContext*)openGLContext
{
return _oglContext;
}
-(void)clearGLContext
{
[[self openGLContext] makeCurrentContext];
[NSOpenGLContext clearCurrentContext];
//[[self openGLContext] release];
}
-(void)setPixelFormat:(NSOpenGLPixelFormat *)pixelFormat
{
_pixelFormat = [pixelFormat retain];
}
-(NSOpenGLPixelFormat*)pixelFormat
{
return _pixelFormat;
}
-(void)update
{
if( [[self openGLContext] view] == self)
{
[self reshape];
[[self openGLContext] update];
//TODO: Something happens here; somehow the view doesn't get upated properly when the window is resized.
//[[self openGLContext] flushBuffer];
}
}
-(void) createVertices: (NSData*)vertex_data withNumberOfWaves: (NSUInteger)nwaves channels: (NSUInteger)channels andTimePoints: (NSUInteger)timepoints andColor: (NSData*)color andOrder: (NSData*)order;
{
unsigned int prevOffset;
unsigned int _timepts,_timestep;
_timepts = timepoints;
_timestep = 1;
dispatch_queue_t queue;
//setup the dispatch queue
queue = dispatch_get_global_queue(DISPATCH_QUEUE_PRIORITY_DEFAULT, 0);
numSpikesAtLeastMean = nwaves;
//define blocks to handle down-sampled data
void (^warp)(float *input,size_t n, float *output);
if( nwaves*channels*timepoints > 10000000 )
{
_timestep = 4;
_timepts = _timepts/_timestep;
//average
warp = ^(float *input, size_t n,float *output){
int i;
for(i=0;i<n;i++)
{
*output+=input[i];
}
*output/=n;
};
/*
//peak
warp = ^(float *input,size_t n, float *output){
int i;
float mx,mi;
mx = -INFINITY;
mi = INFINITY;
for(i=0;i<n;i++)
{
mx = MAX(mx,output[i]);
mi = MIN(mi,output[i]);
}
output[0] = mi;
output[1] = mx;
};*/
}
else
{
warp = ^(float *input, size_t n, float *output){
int i;
for(i=0;i<n;i++)
{
output[i] = input[i];
}
};
}
wavesize = channels*_timepts;
waveIndexSize = channels*(2*_timepts-2);
//+3 to make room for mean waveform and +/- std
//nWfIndices = nwaves+3;
/*
if (drawMean)
wfIndices+=1;
if (drawStd)
wfIndices +=2;
*/
prevOffset = 0;
//nWfIndices *= wavesize;
if([self overlay] )
{
prevOffset = nWfVertices;
nWfVertices+=(nwaves+3)*wavesize;
num_spikes += nwaves;
orig_num_spikes += nwaves;
}
else
{
nWfVertices = (nwaves+3)*wavesize;
//reset min/max only if we are not doing overlay
wfMinmax = calloc(6,sizeof(float));
chMinMax = NSZoneCalloc([self zone], 2*chs, sizeof(float));
num_spikes = nwaves;
orig_num_spikes = nwaves;
}
chs = channels;
timepts = _timepts;
//create an index that will tell us which waveforms are active
waveformIndices = [[NSMutableIndexSet indexSetWithIndexesInRange:NSMakeRange(0, num_spikes)] retain];
//reset highlights
if([self highlightWaves] != NULL)
{
[[self highlightWaves] setLength:0];
[self setHighlightWaves:NULL];
}
if ((wfDataloaded) && (wfVertices != NULL ) )
{
wfVertices = realloc(wfVertices, nWfVertices*3*sizeof(GLfloat));
}
else{
wfVertices = malloc(nWfVertices*3*sizeof(GLfloat));
}
highlightWave = -1;
float *tmp = (float*)[vertex_data bytes];
//int i,j,k;
//3 dimensions X 2
channelHop = 10;
if( order == NULL )
{
//for(i=0;i<nwaves;i++)
dispatch_apply(nwaves, queue, ^(size_t i){
int j,k;
unsigned int in_offset,out_offset = 0;
//unsigned int moffset = 0;
//unsigned int stdoffset = 0;
//{
for(j=0;j<channels;j++)
{
for(k=0;k<_timepts;k++)
{
in_offset = ((i*channels+j)*timepoints + k*_timestep);
out_offset = ((i*channels+j)*_timepts + k)+prevOffset;
//moffset = ((nwaves*channels+j)*_timepts + k)+prevOffset;
//stdoffset = (((nwaves+1)*channels+j)*_timepts + k)+prevOffset;
//x
wfVertices[3*out_offset] = j*(_timepts+channelHop)+k+channelHop;
//y
//wfVertices[3*out_offset+1] = tmp[in_offset];
warp(tmp+in_offset,_timestep,wfVertices+3*out_offset+1);
//z
wfVertices[3*out_offset+2] = -1.0;//-(1.0+dz*i);//-(i+1);
//compute the mean, placing it after all the other waves
//this line is strictly not necessary
/*
wfVertices[3*moffset] = wfVertices[3*offset];
wfVertices[3*moffset+1] =(i*(wfVertices[3*moffset+1])+tmp[offset-prevOffset])/(i+1);
wfVertices[3*moffset+2] = 1.0;
//compute x*x and place it as the last waveform
wfVertices[3*stdoffset] = wfVertices[3*offset];
wfVertices[3*stdoffset+1] =(i*(wfVertices[3*stdoffset+1])+(tmp[offset-prevOffset])*(tmp[offset-prevOffset]))/(i+1);
wfVertices[3*stdoffset+2] = 1.0;
*/
//compute max/min per channel
if ( tmp[in_offset] < chMinMax[2*j] )
{
chMinMax[2*j] = tmp[in_offset];
}
else if ( tmp[in_offset] > chMinMax[2*j+1] )
{
chMinMax[2*j+1] = tmp[in_offset];
}
}
}
});
}
else
{
unsigned int* reorder_index = (unsigned int*)[order bytes];
dispatch_apply(nwaves, queue, ^(size_t i) {
int j,k;
unsigned int in_offset,out_offset = 0;
// unsigned int moffset = 0;
//unsigned int stdoffset = 0;
//for(i=0;i<nwaves;i++)
//{
for(j=0;j<channels;j++)
{
for(k=0;k<_timepts;k++)
{
in_offset = ((i*channels+reorder_index[j])*timepoints + k*_timestep);
out_offset = ((i*channels+reorder_index[j])*_timepts + k) + prevOffset;
//don't reorder mean and std
//moffset = ((nwaves*channels+j)*_timepts + k) + prevOffset;
//stdoffset = (((nwaves+1)*channels+j)*_timepts + k) + prevOffset;
//x
//TODO: For peak to work here, I need to replicate the x-value to both min/max
wfVertices[3*out_offset] = j*(_timepts+channelHop)+k+channelHop;
//y
wfVertices[3*out_offset+1] = tmp[in_offset];
//z
wfVertices[3*out_offset+2] = -1.0;//-(1.0+dz*i);//-(i+1);
//mean
//this line is strictly not necessary
//wfVertices[3*moffset] = wfVertices[3*offset];
//wfVertices[3*moffset+1] =(i*(wfVertices[3*moffset+1])+tmp[offset-prevOffset])/(i+1);
//wfVertices[3*moffset+2] = 1.0;
//std
//compute x*x and place it as the last waveform
//wfVertices[3*stdoffset] = wfVertices[3*offset];
//wfVertices[3*stdoffset+1] =(i*(wfVertices[3*stdoffset+1])+(tmp[offset-prevOffset])*(tmp[offset-prevOffset]))/(i+1);
//wfVertices[3*stdoffset+2] = 1.0;
//compute max/min per channel
if ( tmp[in_offset] < chMinMax[2*j] )
{
chMinMax[2*j] = tmp[in_offset];
}
else if ( tmp[in_offset] > chMinMax[2*j+1] )
{
chMinMax[2*j+1] = tmp[in_offset];
}
}
}
});
}
//compute mean and standard deviation separately;
float *_mean = malloc(wavesize*sizeof(float));
float *_std = malloc(wavesize*sizeof(float));
int i,j;
float *m,*msq;
for(i=0;i<channels;i++)
{
for(j=0;j<_timepts;j++)
{
//compute mean
m = wfVertices + nwaves*3*channels*_timepts + 3*(i*_timepts+j)+1+prevOffset;
vDSP_meanv(wfVertices+3*(i*_timepts+j)+1+prevOffset, 3*channels*_timepts, m, nwaves);
_mean[i*_timepts+j] = *m;
//compute mean square
msq = wfVertices + (nwaves+2)*3*channels*_timepts + 3*(i*_timepts+j)+1 + prevOffset;
vDSP_measqv(wfVertices+3*(i*_timepts+j)+1+prevOffset, 3*channels*_timepts, msq, nwaves);
//substract the square of the mean
*msq = *msq-(*m)*(*m);
//take the square root and add back the mean
*msq = sqrt(*msq);
_std[i*_timepts+j] = *msq;
wfVertices[3*((nwaves+1)*channels*_timepts+i*_timepts+j)+1+prevOffset] = *m- (*msq)*1.96;
*msq = *m+(*msq)*1.96;
//also set the x and z-components
wfVertices[3*((nwaves+2)*wavesize+i*_timepts+j)+prevOffset] = wfVertices[3*(nwaves*wavesize+i*_timepts+j)+prevOffset];
wfVertices[3*((nwaves+2)*wavesize+i*_timepts+j)+2+prevOffset] = wfVertices[3*(nwaves*wavesize+i*_timepts+j)+2+prevOffset];
wfVertices[3*((nwaves+1)*wavesize+i*_timepts+j) + prevOffset] = wfVertices[3*(nwaves*wavesize+i*_timepts+j)+prevOffset];
wfVertices[3*((nwaves+1)*wavesize+i*_timepts+j)+2+prevOffset] = wfVertices[3*(nwaves*wavesize+i*_timepts+j)+2+prevOffset];
}
}
if(wfMean == NULL)
{
wfMean = [[NSMutableData dataWithBytes:_mean length:wavesize*sizeof(float)] retain];
}
else
{
[wfMean replaceBytesInRange:NSMakeRange(0, wavesize*sizeof(float)) withBytes:_mean];
}
if(wfStd == NULL )
{
wfStd = [[NSMutableData dataWithBytes:_std length:wavesize*sizeof(float)] retain];
}
else
{
[wfStd replaceBytesInRange:NSMakeRange(0, wavesize*sizeof(float)) withBytes:_std];
}
free(_mean);
free(_std);
//determine max/min
float *tmp_ymax = malloc(num_spikes*sizeof(float));
float *tmp_ymin = malloc(num_spikes*sizeof(float));
float ymaxmin,yminmax,yminrange;
//dispatch_apply(num_spikes, queue, ^(size_t i)
//int i;
for(i=0;i<num_spikes;i++)
{
//compute maximum and minimum y for each wave
vDSP_maxv(wfVertices+i*3*wavesize+1, 3, tmp_ymax+i, wavesize);
vDSP_minv(wfVertices+i*3*wavesize+1, 3, tmp_ymin+i, wavesize);
}//);
//determine overall maximum
vDSP_maxv(tmp_ymax, 1, wfMinmax+3, num_spikes);
vDSP_minv(tmp_ymin, 1, wfMinmax+2, num_spikes);
vDSP_maxv(tmp_ymin, 1, &yminmax, num_spikes);
vDSP_minv(tmp_ymax, 1, &ymaxmin, num_spikes);
yminrange = (ymaxmin-yminmax);
wfMinmax[0] = 0;
wfMinmax[1] = channels*(_timepts+channelHop);
xmin = 0;
xmax = wfMinmax[1];
wfMinmax[4] = -1.0;//0.1;
wfMinmax[5] = 1.0;//100;//nwaves+2;
ymin = wfMinmax[2];
ymax = wfMinmax[3];
//sort the waveform z-value by using the y-value, the rationale being that we don't want to low amplitude waveforms to be hidden by the large amplitude ones. This is especially important when doing overlay
//dispatch_apply(num_spikes, queue, ^(size_t i)
for(i=0;i<num_spikes;i++)
{
float z;
z = -2*((tmp_ymax[i]-tmp_ymin[i])-yminrange)/((ymax-ymin)-yminrange)+1.0;
vDSP_vfill(&z, wfVertices+i*3*wavesize+2, 3, wavesize);
}//);
free(tmp_ymax);
free(tmp_ymin);
//create indices
//here we have to be a bit clever; if we want to draw as lines, every vertex will be connected
//However, since we are drawing waveforms across channels, we need to separate waveforms on each
//channel. We do this by modifying the indices. We will use GL_LINE_STRIP, which will connect every other index
//i.e. 1-2, 3-4,5-6,etc..
//for this we need to know how many channels, as well as how many points per channel
//each channel will have 2*pointsPerChannel-2 points
unsigned int pointsPerChannel = 2*_timepts-2;
//unsigned int offset = 0;
//+3 to accommodate mean waveform and +/- std
if([self overlay])
{
prevOffset = nWfIndices;
nWfIndices+=(nwaves+3)*channels*pointsPerChannel;
}
else
{
nWfIndices = (nwaves+3)*channels*pointsPerChannel;
}
if( (wfDataloaded) && (wfIndices != NULL ))
{
wfIndices = realloc(wfIndices, nWfIndices*sizeof(GLuint));
}
else
{
wfIndices = malloc(nWfIndices*sizeof(GLuint));
}
//for(i=0;i<nwaves+3;i++)
dispatch_apply(nwaves+3, queue, ^(size_t i)
{
int k,j;
unsigned offset;
for(j=0;j<channels;j++)
{
//do the first point seperately, since it's not repeated
offset = (i*channels + j)*pointsPerChannel + prevOffset;
wfIndices[offset] = (i*channels+j)*_timepts;
for(k=1;k<_timepts-1;k++)
{
wfIndices[offset+2*k-1] = (i*channels+j)*_timepts+k;
//replicate the previous index
wfIndices[offset+2*k] = wfIndices[offset+2*k-1];
}
wfIndices[offset+2*_timepts-3] = (i*channels+j)*_timepts + _timepts-1;
}
});
//prevent leakage
if([self overlay] )
{
prevOffset = 3*(nWfVertices-(nwaves+3)*wavesize);
}
if ((wfDataloaded) && (wfColors != NULL))
{
wfColors = realloc(wfColors, nWfVertices*3*sizeof(GLfloat));
}
else {
wfColors = malloc(nWfVertices*3*sizeof(GLfloat));
}
NSOpenGLContext *context = [self openGLContext];
[context makeCurrentContext];
//GLfloat *gcolor = malloc(4*sizeof(GLfloat));
GLfloat *gcolor = (GLfloat*)[color bytes];
/*gcolor[0] = 1.0;
gcolor[1] = 0.85;
gcolor[2] = 0.35;
gcolor[4] = 1.0;*/
[self setColor: color];
//[[self getColor] getRed:gcolor green:gcolor+1 blue:gcolor+2 alpha:gcolor+3];
wfModifyColors(wfColors + prevOffset,gcolor,(nwaves+3)*wavesize);
//free(gcolor);
//push everything to the GPU
wfPushVertices();
//free(wfVertices);
//free(wfColors);
//free(wfIndices);
//draw
//[self highlightWaveform:0];
//wavesize = (2*_timepts-2)*channels;
//check if we are to draw mean and standard deviation;default is yes for both
if( drawStd == NO )
{
drawStd = YES;
[self setDrawStd:NO];
}
if( drawMean == NO )
{
//trick to force a change
drawMean = YES;
[self setDrawMean:NO];
}
[self setNeedsDisplay: YES];
}
-(void)computeMeandAndStd
{
int i,j,k;
float *m,*msq;
float q;
unsigned int timepoints = timepts;
unsigned int channels = chs;
unsigned int nwaves = orig_num_spikes;
unsigned int offset = 0;
float *_mean = malloc(timepoints*channels*sizeof(float));
float *_std = malloc(timepoints*channels*sizeof(float));
NSUInteger *_indices = malloc(num_spikes*sizeof(NSUInteger));
//get the indices
[waveformIndices getIndexes:_indices maxCount:num_spikes inIndexRange:nil];
[[self openGLContext] makeCurrentContext];
glBindBuffer(GL_ARRAY_BUFFER, wfVertexBuffer);
float *_wfVertices = glMapBuffer(GL_ARRAY_BUFFER, GL_READ_WRITE);
for(i=0;i<channels;i++)
{
for(j=0;j<timepoints;j++)
{
//compute mean
m = _wfVertices + nwaves*3*channels*timepoints + 3*(i*timepoints+j)+1;
//vDSP_meanv(_wfVertices+3*(i*timepoints+j)+1, 3*channels*timepoints, m, nwaves);
*m = 0;
//compute mean square
msq = _wfVertices + (nwaves+2)*3*channels*timepoints + 3*(i*timepoints+j)+1;
*msq = 0;
offset = 3*(i*timepoints+j)+1;
for(k=0;k<num_spikes;k++)
{
q =_wfVertices[offset+3*channels*timepoints*_indices[k]];
*m += q;
*msq+=q*q;
}
*m/=num_spikes;
*msq/=num_spikes;
//vDSP_measqv(_wfVertices+3*(i*timepoints+j)+1, 3*channels*timepoints, msq, nwaves);
//substract the square of the mean
*msq = *msq-(*m)*(*m);
//take the square root and add back the mean
*msq = sqrt(*msq);
_wfVertices[3*((nwaves+1)*channels*timepoints+i*timepoints+j)+1] = *m- (*msq)*1.96;
*msq = *m+(*msq)*1.96;
_mean[i*timepoints+j] = *m;
_std[i*timepoints +j] = *msq;
/*
//also set the x and z-components
_wfVertices[3*((nwaves+2)*wavesize+i*timepoints+j)] = _wfVertices[3*(nwaves*wavesize+i*timepoints+j)];
_wfVertices[3*((nwaves+2)*wavesize+i*timepoints+j)+2] = _wfVertices[3*(nwaves*wavesize+i*timepoints+j)+2];
_wfVertices[3*((nwaves+1)*wavesize+i*timepoints+j)] = _wfVertices[3*(nwaves*wavesize+i*timepoints+j)];
_wfVertices[3*((nwaves+1)*wavesize+i*timepoints+j)+2] = _wfVertices[3*(nwaves*wavesize+i*timepoints+j)+2];
*/
}
}
if(wfMean == NULL)
{
wfMean = [[NSMutableData dataWithBytes:_mean length:wavesize*sizeof(float)] retain];
}
else
{
[wfMean replaceBytesInRange:NSMakeRange(0, wavesize*sizeof(float)) withBytes:_mean];
}
if(wfStd == NULL )
{
wfStd = [[NSMutableData dataWithBytes:_std length:wavesize*sizeof(float)] retain];
}
else
{
[wfStd replaceBytesInRange:NSMakeRange(0, wavesize*sizeof(float)) withBytes:_std];
}
free(_mean);
free(_std);
glUnmapBuffer(GL_ARRAY_BUFFER);
}
static void wfPushVertices()
{
//set up index buffer
//int k = 0;
//delete all buffers first
glDeleteBuffers(1, &wfVertexBuffer);
glDeleteBuffers(1, &wfColorBuffer);
glDeleteBuffers(1, &wfVertexBuffer);
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glOrtho(1.05*xmin-0.05*xmax, 1.05*xmax-0.05*xmin, 1.05*wfMinmax[2]-0.05*wfMinmax[3],
1.05*wfMinmax[3]-0.05*wfMinmax[2], 1.05*wfMinmax[4]-0.05*wfMinmax[5], 1.05*wfMinmax[5]-0.05*wfMinmax[4]);
//glFrustum(1.1*wfMinmax[0], 1.1*wfMinmax[1], 1.1*wfMinmax[2], 1.1*wfMinmax[3], 1.1*wfMinmax[5], 1.1*wfMinmax[4]);
glGenBuffers(1,&wfIndexBuffer);
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, wfIndexBuffer);
glBufferData(GL_ELEMENT_ARRAY_BUFFER, nWfIndices*sizeof(GLuint),wfIndices, GL_DYNAMIC_DRAW);
//generate 1 buffer of type wfVertexBuffer
glGenBuffers(1,&wfColorBuffer);
glBindBuffer(GL_ARRAY_BUFFER, wfColorBuffer);
glBufferData(GL_ARRAY_BUFFER, nWfVertices*3*sizeof(GLfloat),wfColors,GL_DYNAMIC_DRAW);
//bind wfVertexBuffer
glGenBuffers(1,&wfVertexBuffer);
glBindBuffer(GL_ARRAY_BUFFER, wfVertexBuffer);
//push data to the current buffer
glBufferData(GL_ARRAY_BUFFER, nWfVertices*3*sizeof(GLfloat), wfVertices, GL_DYNAMIC_DRAW);
GLenum glerror = glGetError();
if(glerror != GL_NO_ERROR)
{
NSLog(@"GL error code %d", glerror);
}
//wfVertices now exist on the GPU so we can free it up
//free(wfVertices);
//wfVertices = NULL;
//create the pixelBuffer as wee
glGenBuffers(1, &wfPixelBuffer);
wfDataloaded = YES;
}
static void wfModifyColors(GLfloat *color_data,GLfloat *gcolor, unsigned int n)
{
int i;
for(i=0;i<n;i++)
{
color_data[3*i] = gcolor[0];//use_colors[3*cids[i+1]];
color_data[3*i+1] = gcolor[1];//use_colors[3*cids[i+1]+1];
color_data[3*i+2] = gcolor[2];//use_colors[3*cids[i+1]+2];
}
//change mean color
unsigned int offset = 0;
for(i=0;i<wavesize;i++)
{
offset = 3*(n-3*wavesize+i);
color_data[offset] = 1.0-0.5*gcolor[0];
color_data[offset+1] = 1.0-0.5*gcolor[1];
color_data[offset+2] = 1.0-0.5*gcolor[2];
offset = 3*(n-2*wavesize+i);
color_data[offset] = 1.0-0.5*gcolor[0];
color_data[offset+1] = 1.0-0.5*gcolor[1];
color_data[offset+2] = 1.0-0.5*gcolor[2];
offset = 3*(n-wavesize+i);
color_data[offset] = 1.0-0.5*gcolor[0];
color_data[offset+1] = 1.0-0.5*gcolor[1];
color_data[offset+2] = 1.0-0.5*gcolor[2];
}
}
-(void) highlightChannels:(NSArray*)channels
{
[[self openGLContext] makeCurrentContext];
}
-(void) highlightWaveforms:(NSData*)wfidx
{
//first wheck if window is visible
if([[self window] isVisible ]== NO )
{
//do nothing
return;
}
//wfidx must be in cluster coordinates and not refer to wfVertices
//if nothing changed, return
if([wfidx isEqual:highlightWaves] )
{
return;
}
unsigned int* _points = (unsigned int*)[wfidx bytes];
unsigned int _npoints = [wfidx length]/sizeof(unsigned int);
GLfloat zvalue;
[[self openGLContext] makeCurrentContext];
glBindBuffer(GL_ARRAY_BUFFER, wfVertexBuffer);
GLfloat *_data = (GLfloat*)glMapBuffer(GL_ARRAY_BUFFER, GL_WRITE_ONLY);
unsigned int idx,i;
unsigned int* _hpoints;
unsigned int _nhpoints;
NSUInteger* _indexes = malloc(num_spikes*sizeof(NSUInteger));
[waveformIndices getIndexes:_indexes maxCount:num_spikes inIndexRange:nil];
if( highlightWaves != NULL )
{
_hpoints = (unsigned int*)[highlightWaves bytes];
_nhpoints = [highlightWaves length]/sizeof(unsigned int);
for(i=0;i<_nhpoints;i++)
{
//need to reset z-value of previously highlighted waveform
//idx = _hpoints[i];
//TODO: we should be able to do without this check
if( _hpoints[i] < orig_num_spikes )
{
idx = _indexes[_hpoints[i]];
//zvalue = -1.0;
zvalue = wfVertices[idx*timepts*chs*3+2];
vDSP_vfill(&zvalue,_data+(idx*timepts*chs*3)+2,3,timepts*chs);
}
}
//alternative way of doing this, since we have an index set
}
zvalue = 1.1;
//set the z-value
for(i=0;i<_npoints;i++)
{
//idx = _points[i];
idx = _indexes[_points[i]];
//check that the point is valid
if( idx < orig_num_spikes )
{
vDSP_vfill(&zvalue,_data+(idx*timepts*chs*3)+2,3,timepts*chs);
}
}
glUnmapBuffer(GL_ARRAY_BUFFER);
glBindBuffer(GL_ARRAY_BUFFER, wfColorBuffer);
GLfloat *_colors = (GLfloat*)glMapBuffer(GL_ARRAY_BUFFER, GL_READ_WRITE);
GLfloat dcolor;
if( highlightWaves != NULL )
{
//unsigned int* _hpoints = (unsigned int*)[NSData bytes];
//unsigned int _nhpoints = [wfidx length]/sizeof(unsigned int);
for(i=0;i<_nhpoints;i++)
{
//idx = _hpoints[i];
if(_hpoints[i] >= orig_num_spikes)
continue;
idx = _indexes[_hpoints[i]];
dcolor = 1-_colors[idx*wavesize*3];
vDSP_vfill(&dcolor,_colors+(idx*wavesize*3),3,wavesize);
dcolor = 1-_colors[idx*wavesize*3+1];
vDSP_vfill(&dcolor,_colors+(idx*wavesize*3)+1,3,wavesize);
dcolor = 1-_colors[idx*wavesize*3+2];
vDSP_vfill(&dcolor,_colors+(idx*wavesize*3)+2,3,wavesize);
}
}
//find the complement
/*
GLfloat *hcolor = malloc(4*sizeof(GLfloat));
hcolor[0] = 1.0-dcolor[0];
hcolor[1] = 1.0-dcolor[1];
hcolor[2] = 1.0-dcolor[2];
*/
for(i=0;i<_npoints;i++)
{
//idx = _points[i];
if(_points[i]>= orig_num_spikes)
continue;
idx = _indexes[_points[i]];
if (idx < orig_num_spikes )
{
dcolor = 1-_colors[idx*wavesize*3];
vDSP_vfill(&dcolor,_colors+(idx*wavesize*3),3,wavesize);
dcolor = 1-_colors[idx*wavesize*3+1];
vDSP_vfill(&dcolor,_colors+(idx*wavesize*3)+1,3,wavesize);
dcolor = 1-_colors[idx*wavesize*3+2];
vDSP_vfill(&dcolor,_colors+(idx*wavesize*3)+2,3,wavesize);
}
}
if(highlightWaves != NULL)
{
[[self highlightWaves] setData: wfidx];
}
else
{
[self setHighlightWaves:[NSMutableData dataWithData:wfidx]];
}
free(_indexes);
glUnmapBuffer(GL_ARRAY_BUFFER);
[self setNeedsDisplay:YES];
}
-(void) highlightWaveform:(NSUInteger)wfidx
{
NSOpenGLContext *context = [self openGLContext];
[context makeCurrentContext];
//GLfloat zvalue = -(float)num_spikes-10.0;//+0.2*(float)num_spikes;
GLfloat zvalue;
glBindBuffer(GL_ARRAY_BUFFER, wfVertexBuffer);
GLfloat *_data = (GLfloat*)glMapBuffer(GL_ARRAY_BUFFER, GL_WRITE_ONLY);
if( highlightWave >= 0 )
{
//need to reset z-value of previously highlighted waveform
zvalue = -1.0;
vDSP_vfill(&zvalue,_data+(highlightWave*wavesize*3)+2,3,wavesize);
}
zvalue = 1.1;
//set the z-value
vDSP_vfill(&zvalue,_data+(wfidx*wavesize*3)+2,3,wavesize);
glUnmapBuffer(GL_ARRAY_BUFFER);
glBindBuffer(GL_ARRAY_BUFFER, wfColorBuffer);
GLfloat *_colors = (GLfloat*)glMapBuffer(GL_ARRAY_BUFFER, GL_WRITE_ONLY);
GLfloat *dcolor = (float*)[drawingColor bytes];
if( highlightWave >= 0 )
{
vDSP_vfill(dcolor,_colors+(highlightWave*wavesize*3),3,wavesize);
vDSP_vfill(dcolor+1,_colors+(highlightWave*wavesize*3)+1,3,wavesize);
vDSP_vfill(dcolor+2,_colors+(highlightWave*wavesize*3)+2,3,wavesize);
}
//find the complement
GLfloat *hcolor = malloc(4*sizeof(GLfloat));
hcolor[0] = 1.0-dcolor[0];
hcolor[1] = 1.0-dcolor[1];
hcolor[2] = 1.0-dcolor[2];
vDSP_vfill(hcolor,_colors+(wfidx*wavesize*3),3,wavesize);
vDSP_vfill(hcolor+1,_colors+(wfidx*wavesize*3)+1,3,wavesize);
vDSP_vfill(hcolor+2,_colors+(wfidx*wavesize*3)+2,3,wavesize);
free(hcolor);
glUnmapBuffer(GL_ARRAY_BUFFER);
highlightWave = wfidx;
[self setNeedsDisplay:YES];
}
static void wfDrawAnObject()
{
//activate the dynamicbuffer
glBindBuffer(GL_ARRAY_BUFFER, wfVertexBuffer);
glEnableClientState(GL_VERTEX_ARRAY);
//bind the vertexbuffer
//activate vertex point; 3 points per vertex, each point of type GL_FLOAT, stride of 0 (i.e. tightly pakced), and use existing
//vetex data, i.e. wfVertexBuffer activated above.
glVertexPointer(3, GL_FLOAT, 0, (void*)0);
glBindBuffer(GL_ARRAY_BUFFER, wfColorBuffer);
glEnableClientState(GL_COLOR_ARRAY);
glColorPointer(3, GL_FLOAT, 0, (void*)0);
//bind the indices
glBindBuffer(GL_ELEMENT_ARRAY_BUFFER, wfIndexBuffer);
glIndexPointer(GL_UNSIGNED_INT, 0, (void*)0);
glEnableClientState(GL_INDEX_ARRAY);
//Draw nWfIndices elements of type GL_LINES, use the loaded wfIndexBuffer
//the second argument to glDrawElements should be the number of objects to draw
//i.e. number of lines below. Since nWfIndices is the total number of points, and each line
//uses two points, the total number of lines to draw is ndincies/2
//this fails and I have no idea why. Indexing wfVertices using indices on its own does not cause any issues.
//Thus,this has to be related to openGL.
glDrawElements(GL_LINES, /*MIN(31*4*40000,nWfIndices)*/nWfIndices,GL_UNSIGNED_INT,(void*)0);
//glDrawRangeElement
}
-(void)drawLabels
{
//TODO: This does not work; the labels are stretched, and drawn in black, not whte as the color suggests.
int nlabels = 2;
int i;
//NSAttributedString *label;
NSMutableDictionary *normal9Attribs = [NSMutableDictionary dictionary];
[normal9Attribs setObject: [NSFont fontWithName: @"Helvetica" size: 8.0f] forKey: NSFontAttributeName];
//label = [[[NSMutableAttributedString alloc] initWithString:@"GL Capabilities:" attributes:bold12Attribs] autorelease];
float width = [self bounds].size.width;
float height =[self bounds].size.height;
//the margins are decided by how the data are scaled; the full extent of the window is 1.2*height (widith)
//float xmargin = 0;
//float ymargin = (height-height/1.2)/2.0;//0.001*height;
float dy = height/1.2/(nlabels-1);
dy = height/(1.1*(ymax-ymin));
//data increment
//float dy_ = (ymax-ymin)/(nlabels-1);
//float y = [self bounds].origin.y;
[[self openGLContext] makeCurrentContext];
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
glMatrixMode(GL_MODELVIEW);
glPushMatrix();
glLoadIdentity();
glScalef (2.0f / width, -2.0f / height, 1.0f);
float *label_positions = (float*)malloc(3*sizeof(float));
//top
//label_positions[2] = 0.5*height-ymargin;
label_positions[2] = 0.5*height-dy*0.1*(ymax-ymin)/2;
label_positions[1] = -0.5*height+dy*(0.1*(ymax-ymin)/2.0+ymax);
//bottom
//label_positions[0] = 0.5*height-ymargin-height/1.2;
label_positions[0] = -0.5*height+dy*0.1*(ymax-ymin)/2;
float *label_titles = (float*)malloc(3*sizeof(float));
label_titles[0] = ymax;
label_titles[1] = 0;
label_titles[2] = ymin;
for(i=0;i<nlabels+1;i++)
{
NSAttributedString *label;
//label = [[[NSAttributedString alloc] initWithString:[NSString stringWithFormat: @"%.1f",ymin+i*dy_] attributes:normal9Attribs] autorelease];
label = [[[NSAttributedString alloc] initWithString:[NSString stringWithFormat: @"%.1f",label_titles[i]] attributes:normal9Attribs] autorelease];
GLString *glabel;
glabel = [[[GLString alloc] initWithAttributedString:label withTextColor:[NSColor colorWithDeviceRed:1.0f green:1.0f blue:1.0f alpha:1.0f] withBoxColor:[NSColor colorWithDeviceRed:0.4f green:0.4f blue:0.0f alpha:1.0f] withBorderColor:[NSColor colorWithDeviceRed:0.8f green:0.8f blue:0.0f alpha:1.0f]] autorelease];
//y = i*(dy-[glabel frameSize].height);
//[glabel drawAtPoint:NSMakePoint (-0.5*width+xmargin,0.5*height-ymargin-[glabel frameSize].height - y)];
[glabel drawAtPoint:NSMakePoint (-0.5*width,label_positions[i] - 0.5*[glabel frameSize].height)];
//drawAtPoint:NSMakePoint (10.0f, height - [glabelY frameSize].height - 10.0f)];
}
free(label_titles);
free(label_positions);
glPopMatrix();
}
- (void)drawRect:(NSRect)bounds
{
NSOpenGLContext *context = [self openGLContext];
[context makeCurrentContext];
//glLoadIdentity();
glViewport(bounds.origin.x, bounds.origin.y, bounds.size.width, bounds.size.height);
glClearColor(0,0,0,0);
glClearDepth(1.0);
glClear(GL_COLOR_BUFFER_BIT | GL_DEPTH_BUFFER_BIT);
//glLoadIdentity();
//glClear(GL_DEPTH_BUFFER_BIT);
if(wfDataloaded)
{
if ([self shouldDrawLabels]) {
[self drawLabels];
}
glMatrixMode(GL_PROJECTION);
glLoadIdentity();
/*glOrtho(1.05*xmin-0.05*xmax, 1.05*xmin-0.05*xmax, 1.05*wfMinmax[2]-0.05*wfMinmax[3],
1.05*wfMinmax[3]-0.05*wfMinmax[2], wfMinmax[4], wfMinmax[5]);*/
glOrtho(xmin, xmax, 1.1*ymin, 1.1*ymax, 1.1*wfMinmax[4], 1.1*wfMinmax[5]);
wfDrawAnObject();
//glPushMatrix();
//glScalef(1.0/(xmax-xmin),1.0/(ymax-ymin),1.0);
//glPopMatrix();
//drawFrame();