Routing for UAS647

surveyversion := '2'
Group of questions presented on the same screen
omst_intro
In this survey you will be playing two new games we are testing in the UAS. Please set aside about 8 minutes so you can complete the games in one sitting. We will ask you for some feedback on how it went, at the end.
ondeviceask (using smart phone to take survey)
Before we get started could you please tell whether you are using a smartphone to take this survey?
1 I am currently using a smartphone to take this survey
2 I am currently NOT using a smartphone to take this survey
End of group of questions
if ondeviceask = 1 then
onmobilewarning
Thank you!

For the best experience please turn your phone or tablet to a vertical position now. Reading glasses are recommended for those who wear them.

End of if
icon_intro2
In this task, you will see two objects appear on the screen, one after the other, with a bit of "static" for a few seconds between them. Your job is to determine if the two images are exactly the same or or similar to each other.

Click "Next" to see a sample.
icon_timeout := '2000'
icon_trial_total := '26'
Group of questions presented on the same screen
icon_trial_practice1 (icon trial practice 1 response)
1 Same
2 Similar
icon_trial_practice1_result (icon trial response practice 1 result string)
STRING
icon_trial_practice1_answer (icon trial response practice 1 answer string)
STRING
End of group of questions
icon_practice1_answer
Here are those images again. You should have said Same for that one as they were the same images.
Group of questions presented on the same screen
icon_trial_practice2 (icon trial practice 2 response)
1 Same
2 Similar
icon_trial_practice2_result (icon trial response practice 2 result string)
STRING
icon_trial_practice2_answer (icon trial response practice 2 answer string)
STRING
End of group of questions
icon_practice2_answer
Here are those images again. You should have said Similar for that one as they were not exactly the same.
if icon_stimset = empty then
icon_stimset := '1'
icon_progress_randomizer := mt_rand(1,2)
End of if
dummy := setIconTrialInfo(icon_stimset)
Fill code of question 'FLProgressTest_icon' executed
icon_intro3
That's it!

When you are ready to begin the test, click "Next" to start.
Group of questions presented on the same screen
icon_trial_test (icon trial response)
[
]
1 Same
2 Similar
icon_trial_test_result (icon trial response result string)
STRING
icon_trial_test_answer (icon trial response answer string)
STRING
End of group of questions
dummy := processIconAnswers(icon_trial_test_answer)
icon_trial_thanks
You have completed the test. Thank you!
Loop from 1 to ICON_TRIAL_TOTAL
if icon_trial_response[icon_trial_cnt] = icon_trial_correct_answer[icon_trial_cnt] then
icon_trial_response_correct[icon_trial_cnt] := '1'
Else
icon_trial_response_correct[icon_trial_cnt] := '2'
End of if
End of loop
omst_intro2
Now you are going to see pictures of everyday items, one at a time. For each one, you will select Old if you have seen this exact picture before, Similar if it is similar, but not exactly the same as one you saw before, or New if it is entirely a new picture.

The way to think of Similar is whether it has the same name, but is a different picture in any way.

A few practice trials should make this clear.
example1 (example1)
You have not seen this image yet so you should select New here.
0 Old
1 Similar
2 New
example2 (example2)
You have not seen this image yet so you should select New here.
0 Old
1 Similar
2 New
example3 (example3)
You have not seen this image yet so you should select New here.
0 Old
1 Similar
2 New
example4 (example24)
You have seen this image so you should select Old here.
0 Old
1 Similar
2 New
example5 (example5)
This item is similar to one you have seen before, but not exactly the same, so you should select Similar here.
0 Old
1 Similar
2 New
example5_show (example 5 show)
As you can see, these items are similar, but not exactly the same. For this kind of image, you should select Similar to indicate that you saw something similar to this but have not seen that exact item before during this session.
practice1 (practice 1)
Your turn. Have you seen this? Old, Similar, or New?
0 Old
1 Similar
2 New
practice2 (practice 2)
Your turn. Have you seen this? Old, Similar, or New?
0 Old
1 Similar
2 New
practice3 (practice 3)
Your turn. Have you seen this? Old, Similar, or New?
0 Old
1 Similar
2 New
practice4 (practice 4)
Your turn. Have you seen this? Old, Similar, or New?
0 Old
1 Similar
2 New
practice4_show (practice 4 show)
As you can see, these items are similar, but not exactly the same. For this kind of image, you should select Similar to indicate that you saw something similar to this but have not seen that exact item before during this session.
omst_intro3
That's the idea. Now, we'll do the actual test.

Note the test has to be completed in one sitting. Please do not navigate away or attempt to reload the browser address, otherwise you will have to start the test from the beginning again.

As you do the actual task, if the picture disappears before you respond, don't worry. Just make your response even if the screen is blank.

