-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmonitor_set.m
executable file
·77 lines (63 loc) · 2.68 KB
/
monitor_set.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
function [monitor] = monitor_set
% 12/3/11
% Ken Hwang
% PSU, Scherf Lab, SLEIC, Dept. of Psych.
% Determines monitor settings
% Output: monitor data structure
%
% ---------- Window Setup ----------
% Opens a window.
% Screen is able to do a lot of configuration and performance checks on
% open, and will print out a fair amount of detailed information when
% it does. These commands supress that checking behavior and just let
% the demo go straight into action. See ScreenTest for an example of
% how to do detailed checking.
oldVisualDebugLevel = Screen('Preference', 'VisualDebugLevel', 3);
oldSupressAllWarnings = Screen('Preference', 'SuppressAllWarnings', 1);
oldEnableFlag = Screen('Preference', 'SkipSyncTests', 0);
% Find out how many screens and use largest screen number.
whichScreen = max(Screen('Screens'));
% Opens a graphics window on the main monitor (screen 0). If you have
% multiple monitors connected to your computer, then you can specify
% a different monitor by supplying a different number in the second
% argument to OpenWindow, e.g. Screen('OpenWindow', 2).
%Dan Update - 4/19/17
%Screen('Preference', 'SkipSyncTests', 1); %Uncomment to fix display issues
[window,rect] = Screen('OpenWindow', whichScreen);
% Screen center calculations
center_W = rect(3)/2;
center_H = rect(4)/2;
% ---------- Color Setup ----------
% Gets color values.
% Retrieves color codes for black and white and gray.
black = BlackIndex(window); % Retrieves the CLUT color code for black.
white = WhiteIndex(window); % Retrieves the CLUT color code for white.
gray = (black + white) / 2; % Computes the CLUT color code for gray.
if round(gray)==white
gray=black;
end
% Taking the absolute value of the difference between white and gray will
% help keep the grating consistent regardless of whether the CLUT color
% code for white is less or greater than the CLUT color code for black.
absoluteDifferenceBetweenWhiteAndGray = abs(white - gray);
% Data structure for monitor info
monitor.oldVisualDebugLevel = oldVisualDebugLevel;
monitor.oldSupressAllWarnings = oldSupressAllWarnings;
monitor.oldEnableFlag = oldEnableFlag;
monitor.whichScreen = whichScreen;
monitor.window = window;
monitor.rect = rect;
monitor.center_W = center_W;
monitor.center_H = center_H;
monitor.black = black;
monitor.white = white;
monitor.gray = gray;
monitor.absoluteDifferenceBetweenWhiteAndGray = absoluteDifferenceBetweenWhiteAndGray;
% ---------- Window Cleanup ----------
% Closes all windows.
Screen('CloseAll');
% Restore preferences
Screen('Preference', 'VisualDebugLevel', oldVisualDebugLevel);
Screen('Preference', 'SuppressAllWarnings', oldSupressAllWarnings);
Screen('Preference', 'SkipSyncTests', oldEnableFlag);
end