Skip to content

Commit

Permalink
A couple of final instruction/form edits
Browse files Browse the repository at this point in the history
  • Loading branch information
guydav committed Jan 18, 2024
1 parent 45b9763 commit 993b393
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 6 deletions.
2 changes: 1 addition & 1 deletion src/components/atoms/InstructionsContent.vue
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
import RoomPictures from '@/components/atoms/RoomPictures.vue'
const SINGLE_GAME_INSTRUCTIONS = [
"In this experiment, you will be shown descriptions of various games.",
"In this experiment, you will be shown descriptions of various games, one game at a time.",
"These games were created to be played in a video game environment shown in the images below, which depicts a bedroom with various balls, blocks, toys, and other objects.",
"Please assume that all objects mentioned in the games exist in the room.",
"You will be asked to explain the game in your own words, answer some multiple choice judgement questions, and write a short overall impression about each game.",
Expand Down
28 changes: 23 additions & 5 deletions src/components/molecules/SingleGameExtendedJudgment.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ function buildDefaultOptions(n, keyword) {
2: `Slightly ${keyword}`,
3: `Moderately ${keyword}`,
4: `Very ${keyword}`,
5: `Extremley ${keyword}`,
5: `Extremely ${keyword}`,
}
}
Expand All @@ -42,6 +42,22 @@ function buildAgreementOptions(n) {
}
function buildDifficultyOptions(n) {
if (n === 5) {
return {
1: 'Far too easy',
2: 'Too easy',
3: 'Appropriately difficult',
4: 'Too hard',
5: 'Far too hard',
}
}
console.error('invalid n', n);
return {};
}
const QUESTION_TYPE = 'select';
const VALIDATION_TYPE = 'required:trim';
Expand Down Expand Up @@ -76,8 +92,8 @@ const JUDGEMENT_QUESTIONS = [
},
{
'id': 'capability',
'label': "Imagine that you played this game for several minutes. How much better would it make you at interacting with the virtual environment?",
'options': buildDefaultOptions(5, 'better'),
'label': "Imagine that you played this game for several minutes. How helpful would it be for learning to interact with the virtual environment?",
'options': buildDefaultOptions(5, 'helpful'),
// 'options': {1: 'Not at all', 4: 'Somewhat', 7: 'Very much so'},
},
// {
Expand All @@ -92,8 +108,10 @@ const JUDGEMENT_QUESTIONS = [
// },
{
'id': 'goldilocks',
'label': 'How much do you agree with the following statement: "This game would be appropriately difficult for me, neither too hard nor too easy."',
'options': buildAgreementOptions(5),
// 'label': 'How much do you agree with the following statement: "This game would be appropriately difficult for me, neither too hard nor too easy."',
'label': 'Imagine that you played this game for several minutes. Do you think it would be too easy, appropriately difficult, or too hard for you?',
// 'options': buildAgreementOptions(5),
'options': buildDifficultyOptions(5),
},
{
'id': 'creativity',
Expand Down

0 comments on commit 993b393

Please sign in to comment.