-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathFractControllerContrastLett.j
51 lines (38 loc) · 1.46 KB
/
FractControllerContrastLett.j
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
/*
This file is part of FrACT10, a vision test battery.
Copyright © 2021 Michael Bach, bach@uni-freiburg.de, <https://michaelbach.de>
FractControllerContrastLett.j
Created by Bach on 2020-08-17
*/
@import "FractControllerContrast.j"
@implementation FractControllerContrastLett: FractControllerContrast {
}
- (void) drawStimulusInRect: (CGRect) dirtyRect forView: (FractView) fractView { //console.info("FractControllerContrastLett>drawStimulusInRect");
[self calculateForeBackColors];
[self prepareDrawing];
switch(state) {
case kStateDrawBack: break;
case kStateDrawFore:
[self drawFixMark];
break;
case kStateDrawFore2:
[optotypes drawLetterWithStriokeInPx: strokeSizeInPix letterNumber: [alternativesGenerator currentAlternative]];
[self drawFixMark3];
stimStrengthInDeviceunits = [self getCurrentContrastLogCSWeber];
trialInfoString = [self contrastComposeTrialInfoString]; // compose here after colors are set
break;
default: break;
}
[self embedInNoise];
[self drawTouchControls];
CGContextRestoreGState(cgc);
[super drawStimulusInRect: dirtyRect];
}
- (void) runStart { //console.info("FractControllerContrastLett>runStart");
nAlternatives = 10; nTrials = [Settings nTrials08];
[super runStart];
}
- (int) responseNumberFromChar: (CPString) keyChar {
return [self responseNumber10FromChar: keyChar];
}
@end