Click "Next" to begin.
if stimset = empty then
stimset := mt_rand(1,6)
subset := mt_rand(1,3)
ignore := '1'
progress_randomizer := mt_rand(1,2)
End of if
timeout := '2000'
trial_total := '128'
dummy := setTrialInfo(stimset,ignore,subset)
omst_type := 1
if omst_type = 1 then
Fill code of question 'scriptname' executed
Fill code of question 'FLProgressTest' executed
Group of questions presented on the same screen
trial_test (trial response)
[
]
0 Old
1 Similar
2 New
trial_test_result (trial response result string)
STRING
trial_test_answer (trial response answer string)
STRING
End of group of questions
dummy := processOMSTAnswers(trial_test_answer)
trial_thanks
You have completed the test. Thank you!
targets := '0'
targets_old := '0'
targets_similar := '0'
targets_new := '0'
lures := '0'
lures_old := '0'
lures_similar := '0'
lures_new := '0'
foils := '0'
foils_old := '0'
foils_similar := '0'
foils_new := '0'
Loop from 1 to TRIAL_TOTAL
if trial_response[trial_cnt] = trial_correct_answer[trial_cnt] then
trial_response_correct[trial_cnt] := '1'
Else
trial_response_correct[trial_cnt] := '2'
End of if
if trial_type[trial_cnt] = 2 then
targets := targets + 1
if trial_response[trial_cnt] = 0 then
targets_old := targets_old + 1
elseif trial_response[trial_cnt] = 1 then
targets_similar := targets_similar + 1
elseif trial_response[trial_cnt] = 2 then
targets_new := targets_new + 1
End of if
elseif trial_type[trial_cnt] = 3 then
lures := lures + 1
if trial_response[trial_cnt] = 0 then
lures_old := lures_old + 1
elseif trial_response[trial_cnt] = 1 then
lures_similar := lures_similar + 1
elseif trial_response[trial_cnt] = 2 then
lures_new := lures_new + 1
End of if
Else
foils := foils + 1
if trial_response[trial_cnt] = 0 then
foils_old := foils_old + 1
elseif trial_response[trial_cnt] = 1 then
foils_similar := foils_similar + 1
elseif trial_response[trial_cnt] = 2 then
foils_new := foils_new + 1
End of if
End of if
End of loop
rec := (targets_old / targets) - (foils_old / foils)
ldi := (lures_similar / lures) - (foils_similar / foils)
Else
targets := '0'
targets_old := '0'
targets_similar := '0'
targets_new := '0'
lures := '0'
lures_old := '0'
lures_similar := '0'
lures_new := '0'
foils := '0'
foils_old := '0'
foils_similar := '0'
foils_new := '0'
Loop from 1 to 128
Fill code of question 'FLProgress[trial_cnt]' executed
Group of questions presented on the same screen
trial_response (trial response)
[
Trial [[]] of ^trial_total
]
0 Old
1 Similar
2 New
trial_response_result (trial response result string)
chosen: [trial response[]]
STRING
End of group of questions
if trial_response[trial_cnt] = trial_correct_answer[trial_cnt] then
trial_response_correct[trial_cnt] := '1'
Else
trial_response_correct[trial_cnt] := '2'
End of if
if trial_type[trial_cnt] = 2 then
targets := targets + 1
if trial_response[trial_cnt] = 0 then
targets_old := targets_old + 1
elseif trial_response[trial_cnt] = 1 then
targets_similar := targets_similar + 1
elseif trial_response[trial_cnt] = 2 then
targets_new := targets_new + 1
End of if
elseif trial_type[trial_cnt] = 3 then
lures := lures + 1
if trial_response[trial_cnt] = 0 then
lures_old := lures_old + 1
elseif trial_response[trial_cnt] = 1 then
lures_similar := lures_similar + 1
elseif trial_response[trial_cnt] = 2 then
lures_new := lures_new + 1
End of if
Else
foils := foils + 1
if trial_response[trial_cnt] = 0 then
foils_old := foils_old + 1
elseif trial_response[trial_cnt] = 1 then
foils_similar := foils_similar + 1
elseif trial_response[trial_cnt] = 2 then
foils_new := foils_new + 1
End of if
End of if
End of loop
rec := (targets_old / targets) - (foils_old / foils)
ldi := (lures_similar / lures) - (foils_similar / foils)
End of if
Group of questions presented on the same screen
ef_intro
We are interested in how hard people try to remember the pictures during this survey.

Using little effort in the survey means clicking without trying very hard, or at all, to remember each picture. Maximum effort means trying hard to remember each picture in detail.
ef001 (how much effort at or near beginning of survey)
At or near the beginning of this survey, how much effort did you use to try to remember each picture?
1 Little effort
2 Some effort
3 Maximum effort
ef002 (how much effort neared to end of survey)
Nearer to the end of this survey, how much effort did you use to try to remember each picture?
1 Little effort
2 Some effort
3 Maximum effort
End of group of questions
ef003 (how willing do another game in next few weeks)
How willing are you to do another game like the one you just completed?
1 Definitely not
2 Probably not
3 Undecided
4 Probably
5 Definitely
CS_001 (HOW PLEASANT INTERVIEW)
Could you tell us how interesting or uninteresting you found the questions in this survey?
1 Very interesting
2 Interesting
3 Neither interesting nor uninteresting
4 Uninteresting
5 Very uninteresting
CS_003 (comments)
Do you have any other comments on the survey? Please type these in the box below. (If you have no comments, please click next to complete this survey.)
STRING