Skip to content

Commit

Permalink
testing collapsed trials
Browse files Browse the repository at this point in the history
an attempt at collapsing the stimulus and emoticon trial into one;
timing is still non-ideal
  • Loading branch information
ctmdev committed Jan 18, 2013
1 parent 9c5b639 commit 539bde6
Showing 1 changed file with 78 additions and 0 deletions.
78 changes: 78 additions & 0 deletions meg_prosody_single.sce
@@ -0,0 +1,78 @@
write_codes = false;
pulse_width = 2;
#no_logfile = false;
#active_buttons = 1;
#button_codes = 3;
#target_button_codes = 3;
randomize_trials = false;
default_attenuation = 0.2;
default_pan = 0.0;

begin;

array {
sound { wavefile { filename = "audio\\1_ang_ss_trimF.wav"; } s1_ang_ss_trimF;};
sound { wavefile { filename = "audio\\1_fea_ss_trimF.wav"; } s1_fea_ss_trimF;};
sound { wavefile { filename = "audio\\1_fea_sw_trimF.wav"; } s1_fea_sw_trimF;};
} stim;

#array<int> stim_order[78] = {,,,};

picture {
bitmap {
filename = "img\\cross.bmp";
};
x = 0; y = 0;
}cross;

picture {
bitmap {
filename = "img\\Emoticons_H.bmp";
};
x = 0; y = 0;
}emoticons;



LOOP $x 1;

trial {
trial_duration = stimuli_length;
picture cross;
sound {
wavefile s1_ang_ss_trimF;
};
code = "s1_ang_ss_trimF";
port_code = 2;
picture emoticons;
deltat = 1500;
duration = 2300;
};

trial {
trial_duration = stimuli_length;
picture cross;
sound {
wavefile s1_fea_ss_trimF;
};
code = "s1_fea_ss_trimF;";
port_code = 2;
picture emoticons;
deltat = 1500;
duration = 2300;
};

trial {
trial_duration = stimuli_length;
picture cross;
sound {
wavefile s1_fea_sw_trimF;
};
code = "s1_fea_sw_trimF";
port_code = 2;
picture emoticons;
deltat = 1500;
duration = 2300;
};

ENDLOOP;

0 comments on commit 539bde6

Please sign in to comment.