File size: 1,200 Bytes
227148b
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
function [] = taskDone(disp_struct)

    % the outline task instructions
    text_0 = '-COMPLETE-\n\n\n';
    text_1 = 'The task is complete.\n\nPlease let the experimenter know you''re done.\n\n Thank you for your time'; 
    
    Screen('TextSize', disp_struct.wPtr, 30);
    Screen('TextFont', disp_struct.wPtr, 'Times');
    Screen('TextStyle', disp_struct.wPtr, 0);
    Screen('TextColor', disp_struct.wPtr, [255 255 255]);
    Screen('FillRect', disp_struct.wPtr,[0 0 0]);
    % the number of charaters per line
    wrap_length = 70;
    
    % Print out the initial instructions
    
    % Bold the intro
    Screen('TextStyle', disp_struct.wPtr, 1);
    [nx, ny, textbounds] = DrawFormattedText(disp_struct.wPtr, text_0, 'center', 50, [], wrap_length, [], [], 1.25 );
    
    % reset to normal font
    Screen('TextStyle', disp_struct.wPtr, 0);
    [nx, ny, textbounds] = DrawFormattedText(disp_struct.wPtr, text_1, 'center', ny, [], wrap_length, [], [], 1.25 );
    
    % flip the screen
    Screen(disp_struct.wPtr, 'Flip');
    WaitSecs(0.5);
    
    % wait for P
    RestrictKeysForKbCheck(KbName('SPACE'));
    % wait for keypress
    KbWait([],2); % Waits for keyboard(any) press
end