Dear all,
I am new to matlab and psychtoolbox, and I have some issues with a code I didn’t write.
I have two rectangles appearing on my second screen, and the task is to click on the white one (nice beep). The black one giving a “bad beep” as a response.
My problem is that I can make both rectangles appear on the second screen, but the “click detection” uses coordinates of my rectangle but on my first screen. Can anyone help me with this ?
% Here we call some default settings for setting up Psychtoolbox
PsychDefaultSetup(2);
% Get the screen numbers
screens = Screen('Screens');
% Draw to the external screen if avaliable
screenNumber = max(screens);
% grey background
grey = [76 60 42]./100;
% Open an on screen window
[window, windowRect] = PsychImaging('OpenWindow', screenNumber, grey);
% Get the size of the on screen window
[screenXpixels, screenYpixels] = Screen('WindowSize', window);
% Get the centre coordinate of the window
[xCenter, yCenter] = RectCenter(windowRect);
% Make a base Rect of 500 by 500 pixels
baseRect = [0 0 500 500];
for i=1:numTrials
posx=Shuffle([.25 .75]); % -> posx=Shuffle([posx(1) posx(2)])
squareXpos1 = round([screenXpixels * posx(1)]);
squareXpos2 = round([screenXpixels * posx(2)]);
% Set the colors to Red, Green and Blue
allColors1 = [1 1 1];
allColors2 = [0 0 0];
allRects1 = CenterRectOnPointd(baseRect, squareXpos1, yCenter);
allRects2 = CenterRectOnPointd(baseRect, squareXpos2, yCenter);
% Draw the rect to the screen
Screen('FillRect', window, allColors1, allRects1);
Screen('FillRect', window, allColors2, allRects2);
% Flip to the screen
Screen('Flip', window);
MousePress = 0;
while MousePress == 0 % wait for press
[x,y,buttons] = GetMouse();
MousePress=any(buttons);
end
if MousePress
if ((x > allRects1(1) & x < allRects1(3)) & (y* 0.7 > allRects1(2) & y* 0.7 < allRects1(4)))==1
Beeper(500, 2.5, .3)
in = 1;
else
Beeper(300, 2.5, .2)
in = 0;
in
end
Also, for now, when I click anywhere else than within the coordinates of the first rectangle, this counts as a bad response (which seems logical, using only “else” for the bad response), but I cannot manage to use only the coordinates of the second rectangle as a bad response and the background as “wait for a new press” without counting this as one trial. If you have a solution for this too… I might create another topic for this issue.
I hope that I am not asking too much, this is my first time on a forum !
Thank you all in advance ! (Also, sorry if my english is far from perfect, frenchies are not that good with foreign languages…)