-
Notifications
You must be signed in to change notification settings - Fork 2
/
rAVR.m
9026 lines (7013 loc) · 337 KB
/
rAVR.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
//
// AVR.m
// USBInterface
//
// Created by Sysadmin on 01.02.08.
// Copyright 2008 Ruedi Heimlicher. All rights reserved.
//
#import "rAVR.h"
#import "rElement.h"
extern int usbstatus;
//#define MO 0
//#define DI 1
//#define TAGPLANBREITE 0x40 // 64 Bytes, 2 page im EEPROM
//#define RAUMPLANBREITE 0x200 // 512 Bytes
#define PFEILSCHRITT 4
#define LINE 0
#define MANRIGHT 1
#define MANUP 2
#define MANLEFT 3
#define MANDOWN 4
#define STEPEND_A 0x00 // Motor A hat Ende der Steps erreicht
#define STEPEND_B 0x10
#define STEPEND_C 0x20
#define STEPEND_D 0x30
#define FIRST_BIT 0 // in 'position' von reportStopKnopf: Abschnitt ist first
#define LAST_BIT 1 // in 'position' von reportStopKnopf: Abschnitt ist last
/*
@implementation rPfeiltasteCell
- (id)init
{
if ([super init])
{
richtung=0;
return self;
}
return NULL;
}
- (void)setRichtung:(int)dieRichtung
{
richtung=dieRichtung;
}
- (IBAction)mouseDown:(NSEvent*)theEvent
{
NSLog(@"PfeiltasteCell mouseDown");
}
@end
*/
int max_value(float * p_array,unsigned int values_in_array,float * p_max_value)
{
int position;
position = 0;
*p_max_value = p_array[position];
for (position = 1; position < values_in_array; ++position)
{
if (p_array[position] > *p_max_value)
{
*p_max_value = p_array[position];
break;
}
}
return position;
}
int min_value(float * p_array,unsigned int values_in_array,float * p_min_value)
{
int position;
position = 0;
*p_min_value = p_array[position];
for (position = 1; position < values_in_array; ++position)
{
if (p_array[position] < *p_min_value)
{
*p_min_value = p_array[position];
break;
}
}
return position;
}
@implementation rProfildruckView
- (void)setTitel:(NSString*)derTitel
{
NSRect Titelrect = [self frame];
NSFont* TitelFont=[NSFont fontWithName:@"Helvetica" size: 32];
titel = [[NSString stringWithFormat:@"Profil: %@",derTitel]retain];
return;
Titelrect.origin.y += 30;
Titelrect.origin.x += 80;
Titelrect.size.height= 30;
if (!Titelfeld)
{
Titelfeld = [[NSTextField alloc]initWithFrame:Titelrect];
}
[Titelfeld setFont:TitelFont];
[Titelfeld setStringValue:titel];
//[self addSubview:Titelfeld];
[Titelfeld release];
}
- (void)drawRect:(NSRect)Profilfeld
{
//[self setScale: [[ScalePop selectedItem]tag]*0.72];
[super drawRect:Profilfeld];
int abbbranddelay=0;
//NSLog(@"ProfilGraph drawRect start");
int screen=0;
if ([[NSGraphicsContext currentContext]isDrawingToScreen])
{
//NSLog(@"ProfilGraph drawRect screen");
screen=1;
}
else
{
//NSLog(@"ProfilGraph drawRect print");
}
int i=0;
{
[self GitterZeichnen];
}
if (titel)
{
NSMutableDictionary* attributes=[[NSMutableDictionary alloc]init];
[attributes setObject:[NSFont fontWithName:@"Helvetica" size:20] forKey:NSFontAttributeName];
[attributes setObject:[NSColor blueColor] forKey:NSForegroundColorAttributeName];
NSLog(@"titel: %@",titel);
// [titel drawAtPoint:NSMakePoint(40, 40) withAttributes:attributes];
}
if ([DatenArray count])
{
int anz=[DatenArray count];
StartPunktA=NSMakePoint([[[DatenArray objectAtIndex:0]objectForKey:@"ax"]floatValue]*scale,[[[DatenArray objectAtIndex:0]objectForKey:@"ay"]floatValue]*scale);
//NSLog(@"drawRect startpunkt x: %.2f y: %.2f",[[[DatenArray objectAtIndex:0]objectForKey:@"ax"]floatValue],[[[DatenArray objectAtIndex:0]objectForKey:@"ay"]floatValue]);
EndPunktA=NSMakePoint([[[DatenArray objectAtIndex:anz-1]objectForKey:@"ax"]floatValue],[[[DatenArray objectAtIndex:anz-1]objectForKey:@"ay"]floatValue]);
StartPunktB=NSMakePoint([[[DatenArray objectAtIndex:0]objectForKey:@"bx"]floatValue]*scale,([[[DatenArray objectAtIndex:0]objectForKey:@"by"]floatValue]+GraphOffset)*scale);
//NSLog(@"drawRect startpunkt x: %.2f y: %.2f",[[[DatenArray objectAtIndex:0]objectForKey:@"ax"]floatValue],[[[DatenArray objectAtIndex:0]objectForKey:@"ay"]floatValue]);
EndPunktB=NSMakePoint([[[DatenArray objectAtIndex:anz-1]objectForKey:@"bx"]floatValue]*scale,([[[DatenArray objectAtIndex:anz-1]objectForKey:@"by"]floatValue]+GraphOffset)*scale);
NSPoint AA=NSMakePoint(0, [[[DatenArray objectAtIndex:0]objectForKey:@"ay"]floatValue]*scale);
NSPoint AB=NSMakePoint([self frame].size.width, [[[DatenArray objectAtIndex:0]objectForKey:@"ay"]floatValue]*scale);
NSBezierPath* GrundLinieA=[NSBezierPath bezierPath];
[GrundLinieA moveToPoint:AA];
[GrundLinieA lineToPoint:AB];
[GrundLinieA setLineWidth:0.3];
[[NSColor blueColor]set];
[GrundLinieA stroke];
NSPoint BA=NSMakePoint(0, ([[[DatenArray objectAtIndex:0]objectForKey:@"by"]floatValue]+GraphOffset)*scale);
NSPoint BB=NSMakePoint([self frame].size.width, ([[[DatenArray objectAtIndex:0]objectForKey:@"by"]floatValue]+GraphOffset)*scale);
NSBezierPath* GrundLinieB=[NSBezierPath bezierPath];
[GrundLinieB moveToPoint:BA];
[GrundLinieB lineToPoint:BB];
[GrundLinieB setLineWidth:0.3];
[[NSColor blueColor]set];
[GrundLinieB stroke];
NSRect StartMarkBRect=NSMakeRect(StartPunktB.x-1.5, StartPunktB.y-1, 3, 3);
NSBezierPath* StartMarkB=[NSBezierPath bezierPathWithOvalInRect:StartMarkBRect];
[[NSColor grayColor]set];
[StartMarkB stroke];
NSBezierPath* LinieB=[NSBezierPath bezierPath];
NSBezierPath* KlickLinieB=[NSBezierPath bezierPath];
[LinieB moveToPoint:StartPunktB];
NSRect StartMarkARect=NSMakeRect(StartPunktA.x-1.5, StartPunktA.y-1, 3, 3);
NSBezierPath* StartMarkA=[NSBezierPath bezierPathWithOvalInRect:StartMarkARect];
[[NSColor blueColor]set];
[StartMarkA stroke];
NSBezierPath* LinieA=[NSBezierPath bezierPath];
NSBezierPath* KlickLinieA=[NSBezierPath bezierPath];
[LinieA moveToPoint:StartPunktA];
// Abbrand
// Seite 1
NSBezierPath* AbbrandLinieA=[NSBezierPath bezierPath];
int startabbrandindexa=0;
for (i=0;i<anz;i++)
{
if ([[DatenArray objectAtIndex:i]objectForKey:@"abrax"])
{
//NSLog(@"Start Abbrand bei %d",i);
startabbrandindexa=i;
break;
}
}
//NSLog(@"startabbrandindex: %d",startabbrandindex);
NSPoint AbbrandStartPunktA=NSMakePoint([[[DatenArray objectAtIndex:startabbrandindexa]objectForKey:@"abrax"]floatValue]*scale,[[[DatenArray objectAtIndex:startabbrandindexa]objectForKey:@"abray"]floatValue]*scale);
AbbrandStartPunktA.y +=abbbranddelay;
NSPoint AbbrandEndPunktA=NSMakePoint(([[[DatenArray objectAtIndex:anz-1]objectForKey:@"abrax"]floatValue]),([[[DatenArray objectAtIndex:anz-1]objectForKey:@"abray"]floatValue]+GraphOffset));
[AbbrandLinieA moveToPoint:AbbrandStartPunktA];
//
// Seite 2
NSBezierPath* AbbrandLinieB=[NSBezierPath bezierPath];
int startabbrandindexb=0;
for (i=0;i<anz;i++)
{
if ([[DatenArray objectAtIndex:i]objectForKey:@"abrax"])
{
//NSLog(@"Start Abbrand bei %d",i);
startabbrandindexb=i;
break;
}
}
//NSLog(@"startabbrandindexa: %d startabbrandindexb: %d",startabbrandindexa,startabbrandindexb);
NSPoint AbbrandStartPunktB=NSMakePoint(([[[DatenArray objectAtIndex:startabbrandindexb]objectForKey:@"abrbx"]floatValue])*scale,([[[DatenArray objectAtIndex:startabbrandindexb]objectForKey:@"abrby"]floatValue]+GraphOffset)*scale);
AbbrandStartPunktB.y +=abbbranddelay;
NSPoint AbbrandEndPunktB=NSMakePoint([[[DatenArray objectAtIndex:anz-1]objectForKey:@"abrbx"]floatValue],[[[DatenArray objectAtIndex:anz-1]objectForKey:@"abrby"]floatValue]);
[AbbrandLinieB moveToPoint:AbbrandStartPunktB];
//
//NSLog(@"klickpunkt: %d",klickpunkt);
for (i=0;i<anz;i++)
{
NSPoint PunktA=NSMakePoint([[[DatenArray objectAtIndex:i]objectForKey:@"ax"]floatValue]*scale,[[[DatenArray objectAtIndex:i]objectForKey:@"ay"]floatValue]*scale);
//NSLog(@"i: %d Punkt.x: %.4f Punkt.y: %.4f",i,Punkt.x,Punkt.y);
[LinieA lineToPoint:PunktA];
NSBezierPath* tempMarkA;//=[NSBezierPath bezierPathWithOvalInRect:tempMarkRect];
NSPoint PunktB=NSMakePoint([[[DatenArray objectAtIndex:i]objectForKey:@"bx"]floatValue]*scale,([[[DatenArray objectAtIndex:i]objectForKey:@"by"]floatValue]+GraphOffset)*scale);
//NSLog(@"i: %d Punkt.x: %.4f Punkt.y: %.4f",i,Punkt.x,Punkt.y);
[LinieB lineToPoint:PunktB];
NSBezierPath* tempMarkB;//=[NSBezierPath bezierPathWithOvalInRect:tempMarkRect];
if (i==Klickpunkt && screen)
{
NSRect tempMarkBRect=NSMakeRect(PunktB.x-1.5, PunktB.y-1.5, 3.1, 3.1);
tempMarkB=[NSBezierPath bezierPathWithOvalInRect:tempMarkBRect];
[[NSColor redColor]set];
[tempMarkB stroke];
//NSLog(@"klickpunkt i: %d",i);
NSRect tempMarkARect=NSMakeRect(PunktA.x-4.1, PunktA.y-4.1, 8.1, 8.1);
tempMarkA=[NSBezierPath bezierPathWithOvalInRect:tempMarkARect];
[[NSColor grayColor]set];
[tempMarkA stroke];
}
else
{
NSRect tempMarkBRect=NSMakeRect(PunktB.x-1.5, PunktB.y-1.5, 3.1, 3.1);
tempMarkB=[NSBezierPath bezierPathWithOvalInRect:tempMarkBRect];
[[NSColor grayColor]set];
[tempMarkB stroke];
NSRect tempMarkARect=NSMakeRect(PunktA.x-2.5, PunktA.y-2.5, 5.1, 5.1);
tempMarkA=[NSBezierPath bezierPathWithOvalInRect:tempMarkARect];
if (screen)
{
if (i>stepperposition ) // nur auf Screen farbig
{
[[NSColor blueColor]set];
[tempMarkA stroke];
}
else
{
[[NSColor redColor]set];
//[tempMarkA fill];
//[tempMarkA stroke];
[NSBezierPath strokeLineFromPoint:NSMakePoint(PunktA.x-4.1, PunktA.y-4.1)
toPoint:NSMakePoint(PunktA.x+4.1, PunktA.y+4.1)];
[NSBezierPath strokeLineFromPoint:NSMakePoint(PunktA.x+4.1, PunktA.y-4.1)
toPoint:NSMakePoint(PunktA.x-4.1, PunktA.y+4.1)];
}
} // if screen
}
//NSLog(@"in klickset i: %d Desc: %@",i,[klickset description]);
if ([KlicksetA count] && screen)
{
if (i==[KlicksetA firstIndex])
{
[KlickLinieA moveToPoint:PunktA];
}
else
{
//[KlickLinie lineToPoint:Punkt];
}
if ([KlicksetA containsIndex:i] && screen)
{
//NSLog(@"in klickset i: %d",i);
NSRect tempMarkRect=NSMakeRect(PunktA.x-1.5, PunktA.y-1.5, 3.1, 3.1);
tempMarkA=[NSBezierPath bezierPathWithOvalInRect:tempMarkRect];
[[NSColor blackColor]set];
[tempMarkA fill];
if ([KlicksetA count]>1 && i>[KlicksetA firstIndex])
{
[KlickLinieA lineToPoint:PunktA];
}
}
}
// Abbrandlinien
// Seite B
if ([[DatenArray objectAtIndex:i]objectForKey:@"abrbx"]&& screen)
{
NSPoint AbbrandPunktB=NSMakePoint(([[[DatenArray objectAtIndex:i]objectForKey:@"abrbx"]floatValue])*scale,([[[DatenArray objectAtIndex:i]objectForKey:@"abrby"]floatValue]+GraphOffset)*scale);
AbbrandPunktB.y +=abbbranddelay;
[AbbrandLinieB lineToPoint:AbbrandPunktB];
NSBezierPath* AbbranddeltaB=[NSBezierPath bezierPath];
[AbbranddeltaB moveToPoint:PunktB];
[AbbranddeltaB lineToPoint:AbbrandPunktB];
[[NSColor grayColor]set];
[AbbranddeltaB stroke];
}
// Seite A
if ([[DatenArray objectAtIndex:i]objectForKey:@"abrax"]&& screen)
{
NSPoint AbbrandPunktA=NSMakePoint([[[DatenArray objectAtIndex:i]objectForKey:@"abrax"]floatValue]*scale,[[[DatenArray objectAtIndex:i]objectForKey:@"abray"]floatValue]*scale);
AbbrandPunktA.y +=abbbranddelay;
[AbbrandLinieA lineToPoint:AbbrandPunktA];
NSBezierPath* AbbranddeltaA=[NSBezierPath bezierPath];
[AbbranddeltaA moveToPoint:PunktA];
[AbbranddeltaA lineToPoint:AbbrandPunktA];
[AbbranddeltaA stroke];
}
}//for i
[[NSColor grayColor]set];
[LinieB stroke];
[[NSColor blueColor]set];
[LinieA stroke];
if ([KlickLinieA isEmpty])
{
}
else
{
[[NSColor greenColor]set];
[KlickLinieA stroke];
}
[[NSColor grayColor]set];
[AbbrandLinieB stroke];
[AbbrandLinieA stroke];
} // if Datenarray count
if (RahmenArray &&[RahmenArray count])
{
int i=0;
NSBezierPath* RahmenPath=[NSBezierPath bezierPath];
//NSLog(@"Rahmen: %@",[RahmenArray description]);
//NSLog(@"Rahmen 0: %@",[[RahmenArray objectAtIndex:0]description]);
NSPoint Startpunkt = NSPointFromString([RahmenArray objectAtIndex:0]);
Startpunkt.x *= scale;
Startpunkt.y *= scale;
[RahmenPath moveToPoint:Startpunkt];
for (i=1; i<[RahmenArray count]; i++)
{
//NSLog(@"Rahmen index: %d: %@",i,[[RahmenArray objectAtIndex:i]description]);
//NSLog(@"i: %d Punkt.x: %.4f Punkt.y: %.4f",i,Punkt.x,Punkt.y);
NSPoint temppunkt = NSPointFromString([RahmenArray objectAtIndex:i]);
temppunkt.x *= scale;
temppunkt.y *= scale;
[RahmenPath lineToPoint:temppunkt];
}
[RahmenPath lineToPoint:Startpunkt];
[[NSColor grayColor]set];
[RahmenPath stroke];
} // if Rahmenarray count
//NSLog(@"ProfilGraph drawRect end");
}
@end
@implementation rPfeiltaste
- (void)awakeFromNib
{
//NSLog(@"Pfeiltaste awakeFromNib");
//richtung=1;
//- (void)setPeriodicDelay:(float)delay interval:(float)interval
//[self setPeriodicDelay:1 interval:1];
}
- (void)mouseUp:(NSEvent *)event
{
// NSLog(@"up");
richtung=[self tag];
NSLog(@"Pfeiltaste mouseUp richtung: %d",richtung);
[self setState:NSOffState];
NSMutableDictionary* NotificationDic=[[[NSMutableDictionary alloc]initWithCapacity:0]autorelease];
[NotificationDic setObject:[NSNumber numberWithInt:richtung] forKey:@"richtung"];
int aktpwm=0;
[NotificationDic setObject:[NSNumber numberWithInt:0] forKey:@"push"];
NSNotificationCenter* nc=[NSNotificationCenter defaultCenter];
[nc postNotificationName:@"Pfeil" object:self userInfo:NotificationDic];
}
- (void)mouseDown:(NSEvent *)theEvent
{
richtung=[self tag];
//NSLog(@"Pfeiltaste mouseDown richtung: %d",richtung);
[self setState:NSOnState];
NSMutableDictionary* NotificationDic=[[[NSMutableDictionary alloc]initWithCapacity:0]autorelease];
[NotificationDic setObject:[NSNumber numberWithInt:richtung] forKey:@"richtung"];
[NotificationDic setObject:[NSNumber numberWithInt:1] forKey:@"push"];// Start, nur fuer AVR
NSNotificationCenter* nc=[NSNotificationCenter defaultCenter];
[nc postNotificationName:@"Pfeil" object:self userInfo:NotificationDic];
[super mouseDown:theEvent];
[self mouseUp:theEvent];
}
/*
- (void)mouseUp:(NSEvent *)theEvent
{
richtung=[self tag];
NSLog(@"Pfeiltaste mouseUp richtung: %d",richtung);
[self setState:NSOffState];
NSMutableDictionary* NotificationDic=[[[NSMutableDictionary alloc]initWithCapacity:0]autorelease];
[NotificationDic setObject:[NSNumber numberWithInt:richtung] forKey:@"richtung"];
[NotificationDic setObject:[NSNumber numberWithInt:0] forKey:@"push"];
NSNotificationCenter* nc=[NSNotificationCenter defaultCenter];
[nc postNotificationName:@"Pfeil" object:self userInfo:NotificationDic];
[super mouseDown:theEvent];
}
*/
- (void)setRichtung:(int)dieRichtung
{
richtung=dieRichtung;
}
- (int)Tastestatus
{
return [Taste state];
}
- (int)Richtung
{
return richtung;
}
@end
@implementation rAVR
@synthesize Kote = KoteWert;
- (NSDictionary*)maxminWertVonArray:(NSArray*) WerteArray
{
int position;
int minpos = 0;
int maxpos = 0;
position = 0;
float maxWert = [[WerteArray objectAtIndex:position]floatValue];
float minWert = [[WerteArray objectAtIndex:position]floatValue];
for (position = 1; position < [WerteArray count]; position++)
{
float tempwert = [[WerteArray objectAtIndex:position]floatValue];
//fprintf(stderr, "%d \twert: %.5f\n",position,tempwert);
if (tempwert > maxWert)
{
maxWert = tempwert;
maxpos = position;
}
if (tempwert < minWert)
{
minWert = tempwert;
minpos = position;
}
}
NSDictionary* returnDic = [NSDictionary dictionaryWithObjectsAndKeys:[NSNumber numberWithFloat:maxWert], @"maxwert",[NSNumber numberWithFloat:minWert], @"minwert",[NSNumber numberWithInt:maxpos], @"maxpos",[NSNumber numberWithInt:minpos], @"minpos",nil];
return returnDic;
}
- (void)Alert:(NSString*)derFehler
{
NSAlert * DebugAlert=[NSAlert alertWithMessageText:@"Debugger!"
defaultButton:NULL
alternateButton:NULL
otherButton:NULL
informativeTextWithFormat:@"Mitteilung: \n%@",derFehler];
[DebugAlert runModal];
}
- (NSString*)IntToBin:(int)dieZahl
{
int rest=0;
int zahl=dieZahl;
NSString* BinString=[NSString string];;
while (zahl)
{
rest=zahl%2;
if (rest)
{
BinString=[@"1" stringByAppendingString:BinString];
}
else
{
BinString=[@"0" stringByAppendingString:BinString];
}
zahl/=2;
//NSLog(@"BinString: %@",BinString);
}
return BinString;
}
- (int)HexStringZuInt:(NSString*) derHexString
{
int returnInt=-1;
NSScanner* theScanner = [NSScanner scannerWithString:derHexString];
if ([theScanner scanHexInt:&returnInt])
{
NSLog(@"HexStringZuInt string: %@ int: %x ",derHexString,returnInt);
return returnInt;
}
return returnInt;
}
- (NSMutableDictionary*)readCNC_PList
{
BOOL CNCDatenDa=NO;
BOOL istOrdner;
NSFileManager *Filemanager = [NSFileManager defaultManager];
NSString* USBPfad=[[NSHomeDirectory() stringByAppendingFormat:@"%@%@",@"/Documents",@"/CNCDaten"]retain];
NSString* PListName=@"CNC.plist";
NSString* PListPfad;
PListPfad=[USBPfad stringByAppendingPathComponent:PListName];
CNCDatenDa= ([Filemanager fileExistsAtPath:USBPfad isDirectory:&istOrdner]&&istOrdner);
//NSLog(@"mountedVolume: USBPfad: %@",USBPfad);
if (CNCDatenDa)
{
//NSLog(@"\n\n");
//NSLog(@"readCNC_PList: PListPfad: %@ ",PListPfad);
if (PListPfad)
{
//NSMutableDictionary* tempPListDic;// = [[NSMutableDictionary alloc]initWithCapacity:0];
//=[[[NSMutableDictionary alloc]initWithCapacity:0]autorelease];
if ([Filemanager fileExistsAtPath:PListPfad])
{
NSMutableDictionary* tempPListDic=[NSMutableDictionary dictionaryWithContentsOfFile:PListPfad];
//NSLog(@"readCNC_PList: tempPListDic: %@",[tempPListDic description]);
if ([tempPListDic objectForKey:@"koordinatentabelle"])
{
//NSArray* PListKoordTabelle=[tempPListDic objectForKey:@"koordinatentabelle"];
//NSLog(@"readCNC_PList: PListKoordTabelle: %@",[PListKoordTabelle description]);
}
if ([tempPListDic objectForKey:@"pwm"])
{
[DC_PWM setIntValue:[[tempPListDic objectForKey:@"pwm"]intValue]];
[DC_Stepper setIntValue:[[tempPListDic objectForKey:@"pwm"]intValue]];
}
else
{
[DC_PWM setIntValue:1];
}
if ([tempPListDic objectForKey:@"speed"])
{
[SpeedFeld setIntValue:[[tempPListDic objectForKey:@"speed"]intValue]];
[SpeedStepper setIntValue:[[tempPListDic objectForKey:@"speed"]intValue]];
}
else
{
[SpeedFeld setIntValue:12];
}
if ([tempPListDic objectForKey:@"abbranda"])
{
//NSLog(@"abbranda: %2.2f",[[tempPListDic objectForKey:@"abbranda"]floatValue]);
[AbbrandFeld setFloatValue:[[tempPListDic objectForKey:@"abbranda"]floatValue]];
}
else
{
[AbbrandFeld setFloatValue:1.7];
}
// Profilname A
if ([tempPListDic objectForKey:@"profilnamea"])
{
//NSLog(@"profilnamea: %@",[tempPListDic objectForKey:@"profilnamea"]);
[ProfilNameFeldA setStringValue:[tempPListDic objectForKey:@"profilnamea"]];
}
else
{
[ProfilNameFeldA setStringValue:@"*"];
}
// Profilname B
if ([tempPListDic objectForKey:@"profilnameb"])
{
//NSLog(@"profilnameb: %@",[tempPListDic objectForKey:@"profilnameb"]);
[ProfilNameFeldB setStringValue:[tempPListDic objectForKey:@"profilnameb"]];
}
else
{
[ProfilNameFeldB setStringValue:@"*"];
}
// Profiltiefe
if ([tempPListDic objectForKey:@"profiltiefea"])
{
//NSLog(@"profiltiefea: %d",[[tempPListDic objectForKey:@"profiltiefea"]intValue]);
[ProfilTiefeFeldA setIntValue:[[tempPListDic objectForKey:@"profiltiefea"]intValue]];
}
else
{
[ProfilTiefeFeldA setIntValue:101];
}
if ([tempPListDic objectForKey:@"profiltiefeb"])
{
//NSLog(@"profiltiefeb: %d",[[tempPListDic objectForKey:@"profiltiefeb"]intValue]);
[ProfilTiefeFeldB setIntValue:[[tempPListDic objectForKey:@"profiltiefeb"]intValue]];
}
else
{
[ProfilTiefeFeldB setIntValue:91];
}
// Offset Profil B
if ([tempPListDic objectForKey:@"profilboffsetx"])
{
//NSLog(@"profilboffsetx: %d",[[tempPListDic objectForKey:@"profilboffsetx"]intValue]);
[ProfilBOffsetXFeld setIntValue:[[tempPListDic objectForKey:@"profilboffsetx"]intValue]];
}
else
{
[ProfilBOffsetXFeld setIntValue:0];
}
if ([tempPListDic objectForKey:@"profilboffsety"])
{
//NSLog(@"profilboffsety: %d",[[tempPListDic objectForKey:@"profilboffsety"]intValue]);
[ProfilBOffsetYFeld setIntValue:[[tempPListDic objectForKey:@"profilboffsety"]intValue]];
}
else
{
[ProfilBOffsetYFeld setIntValue:0];
}
// Wrench Profil B
if ([tempPListDic objectForKey:@"profilwrench"])
{
//NSLog(@"profilwrench: %2.2f",[[tempPListDic objectForKey:@"profilwrench"]floatValue]);
[ProfilWrenchFeld setFloatValue:[[tempPListDic objectForKey:@"profilwrench"]floatValue]];
}
else
{
[ProfilWrenchFeld setFloatValue:0];
}
// Geometrie
if ([tempPListDic objectForKey:@"einlauflaenge"])
{
//NSLog(@"einlauflaenge: %d",[[tempPListDic objectForKey:@"einlauflaenge"]intValue]);
[Einlauflaenge setIntValue:[[tempPListDic objectForKey:@"einlauflaenge"]intValue]];
}
else
{
[Einlauflaenge setIntValue:20];
}
if ([tempPListDic objectForKey:@"einlauftiefe"])
{
//NSLog(@"einlauftiefe: %d",[[tempPListDic objectForKey:@"einlauftiefe"]intValue]);
[Einlauftiefe setIntValue:[[tempPListDic objectForKey:@"einlauftiefe"]intValue]];
}
else
{
[Einlauftiefe setIntValue:16];
}
if ([tempPListDic objectForKey:@"auslauflaenge"])
{
//NSLog(@"auslauflaenge: %d",[[tempPListDic objectForKey:@"auslauflaenge"]intValue]);
[Auslauflaenge setIntValue:[[tempPListDic objectForKey:@"auslauflaenge"]intValue]];
}
else
{
[Auslauflaenge setIntValue:20];
}
if ([tempPListDic objectForKey:@"auslauftiefe"])
{
//NSLog(@"auslauftiefe: %d",[[tempPListDic objectForKey:@"auslauftiefe"]intValue]);
[Auslauftiefe setIntValue:[[tempPListDic objectForKey:@"auslauftiefe"]intValue]];
}
else
{
[Auslauftiefe setIntValue:16];
}
if ([tempPListDic objectForKey:@"basisabstand"])
{
//NSLog(@"basisabstand: %d",[[tempPListDic objectForKey:@"basisabstand"]intValue]);
[Basisabstand setIntValue:[[tempPListDic objectForKey:@"basisabstand"]intValue]];
}
else
{
[Basisabstand setIntValue:100];
}
if ([tempPListDic objectForKey:@"portalabstand"])
{
//NSLog(@"portalabstand: %d",[[tempPListDic objectForKey:@"portalabstand"]intValue]);
[Portalabstand setIntValue:[[tempPListDic objectForKey:@"portalabstand"]intValue]];
}
else
{
[Portalabstand setIntValue:1000];
}
if ([tempPListDic objectForKey:@"spannweite"])
{
//NSLog(@"spannweite: %d",[[tempPListDic objectForKey:@"spannweite"]intValue]);
[Spannweite setIntValue:[[tempPListDic objectForKey:@"spannweite"]intValue]];
}
else
{
[Spannweite setIntValue:750];
}
if ([tempPListDic objectForKey:@"minimaldistanz"])
{
//NSLog(@"minimaldistanz: %d",[[tempPListDic objectForKey:@"minimaldistanz"]floatValue]);
//[Spannweite setIntValue:[[tempPListDic objectForKey:@"minimaldistanz"]intValue]];
minimaldistanz = [[tempPListDic objectForKey:@"minimaldistanz"]floatValue];
[MinimaldistanzFeld setFloatValue:[[tempPListDic objectForKey:@"minimaldistanz"]floatValue]];
}
else
{
minimaldistanz = 0.8;
[MinimaldistanzFeld setFloatValue:0.8];
}
if ([tempPListDic objectForKey:@"redpwm"])
{
//NSLog(@"redpwm: %2.2f",[[tempPListDic objectForKey:@"redpwm"]floatValue]);
//[Spannweite setIntValue:[[tempPListDic objectForKey:@"minimaldistanz"]intValue]];
[red_pwmFeld setFloatValue: [[tempPListDic objectForKey:@"redpwm"]floatValue]];
}
else
{
[red_pwmFeld setFloatValue:0.4];
}
return tempPListDic;
[tempPListDic release];
}
}
NSLog(@"readCNC_PList: pwm: %2.2f speed: %d",[DC_PWM floatValue],[SpeedFeld intValue]);
// NSLog(@"PListOK: %d",PListOK);
}//USBDatenDa
[USBPfad release];
//
return NULL;
}
- (id) init
{
//if ((self = [super init]))
// [self Alert:@"ADWandler init vor super"];
//NSArray* Wochentage=[[NSArray arrayWithObjects:@"MO",@"DI", @"MI", @"DO", @"FR", @"SA", @"SO",nil]retain];
//NSArray* Raumnamen=[[NSArray arrayWithObjects:@"Heizung", @"Werkstatt", @"WoZi", @"Buero", @"Labor", @"OG1", @"OG2", @"Estrich", nil]retain];
self = [super initWithWindowNibName:@"AVR"];
NSNotificationCenter * nc;
nc=[NSNotificationCenter defaultCenter];
[nc addObserver:self
selector:@selector(MausGraphAktion:)
name:@"mauspunkt"
object:nil];
[nc addObserver:self
selector:@selector(MausDragAktion:)
name:@"mausdrag"
object:nil];
[nc addObserver:self
selector:@selector(MausKlickAktion:)
name:@"mausklick"
object:nil];
[nc addObserver:self
selector:@selector(PfeiltasteAktion:)
name:@"pfeiltaste"
object:nil];
[nc addObserver:self
selector:@selector(ModifierAktion:)
name:@"Modifier"
object:nil];
[nc addObserver:self
selector:@selector(ReportHandlerCallbackAktion:)
name:@"ReportHandlerCallback"
object:nil];
[nc addObserver:self
selector:@selector(I2CAktion:)
name:@"i2c"
object:nil];
[nc addObserver:self
selector:@selector(WriteStandardAktion:)
name:@"WriteStandard"
object:nil];
[nc addObserver:self
selector:@selector(WriteModifierAktion:)
name:@"WriteModifier"
object:nil];
[nc addObserver:self
selector:@selector(USBReadAktion:)
name:@"usbread"
object:nil];
[nc addObserver:self
selector:@selector(MausAktion:)
name:@"mausdaten"
object:nil];
[nc addObserver:self
selector:@selector(PfeilAktion:)
name:@"Pfeil"
object:nil];
[nc addObserver:self
selector:@selector(ElementeingabeAktion:)
name:@"Elementeingabe"
object:nil];
[nc addObserver:self
selector:@selector(LibElementeingabeAktion:)
name:@"LibElementeingabe"
object:nil];
[nc addObserver:self
selector:@selector(LibProfileingabeAktion:)
name:@"LibProfileingabe"
object:nil];
[nc addObserver:self
selector:@selector(FormeingabeAktion:)
name:@"Formeingabe"
object:nil];
[nc addObserver:self
selector:@selector(BlockeingabeAktion:)
name:@"Blockeingabe"
object:nil];
[nc addObserver:self
selector:@selector(FigElementeingabeAktion:)
name:@"FigElementeingabe"
object:nil];
CNCdataPfad=[NSHomeDirectory() stringByAppendingPathComponent:@"documents/CNCData"];
//NSLog(@"CNCdataPfad: %@",CNCdataPfad);
//CNC_PList = [[NSMutableDictionary alloc]initWithCapacity:0];
n=0;
aktuellerTag=0;
IOW_busy=0;
aktuelleMark=(uint8_t)NSNotFound;
//NSLog(@"HomebusAnlegen 2");
AnschlagDic = [[NSMutableDictionary alloc]initWithCapacity:0];
CNCDatenArray= [[NSMutableArray alloc]initWithCapacity:0];
KoordinatenTabelle = [[NSMutableArray alloc]initWithCapacity:0];
UndoKoordinatenTabelle = [[NSMutableArray alloc]initWithCapacity:0];
//BlockKoordinatenTabelle = [[NSMutableArray alloc]initWithCapacity:0];
SchnittdatenArray=[[[NSMutableArray alloc]initWithCapacity:0]retain];