-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
instructions for judgment of line orientation task
- Loading branch information
1 parent
bc7037b
commit e6c45ad
Showing
1 changed file
with
118 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,118 @@ | ||
-- Judgement of Line Orientation | ||
UPDATE tasks SET | ||
from_platform = "PSHARPLAB", | ||
task_type = "EXPERIMENTAL", | ||
name = "Lines and Angles Game", | ||
description = "Participants must judge and match the angle of a line", | ||
external_url = "", | ||
config = '{ | ||
"taskConfig": {}, | ||
"metadata": [ | ||
{ | ||
"componentName": "DISPLAYCOMPONENT", | ||
"componentConfig": { | ||
"title": { | ||
"en": "Welcome to the Lines and Angles Game", | ||
"fr": "Bienvenue au Jeu des Lignes et des Angles" | ||
}, | ||
"sections": [ | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Please read the instructions carefully.", | ||
"fr": "Lisez attentivement les instructions." | ||
} | ||
}, | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Click \\"NEXT\\" to continue", | ||
"fr": "Cliquez sur \\"SUIVANT\\" pour continuer" | ||
} | ||
} | ||
], | ||
"buttons": { | ||
"isStart": false, | ||
"previousDisabled": true, | ||
"nextDisabled": false | ||
} | ||
} | ||
}, | ||
{ | ||
"componentName": "DISPLAYCOMPONENT", | ||
"componentConfig": { | ||
"title": "", | ||
"sections": [ | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "You will be shown a line like this:", | ||
"fr": "Une ligne comme celle-ci sera affichée:" | ||
} | ||
}, | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Underneath it, you will see a set of 15 lines:", | ||
"fr": "En dessous, vous verrez un ensemble de 15 lignes:" | ||
} | ||
}, | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "With your mouse, click on the line that matches the angle of the single line at the top. There will be 20 lines to match and you’ll have 10 seconds for each line.", | ||
"fr": "Avec votre souris vous devrez cliquer sur la ligne qui correspond à l’angle de la ligne unique en haut. Vous aurez 20 lignes à identifier et vous disposerez de 10 secondes pour chaque ligne." | ||
} | ||
}, | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Click \\"NEXT\\" to start", | ||
"fr": "Cliquez sur \\"SUIVANT\\" pour commencer" | ||
} | ||
} | ||
], | ||
"buttons": { | ||
"isStart": false, | ||
"previousDisabled": true, | ||
"nextDisabled": false | ||
} | ||
} | ||
}, | ||
{ | ||
"componentName": "DISPLAYCOMPONENT", | ||
"componentConfig": { | ||
"title": "", | ||
"sections": [ | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Congratulations! You completed the game.", | ||
"fr": "Félicitations! Vous avez terminé le jeu." | ||
} | ||
}, | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Thank you for your participation.", | ||
"fr": "Merci pour votre participation." | ||
} | ||
}, | ||
{ | ||
"sectionType": "text", | ||
"textContent": { | ||
"en": "Click \\"CONTINUE\\"", | ||
"fr": "Cliquez sur \\"CONTINUER\\"" | ||
} | ||
} | ||
], | ||
"buttons": { | ||
"isStart": false, | ||
"previousDisabled": true, | ||
"nextDisabled": false | ||
} | ||
} | ||
} | ||
] | ||
}' | ||
|