From 993b393035cd4f4e7c92499dd7765b5d4d9f260d Mon Sep 17 00:00:00 2001 From: Guy Davidson Date: Thu, 18 Jan 2024 10:27:22 -0500 Subject: [PATCH] A couple of final instruction/form edits --- src/components/atoms/InstructionsContent.vue | 2 +- .../molecules/SingleGameExtendedJudgment.vue | 28 +++++++++++++++---- 2 files changed, 24 insertions(+), 6 deletions(-) diff --git a/src/components/atoms/InstructionsContent.vue b/src/components/atoms/InstructionsContent.vue index c5b72da..ce46e79 100644 --- a/src/components/atoms/InstructionsContent.vue +++ b/src/components/atoms/InstructionsContent.vue @@ -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.", diff --git a/src/components/molecules/SingleGameExtendedJudgment.vue b/src/components/molecules/SingleGameExtendedJudgment.vue index 4219643..cf57dc9 100644 --- a/src/components/molecules/SingleGameExtendedJudgment.vue +++ b/src/components/molecules/SingleGameExtendedJudgment.vue @@ -18,7 +18,7 @@ function buildDefaultOptions(n, keyword) { 2: `Slightly ${keyword}`, 3: `Moderately ${keyword}`, 4: `Very ${keyword}`, - 5: `Extremley ${keyword}`, + 5: `Extremely ${keyword}`, } } @@ -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'; @@ -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'}, }, // { @@ -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',