-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathViewController.m
executable file
·1162 lines (1036 loc) · 43.7 KB
/
ViewController.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
//
// ViewController.m
// RombergLab
//
// Created by Jorge Rey Martínez on 29/11/15.
// Copyright © 2015 Jorge Rey Martínez. All rights reserved.
//
// Estructura: Primero los juegos y acciones y luego la conexion con la wii el concepto calibracion es solo para el peso
#import "ViewController.h"
@implementation ViewController
@synthesize datoslibres;
@synthesize datos;
@synthesize myWindowController;
@synthesize myWindowController2;
@synthesize myWindowController3;
WiiRemoteDiscovery* discovery;
WiiRemote* wii;
NSDate *Tiempo;
- (void)viewDidLoad {
[super viewDidLoad];
// Do any additional setup after loading the view.
datoslibres = [[NSMutableArray alloc] init];
datos = [[NSMutableArray alloc] init];
[self.grabarLibre setHidden:YES];
Tiempo = [NSDate date];
COGX = 0;
COGY = 0;
Tstamp = 0;
problema = NO;
acumulo = 0;
if(!discovery) {
[self performSelector:@selector(conecta:) withObject:self afterDelay:1.0f];
}
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(expansionPortChanged:)
name:@"WiiRemoteExpansionPortChangedNotification"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self selector:@selector(windowWillClose:) name:NSWindowWillCloseNotification object:self.view.window];
//NOTIFICACION del menuConexion y otros menus
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(reconecta:)
name:@"MenuConexión"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(modoNormal:)
name:@"ItemNormal"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(modoPosturografia:)
name:@"ItemPosturografia"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(modoLOSTest:)
name:@"ItemLosTest"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(modoLOSDuro:)
name:@"ItemLosDuro"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(modoLOSMedio:)
name:@"ItemLosMedio"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(modoLOSFlojo:)
name:@"ItemLosFlojo"
object:nil];
[[NSNotificationCenter defaultCenter] addObserver:self
selector:@selector(cerrarApp:)
name:@"Terminando"
object:nil];
}
// PRIMERO LOS INICIADORES DE LAS PRUEBAS (normal no, es solo poner hacer limpieza, no hay acción la accion esta en el boton)
-(void)modoNormal:(id)sender{
enprueba = NO;
[self.contador setHidden:YES];
[self.target setHidden:YES];
[self.grabarLibre setHidden:NO];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoActivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"Registro en modo libre: Cambie de modo en el menú"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"Free Mode ON: Set new mode on menu bar"];
}
}
-(void)modoLOSTest:(id)sender{
enprueba = YES;
[self.contador setHidden:YES];
[self.target setHidden:YES];
[self.grabarLibre setHidden:YES];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoInactivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"Prueba LOS: Inclínese para alcanzar el objetivo"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"LOS test: Tilt your body to reach the target"];
}
[self modoLOSTest];
}
-(void)modoPosturografia:(id)sender{
enprueba = YES;
[self.contador setHidden:NO];
[self.target setHidden:YES];
[self.grabarLibre setHidden:YES];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoInactivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"Modo de evaluación del equlibrio"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"Balance Assessment Mode"];
}
[self modoPosturografia];
}
-(void)modoLOSDuro:(id)sender{
enprueba = YES;
[self.contador setHidden:NO];
[self.target setHidden:YES];
[self.grabarLibre setHidden:YES];
[self.pararLOS setHidden:NO];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoInactivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"Modo ejercicio LOS (Niv.3): Aclance el objetivo"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"LOS training Mode (Lev. 3): Reach the target"];
}
[self modoLOS3];
}
-(void)modoLOSMedio:(id)sender{
enprueba = YES;
[self.contador setHidden:NO];
[self.target setHidden:YES];
[self.grabarLibre setHidden:YES];
[self.pararLOS setHidden:NO];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoInactivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"Modo ejercicio LOS (Niv.2): Aclance el objetivo"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"LOS training Mode (Lev. 2): Reach the target"];
}
[self modoLOS2];
}
-(void)modoLOSFlojo:(id)sender{
enprueba = YES;
[self.contador setHidden:NO];
[self.target setHidden:YES];
[self.grabarLibre setHidden:YES];
[self.pararLOS setHidden:NO];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoInactivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"Modo ejercicio LOS (Niv.1): Aclance el objetivo"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"LOS training Mode (Lev. 1): Reach the target"];
}
[self modoLOS1];
}
//Ahora las acciones de juego Nota: al final activar el menú otra vez
-(void)modoLOSTest {
paso = 0;
[datos removeAllObjects];
terminaGrabar = NO;
[self.target setHidden:NO];
NSTimer *grabar;
grabar = [NSTimer scheduledTimerWithTimeInterval: 0.05
target: self
selector: @selector(grabandoLOS:)
userInfo: nil
repeats: YES];
NSTimer *accion;
accion = [NSTimer scheduledTimerWithTimeInterval: 20
target: self
selector: @selector(accionLOS:)
userInfo: nil
repeats: YES];
NSTimer *terminar;
terminar = [NSTimer scheduledTimerWithTimeInterval: 81
target: self
selector: @selector(terminarLOS:)
userInfo: nil
repeats: NO];
paso ++;
if (paso == 1){
float Px,Py;
Px = (742/2)-(30/2); //742 ancho del view 30 ancho del cuadrado.
Py = (421)-(44);
[self.target setFrame:CGRectMake(Px, Py, 30, 30)];
}
}
-(void)grabandoLOS:(NSTimer *)grabandoLOS{
if (!terminaGrabar){
// Estructura en Datos [Modo de prograna, Estampa de tiempo, Peso total calibrado, Centro de gravedad x, centro de gravedad y]
[datos addObject:[NSArray arrayWithObjects:[NSNumber numberWithFloat:2.0],[NSNumber numberWithFloat:Tstamp],[NSNumber numberWithFloat:(lastWeight+tare)],[NSNumber numberWithFloat:COGX],[NSNumber numberWithFloat:COGY],nil]];
}
else {
[grabandoLOS invalidate];
}
}
-(void)accionLOS:(NSTimer *)accionLOS{
if (!terminaGrabar){
paso ++;
if (paso == 2){
float Px,Py;
Px = (690)-(30); //742 ancho del view 30 ancho del cuadrado.
Py = (421/2)-(30/2);
[self.target setFrame:CGRectMake(Px, Py, 30, 30)];
}
if (paso == 3){
float Px,Py;
Px = (742/2)-(30/2); //742 ancho del view 30 ancho del cuadrado.
Py = (5)+(30/2);
[self.target setFrame:CGRectMake(Px, Py, 30, 30)];
}
if (paso == 4){
float Px,Py;
Px = (25)+(30); //742 ancho del view 30 ancho del cuadrado.
Py = (421/2)-(30/2);
[self.target setFrame:CGRectMake(Px, Py, 30, 30)];
}
}
else {
[accionLOS invalidate];
}
}
-(void)terminarLOS:(NSTimer *)terminarLOS{
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoActivo"
object:nil];
terminaGrabar = YES;
[self.target setHidden:YES];
[self.pararLOS setHidden:YES];
[self modoNormal:self];
NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Main" bundle:nil]; // get a reference to the storyboard
myWindowController2 = [storyBoard instantiateControllerWithIdentifier:@"CuartaVentana"]; // instantiate your window controller
[myWindowController2 showWindow:self];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"PruebaTerminada"
object:nil];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"ResultadosLOS"
object:datos];
}
-(void)modoPosturografia {
paso = 0;
paso2 = 0;
paso3 = 0;
paso4 = 0;
cronom = 40;
[datos removeAllObjects];
terminaGrabar = NO;
NSAlert *alert = [[NSAlert alloc] init];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[alert setMessageText:@"Condición 1: Ojos abiertos"];
[alert setInformativeText:@"Centrado en la plataforma. Sin moverse."];
}
else{
[alert setMessageText:@"Condition1: Open Eyes"];
[alert setInformativeText:@"Stay centered. No movement."];
}
[alert addButtonWithTitle:@"Start"];
if ([alert runModal] == NSAlertFirstButtonReturn){
NSTimer *grabarPOS1;
grabarPOS1 = [NSTimer scheduledTimerWithTimeInterval: 0.05
target: self
selector: @selector(grabandoPOS1:)
userInfo: nil
repeats: YES];
NSTimer *cronometro;
cronometro = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometro:)
userInfo: nil
repeats: YES];
}
}
-(void)cronometro:(NSTimer *)cronometro{
if (paso <=(40/0.05)){[self.contador setStringValue:[NSString stringWithFormat:@"%i",(cronom-1)]];}
else {
terminaGrabar = NO;
NSAlert *alert = [[NSAlert alloc] init];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[alert setMessageText:@"Condición 2: Ojos cerrados"];
[alert setInformativeText:@"Centrado en la plataforma. Sin moverse."];
}
else{
[alert setMessageText:@"Condition2: Closed Eyes"];
[alert setInformativeText:@"Stay centered. No movement."];
}
[alert addButtonWithTitle:@"Start"];
if ([alert runModal] == NSAlertFirstButtonReturn){
NSTimer *grabarPOS2;
grabarPOS2 = [NSTimer scheduledTimerWithTimeInterval: 0.05
target: self
selector: @selector(grabandoPOS2:)
userInfo: nil
repeats: YES];
NSTimer *cronometro2;
cronometro2 = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometro2:)
userInfo: nil
repeats: YES];
[cronometro invalidate];
cronom = 40;
}
}
cronom --;
}
-(void)cronometro2:(NSTimer *)cronometro2{
if (paso2 <=(40/0.05)){[self.contador setStringValue:[NSString stringWithFormat:@"%i",(cronom)]];}
else {
terminaGrabar = NO;
NSAlert *alert = [[NSAlert alloc] init];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[alert setMessageText:@"Condición 3: Ojos abiertos. Sobre espuma o cojin pequeño"];
[alert setInformativeText:@"Poner espuma encima de la plataforma y luego subirse centrado en la plataforma. Sin moverse."];
}
else{
[alert setMessageText:@"Condition3: Open Eyes. Stand on foam"];
[alert setInformativeText:@"Put foam over the balance board. Stand over board again. Stay centered. No movement."];
}
[alert addButtonWithTitle:@"Start"];
if ([alert runModal] == NSAlertFirstButtonReturn){
NSTimer *grabarPOS3;
grabarPOS3 = [NSTimer scheduledTimerWithTimeInterval: 0.05
target: self
selector: @selector(grabandoPOS3:)
userInfo: nil
repeats: YES];
NSTimer *cronometro3;
cronometro3 = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometro3:)
userInfo: nil
repeats: YES];
[cronometro2 invalidate];
}
cronom = 40;
}
cronom--;
}
-(void)cronometro3:(NSTimer *)cronometro3{
if (paso3 <=(40/0.05)){[self.contador setStringValue:[NSString stringWithFormat:@"%i",(cronom)]];}
else {
terminaGrabar = NO;
NSAlert *alert = [[NSAlert alloc] init];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[alert setMessageText:@"Condición 4: Ojos cerrados. Sobre espuma o cojin pequeño"];
[alert setInformativeText:@"Centrado en la plataforma. Sin moverse."];
}
else{
[alert setMessageText:@"Condition4: Close Eyes. Stand on foam"];
[alert setInformativeText:@"Put foam over the balance board. Stand over board again. Stay centered. No movement."];
}
[alert addButtonWithTitle:@"Start"];
if ([alert runModal] == NSAlertFirstButtonReturn){
NSTimer *grabarPOS4;
grabarPOS4 = [NSTimer scheduledTimerWithTimeInterval: 0.05
target: self
selector: @selector(grabandoPOS4:)
userInfo: nil
repeats: YES];
NSTimer *cronometro4;
cronometro4 = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometro4:)
userInfo: nil
repeats: YES];
[cronometro3 invalidate];
}
cronom = 40;
}
cronom --;
}
-(void)cronometro4:(NSTimer *)cronometro4{
if (paso4 <=(40/0.05)){[self.contador setStringValue:[NSString stringWithFormat:@"%i",(cronom)]];}
else {
terminaGrabar = NO;
NSAlert *alert = [[NSAlert alloc] init];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[alert setMessageText:@"Prueba terminada"];
[alert setInformativeText:@"Se vuelve al modo libre"];
}
else{
[alert setMessageText:@"Test finished"];
[alert setInformativeText:@"Go back to free mode"];
}
[alert addButtonWithTitle:@"OK"];
if ([alert runModal] == NSAlertFirstButtonReturn){
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoActivo"
object:nil];
terminaGrabar = YES;
[self.target setHidden:YES];
[self.contador setHidden:YES];
[self modoNormal:self];
NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Main" bundle:nil]; // get a reference to the storyboard
myWindowController3 = [storyBoard instantiateControllerWithIdentifier:@"TerceraVentana"]; // instantiate your window controller
[myWindowController3 showWindow:self];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"PruebaTerminada"
object:nil];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"ResultadosPosturografia"
object:datos];
}
[cronometro4 invalidate];
}
cronom --;
}
-(void)grabandoPOS1:(NSTimer *)grabandoPOS1{
paso ++;
if (paso <= (40/0.05)){
// Estructura en Datos [Modo de prograna, Estampa de tiempo, Peso total calibrado, Centro de gravedad x, centro de gravedad y]
[datos addObject:[NSArray arrayWithObjects:[NSNumber numberWithFloat:3.1],[NSNumber numberWithFloat:Tstamp],[NSNumber numberWithFloat:(lastWeight+tare)],[NSNumber numberWithFloat:COGX],[NSNumber numberWithFloat:COGY],nil]];
}
else {
[grabandoPOS1 invalidate];
}
}
-(void)grabandoPOS2:(NSTimer *)grabandoPOS2{
paso2 ++;
if (paso2 <= (40/0.05)){
// Estructura en Datos [Modo de prograna, Estampa de tiempo, Peso total calibrado, Centro de gravedad x, centro de gravedad y]
[datos addObject:[NSArray arrayWithObjects:[NSNumber numberWithFloat:3.2],[NSNumber numberWithFloat:Tstamp],[NSNumber numberWithFloat:(lastWeight+tare)],[NSNumber numberWithFloat:COGX],[NSNumber numberWithFloat:COGY],nil]];
}
else {
[grabandoPOS2 invalidate];
}
}
-(void)grabandoPOS3:(NSTimer *)grabandoPOS3{
paso3 ++;
if (paso3 <= (40/0.05)){
// Estructura en Datos [Modo de prograna, Estampa de tiempo, Peso total calibrado, Centro de gravedad x, centro de gravedad y]
[datos addObject:[NSArray arrayWithObjects:[NSNumber numberWithFloat:3.3],[NSNumber numberWithFloat:Tstamp],[NSNumber numberWithFloat:(lastWeight+tare)],[NSNumber numberWithFloat:COGX],[NSNumber numberWithFloat:COGY],nil]];
}
else {
[grabandoPOS3 invalidate];
}
}
-(void)grabandoPOS4:(NSTimer *)grabandoPOS4{
paso4 ++;
if (paso4 <= (40/0.05)){
// Estructura en Datos [Modo de prograna, Estampa de tiempo, Peso total calibrado, Centro de gravedad x, centro de gravedad y]
[datos addObject:[NSArray arrayWithObjects:[NSNumber numberWithFloat:3.4],[NSNumber numberWithFloat:Tstamp],[NSNumber numberWithFloat:(lastWeight+tare)],[NSNumber numberWithFloat:COGX],[NSNumber numberWithFloat:COGY],nil]];
}
else {
[grabandoPOS4 invalidate];
}
}
-(void)modoLOS3 {
paso = 0;
cronom = 120;
finJuego = NO;
dificultad = 3;
puntuacion = 0;
posibletotal = 1;
NSTimer *cronometro;
cronometro = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometroLOStrain:)
userInfo: nil
repeats: YES];
NSTimer *mueve;
mueve = [NSTimer scheduledTimerWithTimeInterval: 5
target: self
selector: @selector(mueveLOStrain:)
userInfo: nil
repeats: YES];
NSTimer *detecta;
detecta = [NSTimer scheduledTimerWithTimeInterval: 0.01
target: self
selector: @selector(colision:)
userInfo: nil
repeats: YES];
int x = 0;
int y = 0;
if (dificultad == 3){
int limAbajo = (0+200);
int limArriba = (741-200);
x = limAbajo + arc4random() % (limArriba - limAbajo);
limAbajo = (0+100);
limArriba = (421-100);
y = limAbajo + arc4random() % (limArriba - limAbajo);
}
[self.target setFrame:CGRectMake(x, y, 30, 30)];
[self.target setHidden:NO];
}
-(void)modoLOS2 {
paso = 0;
cronom = 90;
finJuego = NO;
dificultad = 2;
puntuacion = 0;
posibletotal = 1;
NSTimer *cronometro;
cronometro = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometroLOStrain:)
userInfo: nil
repeats: YES];
NSTimer *mueve;
mueve = [NSTimer scheduledTimerWithTimeInterval: 10
target: self
selector: @selector(mueveLOStrain:)
userInfo: nil
repeats: YES];
NSTimer *detecta;
detecta = [NSTimer scheduledTimerWithTimeInterval: 0.01
target: self
selector: @selector(colision:)
userInfo: nil
repeats: YES];
int x = 0;
int y = 0;
if (dificultad == 2){
int limAbajo = (0+200);
int limArriba = (741-200);
x = limAbajo + arc4random() % (limArriba - limAbajo);
limAbajo = (0+100);
limArriba = (421-100);
y = limAbajo + arc4random() % (limArriba - limAbajo);
}
[self.target setFrame:CGRectMake(x, y, 30, 30)];
[self.target setHidden:NO];
}
-(void)modoLOS1 {
paso = 0;
cronom = 90;
finJuego = NO;
dificultad = 1;
posibletotal = 1;
puntuacion = 0;
NSTimer *cronometro;
cronometro = [NSTimer scheduledTimerWithTimeInterval: 1
target: self
selector: @selector(cronometroLOStrain:)
userInfo: nil
repeats: YES];
NSTimer *mueve;
mueve = [NSTimer scheduledTimerWithTimeInterval: 15
target: self
selector: @selector(mueveLOStrain:)
userInfo: nil
repeats: YES];
NSTimer *detecta;
detecta = [NSTimer scheduledTimerWithTimeInterval: 0.01
target: self
selector: @selector(colision:)
userInfo: nil
repeats: YES];
int x = 0;
int y = 0;
if (dificultad == 1){
int limAbajo = (0+250);
int limArriba = (741-250);
x = limAbajo + arc4random() % (limArriba - limAbajo);
limAbajo = (0+180);
limArriba = (421-180);
y = limAbajo + arc4random() % (limArriba - limAbajo);
}
[self.target setFrame:CGRectMake(x, y, 30, 30)];
[self.target setHidden:NO];
}
-(void)cronometroLOStrain:(NSTimer *)cronometro{
if (finJuego){
[cronometro invalidate];
}
else{
[self.contador setStringValue:[NSString stringWithFormat:@"%i",(cronom-1)]];
if (cronom <= 0){finJuego = YES;}
}
cronom --;
}
-(void)mueveLOStrain:(NSTimer *)mueve{
if (finJuego){
[mueve invalidate];
}
else{
if (self.target.hidden){[self.target setHidden:NO];}
int x = 0;
int y = 0;
if (dificultad == 1){
int limAbajo = (0+250);
int limArriba = (741-250);
x = limAbajo + arc4random() % (limArriba - limAbajo);
limAbajo = (0+180);
limArriba = (421-180);
y = limAbajo + arc4random() % (limArriba - limAbajo);
}
if (dificultad == 2){
int limAbajo = (0+200);
int limArriba = (741-200);
x = limAbajo + arc4random() % (limArriba - limAbajo);
limAbajo = (0+100);
limArriba = (421-100);
y = limAbajo + arc4random() % (limArriba - limAbajo);
}
if (dificultad == 3){
int limAbajo = (0+200);
int limArriba = (741-200);
x = limAbajo + arc4random() % (limArriba - limAbajo);
limAbajo = (0+100);
limArriba = (421-100);
y = limAbajo + arc4random() % (limArriba - limAbajo);
}
[self.target setFrame:CGRectMake(x, y, 30, 30)];
}
posibletotal ++;
impactoContado = NO;
}
-(void)colision:(NSTimer *)detecta{
if (finJuego){
[detecta invalidate];
[self.target setHidden:YES];
[self.contador setHidden:YES];
[self.pararLOS setHidden:YES];
NSAlert *alert = [[NSAlert alloc] init];
[self modoNormal:self];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[alert setMessageText:@"Entrenamiento LOS Terminado"];
[alert setInformativeText:[NSString stringWithFormat:@"Puntuación: %i sobre %i\rSe vuelve al modo libre",puntuacion,(posibletotal-1)]];
}
else{
[alert setMessageText:@"LOS Training Finished"];
[alert setInformativeText:[NSString stringWithFormat:@"Score: %i over %i\rGo back to free mode",puntuacion,posibletotal]];
}
[alert addButtonWithTitle:@"OK"];
if ([alert runModal] == NSAlertFirstButtonReturn){
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoActivo"
object:nil];
}
}
//Detección de colisiones
else
{
if(CGRectIntersectsRect(self.target.frame, self.Posicion.frame)){
// NSLog(@"Impacto: %i Puntos: %i",contacto, puntuacion);
contacto ++;
if (!impactoContado){
if (contacto >(100)){
puntuacion ++;
impactoContado = YES;
[self.target setHidden:YES];
NSSound *contactosound = [NSSound soundNamed:@"contacto"];
[contactosound play];
}
}
else {
contacto = 0;
}
}
}
}
//Otras acciones (de inicio fundamentalmente botones y del sistema)
- (IBAction)terminarLOSentreno:(id)sender{
[self.pararLOS setHidden:YES];
finJuego = YES;
}
-(void)reconecta:(id)sender{
if(!enprueba){
if(self.reconexion.hidden){
[self.reconexion setHidden:NO];
}
}
else{
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.Titulo setStringValue:@"ERROR EN PRUEBA: CONEXION PERDIDA"];
[self.instrucciones setStringValue:@" "];
}
else {
[self.instrucciones setStringValue:@" "];
[self.Titulo setStringValue:@"ERROR DURING TEST: CONNECTION LOSS"];
}
}
}
- (void)setRepresentedObject:(id)representedObject {
[super setRepresentedObject:representedObject];
// Update the view, if already loaded.
}
- (void)windowWillClose:(NSNotification *)notification
{
NSWindow *win = [notification object];
if ([win.title isEqualToString:@"RombergLab"]){
if (wii) {
[wii closeConnection];
}
}
}
- (void)cerrarApp:(NSNotification *)notification{
if (wii) {
[wii closeConnection];
}
[[NSApplication sharedApplication] terminate:nil];
}
- (IBAction)conecta:(id)sender {
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if(!discovery) {
discovery = [[WiiRemoteDiscovery alloc] init];
[discovery setDelegate:self];
[discovery start];
if([userLanguage isEqualToString:@"es"]){
[self.status setStringValue:@"Conectando..."];
[self.instrucciones setStringValue:@"Pulse el boton rojo SYNC en la tabla. Desenlace la tabla del menú Bluetooth del sistema."];
[self.reconexion setTitle:@"Dejar de buscar"];
[self.Titulo setStringValue:@"Paso 1: Enlazar la tabla"];
}
else {
[self.status setStringValue:@"Connecting..."];
[self.Titulo setStringValue:@"Step 1: Link the board"];
[self.instrucciones setStringValue:@"Press the SYNC red button in the board. Unlink the Board on the Bluetooth system menu."];
[self.reconexion setTitle:@"Stop searching"];
}
[self.rueda startAnimation:self];
}
else {
[discovery stop];
discovery = nil;
if(wii) {
[wii closeConnection];
wii = nil;
}
[self.rueda stopAnimation:self];
[self.BT setImage:[NSImage imageNamed:@"BT_OF"]];
if([userLanguage isEqualToString:@"es"]){
[self.status setStringValue:@"Desconectado"];
[self.instrucciones setStringValue:@""];
[self.reconexion setTitle:@"Buscar tablas"];
}
else {
[self.status setStringValue:@"Disconnected"];
[self.instrucciones setStringValue:@""];
[self.reconexion setTitle:@"Start search"];
}
}
}
- (IBAction)calibrar:(id)sender {
tare = 0.0 - lastWeight;
[self.ArrDer setHidden:NO];
[self.ArrIzq setHidden:NO];
[self.AbaDer setHidden:NO];
[self.AbaIzq setHidden:NO];
[self.Posicion setHidden:NO];
[self.InfoY setHidden:YES];
[self.InfoX setHidden:YES];
[self.calibracion setHidden:YES];
[self.grabarLibre setHidden:NO];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"MenuModoActivo"
object:nil];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.status setStringValue:@"Operativa"];
[self.instrucciones setStringValue:@"Suba a la tabla"];
[self.Titulo setStringValue:@"Registro en modo libre: Cambie de modo en el menú"];
}
else {
[self.status setStringValue:@"Operative"];
[self.instrucciones setStringValue:@"Step on board"];
[self.Titulo setStringValue:@"Free Mode ON: Set new mode on menu bar"];
}
}
- (IBAction)accionGrabarLibre:(id)sender {
if(grabarLibreON){
//Termina la grabacion
enprueba = NO;
NSStoryboard *storyBoard = [NSStoryboard storyboardWithName:@"Main" bundle:nil]; // get a reference to the storyboard
myWindowController = [storyBoard instantiateControllerWithIdentifier:@"SegundaVentana"]; // instantiate your window controller
[myWindowController showWindow:self];
[[NSNotificationCenter defaultCenter]
postNotificationName:@"ResultadosLibres"
object:datoslibres];
[datoslibres removeAllObjects];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.grabarLibre setTitle:@"Iniciar registro"];
}
else {
[self.grabarLibre setTitle:@"Start recording"];
}
grabarLibreON = NO;
}
else{
//Inicia la grabacion
enprueba = YES;
grabarLibreON = YES;
[datoslibres removeAllObjects];
NSTimer *grabarlibre;
grabarlibre = [NSTimer scheduledTimerWithTimeInterval: 0.025
target: self
selector: @selector(grabandoLibre:)
userInfo: nil
repeats: YES];
NSString *userLocale = [[NSLocale currentLocale] localeIdentifier];
NSString *userLanguage = [userLocale substringToIndex:2];
if([userLanguage isEqualToString:@"es"]){
[self.grabarLibre setTitle:@"Parar registro"];
}
else {
[self.grabarLibre setTitle:@"Stop recording"];
}
}
}
-(void)grabandoLibre:(NSTimer *)grabarlibre{
if (!grabarLibre2){
// Estructura en Datos [Modo de prograna, Estampa de tiempo, Peso total calibrado, Centro de gravedad x, centro de gravedad y]
[datoslibres addObject:[NSArray arrayWithObjects:[NSNumber numberWithFloat:1.0],[NSNumber numberWithFloat:Tstamp],[NSNumber numberWithFloat:(lastWeight+tare)],[NSNumber numberWithFloat:COGX],[NSNumber numberWithFloat:COGY],nil]];
}
else {
[grabarlibre invalidate];
grabarLibre2 = YES;
}
}
///CONEXION CON CLASES DE WII
#pragma mark WiiRemoteDelegate methods (optional)
// cooked values from the Balance Beam
- (void) balanceBeamKilogramsChangedTopRight:(float)topRight
bottomRight:(float)bottomRight
topLeft:(float)topLeft
bottomLeft:(float)bottomLeft {
lastWeight = topRight + bottomRight + topLeft + bottomLeft;
float trueWeight = lastWeight + tare;
//NSLog(@"Peso: %f",trueWeight);
if(trueWeight > 0.1) {
arribaderecha = topRight;
arribaizquierda = topLeft;
abajoizquierda = bottomLeft;
abajoderecha = bottomRight;
}
else {
arribaderecha = 0;
arribaizquierda = 0;
abajoizquierda = 0;
abajoderecha = 0;
}
float arde,ariz,abde,abiz;
if (arribaizquierda > 25) ariz = 25;
else ariz = arribaizquierda;
if (arribaderecha > 25) arde = 25;
else arde = arribaderecha;
if (abajoizquierda > 25) abiz = 25;