@m2c2kit/assessment-color-shapes 0.8.15 → 0.8.17
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.js +80 -67
- package/dist/index.js.map +1 -1
- package/dist/index.min.js +1 -1
- package/package.json +11 -9
- package/schemas.json +377 -0
package/dist/index.js
CHANGED
|
@@ -88,6 +88,11 @@ class ColorShapes extends Game {
|
|
|
88
88
|
type: "string",
|
|
89
89
|
enum: ["short", "long"]
|
|
90
90
|
},
|
|
91
|
+
instructions: {
|
|
92
|
+
default: null,
|
|
93
|
+
type: ["object", "null"],
|
|
94
|
+
description: "When non-null, an InstructionsOptions object that will completely override the built-in instructions."
|
|
95
|
+
},
|
|
91
96
|
show_quit_button: {
|
|
92
97
|
type: "boolean",
|
|
93
98
|
default: true,
|
|
@@ -223,8 +228,9 @@ class ColorShapes extends Game {
|
|
|
223
228
|
* This id must match the property m2c2kit.assessmentId in package.json
|
|
224
229
|
*/
|
|
225
230
|
id: "color-shapes",
|
|
226
|
-
|
|
227
|
-
|
|
231
|
+
publishUuid: "394cb010-2ccf-4a87-9d23-cda7fb07a960",
|
|
232
|
+
version: "0.8.17 (0679492d)",
|
|
233
|
+
moduleMetadata: { "name": "@m2c2kit/assessment-color-shapes", "version": "0.8.17", "dependencies": { "@m2c2kit/addons": "0.3.16", "@m2c2kit/core": "0.3.19" } },
|
|
228
234
|
shortDescription: "Color Shapes is a visual array change detection task, measuring intra-item feature binding, where participants determine if shapes change color across two sequential presentations of shape stimuli.",
|
|
229
235
|
longDescription: `Color Shapes is a change detection paradigm used to measure visual short-term memory binding (Parra et al., 2009). Participants are asked to memorize the shapes and colors of three different polygons for 3 seconds. The three polygons are then removed from the screen and re-displayed at different locations, either having the same or different colors. Participants are then asked to decide whether the combination of colors and shapes are the "Same" or "Different" between the study and test phases.`,
|
|
230
236
|
showFps: defaultParameters.show_fps.default,
|
|
@@ -297,68 +303,75 @@ class ColorShapes extends Game {
|
|
|
297
303
|
});
|
|
298
304
|
}
|
|
299
305
|
let instructionsScenes;
|
|
300
|
-
|
|
301
|
-
|
|
302
|
-
|
|
303
|
-
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
|
|
307
|
-
|
|
308
|
-
|
|
309
|
-
|
|
310
|
-
|
|
311
|
-
|
|
312
|
-
|
|
313
|
-
|
|
314
|
-
|
|
315
|
-
|
|
316
|
-
|
|
317
|
-
|
|
318
|
-
|
|
319
|
-
|
|
320
|
-
|
|
321
|
-
|
|
322
|
-
|
|
323
|
-
|
|
324
|
-
|
|
325
|
-
|
|
326
|
-
|
|
327
|
-
|
|
328
|
-
|
|
329
|
-
|
|
330
|
-
|
|
331
|
-
|
|
332
|
-
|
|
333
|
-
|
|
334
|
-
|
|
335
|
-
|
|
336
|
-
|
|
337
|
-
|
|
338
|
-
|
|
339
|
-
|
|
340
|
-
|
|
341
|
-
|
|
342
|
-
|
|
343
|
-
|
|
344
|
-
|
|
345
|
-
|
|
346
|
-
|
|
347
|
-
|
|
348
|
-
|
|
349
|
-
|
|
350
|
-
|
|
351
|
-
|
|
352
|
-
|
|
353
|
-
|
|
354
|
-
|
|
355
|
-
|
|
356
|
-
|
|
357
|
-
|
|
358
|
-
|
|
359
|
-
|
|
360
|
-
|
|
361
|
-
|
|
306
|
+
const customInstructions = game.getParameter(
|
|
307
|
+
"instructions"
|
|
308
|
+
);
|
|
309
|
+
if (customInstructions) {
|
|
310
|
+
instructionsScenes = Instructions.create(customInstructions);
|
|
311
|
+
} else {
|
|
312
|
+
switch (game.getParameter("instruction_type")) {
|
|
313
|
+
case "short": {
|
|
314
|
+
instructionsScenes = Instructions.create({
|
|
315
|
+
instructionScenes: [
|
|
316
|
+
{
|
|
317
|
+
title: "Color Shapes",
|
|
318
|
+
text: `Try to remember the color of ${numberOfShapesShown} shapes, because they will soon disappear. When the shapes reappear, answer whether they have the SAME or DIFFERENT colors as they had before.`,
|
|
319
|
+
imageName: "instructions-1",
|
|
320
|
+
imageAboveText: false,
|
|
321
|
+
imageMarginTop: 32,
|
|
322
|
+
textFontSize: 24,
|
|
323
|
+
titleFontSize: 30,
|
|
324
|
+
textVerticalBias: 0.2,
|
|
325
|
+
nextButtonText: "START",
|
|
326
|
+
nextButtonBackgroundColor: WebColors.Green,
|
|
327
|
+
nextSceneTransition: Transition.none()
|
|
328
|
+
}
|
|
329
|
+
]
|
|
330
|
+
});
|
|
331
|
+
break;
|
|
332
|
+
}
|
|
333
|
+
case "long": {
|
|
334
|
+
instructionsScenes = Instructions.create({
|
|
335
|
+
instructionScenes: [
|
|
336
|
+
{
|
|
337
|
+
title: "Color Shapes",
|
|
338
|
+
text: `Try to remember the color of ${numberOfShapesShown} shapes, because they will soon disappear.`,
|
|
339
|
+
imageName: "instructions-1",
|
|
340
|
+
imageAboveText: false,
|
|
341
|
+
imageMarginTop: 32,
|
|
342
|
+
textFontSize: 24,
|
|
343
|
+
titleFontSize: 30,
|
|
344
|
+
textVerticalBias: 0.2
|
|
345
|
+
},
|
|
346
|
+
{
|
|
347
|
+
title: "Color Shapes",
|
|
348
|
+
text: "Next you will see the same shapes reappear.",
|
|
349
|
+
imageName: "instructions-2",
|
|
350
|
+
imageAboveText: false,
|
|
351
|
+
imageMarginTop: 32,
|
|
352
|
+
textFontSize: 24,
|
|
353
|
+
titleFontSize: 30,
|
|
354
|
+
textVerticalBias: 0.2
|
|
355
|
+
},
|
|
356
|
+
{
|
|
357
|
+
title: "Color Shapes",
|
|
358
|
+
text: "Answer whether the shapes have the SAME or DIFFERENT colors as they had before.",
|
|
359
|
+
imageName: "instructions-3",
|
|
360
|
+
imageAboveText: false,
|
|
361
|
+
imageMarginTop: 32,
|
|
362
|
+
textFontSize: 24,
|
|
363
|
+
titleFontSize: 30,
|
|
364
|
+
textVerticalBias: 0.2,
|
|
365
|
+
nextButtonText: "START",
|
|
366
|
+
nextButtonBackgroundColor: WebColors.Green
|
|
367
|
+
}
|
|
368
|
+
]
|
|
369
|
+
});
|
|
370
|
+
break;
|
|
371
|
+
}
|
|
372
|
+
default: {
|
|
373
|
+
throw new Error("invalid value for instruction_type");
|
|
374
|
+
}
|
|
362
375
|
}
|
|
363
376
|
}
|
|
364
377
|
instructionsScenes[0].onAppear(() => {
|
|
@@ -576,7 +589,7 @@ class ColorShapes extends Game {
|
|
|
576
589
|
}),
|
|
577
590
|
Action.custom({
|
|
578
591
|
callback: () => {
|
|
579
|
-
presentationGrid.
|
|
592
|
+
presentationGrid.removeAllGridChildren();
|
|
580
593
|
}
|
|
581
594
|
}),
|
|
582
595
|
Action.wait({
|
|
@@ -584,7 +597,7 @@ class ColorShapes extends Game {
|
|
|
584
597
|
}),
|
|
585
598
|
Action.custom({
|
|
586
599
|
callback: () => {
|
|
587
|
-
presentationGrid.
|
|
600
|
+
presentationGrid.removeAllGridChildren();
|
|
588
601
|
game.presentScene(shapeResponseScene);
|
|
589
602
|
}
|
|
590
603
|
})
|
|
@@ -649,7 +662,7 @@ class ColorShapes extends Game {
|
|
|
649
662
|
const handleSelection = (differentPressed) => {
|
|
650
663
|
const rt = Timer.elapsed("rt");
|
|
651
664
|
Timer.remove("rt");
|
|
652
|
-
responseGrid.
|
|
665
|
+
responseGrid.removeAllGridChildren();
|
|
653
666
|
game.addTrialData(
|
|
654
667
|
"trial_end_iso8601_timestamp",
|
|
655
668
|
(/* @__PURE__ */ new Date()).toISOString()
|
package/dist/index.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import {\n Game,\n Action,\n Scene,\n Shape,\n Label,\n Transition,\n TransitionDirection,\n WebColors,\n RandomDraws,\n GameParameters,\n GameOptions,\n TrialSchema,\n Timer,\n Easings,\n RgbaColor,\n Sprite,\n Constants,\n} from \"@m2c2kit/core\";\nimport { Button, Grid, Instructions, CountdownScene } from \"@m2c2kit/addons\";\n\n/**\n * Color Shapes is a visual array change detection task, measuring intra-item\n * feature binding, where participants determine if shapes change color across\n * two sequential presentations of shape stimuli.\n */\nclass ColorShapes extends Game {\n constructor() {\n /**\n * These are configurable game parameters and their defaults.\n * Each game parameter should have a type, default (this is the default\n * value), and a description.\n */\n const defaultParameters: GameParameters = {\n fixation_duration_ms: {\n default: 500,\n description: \"How long fixation scene is shown, milliseconds.\",\n type: \"number\",\n },\n shape_colors: {\n type: \"array\",\n description: \"Array of colors for shapes.\",\n items: {\n type: \"object\",\n properties: {\n colorName: {\n type: \"string\",\n description: \"Human-friendly name of color.\",\n },\n rgbaColor: {\n type: \"array\",\n description: \"Color as array, [r,g,b,a].\",\n items: {\n type: \"number\",\n },\n },\n },\n },\n default: [\n { colorName: \"black\", rgbaColor: [0, 0, 0, 1] },\n { colorName: \"green\", rgbaColor: [0, 158, 115, 1] },\n { colorName: \"yellow\", rgbaColor: [240, 228, 66, 1] },\n { colorName: \"blue\", rgbaColor: [0, 114, 178, 1] },\n { colorName: \"orange\", rgbaColor: [213, 94, 0, 1] },\n { colorName: \"pink\", rgbaColor: [204, 121, 167, 1] },\n ],\n },\n number_of_shapes_shown: {\n default: 3,\n description: \"How many shapes to show on the grid at one time.\",\n type: \"integer\",\n },\n shapes_presented_duration_ms: {\n default: 2000,\n description: \"How long the shapes are shown, milliseconds.\",\n type: \"number\",\n },\n shapes_removed_duration_ms: {\n default: 1000,\n description:\n \"How long to show a blank square after shapes are removed, milliseconds.\",\n type: \"number\",\n },\n cells_per_side: {\n default: 3,\n description:\n \"How many cell positions for each side of the square grid (e.g., 3 is a 3x3 grid; 4 is a 4x4 grid).\",\n type: \"integer\",\n },\n number_of_different_colors_trials: {\n default: 2,\n type: \"integer\",\n description:\n \"Number of trials where the shapes have different colors. If shapes have different colors in a trial, anywhere from 2 to (number of shapes) will be given different colors.\",\n },\n number_of_trials: {\n default: 4,\n description: \"How many trials to run.\",\n type: \"integer\",\n },\n show_trials_complete_scene: {\n default: true,\n type: \"boolean\",\n description:\n \"After the final trial, should a completion scene be shown? Otherwise, the game will immediately end.\",\n },\n trials_complete_scene_text: {\n default: \"You have completed all the color shapes trials\",\n description: \"Text for scene displayed after all trials are complete.\",\n type: \"string\",\n },\n trials_complete_scene_button_text: {\n default: \"OK\",\n description:\n \"Button text for scene displayed after all trials are complete.\",\n type: \"string\",\n },\n instruction_type: {\n default: \"long\",\n description: \"Type of instructions to show, 'short' or 'long'.\",\n type: \"string\",\n enum: [\"short\", \"long\"],\n },\n show_quit_button: {\n type: \"boolean\",\n default: true,\n description: \"Should the activity quit button be shown?\",\n },\n show_fps: {\n type: \"boolean\",\n default: false,\n description: \"Should the FPS be shown?\",\n },\n };\n\n /**\n * This describes all the data that will be generated by the assessment.\n * At runtime, when a trial completes, the data will be returned to the\n * session with a callback, along with this schema transformed into\n * JSON Schema.\n */\n const colorShapesTrialSchema: TrialSchema = {\n activity_begin_iso8601_timestamp: {\n type: \"string\",\n format: \"date-time\",\n description:\n \"ISO 8601 timestamp at the beginning of the game activity.\",\n },\n trial_begin_iso8601_timestamp: {\n type: [\"string\", \"null\"],\n format: \"date-time\",\n description:\n \"ISO 8601 timestamp at the beginning of the trial. Null if trial was skipped.\",\n },\n trial_end_iso8601_timestamp: {\n type: [\"string\", \"null\"],\n format: \"date-time\",\n description:\n \"ISO 8601 timestamp at the end of the trial (when user presses 'Same' or 'Different'). Null if trial was skipped.\",\n },\n trial_index: {\n type: [\"integer\", \"null\"],\n description: \"Index of the trial within this assessment, 0-based.\",\n },\n present_shapes: {\n description:\n \"Configuration of shapes shown to the user in the presentation phase. Null if trial was skipped.\",\n type: [\"array\", \"null\"],\n items: {\n type: \"object\",\n properties: {\n shape_index: {\n type: \"integer\",\n description:\n \"Index of the shape within the library of shapes, 0-based\",\n },\n color_name: {\n type: \"string\",\n description: \"Human-friendly name of color.\",\n },\n rgba_color: {\n type: \"array\",\n description: \"Color as array, [r,g,b,a].\",\n items: {\n type: \"number\",\n },\n },\n location: {\n type: \"object\",\n description: \"Location of shape.\",\n properties: {\n row: {\n type: \"number\",\n description: \"Row of the shape, 0-based.\",\n },\n column: {\n type: \"number\",\n description: \"Column of the shape, 0-based.\",\n },\n },\n },\n },\n },\n },\n response_shapes: {\n description:\n \"Configuration of shapes shown to the user in the response phase. Null if trial was skipped.\",\n type: [\"array\", \"null\"],\n items: {\n type: \"object\",\n properties: {\n shape_index: {\n type: \"integer\",\n description:\n \"Index of the shape within the library of shapes, 0-based\",\n },\n color_name: {\n type: \"string\",\n description: \"Human-friendly name of color.\",\n },\n rgba_color: {\n type: \"array\",\n description: \"Color as array, [r,g,b,a].\",\n items: {\n type: \"number\",\n },\n },\n location: {\n type: \"object\",\n description: \"Location of shape.\",\n properties: {\n row: {\n type: \"number\",\n description: \"Row of the shape, 0-based.\",\n },\n column: {\n type: \"number\",\n description: \"Column of the shape, 0-based.\",\n },\n },\n },\n },\n },\n },\n number_of_different_shapes: {\n type: [\"integer\", \"null\"],\n description:\n \"Number of shapes shown with different colors in the response phase.\",\n },\n response_time_duration_ms: {\n type: [\"number\", \"null\"],\n description:\n \"Milliseconds from when the response configuration of shapes is shown until the user taps a response. Null if trial was skipped.\",\n },\n user_response: {\n type: [\"string\", \"null\"],\n enum: [\"same\", \"different\"],\n description:\n \"User's response to whether the shapes are same colors or different.\",\n },\n user_response_correct: {\n type: [\"boolean\", \"null\"],\n description: \"Was the user's response correct?\",\n },\n quit_button_pressed: {\n type: \"boolean\",\n description: \"Was the quit button pressed?\",\n },\n };\n\n const options: GameOptions = {\n name: \"Color Shapes\",\n /**\n * This id must match the property m2c2kit.assessmentId in package.json\n */\n id: \"color-shapes\",\n version: \"__PACKAGE_JSON_VERSION__\",\n moduleMetadata: Constants.MODULE_METADATA_PLACEHOLDER,\n shortDescription:\n \"Color Shapes is a visual array change detection \\\ntask, measuring intra-item feature binding, where participants determine \\\nif shapes change color across two sequential presentations of shape \\\nstimuli.\",\n longDescription: `Color Shapes is a change detection paradigm used \\\nto measure visual short-term memory binding (Parra et al., 2009). \\\nParticipants are asked to memorize the shapes and colors of three different \\\npolygons for 3 seconds. The three polygons are then removed from the screen \\\nand re-displayed at different locations, either having the same or different \\\ncolors. Participants are then asked to decide whether the combination of \\\ncolors and shapes are the \"Same\" or \"Different\" between the study and test \\\nphases.`,\n showFps: defaultParameters.show_fps.default,\n width: 400,\n height: 800,\n trialSchema: colorShapesTrialSchema,\n parameters: defaultParameters,\n fonts: [\n {\n fontName: \"roboto\",\n url: \"fonts/roboto/Roboto-Regular.ttf\",\n },\n ],\n images: [\n {\n imageName: \"instructions-1\",\n height: 256,\n width: 256,\n url: \"images/cs-instructions-1.png\",\n },\n {\n imageName: \"instructions-2\",\n height: 256,\n width: 256,\n url: \"images/cs-instructions-2.png\",\n },\n {\n imageName: \"instructions-3\",\n height: 330,\n width: 256,\n url: \"images/cs-instructions-3.png\",\n },\n {\n imageName: \"circle-x\",\n height: 32,\n width: 32,\n // the svg is from evericons and is licensed under CC0 1.0\n // Universal (Public Domain). see https://www.patreon.com/evericons\n url: \"images/circle-x.svg\",\n },\n ],\n };\n\n super(options);\n }\n\n override async initialize() {\n await super.initialize();\n // just for convenience, alias the variable game to \"this\"\n // (even though eslint doesn't like it)\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const game = this;\n\n const SHAPE_SVG_HEIGHT = 96;\n const SQUARE_SIDE_LENGTH = 350;\n const numberOfShapesShown = game.getParameter<number>(\n \"number_of_shapes_shown\",\n );\n const shapeLibrary = this.makeShapes(SHAPE_SVG_HEIGHT);\n\n // ==============================================================\n\n if (game.getParameter<boolean>(\"show_quit_button\")) {\n const quitSprite = new Sprite({\n imageName: \"circle-x\",\n position: { x: 380, y: 20 },\n isUserInteractionEnabled: true,\n });\n game.addFreeNode(quitSprite);\n quitSprite.onTapDown((e) => {\n game.removeAllFreeNodes();\n e.handled = true;\n const blankScene = new Scene();\n game.addScene(blankScene);\n game.presentScene(blankScene);\n game.addTrialData(\"quit_button_pressed\", true);\n game.trialComplete();\n game.cancel();\n });\n }\n\n // ==============================================================\n // SCENES: instructions\n let instructionsScenes: Array<Scene>;\n\n switch (game.getParameter(\"instruction_type\")) {\n case \"short\": {\n instructionsScenes = Instructions.create({\n instructionScenes: [\n {\n title: \"Color Shapes\",\n text: `Try to remember the location and color of ${numberOfShapesShown} shapes, because they will soon disappear. When the shapes reappear, answer whether they have the SAME or DIFFERENT colors as they had before.`,\n imageName: \"instructions-1\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n nextButtonText: \"START\",\n nextButtonBackgroundColor: WebColors.Green,\n nextSceneTransition: Transition.none(),\n },\n ],\n });\n break;\n }\n case \"long\": {\n instructionsScenes = Instructions.create({\n instructionScenes: [\n {\n title: \"Color Shapes\",\n text: `Try to remember the location and color of ${numberOfShapesShown} shapes, because they will soon disappear.`,\n imageName: \"instructions-1\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n },\n {\n title: \"Color Shapes\",\n text: \"Next you will see the same shapes reappear.\",\n imageName: \"instructions-2\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n },\n {\n title: \"Color Shapes\",\n text: \"Answer whether the shapes have the SAME or DIFFERENT colors as they had before.\",\n imageName: \"instructions-3\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n nextButtonText: \"START\",\n nextButtonBackgroundColor: WebColors.Green,\n },\n ],\n });\n break;\n }\n default: {\n throw new Error(\"invalid value for instruction_type\");\n }\n }\n instructionsScenes[0].onAppear(() => {\n // in case user quits before starting a trial, record the\n // timestamp\n game.addTrialData(\n \"activity_begin_iso8601_timestamp\",\n this.beginIso8601Timestamp,\n );\n });\n game.addScenes(instructionsScenes);\n\n // ==============================================================\n // SCENE: countdown. Show 3 second countdown.\n const countdownScene = new CountdownScene({\n milliseconds: 3000,\n text: \"GET READY!\",\n zeroDwellMilliseconds: 1000,\n transition: Transition.none(),\n });\n game.addScene(countdownScene);\n\n const gridRows = game.getParameter<number>(\"cells_per_side\");\n const gridColumns = game.getParameter<number>(\"cells_per_side\");\n const numberOfTrials = game.getParameter<number>(\"number_of_trials\");\n const shapeColors =\n game.getParameter<Array<{ colorName: string; rgbaColor: RgbaColor }>>(\n \"shape_colors\",\n );\n\n interface DisplayShape {\n shape: Shape;\n shapeIndex: number;\n color: RgbaColor;\n colorName: string;\n location: {\n row: number;\n column: number;\n };\n }\n\n interface TrialConfiguration {\n presentShapes: Array<DisplayShape>;\n responseShapes: Array<DisplayShape>;\n numberOfShapesWithDifferentColors: number;\n }\n\n const trialConfigurations: Array<TrialConfiguration> = [];\n const rows = game.getParameter<number>(\"cells_per_side\");\n const columns = rows;\n const numberOfDifferentColorsTrials = game.getParameter<number>(\n \"number_of_different_colors_trials\",\n );\n const differentColorsTrialIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfDifferentColorsTrials,\n 0,\n numberOfTrials - 1,\n );\n\n for (let i = 0; i < numberOfTrials; i++) {\n const presentShapes = new Array<DisplayShape>();\n const responseShapes = new Array<DisplayShape>();\n const shapesToShowIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfShapesShown,\n 0,\n shapeLibrary.length - 1,\n );\n const shapeColorsIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfShapesShown,\n 0,\n shapeColors.length - 1,\n );\n\n // do not allow shapes to be in the same row or column\n // or along the diagonal\n const onDiagonal = (\n locations: {\n row: number;\n column: number;\n }[],\n ): boolean => {\n if (\n locations\n .map((c) => c.row === 0 && c.column === 0)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 1 && c.column === 1)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 2 && c.column === 2)\n .some((e) => e === true)\n ) {\n return true;\n }\n if (\n locations\n .map((c) => c.row === 2 && c.column === 0)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 1 && c.column === 1)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 0 && c.column === 2)\n .some((e) => e === true)\n ) {\n return true;\n }\n return false;\n };\n\n const inLine = (\n locations: {\n row: number;\n column: number;\n }[],\n ): boolean => {\n const uniqueRows = new Set(locations.map((l) => l.row)).size;\n const uniqueColumns = new Set(locations.map((l) => l.column)).size;\n\n if (uniqueRows !== 1 && uniqueColumns !== 1) {\n return false;\n }\n return true;\n };\n\n // assign present shapes' locations and colors\n let presentLocationsOk = false;\n let presentLocations: {\n row: number;\n column: number;\n }[];\n do {\n presentLocations = RandomDraws.FromGridWithoutReplacement(\n numberOfShapesShown,\n rows,\n columns,\n );\n\n if (!inLine(presentLocations) && !onDiagonal(presentLocations)) {\n presentLocationsOk = true;\n } else {\n presentLocationsOk = false;\n }\n } while (!presentLocationsOk);\n for (let j = 0; j < numberOfShapesShown; j++) {\n const presentShape: DisplayShape = {\n shape: shapeLibrary[shapesToShowIndexes[j]],\n shapeIndex: shapesToShowIndexes[j],\n color: shapeColors[shapeColorsIndexes[j]].rgbaColor,\n colorName: shapeColors[shapeColorsIndexes[j]].colorName,\n location: presentLocations[j],\n };\n presentShapes.push(presentShape);\n }\n\n // assign response shapes' locations\n let responseLocationsOk = false;\n let responseLocations: {\n row: number;\n column: number;\n }[];\n do {\n responseLocations = RandomDraws.FromGridWithoutReplacement(\n numberOfShapesShown,\n rows,\n columns,\n );\n\n if (!inLine(responseLocations) && !onDiagonal(responseLocations)) {\n responseLocationsOk = true;\n } else {\n responseLocationsOk = false;\n }\n } while (!responseLocationsOk);\n for (let j = 0; j < numberOfShapesShown; j++) {\n const responseShape: DisplayShape = {\n shape: presentShapes[j].shape,\n shapeIndex: shapesToShowIndexes[j],\n color: presentShapes[j].color,\n colorName: shapeColors[shapeColorsIndexes[j]].colorName,\n location: responseLocations[j],\n };\n responseShapes.push(responseShape);\n }\n\n let numberOfShapesWithDifferentColors = 0;\n const differentColorTrial = differentColorsTrialIndexes.includes(i);\n\n if (differentColorTrial) {\n const numberOfShapesToChange = RandomDraws.SingleFromRange(\n 2,\n numberOfShapesShown,\n );\n const shapesToChangeIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfShapesToChange,\n 0,\n numberOfShapesShown - 1,\n );\n const shapesToChange = shapesToChangeIndexes.map(\n (index) => responseShapes[index],\n );\n numberOfShapesWithDifferentColors = shapesToChange.length;\n\n /**\n * rotate each shape's color to the next one. The last shape\n * gets the first shape's color\n */\n const firstShapeColor = shapesToChange[0].color;\n for (let j = 0; j < numberOfShapesToChange; j++) {\n const shape = shapesToChange[j];\n if (j + 1 < numberOfShapesToChange) {\n shape.color = shapesToChange[j + 1].color;\n } else {\n shape.color = firstShapeColor;\n }\n }\n }\n\n trialConfigurations.push({\n presentShapes: presentShapes,\n responseShapes: responseShapes,\n numberOfShapesWithDifferentColors: numberOfShapesWithDifferentColors,\n });\n }\n\n // ==============================================================\n // SCENE: fixation. Show get ready message, then advance after XXXX\n // milliseconds (as defined in fixation_duration_ms parameter)\n const fixationScene = new Scene();\n game.addScene(fixationScene);\n\n const fixationSceneSquare = new Shape({\n rect: { size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH } },\n fillColor: WebColors.Transparent,\n strokeColor: WebColors.Gray,\n lineWidth: 4,\n position: { x: 200, y: 300 },\n });\n fixationScene.addChild(fixationSceneSquare);\n\n const plusLabel = new Label({\n text: \"+\",\n fontSize: 32,\n fontColor: WebColors.Black,\n });\n fixationSceneSquare.addChild(plusLabel);\n\n fixationScene.onAppear(() => {\n game.addTrialData(\n \"activity_begin_iso8601_timestamp\",\n this.beginIso8601Timestamp,\n );\n game.addTrialData(\n \"trial_begin_iso8601_timestamp\",\n new Date().toISOString(),\n );\n fixationScene.run(\n Action.sequence([\n Action.wait({ duration: game.getParameter(\"fixation_duration_ms\") }),\n Action.custom({\n callback: () => {\n game.presentScene(shapePresentationScene);\n },\n }),\n ]),\n );\n });\n\n // ==============================================================\n // SCENE: Shape Presentation.\n const shapePresentationScene = new Scene();\n game.addScene(shapePresentationScene);\n\n const presentationSceneSquare = new Shape({\n rect: { size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH } },\n fillColor: WebColors.Transparent,\n strokeColor: WebColors.Gray,\n lineWidth: 4,\n position: { x: 200, y: 300 },\n });\n shapePresentationScene.addChild(presentationSceneSquare);\n\n const presentationGrid = new Grid({\n rows: gridRows,\n columns: gridColumns,\n size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH },\n position: { x: 200, y: 300 },\n backgroundColor: WebColors.Transparent,\n gridLineColor: WebColors.Transparent,\n });\n shapePresentationScene.addChild(presentationGrid);\n\n shapePresentationScene.onAppear(() => {\n const trialConfiguration = trialConfigurations[game.trialIndex];\n for (let i = 0; i < trialConfiguration.presentShapes.length; i++) {\n const presentShape = trialConfiguration.presentShapes[i].shape;\n presentShape.fillColor = trialConfiguration.presentShapes[i].color;\n /**\n * Because we are repositioning children of a grid, we need to\n * set its position back to zero, because in the grid, it recalculates\n * the position. If we don't do this, the shapes will be positioned\n * incorrectly if they are positioned a second time.\n */\n presentShape.position = { x: 0, y: 0 };\n presentationGrid.addAtCell(\n presentShape,\n trialConfiguration.presentShapes[i].location.row,\n trialConfiguration.presentShapes[i].location.column,\n );\n }\n shapePresentationScene.run(\n Action.sequence([\n Action.wait({\n duration: game.getParameter(\"shapes_presented_duration_ms\"),\n }),\n Action.custom({\n callback: () => {\n presentationGrid.removeAllChildren();\n },\n }),\n Action.wait({\n duration: game.getParameter(\"shapes_removed_duration_ms\"),\n }),\n Action.custom({\n callback: () => {\n presentationGrid.removeAllChildren();\n game.presentScene(shapeResponseScene);\n },\n }),\n ]),\n );\n });\n\n // ==============================================================\n // SCENE: Shape Response.\n const shapeResponseScene = new Scene();\n game.addScene(shapeResponseScene);\n\n const responseSceneSquare = new Shape({\n rect: { size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH } },\n fillColor: WebColors.Transparent,\n strokeColor: WebColors.Gray,\n lineWidth: 4,\n position: { x: 200, y: 300 },\n });\n shapeResponseScene.addChild(responseSceneSquare);\n\n const responseGrid = new Grid({\n rows: gridRows,\n columns: gridColumns,\n size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH },\n position: { x: 200, y: 300 },\n backgroundColor: WebColors.Transparent,\n gridLineColor: WebColors.Transparent,\n });\n shapeResponseScene.addChild(responseGrid);\n\n shapeResponseScene.onAppear(() => {\n const trialConfiguration = trialConfigurations[game.trialIndex];\n for (let i = 0; i < trialConfiguration.responseShapes.length; i++) {\n const responseShape = trialConfiguration.responseShapes[i].shape;\n responseShape.fillColor = trialConfiguration.responseShapes[i].color;\n /**\n * Because we are repositioning children of a grid, we need to\n * set its position back to zero, because in the grid, it recalculates\n * the position. If we don't do this, the shapes will be positioned\n * incorrectly if they are positioned a second time.\n */\n responseShape.position = { x: 0, y: 0 };\n responseGrid.addAtCell(\n responseShape,\n trialConfiguration.responseShapes[i].location.row,\n trialConfiguration.responseShapes[i].location.column,\n );\n }\n sameButton.isUserInteractionEnabled = true;\n differentButton.isUserInteractionEnabled = true;\n Timer.startNew(\"rt\");\n });\n\n const sameButton = new Button({\n text: \"Same\",\n position: { x: 100, y: 700 },\n size: { width: 125, height: 50 },\n });\n shapeResponseScene.addChild(sameButton);\n sameButton.onTapDown(() => {\n sameButton.isUserInteractionEnabled = false;\n handleSelection(false);\n });\n\n const differentButton = new Button({\n text: \"Different\",\n position: { x: 300, y: 700 },\n size: { width: 125, height: 50 },\n });\n shapeResponseScene.addChild(differentButton);\n differentButton.onTapDown(() => {\n differentButton.isUserInteractionEnabled = false;\n handleSelection(true);\n });\n\n const handleSelection = (differentPressed: boolean) => {\n const rt = Timer.elapsed(\"rt\");\n Timer.remove(\"rt\");\n responseGrid.removeAllChildren();\n\n game.addTrialData(\n \"trial_end_iso8601_timestamp\",\n new Date().toISOString(),\n );\n const trialConfiguration = trialConfigurations[game.trialIndex];\n game.addTrialData(\"response_time_duration_ms\", rt);\n game.addTrialData(\n \"number_of_different_shapes\",\n trialConfiguration.numberOfShapesWithDifferentColors,\n );\n game.addTrialData(\n \"user_response\",\n differentPressed ? \"different\" : \"same\",\n );\n const correctResponse =\n (trialConfiguration.numberOfShapesWithDifferentColors === 0 &&\n !differentPressed) ||\n (trialConfiguration.numberOfShapesWithDifferentColors > 0 &&\n differentPressed);\n game.addTrialData(\"user_response_correct\", correctResponse);\n\n const presentShapes = trialConfiguration.presentShapes.map((p) => {\n return {\n shape_index: p.shapeIndex,\n color_name: p.colorName,\n rgba_color: p.color,\n location: p.location,\n };\n });\n game.addTrialData(\"present_shapes\", presentShapes);\n game.addTrialData(\"quit_button_pressed\", false);\n\n const responseShapes = trialConfiguration.responseShapes.map((p) => {\n return {\n shape_index: p.shapeIndex,\n color_name: p.colorName,\n rgba_color: p.color,\n location: p.location,\n };\n });\n game.addTrialData(\"response_shapes\", responseShapes);\n game.addTrialData(\"trial_index\", game.trialIndex);\n\n game.trialComplete();\n if (game.trialIndex < numberOfTrials) {\n game.presentScene(fixationScene);\n } else {\n game.presentScene(\n doneScene,\n Transition.slide({\n direction: TransitionDirection.Left,\n duration: 500,\n easing: Easings.sinusoidalInOut,\n }),\n );\n }\n };\n\n // ==============================================================\n // SCENE: done. Show done message, with a button to exit.\n const doneScene = new Scene();\n game.addScene(doneScene);\n\n const doneSceneText = new Label({\n text: game.getParameter(\"trials_complete_scene_text\"),\n position: { x: 200, y: 400 },\n });\n doneScene.addChild(doneSceneText);\n\n const okButton = new Button({\n text: game.getParameter(\"trials_complete_scene_button_text\"),\n position: { x: 200, y: 650 },\n });\n okButton.isUserInteractionEnabled = true;\n okButton.onTapDown(() => {\n // don't allow repeat taps of ok button\n okButton.isUserInteractionEnabled = false;\n doneScene.removeAllChildren();\n game.end();\n });\n doneScene.addChild(okButton);\n doneScene.onSetup(() => {\n // no need to have cancel button, because we're done\n game.removeAllFreeNodes();\n });\n }\n\n private makeShapes(svgHeight: number) {\n const shape01 = new Shape({\n path: {\n pathString: shapePathStrings[0],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shape02 = new Shape({\n path: {\n pathString: shapePathStrings[1],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n // note: shape03 is purposively smaller (.8 height of other shapes)\n const shape03 = new Shape({\n path: {\n pathString: shapePathStrings[2],\n height: svgHeight * 0.8,\n },\n lineWidth: 0,\n });\n\n const shape04 = new Shape({\n path: {\n pathString: shapePathStrings[3],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n // note: shape05 is purposively smaller (.8 height of other shapes)\n const shape05 = new Shape({\n path: {\n pathString: shapePathStrings[4],\n height: svgHeight * 0.8,\n },\n lineWidth: 0,\n });\n\n const shape06 = new Shape({\n path: {\n pathString: shapePathStrings[5],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shape07 = new Shape({\n path: {\n pathString: shapePathStrings[6],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shape08 = new Shape({\n path: {\n pathString: shapePathStrings[7],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shapes = [\n shape01,\n shape02,\n shape03,\n shape04,\n shape05,\n shape06,\n shape07,\n shape08,\n ];\n return shapes;\n }\n}\n\nconst shapePathStrings = [\n \"M0 89.94v-2L131.95 0h2v88.7c2.34 1.6 4.47 3.11 6.65 4.55 42.77 28.22 85.54 56.42 128.3 84.63v2c-44.65 29.65-89.3 59.29-133.95 88.94h-1v-90.84C89.44 148.72 44.72 119.33 0 89.94Z\",\n \"M162 188c-.33 27-.67 54-1 81-26.87-26.18-53.74-52.35-80-77.94V269H0C0 180.83 0 92.67.04 4.5.04 3 .67 1.5 1 0c24.64 29.1 49.15 58.31 73.96 87.26 28.88 33.7 58.01 67.17 87.04 100.74Z\",\n \"M3 148.86V61.12C41.76 40.75 80.52 20.37 119.28 0h2.91c21.32 20.7 42.64 41.4 63.96 62.11v89.71c-38.44 20.04-76.88 40.09-115.31 60.13h-2.91L3.01 148.86Z\",\n \"M134 0h2c7.26 22.31 14.38 44.67 21.86 66.9 3.91 11.61 5.47 29.91 13.25 33.27C203 113.94 236.86 123.13 270 134v1L136 269h-1c-11.04-33.58-22.08-67.16-33.21-101.03C67.87 156.98 33.93 145.99 0 135v-1L134 0Z\",\n \"M107 0h1l108 108v1c-26.67 35.33-53.33 70.66-80 106h-1c-8.82-35.03-17.64-70.07-27-107.28C98.62 145.01 89.81 180 81.01 215h-1C53.33 179.66 26.67 144.33 0 109v-2L107 0Z\",\n \"M0 1C2.17.67 4.33.05 6.5.04 58.33-.01 110.17 0 162 0v270H2c26.2-22.17 52.41-44.33 78.86-66.71V67.4c-3.85-3.22-7.35-6.2-10.9-9.11C46.64 39.18 23.32 20.09 0 1Z\",\n \"M95 268.99h-1C62.66 238.66 31.33 208.33 0 178V88C26.67 58.67 53.33 29.33 80 0h1c0 29.45 0 58.89-.01 88.38 35.99 29.57 72 59.09 108.01 88.61v1l-94 91Z\",\n \"M13 0h67l135 135v1L81 270c-27-.33-54-.67-81-1 11.73-12.51 23.61-24.87 35.16-37.54 33.14-36.35 66.14-72.82 100.23-110.38C94.4 80.52 53.7 40.26 13 0Z\",\n];\n\nexport { ColorShapes };\n"],"names":[],"mappings":";;;AA0BA,MAAM,oBAAoB,IAAK,CAAA;AAAA,EAC7B,WAAc,GAAA;AAMZ,IAAA,MAAM,iBAAoC,GAAA;AAAA,MACxC,oBAAsB,EAAA;AAAA,QACpB,OAAS,EAAA,GAAA;AAAA,QACT,WAAa,EAAA,iDAAA;AAAA,QACb,IAAM,EAAA,QAAA;AAAA,OACR;AAAA,MACA,YAAc,EAAA;AAAA,QACZ,IAAM,EAAA,OAAA;AAAA,QACN,WAAa,EAAA,6BAAA;AAAA,QACb,KAAO,EAAA;AAAA,UACL,IAAM,EAAA,QAAA;AAAA,UACN,UAAY,EAAA;AAAA,YACV,SAAW,EAAA;AAAA,cACT,IAAM,EAAA,QAAA;AAAA,cACN,WAAa,EAAA,+BAAA;AAAA,aACf;AAAA,YACA,SAAW,EAAA;AAAA,cACT,IAAM,EAAA,OAAA;AAAA,cACN,WAAa,EAAA,4BAAA;AAAA,cACb,KAAO,EAAA;AAAA,gBACL,IAAM,EAAA,QAAA;AAAA,eACR;AAAA,aACF;AAAA,WACF;AAAA,SACF;AAAA,QACA,OAAS,EAAA;AAAA,UACP,EAAE,WAAW,OAAS,EAAA,SAAA,EAAW,CAAC,CAAG,EAAA,CAAA,EAAG,CAAG,EAAA,CAAC,CAAE,EAAA;AAAA,UAC9C,EAAE,WAAW,OAAS,EAAA,SAAA,EAAW,CAAC,CAAG,EAAA,GAAA,EAAK,GAAK,EAAA,CAAC,CAAE,EAAA;AAAA,UAClD,EAAE,WAAW,QAAU,EAAA,SAAA,EAAW,CAAC,GAAK,EAAA,GAAA,EAAK,EAAI,EAAA,CAAC,CAAE,EAAA;AAAA,UACpD,EAAE,WAAW,MAAQ,EAAA,SAAA,EAAW,CAAC,CAAG,EAAA,GAAA,EAAK,GAAK,EAAA,CAAC,CAAE,EAAA;AAAA,UACjD,EAAE,WAAW,QAAU,EAAA,SAAA,EAAW,CAAC,GAAK,EAAA,EAAA,EAAI,CAAG,EAAA,CAAC,CAAE,EAAA;AAAA,UAClD,EAAE,WAAW,MAAQ,EAAA,SAAA,EAAW,CAAC,GAAK,EAAA,GAAA,EAAK,GAAK,EAAA,CAAC,CAAE,EAAA;AAAA,SACrD;AAAA,OACF;AAAA,MACA,sBAAwB,EAAA;AAAA,QACtB,OAAS,EAAA,CAAA;AAAA,QACT,WAAa,EAAA,kDAAA;AAAA,QACb,IAAM,EAAA,SAAA;AAAA,OACR;AAAA,MACA,4BAA8B,EAAA;AAAA,QAC5B,OAAS,EAAA,GAAA;AAAA,QACT,WAAa,EAAA,8CAAA;AAAA,QACb,IAAM,EAAA,QAAA;AAAA,OACR;AAAA,MACA,0BAA4B,EAAA;AAAA,QAC1B,OAAS,EAAA,GAAA;AAAA,QACT,WACE,EAAA,yEAAA;AAAA,QACF,IAAM,EAAA,QAAA;AAAA,OACR;AAAA,MACA,cAAgB,EAAA;AAAA,QACd,OAAS,EAAA,CAAA;AAAA,QACT,WACE,EAAA,oGAAA;AAAA,QACF,IAAM,EAAA,SAAA;AAAA,OACR;AAAA,MACA,iCAAmC,EAAA;AAAA,QACjC,OAAS,EAAA,CAAA;AAAA,QACT,IAAM,EAAA,SAAA;AAAA,QACN,WACE,EAAA,4KAAA;AAAA,OACJ;AAAA,MACA,gBAAkB,EAAA;AAAA,QAChB,OAAS,EAAA,CAAA;AAAA,QACT,WAAa,EAAA,yBAAA;AAAA,QACb,IAAM,EAAA,SAAA;AAAA,OACR;AAAA,MACA,0BAA4B,EAAA;AAAA,QAC1B,OAAS,EAAA,IAAA;AAAA,QACT,IAAM,EAAA,SAAA;AAAA,QACN,WACE,EAAA,sGAAA;AAAA,OACJ;AAAA,MACA,0BAA4B,EAAA;AAAA,QAC1B,OAAS,EAAA,gDAAA;AAAA,QACT,WAAa,EAAA,yDAAA;AAAA,QACb,IAAM,EAAA,QAAA;AAAA,OACR;AAAA,MACA,iCAAmC,EAAA;AAAA,QACjC,OAAS,EAAA,IAAA;AAAA,QACT,WACE,EAAA,gEAAA;AAAA,QACF,IAAM,EAAA,QAAA;AAAA,OACR;AAAA,MACA,gBAAkB,EAAA;AAAA,QAChB,OAAS,EAAA,MAAA;AAAA,QACT,WAAa,EAAA,kDAAA;AAAA,QACb,IAAM,EAAA,QAAA;AAAA,QACN,IAAA,EAAM,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,OACxB;AAAA,MACA,gBAAkB,EAAA;AAAA,QAChB,IAAM,EAAA,SAAA;AAAA,QACN,OAAS,EAAA,IAAA;AAAA,QACT,WAAa,EAAA,2CAAA;AAAA,OACf;AAAA,MACA,QAAU,EAAA;AAAA,QACR,IAAM,EAAA,SAAA;AAAA,QACN,OAAS,EAAA,KAAA;AAAA,QACT,WAAa,EAAA,0BAAA;AAAA,OACf;AAAA,KACF,CAAA;AAQA,IAAA,MAAM,sBAAsC,GAAA;AAAA,MAC1C,gCAAkC,EAAA;AAAA,QAChC,IAAM,EAAA,QAAA;AAAA,QACN,MAAQ,EAAA,WAAA;AAAA,QACR,WACE,EAAA,2DAAA;AAAA,OACJ;AAAA,MACA,6BAA+B,EAAA;AAAA,QAC7B,IAAA,EAAM,CAAC,QAAA,EAAU,MAAM,CAAA;AAAA,QACvB,MAAQ,EAAA,WAAA;AAAA,QACR,WACE,EAAA,8EAAA;AAAA,OACJ;AAAA,MACA,2BAA6B,EAAA;AAAA,QAC3B,IAAA,EAAM,CAAC,QAAA,EAAU,MAAM,CAAA;AAAA,QACvB,MAAQ,EAAA,WAAA;AAAA,QACR,WACE,EAAA,kHAAA;AAAA,OACJ;AAAA,MACA,WAAa,EAAA;AAAA,QACX,IAAA,EAAM,CAAC,SAAA,EAAW,MAAM,CAAA;AAAA,QACxB,WAAa,EAAA,qDAAA;AAAA,OACf;AAAA,MACA,cAAgB,EAAA;AAAA,QACd,WACE,EAAA,iGAAA;AAAA,QACF,IAAA,EAAM,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,QACtB,KAAO,EAAA;AAAA,UACL,IAAM,EAAA,QAAA;AAAA,UACN,UAAY,EAAA;AAAA,YACV,WAAa,EAAA;AAAA,cACX,IAAM,EAAA,SAAA;AAAA,cACN,WACE,EAAA,0DAAA;AAAA,aACJ;AAAA,YACA,UAAY,EAAA;AAAA,cACV,IAAM,EAAA,QAAA;AAAA,cACN,WAAa,EAAA,+BAAA;AAAA,aACf;AAAA,YACA,UAAY,EAAA;AAAA,cACV,IAAM,EAAA,OAAA;AAAA,cACN,WAAa,EAAA,4BAAA;AAAA,cACb,KAAO,EAAA;AAAA,gBACL,IAAM,EAAA,QAAA;AAAA,eACR;AAAA,aACF;AAAA,YACA,QAAU,EAAA;AAAA,cACR,IAAM,EAAA,QAAA;AAAA,cACN,WAAa,EAAA,oBAAA;AAAA,cACb,UAAY,EAAA;AAAA,gBACV,GAAK,EAAA;AAAA,kBACH,IAAM,EAAA,QAAA;AAAA,kBACN,WAAa,EAAA,4BAAA;AAAA,iBACf;AAAA,gBACA,MAAQ,EAAA;AAAA,kBACN,IAAM,EAAA,QAAA;AAAA,kBACN,WAAa,EAAA,+BAAA;AAAA,iBACf;AAAA,eACF;AAAA,aACF;AAAA,WACF;AAAA,SACF;AAAA,OACF;AAAA,MACA,eAAiB,EAAA;AAAA,QACf,WACE,EAAA,6FAAA;AAAA,QACF,IAAA,EAAM,CAAC,OAAA,EAAS,MAAM,CAAA;AAAA,QACtB,KAAO,EAAA;AAAA,UACL,IAAM,EAAA,QAAA;AAAA,UACN,UAAY,EAAA;AAAA,YACV,WAAa,EAAA;AAAA,cACX,IAAM,EAAA,SAAA;AAAA,cACN,WACE,EAAA,0DAAA;AAAA,aACJ;AAAA,YACA,UAAY,EAAA;AAAA,cACV,IAAM,EAAA,QAAA;AAAA,cACN,WAAa,EAAA,+BAAA;AAAA,aACf;AAAA,YACA,UAAY,EAAA;AAAA,cACV,IAAM,EAAA,OAAA;AAAA,cACN,WAAa,EAAA,4BAAA;AAAA,cACb,KAAO,EAAA;AAAA,gBACL,IAAM,EAAA,QAAA;AAAA,eACR;AAAA,aACF;AAAA,YACA,QAAU,EAAA;AAAA,cACR,IAAM,EAAA,QAAA;AAAA,cACN,WAAa,EAAA,oBAAA;AAAA,cACb,UAAY,EAAA;AAAA,gBACV,GAAK,EAAA;AAAA,kBACH,IAAM,EAAA,QAAA;AAAA,kBACN,WAAa,EAAA,4BAAA;AAAA,iBACf;AAAA,gBACA,MAAQ,EAAA;AAAA,kBACN,IAAM,EAAA,QAAA;AAAA,kBACN,WAAa,EAAA,+BAAA;AAAA,iBACf;AAAA,eACF;AAAA,aACF;AAAA,WACF;AAAA,SACF;AAAA,OACF;AAAA,MACA,0BAA4B,EAAA;AAAA,QAC1B,IAAA,EAAM,CAAC,SAAA,EAAW,MAAM,CAAA;AAAA,QACxB,WACE,EAAA,qEAAA;AAAA,OACJ;AAAA,MACA,yBAA2B,EAAA;AAAA,QACzB,IAAA,EAAM,CAAC,QAAA,EAAU,MAAM,CAAA;AAAA,QACvB,WACE,EAAA,iIAAA;AAAA,OACJ;AAAA,MACA,aAAe,EAAA;AAAA,QACb,IAAA,EAAM,CAAC,QAAA,EAAU,MAAM,CAAA;AAAA,QACvB,IAAA,EAAM,CAAC,MAAA,EAAQ,WAAW,CAAA;AAAA,QAC1B,WACE,EAAA,qEAAA;AAAA,OACJ;AAAA,MACA,qBAAuB,EAAA;AAAA,QACrB,IAAA,EAAM,CAAC,SAAA,EAAW,MAAM,CAAA;AAAA,QACxB,WAAa,EAAA,kCAAA;AAAA,OACf;AAAA,MACA,mBAAqB,EAAA;AAAA,QACnB,IAAM,EAAA,SAAA;AAAA,QACN,WAAa,EAAA,8BAAA;AAAA,OACf;AAAA,KACF,CAAA;AAEA,IAAA,MAAM,OAAuB,GAAA;AAAA,MAC3B,IAAM,EAAA,cAAA;AAAA;AAAA;AAAA;AAAA,MAIN,EAAI,EAAA,cAAA;AAAA,MACJ,OAAS,EAAA,mBAAA;AAAA,MACT;MACA,gBACE,EAAA,uMAAA;AAAA,MAIF,eAAiB,EAAA,CAAA,mfAAA,CAAA;AAAA,MAQjB,OAAA,EAAS,kBAAkB,QAAS,CAAA,OAAA;AAAA,MACpC,KAAO,EAAA,GAAA;AAAA,MACP,MAAQ,EAAA,GAAA;AAAA,MACR,WAAa,EAAA,sBAAA;AAAA,MACb,UAAY,EAAA,iBAAA;AAAA,MACZ,KAAO,EAAA;AAAA,QACL;AAAA,UACE,QAAU,EAAA,QAAA;AAAA,UACV,GAAK,EAAA,iCAAA;AAAA,SACP;AAAA,OACF;AAAA,MACA,MAAQ,EAAA;AAAA,QACN;AAAA,UACE,SAAW,EAAA,gBAAA;AAAA,UACX,MAAQ,EAAA,GAAA;AAAA,UACR,KAAO,EAAA,GAAA;AAAA,UACP,GAAK,EAAA,8BAAA;AAAA,SACP;AAAA,QACA;AAAA,UACE,SAAW,EAAA,gBAAA;AAAA,UACX,MAAQ,EAAA,GAAA;AAAA,UACR,KAAO,EAAA,GAAA;AAAA,UACP,GAAK,EAAA,8BAAA;AAAA,SACP;AAAA,QACA;AAAA,UACE,SAAW,EAAA,gBAAA;AAAA,UACX,MAAQ,EAAA,GAAA;AAAA,UACR,KAAO,EAAA,GAAA;AAAA,UACP,GAAK,EAAA,8BAAA;AAAA,SACP;AAAA,QACA;AAAA,UACE,SAAW,EAAA,UAAA;AAAA,UACX,MAAQ,EAAA,EAAA;AAAA,UACR,KAAO,EAAA,EAAA;AAAA;AAAA;AAAA,UAGP,GAAK,EAAA,qBAAA;AAAA,SACP;AAAA,OACF;AAAA,KACF,CAAA;AAEA,IAAA,KAAA,CAAM,OAAO,CAAA,CAAA;AAAA,GACf;AAAA,EAEA,MAAe,UAAa,GAAA;AAC1B,IAAA,MAAM,MAAM,UAAW,EAAA,CAAA;AAIvB,IAAA,MAAM,IAAO,GAAA,IAAA,CAAA;AAEb,IAAA,MAAM,gBAAmB,GAAA,EAAA,CAAA;AACzB,IAAA,MAAM,kBAAqB,GAAA,GAAA,CAAA;AAC3B,IAAA,MAAM,sBAAsB,IAAK,CAAA,YAAA;AAAA,MAC/B,wBAAA;AAAA,KACF,CAAA;AACA,IAAM,MAAA,YAAA,GAAe,IAAK,CAAA,UAAA,CAAW,gBAAgB,CAAA,CAAA;AAIrD,IAAI,IAAA,IAAA,CAAK,YAAsB,CAAA,kBAAkB,CAAG,EAAA;AAClD,MAAM,MAAA,UAAA,GAAa,IAAI,MAAO,CAAA;AAAA,QAC5B,SAAW,EAAA,UAAA;AAAA,QACX,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,EAAG,EAAA;AAAA,QAC1B,wBAA0B,EAAA,IAAA;AAAA,OAC3B,CAAA,CAAA;AACD,MAAA,IAAA,CAAK,YAAY,UAAU,CAAA,CAAA;AAC3B,MAAW,UAAA,CAAA,SAAA,CAAU,CAAC,CAAM,KAAA;AAC1B,QAAA,IAAA,CAAK,kBAAmB,EAAA,CAAA;AACxB,QAAA,CAAA,CAAE,OAAU,GAAA,IAAA,CAAA;AACZ,QAAM,MAAA,UAAA,GAAa,IAAI,KAAM,EAAA,CAAA;AAC7B,QAAA,IAAA,CAAK,SAAS,UAAU,CAAA,CAAA;AACxB,QAAA,IAAA,CAAK,aAAa,UAAU,CAAA,CAAA;AAC5B,QAAK,IAAA,CAAA,YAAA,CAAa,uBAAuB,IAAI,CAAA,CAAA;AAC7C,QAAA,IAAA,CAAK,aAAc,EAAA,CAAA;AACnB,QAAA,IAAA,CAAK,MAAO,EAAA,CAAA;AAAA,OACb,CAAA,CAAA;AAAA,KACH;AAIA,IAAI,IAAA,kBAAA,CAAA;AAEJ,IAAQ,QAAA,IAAA,CAAK,YAAa,CAAA,kBAAkB,CAAG;AAAA,MAC7C,KAAK,OAAS,EAAA;AACZ,QAAA,kBAAA,GAAqB,aAAa,MAAO,CAAA;AAAA,UACvC,iBAAmB,EAAA;AAAA,YACjB;AAAA,cACE,KAAO,EAAA,cAAA;AAAA,cACP,IAAA,EAAM,6CAA6C,mBAAmB,CAAA,8IAAA,CAAA;AAAA,cACtE,SAAW,EAAA,gBAAA;AAAA,cACX,cAAgB,EAAA,KAAA;AAAA,cAChB,cAAgB,EAAA,EAAA;AAAA,cAChB,YAAc,EAAA,EAAA;AAAA,cACd,aAAe,EAAA,EAAA;AAAA,cACf,gBAAkB,EAAA,GAAA;AAAA,cAClB,cAAgB,EAAA,OAAA;AAAA,cAChB,2BAA2B,SAAU,CAAA,KAAA;AAAA,cACrC,mBAAA,EAAqB,WAAW,IAAK,EAAA;AAAA,aACvC;AAAA,WACF;AAAA,SACD,CAAA,CAAA;AACD,QAAA,MAAA;AAAA,OACF;AAAA,MACA,KAAK,MAAQ,EAAA;AACX,QAAA,kBAAA,GAAqB,aAAa,MAAO,CAAA;AAAA,UACvC,iBAAmB,EAAA;AAAA,YACjB;AAAA,cACE,KAAO,EAAA,cAAA;AAAA,cACP,IAAA,EAAM,6CAA6C,mBAAmB,CAAA,0CAAA,CAAA;AAAA,cACtE,SAAW,EAAA,gBAAA;AAAA,cACX,cAAgB,EAAA,KAAA;AAAA,cAChB,cAAgB,EAAA,EAAA;AAAA,cAChB,YAAc,EAAA,EAAA;AAAA,cACd,aAAe,EAAA,EAAA;AAAA,cACf,gBAAkB,EAAA,GAAA;AAAA,aACpB;AAAA,YACA;AAAA,cACE,KAAO,EAAA,cAAA;AAAA,cACP,IAAM,EAAA,6CAAA;AAAA,cACN,SAAW,EAAA,gBAAA;AAAA,cACX,cAAgB,EAAA,KAAA;AAAA,cAChB,cAAgB,EAAA,EAAA;AAAA,cAChB,YAAc,EAAA,EAAA;AAAA,cACd,aAAe,EAAA,EAAA;AAAA,cACf,gBAAkB,EAAA,GAAA;AAAA,aACpB;AAAA,YACA;AAAA,cACE,KAAO,EAAA,cAAA;AAAA,cACP,IAAM,EAAA,iFAAA;AAAA,cACN,SAAW,EAAA,gBAAA;AAAA,cACX,cAAgB,EAAA,KAAA;AAAA,cAChB,cAAgB,EAAA,EAAA;AAAA,cAChB,YAAc,EAAA,EAAA;AAAA,cACd,aAAe,EAAA,EAAA;AAAA,cACf,gBAAkB,EAAA,GAAA;AAAA,cAClB,cAAgB,EAAA,OAAA;AAAA,cAChB,2BAA2B,SAAU,CAAA,KAAA;AAAA,aACvC;AAAA,WACF;AAAA,SACD,CAAA,CAAA;AACD,QAAA,MAAA;AAAA,OACF;AAAA,MACA,SAAS;AACP,QAAM,MAAA,IAAI,MAAM,oCAAoC,CAAA,CAAA;AAAA,OACtD;AAAA,KACF;AACA,IAAmB,kBAAA,CAAA,CAAC,CAAE,CAAA,QAAA,CAAS,MAAM;AAGnC,MAAK,IAAA,CAAA,YAAA;AAAA,QACH,kCAAA;AAAA,QACA,IAAK,CAAA,qBAAA;AAAA,OACP,CAAA;AAAA,KACD,CAAA,CAAA;AACD,IAAA,IAAA,CAAK,UAAU,kBAAkB,CAAA,CAAA;AAIjC,IAAM,MAAA,cAAA,GAAiB,IAAI,cAAe,CAAA;AAAA,MACxC,YAAc,EAAA,GAAA;AAAA,MACd,IAAM,EAAA,YAAA;AAAA,MACN,qBAAuB,EAAA,GAAA;AAAA,MACvB,UAAA,EAAY,WAAW,IAAK,EAAA;AAAA,KAC7B,CAAA,CAAA;AACD,IAAA,IAAA,CAAK,SAAS,cAAc,CAAA,CAAA;AAE5B,IAAM,MAAA,QAAA,GAAW,IAAK,CAAA,YAAA,CAAqB,gBAAgB,CAAA,CAAA;AAC3D,IAAM,MAAA,WAAA,GAAc,IAAK,CAAA,YAAA,CAAqB,gBAAgB,CAAA,CAAA;AAC9D,IAAM,MAAA,cAAA,GAAiB,IAAK,CAAA,YAAA,CAAqB,kBAAkB,CAAA,CAAA;AACnE,IAAA,MAAM,cACJ,IAAK,CAAA,YAAA;AAAA,MACH,cAAA;AAAA,KACF,CAAA;AAmBF,IAAA,MAAM,sBAAiD,EAAC,CAAA;AACxD,IAAM,MAAA,IAAA,GAAO,IAAK,CAAA,YAAA,CAAqB,gBAAgB,CAAA,CAAA;AACvD,IAAA,MAAM,OAAU,GAAA,IAAA,CAAA;AAChB,IAAA,MAAM,gCAAgC,IAAK,CAAA,YAAA;AAAA,MACzC,mCAAA;AAAA,KACF,CAAA;AACA,IAAA,MAAM,8BAA8B,WAAY,CAAA,2BAAA;AAAA,MAC9C,6BAAA;AAAA,MACA,CAAA;AAAA,MACA,cAAiB,GAAA,CAAA;AAAA,KACnB,CAAA;AAEA,IAAA,KAAA,IAAS,CAAI,GAAA,CAAA,EAAG,CAAI,GAAA,cAAA,EAAgB,CAAK,EAAA,EAAA;AACvC,MAAM,MAAA,aAAA,GAAgB,IAAI,KAAoB,EAAA,CAAA;AAC9C,MAAM,MAAA,cAAA,GAAiB,IAAI,KAAoB,EAAA,CAAA;AAC/C,MAAA,MAAM,sBAAsB,WAAY,CAAA,2BAAA;AAAA,QACtC,mBAAA;AAAA,QACA,CAAA;AAAA,QACA,aAAa,MAAS,GAAA,CAAA;AAAA,OACxB,CAAA;AACA,MAAA,MAAM,qBAAqB,WAAY,CAAA,2BAAA;AAAA,QACrC,mBAAA;AAAA,QACA,CAAA;AAAA,QACA,YAAY,MAAS,GAAA,CAAA;AAAA,OACvB,CAAA;AAIA,MAAM,MAAA,UAAA,GAAa,CACjB,SAIY,KAAA;AACZ,QACE,IAAA,SAAA,CACG,IAAI,CAAC,CAAA,KAAM,EAAE,GAAQ,KAAA,CAAA,IAAK,CAAE,CAAA,MAAA,KAAW,CAAC,CAAA,CACxC,KAAK,CAAC,CAAA,KAAM,CAAM,KAAA,IAAI,CACzB,IAAA,SAAA,CACG,IAAI,CAAC,CAAA,KAAM,CAAE,CAAA,GAAA,KAAQ,CAAK,IAAA,CAAA,CAAE,WAAW,CAAC,CAAA,CACxC,KAAK,CAAC,CAAA,KAAM,MAAM,IAAI,CAAA,IACzB,SACG,CAAA,GAAA,CAAI,CAAC,CAAA,KAAM,EAAE,GAAQ,KAAA,CAAA,IAAK,CAAE,CAAA,MAAA,KAAW,CAAC,CAAA,CACxC,KAAK,CAAC,CAAA,KAAM,CAAM,KAAA,IAAI,CACzB,EAAA;AACA,UAAO,OAAA,IAAA,CAAA;AAAA,SACT;AACA,QACE,IAAA,SAAA,CACG,IAAI,CAAC,CAAA,KAAM,EAAE,GAAQ,KAAA,CAAA,IAAK,CAAE,CAAA,MAAA,KAAW,CAAC,CAAA,CACxC,KAAK,CAAC,CAAA,KAAM,CAAM,KAAA,IAAI,CACzB,IAAA,SAAA,CACG,IAAI,CAAC,CAAA,KAAM,CAAE,CAAA,GAAA,KAAQ,CAAK,IAAA,CAAA,CAAE,WAAW,CAAC,CAAA,CACxC,KAAK,CAAC,CAAA,KAAM,MAAM,IAAI,CAAA,IACzB,SACG,CAAA,GAAA,CAAI,CAAC,CAAA,KAAM,EAAE,GAAQ,KAAA,CAAA,IAAK,CAAE,CAAA,MAAA,KAAW,CAAC,CAAA,CACxC,KAAK,CAAC,CAAA,KAAM,CAAM,KAAA,IAAI,CACzB,EAAA;AACA,UAAO,OAAA,IAAA,CAAA;AAAA,SACT;AACA,QAAO,OAAA,KAAA,CAAA;AAAA,OACT,CAAA;AAEA,MAAM,MAAA,MAAA,GAAS,CACb,SAIY,KAAA;AACZ,QAAM,MAAA,UAAA,GAAa,IAAI,GAAA,CAAI,SAAU,CAAA,GAAA,CAAI,CAAC,CAAM,KAAA,CAAA,CAAE,GAAG,CAAC,CAAE,CAAA,IAAA,CAAA;AACxD,QAAM,MAAA,aAAA,GAAgB,IAAI,GAAA,CAAI,SAAU,CAAA,GAAA,CAAI,CAAC,CAAM,KAAA,CAAA,CAAE,MAAM,CAAC,CAAE,CAAA,IAAA,CAAA;AAE9D,QAAI,IAAA,UAAA,KAAe,CAAK,IAAA,aAAA,KAAkB,CAAG,EAAA;AAC3C,UAAO,OAAA,KAAA,CAAA;AAAA,SACT;AACA,QAAO,OAAA,IAAA,CAAA;AAAA,OACT,CAAA;AAGA,MAAA,IAAI,kBAAqB,GAAA,KAAA,CAAA;AACzB,MAAI,IAAA,gBAAA,CAAA;AAIJ,MAAG,GAAA;AACD,QAAA,gBAAA,GAAmB,WAAY,CAAA,0BAAA;AAAA,UAC7B,mBAAA;AAAA,UACA,IAAA;AAAA,UACA,OAAA;AAAA,SACF,CAAA;AAEA,QAAA,IAAI,CAAC,MAAO,CAAA,gBAAgB,KAAK,CAAC,UAAA,CAAW,gBAAgB,CAAG,EAAA;AAC9D,UAAqB,kBAAA,GAAA,IAAA,CAAA;AAAA,SAChB,MAAA;AACL,UAAqB,kBAAA,GAAA,KAAA,CAAA;AAAA,SACvB;AAAA,eACO,CAAC,kBAAA,EAAA;AACV,MAAA,KAAA,IAAS,CAAI,GAAA,CAAA,EAAG,CAAI,GAAA,mBAAA,EAAqB,CAAK,EAAA,EAAA;AAC5C,QAAA,MAAM,YAA6B,GAAA;AAAA,UACjC,KAAO,EAAA,YAAA,CAAa,mBAAoB,CAAA,CAAC,CAAC,CAAA;AAAA,UAC1C,UAAA,EAAY,oBAAoB,CAAC,CAAA;AAAA,UACjC,KAAO,EAAA,WAAA,CAAY,kBAAmB,CAAA,CAAC,CAAC,CAAE,CAAA,SAAA;AAAA,UAC1C,SAAW,EAAA,WAAA,CAAY,kBAAmB,CAAA,CAAC,CAAC,CAAE,CAAA,SAAA;AAAA,UAC9C,QAAA,EAAU,iBAAiB,CAAC,CAAA;AAAA,SAC9B,CAAA;AACA,QAAA,aAAA,CAAc,KAAK,YAAY,CAAA,CAAA;AAAA,OACjC;AAGA,MAAA,IAAI,mBAAsB,GAAA,KAAA,CAAA;AAC1B,MAAI,IAAA,iBAAA,CAAA;AAIJ,MAAG,GAAA;AACD,QAAA,iBAAA,GAAoB,WAAY,CAAA,0BAAA;AAAA,UAC9B,mBAAA;AAAA,UACA,IAAA;AAAA,UACA,OAAA;AAAA,SACF,CAAA;AAEA,QAAA,IAAI,CAAC,MAAO,CAAA,iBAAiB,KAAK,CAAC,UAAA,CAAW,iBAAiB,CAAG,EAAA;AAChE,UAAsB,mBAAA,GAAA,IAAA,CAAA;AAAA,SACjB,MAAA;AACL,UAAsB,mBAAA,GAAA,KAAA,CAAA;AAAA,SACxB;AAAA,eACO,CAAC,mBAAA,EAAA;AACV,MAAA,KAAA,IAAS,CAAI,GAAA,CAAA,EAAG,CAAI,GAAA,mBAAA,EAAqB,CAAK,EAAA,EAAA;AAC5C,QAAA,MAAM,aAA8B,GAAA;AAAA,UAClC,KAAA,EAAO,aAAc,CAAA,CAAC,CAAE,CAAA,KAAA;AAAA,UACxB,UAAA,EAAY,oBAAoB,CAAC,CAAA;AAAA,UACjC,KAAA,EAAO,aAAc,CAAA,CAAC,CAAE,CAAA,KAAA;AAAA,UACxB,SAAW,EAAA,WAAA,CAAY,kBAAmB,CAAA,CAAC,CAAC,CAAE,CAAA,SAAA;AAAA,UAC9C,QAAA,EAAU,kBAAkB,CAAC,CAAA;AAAA,SAC/B,CAAA;AACA,QAAA,cAAA,CAAe,KAAK,aAAa,CAAA,CAAA;AAAA,OACnC;AAEA,MAAA,IAAI,iCAAoC,GAAA,CAAA,CAAA;AACxC,MAAM,MAAA,mBAAA,GAAsB,2BAA4B,CAAA,QAAA,CAAS,CAAC,CAAA,CAAA;AAElE,MAAA,IAAI,mBAAqB,EAAA;AACvB,QAAA,MAAM,yBAAyB,WAAY,CAAA,eAAA;AAAA,UACzC,CAAA;AAAA,UACA,mBAAA;AAAA,SACF,CAAA;AACA,QAAA,MAAM,wBAAwB,WAAY,CAAA,2BAAA;AAAA,UACxC,sBAAA;AAAA,UACA,CAAA;AAAA,UACA,mBAAsB,GAAA,CAAA;AAAA,SACxB,CAAA;AACA,QAAA,MAAM,iBAAiB,qBAAsB,CAAA,GAAA;AAAA,UAC3C,CAAC,KAAU,KAAA,cAAA,CAAe,KAAK,CAAA;AAAA,SACjC,CAAA;AACA,QAAA,iCAAA,GAAoC,cAAe,CAAA,MAAA,CAAA;AAMnD,QAAM,MAAA,eAAA,GAAkB,cAAe,CAAA,CAAC,CAAE,CAAA,KAAA,CAAA;AAC1C,QAAA,KAAA,IAAS,CAAI,GAAA,CAAA,EAAG,CAAI,GAAA,sBAAA,EAAwB,CAAK,EAAA,EAAA;AAC/C,UAAM,MAAA,KAAA,GAAQ,eAAe,CAAC,CAAA,CAAA;AAC9B,UAAI,IAAA,CAAA,GAAI,IAAI,sBAAwB,EAAA;AAClC,YAAA,KAAA,CAAM,KAAQ,GAAA,cAAA,CAAe,CAAI,GAAA,CAAC,CAAE,CAAA,KAAA,CAAA;AAAA,WAC/B,MAAA;AACL,YAAA,KAAA,CAAM,KAAQ,GAAA,eAAA,CAAA;AAAA,WAChB;AAAA,SACF;AAAA,OACF;AAEA,MAAA,mBAAA,CAAoB,IAAK,CAAA;AAAA,QACvB,aAAA;AAAA,QACA,cAAA;AAAA,QACA,iCAAA;AAAA,OACD,CAAA,CAAA;AAAA,KACH;AAKA,IAAM,MAAA,aAAA,GAAgB,IAAI,KAAM,EAAA,CAAA;AAChC,IAAA,IAAA,CAAK,SAAS,aAAa,CAAA,CAAA;AAE3B,IAAM,MAAA,mBAAA,GAAsB,IAAI,KAAM,CAAA;AAAA,MACpC,IAAA,EAAM,EAAE,IAAM,EAAA,EAAE,OAAO,kBAAoB,EAAA,MAAA,EAAQ,oBAAqB,EAAA;AAAA,MACxE,WAAW,SAAU,CAAA,WAAA;AAAA,MACrB,aAAa,SAAU,CAAA,IAAA;AAAA,MACvB,SAAW,EAAA,CAAA;AAAA,MACX,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,KAC5B,CAAA,CAAA;AACD,IAAA,aAAA,CAAc,SAAS,mBAAmB,CAAA,CAAA;AAE1C,IAAM,MAAA,SAAA,GAAY,IAAI,KAAM,CAAA;AAAA,MAC1B,IAAM,EAAA,GAAA;AAAA,MACN,QAAU,EAAA,EAAA;AAAA,MACV,WAAW,SAAU,CAAA,KAAA;AAAA,KACtB,CAAA,CAAA;AACD,IAAA,mBAAA,CAAoB,SAAS,SAAS,CAAA,CAAA;AAEtC,IAAA,aAAA,CAAc,SAAS,MAAM;AAC3B,MAAK,IAAA,CAAA,YAAA;AAAA,QACH,kCAAA;AAAA,QACA,IAAK,CAAA,qBAAA;AAAA,OACP,CAAA;AACA,MAAK,IAAA,CAAA,YAAA;AAAA,QACH,+BAAA;AAAA,QACA,iBAAA,IAAI,IAAK,EAAA,EAAE,WAAY,EAAA;AAAA,OACzB,CAAA;AACA,MAAc,aAAA,CAAA,GAAA;AAAA,QACZ,OAAO,QAAS,CAAA;AAAA,UACd,MAAA,CAAO,KAAK,EAAE,QAAA,EAAU,KAAK,YAAa,CAAA,sBAAsB,GAAG,CAAA;AAAA,UACnE,OAAO,MAAO,CAAA;AAAA,YACZ,UAAU,MAAM;AACd,cAAA,IAAA,CAAK,aAAa,sBAAsB,CAAA,CAAA;AAAA,aAC1C;AAAA,WACD,CAAA;AAAA,SACF,CAAA;AAAA,OACH,CAAA;AAAA,KACD,CAAA,CAAA;AAID,IAAM,MAAA,sBAAA,GAAyB,IAAI,KAAM,EAAA,CAAA;AACzC,IAAA,IAAA,CAAK,SAAS,sBAAsB,CAAA,CAAA;AAEpC,IAAM,MAAA,uBAAA,GAA0B,IAAI,KAAM,CAAA;AAAA,MACxC,IAAA,EAAM,EAAE,IAAM,EAAA,EAAE,OAAO,kBAAoB,EAAA,MAAA,EAAQ,oBAAqB,EAAA;AAAA,MACxE,WAAW,SAAU,CAAA,WAAA;AAAA,MACrB,aAAa,SAAU,CAAA,IAAA;AAAA,MACvB,SAAW,EAAA,CAAA;AAAA,MACX,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,KAC5B,CAAA,CAAA;AACD,IAAA,sBAAA,CAAuB,SAAS,uBAAuB,CAAA,CAAA;AAEvD,IAAM,MAAA,gBAAA,GAAmB,IAAI,IAAK,CAAA;AAAA,MAChC,IAAM,EAAA,QAAA;AAAA,MACN,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,EAAE,KAAO,EAAA,kBAAA,EAAoB,QAAQ,kBAAmB,EAAA;AAAA,MAC9D,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,MAC3B,iBAAiB,SAAU,CAAA,WAAA;AAAA,MAC3B,eAAe,SAAU,CAAA,WAAA;AAAA,KAC1B,CAAA,CAAA;AACD,IAAA,sBAAA,CAAuB,SAAS,gBAAgB,CAAA,CAAA;AAEhD,IAAA,sBAAA,CAAuB,SAAS,MAAM;AACpC,MAAM,MAAA,kBAAA,GAAqB,mBAAoB,CAAA,IAAA,CAAK,UAAU,CAAA,CAAA;AAC9D,MAAA,KAAA,IAAS,IAAI,CAAG,EAAA,CAAA,GAAI,kBAAmB,CAAA,aAAA,CAAc,QAAQ,CAAK,EAAA,EAAA;AAChE,QAAA,MAAM,YAAe,GAAA,kBAAA,CAAmB,aAAc,CAAA,CAAC,CAAE,CAAA,KAAA,CAAA;AACzD,QAAA,YAAA,CAAa,SAAY,GAAA,kBAAA,CAAmB,aAAc,CAAA,CAAC,CAAE,CAAA,KAAA,CAAA;AAO7D,QAAA,YAAA,CAAa,QAAW,GAAA,EAAE,CAAG,EAAA,CAAA,EAAG,GAAG,CAAE,EAAA,CAAA;AACrC,QAAiB,gBAAA,CAAA,SAAA;AAAA,UACf,YAAA;AAAA,UACA,kBAAmB,CAAA,aAAA,CAAc,CAAC,CAAA,CAAE,QAAS,CAAA,GAAA;AAAA,UAC7C,kBAAmB,CAAA,aAAA,CAAc,CAAC,CAAA,CAAE,QAAS,CAAA,MAAA;AAAA,SAC/C,CAAA;AAAA,OACF;AACA,MAAuB,sBAAA,CAAA,GAAA;AAAA,QACrB,OAAO,QAAS,CAAA;AAAA,UACd,OAAO,IAAK,CAAA;AAAA,YACV,QAAA,EAAU,IAAK,CAAA,YAAA,CAAa,8BAA8B,CAAA;AAAA,WAC3D,CAAA;AAAA,UACD,OAAO,MAAO,CAAA;AAAA,YACZ,UAAU,MAAM;AACd,cAAA,gBAAA,CAAiB,iBAAkB,EAAA,CAAA;AAAA,aACrC;AAAA,WACD,CAAA;AAAA,UACD,OAAO,IAAK,CAAA;AAAA,YACV,QAAA,EAAU,IAAK,CAAA,YAAA,CAAa,4BAA4B,CAAA;AAAA,WACzD,CAAA;AAAA,UACD,OAAO,MAAO,CAAA;AAAA,YACZ,UAAU,MAAM;AACd,cAAA,gBAAA,CAAiB,iBAAkB,EAAA,CAAA;AACnC,cAAA,IAAA,CAAK,aAAa,kBAAkB,CAAA,CAAA;AAAA,aACtC;AAAA,WACD,CAAA;AAAA,SACF,CAAA;AAAA,OACH,CAAA;AAAA,KACD,CAAA,CAAA;AAID,IAAM,MAAA,kBAAA,GAAqB,IAAI,KAAM,EAAA,CAAA;AACrC,IAAA,IAAA,CAAK,SAAS,kBAAkB,CAAA,CAAA;AAEhC,IAAM,MAAA,mBAAA,GAAsB,IAAI,KAAM,CAAA;AAAA,MACpC,IAAA,EAAM,EAAE,IAAM,EAAA,EAAE,OAAO,kBAAoB,EAAA,MAAA,EAAQ,oBAAqB,EAAA;AAAA,MACxE,WAAW,SAAU,CAAA,WAAA;AAAA,MACrB,aAAa,SAAU,CAAA,IAAA;AAAA,MACvB,SAAW,EAAA,CAAA;AAAA,MACX,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,KAC5B,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,mBAAmB,CAAA,CAAA;AAE/C,IAAM,MAAA,YAAA,GAAe,IAAI,IAAK,CAAA;AAAA,MAC5B,IAAM,EAAA,QAAA;AAAA,MACN,OAAS,EAAA,WAAA;AAAA,MACT,IAAM,EAAA,EAAE,KAAO,EAAA,kBAAA,EAAoB,QAAQ,kBAAmB,EAAA;AAAA,MAC9D,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,MAC3B,iBAAiB,SAAU,CAAA,WAAA;AAAA,MAC3B,eAAe,SAAU,CAAA,WAAA;AAAA,KAC1B,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,YAAY,CAAA,CAAA;AAExC,IAAA,kBAAA,CAAmB,SAAS,MAAM;AAChC,MAAM,MAAA,kBAAA,GAAqB,mBAAoB,CAAA,IAAA,CAAK,UAAU,CAAA,CAAA;AAC9D,MAAA,KAAA,IAAS,IAAI,CAAG,EAAA,CAAA,GAAI,kBAAmB,CAAA,cAAA,CAAe,QAAQ,CAAK,EAAA,EAAA;AACjE,QAAA,MAAM,aAAgB,GAAA,kBAAA,CAAmB,cAAe,CAAA,CAAC,CAAE,CAAA,KAAA,CAAA;AAC3D,QAAA,aAAA,CAAc,SAAY,GAAA,kBAAA,CAAmB,cAAe,CAAA,CAAC,CAAE,CAAA,KAAA,CAAA;AAO/D,QAAA,aAAA,CAAc,QAAW,GAAA,EAAE,CAAG,EAAA,CAAA,EAAG,GAAG,CAAE,EAAA,CAAA;AACtC,QAAa,YAAA,CAAA,SAAA;AAAA,UACX,aAAA;AAAA,UACA,kBAAmB,CAAA,cAAA,CAAe,CAAC,CAAA,CAAE,QAAS,CAAA,GAAA;AAAA,UAC9C,kBAAmB,CAAA,cAAA,CAAe,CAAC,CAAA,CAAE,QAAS,CAAA,MAAA;AAAA,SAChD,CAAA;AAAA,OACF;AACA,MAAA,UAAA,CAAW,wBAA2B,GAAA,IAAA,CAAA;AACtC,MAAA,eAAA,CAAgB,wBAA2B,GAAA,IAAA,CAAA;AAC3C,MAAA,KAAA,CAAM,SAAS,IAAI,CAAA,CAAA;AAAA,KACpB,CAAA,CAAA;AAED,IAAM,MAAA,UAAA,GAAa,IAAI,MAAO,CAAA;AAAA,MAC5B,IAAM,EAAA,MAAA;AAAA,MACN,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,MAC3B,IAAM,EAAA,EAAE,KAAO,EAAA,GAAA,EAAK,QAAQ,EAAG,EAAA;AAAA,KAChC,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,UAAU,CAAA,CAAA;AACtC,IAAA,UAAA,CAAW,UAAU,MAAM;AACzB,MAAA,UAAA,CAAW,wBAA2B,GAAA,KAAA,CAAA;AACtC,MAAA,eAAA,CAAgB,KAAK,CAAA,CAAA;AAAA,KACtB,CAAA,CAAA;AAED,IAAM,MAAA,eAAA,GAAkB,IAAI,MAAO,CAAA;AAAA,MACjC,IAAM,EAAA,WAAA;AAAA,MACN,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,MAC3B,IAAM,EAAA,EAAE,KAAO,EAAA,GAAA,EAAK,QAAQ,EAAG,EAAA;AAAA,KAChC,CAAA,CAAA;AACD,IAAA,kBAAA,CAAmB,SAAS,eAAe,CAAA,CAAA;AAC3C,IAAA,eAAA,CAAgB,UAAU,MAAM;AAC9B,MAAA,eAAA,CAAgB,wBAA2B,GAAA,KAAA,CAAA;AAC3C,MAAA,eAAA,CAAgB,IAAI,CAAA,CAAA;AAAA,KACrB,CAAA,CAAA;AAED,IAAM,MAAA,eAAA,GAAkB,CAAC,gBAA8B,KAAA;AACrD,MAAM,MAAA,EAAA,GAAK,KAAM,CAAA,OAAA,CAAQ,IAAI,CAAA,CAAA;AAC7B,MAAA,KAAA,CAAM,OAAO,IAAI,CAAA,CAAA;AACjB,MAAA,YAAA,CAAa,iBAAkB,EAAA,CAAA;AAE/B,MAAK,IAAA,CAAA,YAAA;AAAA,QACH,6BAAA;AAAA,QACA,iBAAA,IAAI,IAAK,EAAA,EAAE,WAAY,EAAA;AAAA,OACzB,CAAA;AACA,MAAM,MAAA,kBAAA,GAAqB,mBAAoB,CAAA,IAAA,CAAK,UAAU,CAAA,CAAA;AAC9D,MAAK,IAAA,CAAA,YAAA,CAAa,6BAA6B,EAAE,CAAA,CAAA;AACjD,MAAK,IAAA,CAAA,YAAA;AAAA,QACH,4BAAA;AAAA,QACA,kBAAmB,CAAA,iCAAA;AAAA,OACrB,CAAA;AACA,MAAK,IAAA,CAAA,YAAA;AAAA,QACH,eAAA;AAAA,QACA,mBAAmB,WAAc,GAAA,MAAA;AAAA,OACnC,CAAA;AACA,MAAM,MAAA,eAAA,GACH,mBAAmB,iCAAsC,KAAA,CAAA,IACxD,CAAC,gBACF,IAAA,kBAAA,CAAmB,oCAAoC,CACtD,IAAA,gBAAA,CAAA;AACJ,MAAK,IAAA,CAAA,YAAA,CAAa,yBAAyB,eAAe,CAAA,CAAA;AAE1D,MAAA,MAAM,aAAgB,GAAA,kBAAA,CAAmB,aAAc,CAAA,GAAA,CAAI,CAAC,CAAM,KAAA;AAChE,QAAO,OAAA;AAAA,UACL,aAAa,CAAE,CAAA,UAAA;AAAA,UACf,YAAY,CAAE,CAAA,SAAA;AAAA,UACd,YAAY,CAAE,CAAA,KAAA;AAAA,UACd,UAAU,CAAE,CAAA,QAAA;AAAA,SACd,CAAA;AAAA,OACD,CAAA,CAAA;AACD,MAAK,IAAA,CAAA,YAAA,CAAa,kBAAkB,aAAa,CAAA,CAAA;AACjD,MAAK,IAAA,CAAA,YAAA,CAAa,uBAAuB,KAAK,CAAA,CAAA;AAE9C,MAAA,MAAM,cAAiB,GAAA,kBAAA,CAAmB,cAAe,CAAA,GAAA,CAAI,CAAC,CAAM,KAAA;AAClE,QAAO,OAAA;AAAA,UACL,aAAa,CAAE,CAAA,UAAA;AAAA,UACf,YAAY,CAAE,CAAA,SAAA;AAAA,UACd,YAAY,CAAE,CAAA,KAAA;AAAA,UACd,UAAU,CAAE,CAAA,QAAA;AAAA,SACd,CAAA;AAAA,OACD,CAAA,CAAA;AACD,MAAK,IAAA,CAAA,YAAA,CAAa,mBAAmB,cAAc,CAAA,CAAA;AACnD,MAAK,IAAA,CAAA,YAAA,CAAa,aAAe,EAAA,IAAA,CAAK,UAAU,CAAA,CAAA;AAEhD,MAAA,IAAA,CAAK,aAAc,EAAA,CAAA;AACnB,MAAI,IAAA,IAAA,CAAK,aAAa,cAAgB,EAAA;AACpC,QAAA,IAAA,CAAK,aAAa,aAAa,CAAA,CAAA;AAAA,OAC1B,MAAA;AACL,QAAK,IAAA,CAAA,YAAA;AAAA,UACH,SAAA;AAAA,UACA,WAAW,KAAM,CAAA;AAAA,YACf,WAAW,mBAAoB,CAAA,IAAA;AAAA,YAC/B,QAAU,EAAA,GAAA;AAAA,YACV,QAAQ,OAAQ,CAAA,eAAA;AAAA,WACjB,CAAA;AAAA,SACH,CAAA;AAAA,OACF;AAAA,KACF,CAAA;AAIA,IAAM,MAAA,SAAA,GAAY,IAAI,KAAM,EAAA,CAAA;AAC5B,IAAA,IAAA,CAAK,SAAS,SAAS,CAAA,CAAA;AAEvB,IAAM,MAAA,aAAA,GAAgB,IAAI,KAAM,CAAA;AAAA,MAC9B,IAAA,EAAM,IAAK,CAAA,YAAA,CAAa,4BAA4B,CAAA;AAAA,MACpD,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,KAC5B,CAAA,CAAA;AACD,IAAA,SAAA,CAAU,SAAS,aAAa,CAAA,CAAA;AAEhC,IAAM,MAAA,QAAA,GAAW,IAAI,MAAO,CAAA;AAAA,MAC1B,IAAA,EAAM,IAAK,CAAA,YAAA,CAAa,mCAAmC,CAAA;AAAA,MAC3D,QAAU,EAAA,EAAE,CAAG,EAAA,GAAA,EAAK,GAAG,GAAI,EAAA;AAAA,KAC5B,CAAA,CAAA;AACD,IAAA,QAAA,CAAS,wBAA2B,GAAA,IAAA,CAAA;AACpC,IAAA,QAAA,CAAS,UAAU,MAAM;AAEvB,MAAA,QAAA,CAAS,wBAA2B,GAAA,KAAA,CAAA;AACpC,MAAA,SAAA,CAAU,iBAAkB,EAAA,CAAA;AAC5B,MAAA,IAAA,CAAK,GAAI,EAAA,CAAA;AAAA,KACV,CAAA,CAAA;AACD,IAAA,SAAA,CAAU,SAAS,QAAQ,CAAA,CAAA;AAC3B,IAAA,SAAA,CAAU,QAAQ,MAAM;AAEtB,MAAA,IAAA,CAAK,kBAAmB,EAAA,CAAA;AAAA,KACzB,CAAA,CAAA;AAAA,GACH;AAAA,EAEQ,WAAW,SAAmB,EAAA;AACpC,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,MAAQ,EAAA,SAAA;AAAA,OACV;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAED,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,MAAQ,EAAA,SAAA;AAAA,OACV;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAGD,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,QAAQ,SAAY,GAAA,GAAA;AAAA,OACtB;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAED,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,MAAQ,EAAA,SAAA;AAAA,OACV;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAGD,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,QAAQ,SAAY,GAAA,GAAA;AAAA,OACtB;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAED,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,MAAQ,EAAA,SAAA;AAAA,OACV;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAED,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,MAAQ,EAAA,SAAA;AAAA,OACV;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAED,IAAM,MAAA,OAAA,GAAU,IAAI,KAAM,CAAA;AAAA,MACxB,IAAM,EAAA;AAAA,QACJ,UAAA,EAAY,iBAAiB,CAAC,CAAA;AAAA,QAC9B,MAAQ,EAAA,SAAA;AAAA,OACV;AAAA,MACA,SAAW,EAAA,CAAA;AAAA,KACZ,CAAA,CAAA;AAED,IAAA,MAAM,MAAS,GAAA;AAAA,MACb,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,MACA,OAAA;AAAA,KACF,CAAA;AACA,IAAO,OAAA,MAAA,CAAA;AAAA,GACT;AACF,CAAA;AAEA,MAAM,gBAAmB,GAAA;AAAA,EACvB,kLAAA;AAAA,EACA,sLAAA;AAAA,EACA,wJAAA;AAAA,EACA,4MAAA;AAAA,EACA,uKAAA;AAAA,EACA,+JAAA;AAAA,EACA,uJAAA;AAAA,EACA,qJAAA;AACF,CAAA;;;;"}
|
|
1
|
+
{"version":3,"file":"index.js","sources":["../src/index.ts"],"sourcesContent":["import {\n Game,\n Action,\n Scene,\n Shape,\n Label,\n Transition,\n TransitionDirection,\n WebColors,\n RandomDraws,\n GameParameters,\n GameOptions,\n TrialSchema,\n Timer,\n Easings,\n RgbaColor,\n Sprite,\n Constants,\n} from \"@m2c2kit/core\";\nimport {\n Button,\n Grid,\n Instructions,\n CountdownScene,\n InstructionsOptions,\n} from \"@m2c2kit/addons\";\n\n/**\n * Color Shapes is a visual array change detection task, measuring intra-item\n * feature binding, where participants determine if shapes change color across\n * two sequential presentations of shape stimuli.\n */\nclass ColorShapes extends Game {\n constructor() {\n /**\n * These are configurable game parameters and their defaults.\n * Each game parameter should have a type, default (this is the default\n * value), and a description.\n */\n const defaultParameters: GameParameters = {\n fixation_duration_ms: {\n default: 500,\n description: \"How long fixation scene is shown, milliseconds.\",\n type: \"number\",\n },\n shape_colors: {\n type: \"array\",\n description: \"Array of colors for shapes.\",\n items: {\n type: \"object\",\n properties: {\n colorName: {\n type: \"string\",\n description: \"Human-friendly name of color.\",\n },\n rgbaColor: {\n type: \"array\",\n description: \"Color as array, [r,g,b,a].\",\n items: {\n type: \"number\",\n },\n },\n },\n },\n default: [\n { colorName: \"black\", rgbaColor: [0, 0, 0, 1] },\n { colorName: \"green\", rgbaColor: [0, 158, 115, 1] },\n { colorName: \"yellow\", rgbaColor: [240, 228, 66, 1] },\n { colorName: \"blue\", rgbaColor: [0, 114, 178, 1] },\n { colorName: \"orange\", rgbaColor: [213, 94, 0, 1] },\n { colorName: \"pink\", rgbaColor: [204, 121, 167, 1] },\n ],\n },\n number_of_shapes_shown: {\n default: 3,\n description: \"How many shapes to show on the grid at one time.\",\n type: \"integer\",\n },\n shapes_presented_duration_ms: {\n default: 2000,\n description: \"How long the shapes are shown, milliseconds.\",\n type: \"number\",\n },\n shapes_removed_duration_ms: {\n default: 1000,\n description:\n \"How long to show a blank square after shapes are removed, milliseconds.\",\n type: \"number\",\n },\n cells_per_side: {\n default: 3,\n description:\n \"How many cell positions for each side of the square grid (e.g., 3 is a 3x3 grid; 4 is a 4x4 grid).\",\n type: \"integer\",\n },\n number_of_different_colors_trials: {\n default: 2,\n type: \"integer\",\n description:\n \"Number of trials where the shapes have different colors. If shapes have different colors in a trial, anywhere from 2 to (number of shapes) will be given different colors.\",\n },\n number_of_trials: {\n default: 4,\n description: \"How many trials to run.\",\n type: \"integer\",\n },\n show_trials_complete_scene: {\n default: true,\n type: \"boolean\",\n description:\n \"After the final trial, should a completion scene be shown? Otherwise, the game will immediately end.\",\n },\n trials_complete_scene_text: {\n default: \"You have completed all the color shapes trials\",\n description: \"Text for scene displayed after all trials are complete.\",\n type: \"string\",\n },\n trials_complete_scene_button_text: {\n default: \"OK\",\n description:\n \"Button text for scene displayed after all trials are complete.\",\n type: \"string\",\n },\n instruction_type: {\n default: \"long\",\n description: \"Type of instructions to show, 'short' or 'long'.\",\n type: \"string\",\n enum: [\"short\", \"long\"],\n },\n instructions: {\n default: null,\n type: [\"object\", \"null\"],\n description:\n \"When non-null, an InstructionsOptions object that will completely override the built-in instructions.\",\n },\n show_quit_button: {\n type: \"boolean\",\n default: true,\n description: \"Should the activity quit button be shown?\",\n },\n show_fps: {\n type: \"boolean\",\n default: false,\n description: \"Should the FPS be shown?\",\n },\n };\n\n /**\n * This describes all the data that will be generated by the assessment.\n * At runtime, when a trial completes, the data will be returned to the\n * session with a callback, along with this schema transformed into\n * JSON Schema.\n */\n const colorShapesTrialSchema: TrialSchema = {\n activity_begin_iso8601_timestamp: {\n type: \"string\",\n format: \"date-time\",\n description:\n \"ISO 8601 timestamp at the beginning of the game activity.\",\n },\n trial_begin_iso8601_timestamp: {\n type: [\"string\", \"null\"],\n format: \"date-time\",\n description:\n \"ISO 8601 timestamp at the beginning of the trial. Null if trial was skipped.\",\n },\n trial_end_iso8601_timestamp: {\n type: [\"string\", \"null\"],\n format: \"date-time\",\n description:\n \"ISO 8601 timestamp at the end of the trial (when user presses 'Same' or 'Different'). Null if trial was skipped.\",\n },\n trial_index: {\n type: [\"integer\", \"null\"],\n description: \"Index of the trial within this assessment, 0-based.\",\n },\n present_shapes: {\n description:\n \"Configuration of shapes shown to the user in the presentation phase. Null if trial was skipped.\",\n type: [\"array\", \"null\"],\n items: {\n type: \"object\",\n properties: {\n shape_index: {\n type: \"integer\",\n description:\n \"Index of the shape within the library of shapes, 0-based\",\n },\n color_name: {\n type: \"string\",\n description: \"Human-friendly name of color.\",\n },\n rgba_color: {\n type: \"array\",\n description: \"Color as array, [r,g,b,a].\",\n items: {\n type: \"number\",\n },\n },\n location: {\n type: \"object\",\n description: \"Location of shape.\",\n properties: {\n row: {\n type: \"number\",\n description: \"Row of the shape, 0-based.\",\n },\n column: {\n type: \"number\",\n description: \"Column of the shape, 0-based.\",\n },\n },\n },\n },\n },\n },\n response_shapes: {\n description:\n \"Configuration of shapes shown to the user in the response phase. Null if trial was skipped.\",\n type: [\"array\", \"null\"],\n items: {\n type: \"object\",\n properties: {\n shape_index: {\n type: \"integer\",\n description:\n \"Index of the shape within the library of shapes, 0-based\",\n },\n color_name: {\n type: \"string\",\n description: \"Human-friendly name of color.\",\n },\n rgba_color: {\n type: \"array\",\n description: \"Color as array, [r,g,b,a].\",\n items: {\n type: \"number\",\n },\n },\n location: {\n type: \"object\",\n description: \"Location of shape.\",\n properties: {\n row: {\n type: \"number\",\n description: \"Row of the shape, 0-based.\",\n },\n column: {\n type: \"number\",\n description: \"Column of the shape, 0-based.\",\n },\n },\n },\n },\n },\n },\n number_of_different_shapes: {\n type: [\"integer\", \"null\"],\n description:\n \"Number of shapes shown with different colors in the response phase.\",\n },\n response_time_duration_ms: {\n type: [\"number\", \"null\"],\n description:\n \"Milliseconds from when the response configuration of shapes is shown until the user taps a response. Null if trial was skipped.\",\n },\n user_response: {\n type: [\"string\", \"null\"],\n enum: [\"same\", \"different\"],\n description:\n \"User's response to whether the shapes are same colors or different.\",\n },\n user_response_correct: {\n type: [\"boolean\", \"null\"],\n description: \"Was the user's response correct?\",\n },\n quit_button_pressed: {\n type: \"boolean\",\n description: \"Was the quit button pressed?\",\n },\n };\n\n const options: GameOptions = {\n name: \"Color Shapes\",\n /**\n * This id must match the property m2c2kit.assessmentId in package.json\n */\n id: \"color-shapes\",\n publishUuid: \"394cb010-2ccf-4a87-9d23-cda7fb07a960\",\n version: \"__PACKAGE_JSON_VERSION__\",\n moduleMetadata: Constants.MODULE_METADATA_PLACEHOLDER,\n shortDescription:\n \"Color Shapes is a visual array change detection \\\ntask, measuring intra-item feature binding, where participants determine \\\nif shapes change color across two sequential presentations of shape \\\nstimuli.\",\n longDescription: `Color Shapes is a change detection paradigm used \\\nto measure visual short-term memory binding (Parra et al., 2009). \\\nParticipants are asked to memorize the shapes and colors of three different \\\npolygons for 3 seconds. The three polygons are then removed from the screen \\\nand re-displayed at different locations, either having the same or different \\\ncolors. Participants are then asked to decide whether the combination of \\\ncolors and shapes are the \"Same\" or \"Different\" between the study and test \\\nphases.`,\n showFps: defaultParameters.show_fps.default,\n width: 400,\n height: 800,\n trialSchema: colorShapesTrialSchema,\n parameters: defaultParameters,\n fonts: [\n {\n fontName: \"roboto\",\n url: \"fonts/roboto/Roboto-Regular.ttf\",\n },\n ],\n images: [\n {\n imageName: \"instructions-1\",\n height: 256,\n width: 256,\n url: \"images/cs-instructions-1.png\",\n },\n {\n imageName: \"instructions-2\",\n height: 256,\n width: 256,\n url: \"images/cs-instructions-2.png\",\n },\n {\n imageName: \"instructions-3\",\n height: 330,\n width: 256,\n url: \"images/cs-instructions-3.png\",\n },\n {\n imageName: \"circle-x\",\n height: 32,\n width: 32,\n // the svg is from evericons and is licensed under CC0 1.0\n // Universal (Public Domain). see https://www.patreon.com/evericons\n url: \"images/circle-x.svg\",\n },\n ],\n };\n\n super(options);\n }\n\n override async initialize() {\n await super.initialize();\n // just for convenience, alias the variable game to \"this\"\n // (even though eslint doesn't like it)\n // eslint-disable-next-line @typescript-eslint/no-this-alias\n const game = this;\n\n const SHAPE_SVG_HEIGHT = 96;\n const SQUARE_SIDE_LENGTH = 350;\n const numberOfShapesShown = game.getParameter<number>(\n \"number_of_shapes_shown\",\n );\n const shapeLibrary = this.makeShapes(SHAPE_SVG_HEIGHT);\n\n // ==============================================================\n\n if (game.getParameter<boolean>(\"show_quit_button\")) {\n const quitSprite = new Sprite({\n imageName: \"circle-x\",\n position: { x: 380, y: 20 },\n isUserInteractionEnabled: true,\n });\n game.addFreeNode(quitSprite);\n quitSprite.onTapDown((e) => {\n game.removeAllFreeNodes();\n e.handled = true;\n const blankScene = new Scene();\n game.addScene(blankScene);\n game.presentScene(blankScene);\n game.addTrialData(\"quit_button_pressed\", true);\n game.trialComplete();\n game.cancel();\n });\n }\n\n // ==============================================================\n // SCENES: instructions\n let instructionsScenes: Array<Scene>;\n\n const customInstructions = game.getParameter<InstructionsOptions | null>(\n \"instructions\",\n );\n if (customInstructions) {\n instructionsScenes = Instructions.create(customInstructions);\n } else {\n switch (game.getParameter(\"instruction_type\")) {\n case \"short\": {\n instructionsScenes = Instructions.create({\n instructionScenes: [\n {\n title: \"Color Shapes\",\n text: `Try to remember the color of ${numberOfShapesShown} shapes, because they will soon disappear. When the shapes reappear, answer whether they have the SAME or DIFFERENT colors as they had before.`,\n imageName: \"instructions-1\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n nextButtonText: \"START\",\n nextButtonBackgroundColor: WebColors.Green,\n nextSceneTransition: Transition.none(),\n },\n ],\n });\n break;\n }\n case \"long\": {\n instructionsScenes = Instructions.create({\n instructionScenes: [\n {\n title: \"Color Shapes\",\n text: `Try to remember the color of ${numberOfShapesShown} shapes, because they will soon disappear.`,\n imageName: \"instructions-1\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n },\n {\n title: \"Color Shapes\",\n text: \"Next you will see the same shapes reappear.\",\n imageName: \"instructions-2\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n },\n {\n title: \"Color Shapes\",\n text: \"Answer whether the shapes have the SAME or DIFFERENT colors as they had before.\",\n imageName: \"instructions-3\",\n imageAboveText: false,\n imageMarginTop: 32,\n textFontSize: 24,\n titleFontSize: 30,\n textVerticalBias: 0.2,\n nextButtonText: \"START\",\n nextButtonBackgroundColor: WebColors.Green,\n },\n ],\n });\n break;\n }\n default: {\n throw new Error(\"invalid value for instruction_type\");\n }\n }\n }\n instructionsScenes[0].onAppear(() => {\n // in case user quits before starting a trial, record the\n // timestamp\n game.addTrialData(\n \"activity_begin_iso8601_timestamp\",\n this.beginIso8601Timestamp,\n );\n });\n game.addScenes(instructionsScenes);\n\n // ==============================================================\n // SCENE: countdown. Show 3 second countdown.\n const countdownScene = new CountdownScene({\n milliseconds: 3000,\n text: \"GET READY!\",\n zeroDwellMilliseconds: 1000,\n transition: Transition.none(),\n });\n game.addScene(countdownScene);\n\n const gridRows = game.getParameter<number>(\"cells_per_side\");\n const gridColumns = game.getParameter<number>(\"cells_per_side\");\n const numberOfTrials = game.getParameter<number>(\"number_of_trials\");\n const shapeColors =\n game.getParameter<Array<{ colorName: string; rgbaColor: RgbaColor }>>(\n \"shape_colors\",\n );\n\n interface DisplayShape {\n shape: Shape;\n shapeIndex: number;\n color: RgbaColor;\n colorName: string;\n location: {\n row: number;\n column: number;\n };\n }\n\n interface TrialConfiguration {\n presentShapes: Array<DisplayShape>;\n responseShapes: Array<DisplayShape>;\n numberOfShapesWithDifferentColors: number;\n }\n\n const trialConfigurations: Array<TrialConfiguration> = [];\n const rows = game.getParameter<number>(\"cells_per_side\");\n const columns = rows;\n const numberOfDifferentColorsTrials = game.getParameter<number>(\n \"number_of_different_colors_trials\",\n );\n const differentColorsTrialIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfDifferentColorsTrials,\n 0,\n numberOfTrials - 1,\n );\n\n for (let i = 0; i < numberOfTrials; i++) {\n const presentShapes = new Array<DisplayShape>();\n const responseShapes = new Array<DisplayShape>();\n const shapesToShowIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfShapesShown,\n 0,\n shapeLibrary.length - 1,\n );\n const shapeColorsIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfShapesShown,\n 0,\n shapeColors.length - 1,\n );\n\n // do not allow shapes to be in the same row or column\n // or along the diagonal\n const onDiagonal = (\n locations: {\n row: number;\n column: number;\n }[],\n ): boolean => {\n if (\n locations\n .map((c) => c.row === 0 && c.column === 0)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 1 && c.column === 1)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 2 && c.column === 2)\n .some((e) => e === true)\n ) {\n return true;\n }\n if (\n locations\n .map((c) => c.row === 2 && c.column === 0)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 1 && c.column === 1)\n .some((e) => e === true) &&\n locations\n .map((c) => c.row === 0 && c.column === 2)\n .some((e) => e === true)\n ) {\n return true;\n }\n return false;\n };\n\n const inLine = (\n locations: {\n row: number;\n column: number;\n }[],\n ): boolean => {\n const uniqueRows = new Set(locations.map((l) => l.row)).size;\n const uniqueColumns = new Set(locations.map((l) => l.column)).size;\n\n if (uniqueRows !== 1 && uniqueColumns !== 1) {\n return false;\n }\n return true;\n };\n\n // assign present shapes' locations and colors\n let presentLocationsOk = false;\n let presentLocations: {\n row: number;\n column: number;\n }[];\n do {\n presentLocations = RandomDraws.FromGridWithoutReplacement(\n numberOfShapesShown,\n rows,\n columns,\n );\n\n if (!inLine(presentLocations) && !onDiagonal(presentLocations)) {\n presentLocationsOk = true;\n } else {\n presentLocationsOk = false;\n }\n } while (!presentLocationsOk);\n for (let j = 0; j < numberOfShapesShown; j++) {\n const presentShape: DisplayShape = {\n shape: shapeLibrary[shapesToShowIndexes[j]],\n shapeIndex: shapesToShowIndexes[j],\n color: shapeColors[shapeColorsIndexes[j]].rgbaColor,\n colorName: shapeColors[shapeColorsIndexes[j]].colorName,\n location: presentLocations[j],\n };\n presentShapes.push(presentShape);\n }\n\n // assign response shapes' locations\n let responseLocationsOk = false;\n let responseLocations: {\n row: number;\n column: number;\n }[];\n do {\n responseLocations = RandomDraws.FromGridWithoutReplacement(\n numberOfShapesShown,\n rows,\n columns,\n );\n\n if (!inLine(responseLocations) && !onDiagonal(responseLocations)) {\n responseLocationsOk = true;\n } else {\n responseLocationsOk = false;\n }\n } while (!responseLocationsOk);\n for (let j = 0; j < numberOfShapesShown; j++) {\n const responseShape: DisplayShape = {\n shape: presentShapes[j].shape,\n shapeIndex: shapesToShowIndexes[j],\n color: presentShapes[j].color,\n colorName: shapeColors[shapeColorsIndexes[j]].colorName,\n location: responseLocations[j],\n };\n responseShapes.push(responseShape);\n }\n\n let numberOfShapesWithDifferentColors = 0;\n const differentColorTrial = differentColorsTrialIndexes.includes(i);\n\n if (differentColorTrial) {\n const numberOfShapesToChange = RandomDraws.SingleFromRange(\n 2,\n numberOfShapesShown,\n );\n const shapesToChangeIndexes = RandomDraws.FromRangeWithoutReplacement(\n numberOfShapesToChange,\n 0,\n numberOfShapesShown - 1,\n );\n const shapesToChange = shapesToChangeIndexes.map(\n (index) => responseShapes[index],\n );\n numberOfShapesWithDifferentColors = shapesToChange.length;\n\n /**\n * rotate each shape's color to the next one. The last shape\n * gets the first shape's color\n */\n const firstShapeColor = shapesToChange[0].color;\n for (let j = 0; j < numberOfShapesToChange; j++) {\n const shape = shapesToChange[j];\n if (j + 1 < numberOfShapesToChange) {\n shape.color = shapesToChange[j + 1].color;\n } else {\n shape.color = firstShapeColor;\n }\n }\n }\n\n trialConfigurations.push({\n presentShapes: presentShapes,\n responseShapes: responseShapes,\n numberOfShapesWithDifferentColors: numberOfShapesWithDifferentColors,\n });\n }\n\n // ==============================================================\n // SCENE: fixation. Show get ready message, then advance after XXXX\n // milliseconds (as defined in fixation_duration_ms parameter)\n const fixationScene = new Scene();\n game.addScene(fixationScene);\n\n const fixationSceneSquare = new Shape({\n rect: { size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH } },\n fillColor: WebColors.Transparent,\n strokeColor: WebColors.Gray,\n lineWidth: 4,\n position: { x: 200, y: 300 },\n });\n fixationScene.addChild(fixationSceneSquare);\n\n const plusLabel = new Label({\n text: \"+\",\n fontSize: 32,\n fontColor: WebColors.Black,\n });\n fixationSceneSquare.addChild(plusLabel);\n\n fixationScene.onAppear(() => {\n game.addTrialData(\n \"activity_begin_iso8601_timestamp\",\n this.beginIso8601Timestamp,\n );\n game.addTrialData(\n \"trial_begin_iso8601_timestamp\",\n new Date().toISOString(),\n );\n fixationScene.run(\n Action.sequence([\n Action.wait({ duration: game.getParameter(\"fixation_duration_ms\") }),\n Action.custom({\n callback: () => {\n game.presentScene(shapePresentationScene);\n },\n }),\n ]),\n );\n });\n\n // ==============================================================\n // SCENE: Shape Presentation.\n const shapePresentationScene = new Scene();\n game.addScene(shapePresentationScene);\n\n const presentationSceneSquare = new Shape({\n rect: { size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH } },\n fillColor: WebColors.Transparent,\n strokeColor: WebColors.Gray,\n lineWidth: 4,\n position: { x: 200, y: 300 },\n });\n shapePresentationScene.addChild(presentationSceneSquare);\n\n const presentationGrid = new Grid({\n rows: gridRows,\n columns: gridColumns,\n size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH },\n position: { x: 200, y: 300 },\n backgroundColor: WebColors.Transparent,\n gridLineColor: WebColors.Transparent,\n });\n shapePresentationScene.addChild(presentationGrid);\n\n shapePresentationScene.onAppear(() => {\n const trialConfiguration = trialConfigurations[game.trialIndex];\n for (let i = 0; i < trialConfiguration.presentShapes.length; i++) {\n const presentShape = trialConfiguration.presentShapes[i].shape;\n presentShape.fillColor = trialConfiguration.presentShapes[i].color;\n /**\n * Because we are repositioning children of a grid, we need to\n * set its position back to zero, because in the grid, it recalculates\n * the position. If we don't do this, the shapes will be positioned\n * incorrectly if they are positioned a second time.\n */\n presentShape.position = { x: 0, y: 0 };\n presentationGrid.addAtCell(\n presentShape,\n trialConfiguration.presentShapes[i].location.row,\n trialConfiguration.presentShapes[i].location.column,\n );\n }\n shapePresentationScene.run(\n Action.sequence([\n Action.wait({\n duration: game.getParameter(\"shapes_presented_duration_ms\"),\n }),\n Action.custom({\n callback: () => {\n presentationGrid.removeAllGridChildren();\n },\n }),\n Action.wait({\n duration: game.getParameter(\"shapes_removed_duration_ms\"),\n }),\n Action.custom({\n callback: () => {\n presentationGrid.removeAllGridChildren();\n game.presentScene(shapeResponseScene);\n },\n }),\n ]),\n );\n });\n\n // ==============================================================\n // SCENE: Shape Response.\n const shapeResponseScene = new Scene();\n game.addScene(shapeResponseScene);\n\n const responseSceneSquare = new Shape({\n rect: { size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH } },\n fillColor: WebColors.Transparent,\n strokeColor: WebColors.Gray,\n lineWidth: 4,\n position: { x: 200, y: 300 },\n });\n shapeResponseScene.addChild(responseSceneSquare);\n\n const responseGrid = new Grid({\n rows: gridRows,\n columns: gridColumns,\n size: { width: SQUARE_SIDE_LENGTH, height: SQUARE_SIDE_LENGTH },\n position: { x: 200, y: 300 },\n backgroundColor: WebColors.Transparent,\n gridLineColor: WebColors.Transparent,\n });\n shapeResponseScene.addChild(responseGrid);\n\n shapeResponseScene.onAppear(() => {\n const trialConfiguration = trialConfigurations[game.trialIndex];\n for (let i = 0; i < trialConfiguration.responseShapes.length; i++) {\n const responseShape = trialConfiguration.responseShapes[i].shape;\n responseShape.fillColor = trialConfiguration.responseShapes[i].color;\n /**\n * Because we are repositioning children of a grid, we need to\n * set its position back to zero, because in the grid, it recalculates\n * the position. If we don't do this, the shapes will be positioned\n * incorrectly if they are positioned a second time.\n */\n responseShape.position = { x: 0, y: 0 };\n responseGrid.addAtCell(\n responseShape,\n trialConfiguration.responseShapes[i].location.row,\n trialConfiguration.responseShapes[i].location.column,\n );\n }\n sameButton.isUserInteractionEnabled = true;\n differentButton.isUserInteractionEnabled = true;\n Timer.startNew(\"rt\");\n });\n\n const sameButton = new Button({\n text: \"Same\",\n position: { x: 100, y: 700 },\n size: { width: 125, height: 50 },\n });\n shapeResponseScene.addChild(sameButton);\n sameButton.onTapDown(() => {\n sameButton.isUserInteractionEnabled = false;\n handleSelection(false);\n });\n\n const differentButton = new Button({\n text: \"Different\",\n position: { x: 300, y: 700 },\n size: { width: 125, height: 50 },\n });\n shapeResponseScene.addChild(differentButton);\n differentButton.onTapDown(() => {\n differentButton.isUserInteractionEnabled = false;\n handleSelection(true);\n });\n\n const handleSelection = (differentPressed: boolean) => {\n const rt = Timer.elapsed(\"rt\");\n Timer.remove(\"rt\");\n responseGrid.removeAllGridChildren();\n\n game.addTrialData(\n \"trial_end_iso8601_timestamp\",\n new Date().toISOString(),\n );\n const trialConfiguration = trialConfigurations[game.trialIndex];\n game.addTrialData(\"response_time_duration_ms\", rt);\n game.addTrialData(\n \"number_of_different_shapes\",\n trialConfiguration.numberOfShapesWithDifferentColors,\n );\n game.addTrialData(\n \"user_response\",\n differentPressed ? \"different\" : \"same\",\n );\n const correctResponse =\n (trialConfiguration.numberOfShapesWithDifferentColors === 0 &&\n !differentPressed) ||\n (trialConfiguration.numberOfShapesWithDifferentColors > 0 &&\n differentPressed);\n game.addTrialData(\"user_response_correct\", correctResponse);\n\n const presentShapes = trialConfiguration.presentShapes.map((p) => {\n return {\n shape_index: p.shapeIndex,\n color_name: p.colorName,\n rgba_color: p.color,\n location: p.location,\n };\n });\n game.addTrialData(\"present_shapes\", presentShapes);\n game.addTrialData(\"quit_button_pressed\", false);\n\n const responseShapes = trialConfiguration.responseShapes.map((p) => {\n return {\n shape_index: p.shapeIndex,\n color_name: p.colorName,\n rgba_color: p.color,\n location: p.location,\n };\n });\n game.addTrialData(\"response_shapes\", responseShapes);\n game.addTrialData(\"trial_index\", game.trialIndex);\n\n game.trialComplete();\n if (game.trialIndex < numberOfTrials) {\n game.presentScene(fixationScene);\n } else {\n game.presentScene(\n doneScene,\n Transition.slide({\n direction: TransitionDirection.Left,\n duration: 500,\n easing: Easings.sinusoidalInOut,\n }),\n );\n }\n };\n\n // ==============================================================\n // SCENE: done. Show done message, with a button to exit.\n const doneScene = new Scene();\n game.addScene(doneScene);\n\n const doneSceneText = new Label({\n text: game.getParameter(\"trials_complete_scene_text\"),\n position: { x: 200, y: 400 },\n });\n doneScene.addChild(doneSceneText);\n\n const okButton = new Button({\n text: game.getParameter(\"trials_complete_scene_button_text\"),\n position: { x: 200, y: 650 },\n });\n okButton.isUserInteractionEnabled = true;\n okButton.onTapDown(() => {\n // don't allow repeat taps of ok button\n okButton.isUserInteractionEnabled = false;\n doneScene.removeAllChildren();\n game.end();\n });\n doneScene.addChild(okButton);\n doneScene.onSetup(() => {\n // no need to have cancel button, because we're done\n game.removeAllFreeNodes();\n });\n }\n\n private makeShapes(svgHeight: number) {\n const shape01 = new Shape({\n path: {\n pathString: shapePathStrings[0],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shape02 = new Shape({\n path: {\n pathString: shapePathStrings[1],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n // note: shape03 is purposively smaller (.8 height of other shapes)\n const shape03 = new Shape({\n path: {\n pathString: shapePathStrings[2],\n height: svgHeight * 0.8,\n },\n lineWidth: 0,\n });\n\n const shape04 = new Shape({\n path: {\n pathString: shapePathStrings[3],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n // note: shape05 is purposively smaller (.8 height of other shapes)\n const shape05 = new Shape({\n path: {\n pathString: shapePathStrings[4],\n height: svgHeight * 0.8,\n },\n lineWidth: 0,\n });\n\n const shape06 = new Shape({\n path: {\n pathString: shapePathStrings[5],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shape07 = new Shape({\n path: {\n pathString: shapePathStrings[6],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shape08 = new Shape({\n path: {\n pathString: shapePathStrings[7],\n height: svgHeight,\n },\n lineWidth: 0,\n });\n\n const shapes = [\n shape01,\n shape02,\n shape03,\n shape04,\n shape05,\n shape06,\n shape07,\n shape08,\n ];\n return shapes;\n }\n}\n\nconst shapePathStrings = [\n \"M0 89.94v-2L131.95 0h2v88.7c2.34 1.6 4.47 3.11 6.65 4.55 42.77 28.22 85.54 56.42 128.3 84.63v2c-44.65 29.65-89.3 59.29-133.95 88.94h-1v-90.84C89.44 148.72 44.72 119.33 0 89.94Z\",\n \"M162 188c-.33 27-.67 54-1 81-26.87-26.18-53.74-52.35-80-77.94V269H0C0 180.83 0 92.67.04 4.5.04 3 .67 1.5 1 0c24.64 29.1 49.15 58.31 73.96 87.26 28.88 33.7 58.01 67.17 87.04 100.74Z\",\n \"M3 148.86V61.12C41.76 40.75 80.52 20.37 119.28 0h2.91c21.32 20.7 42.64 41.4 63.96 62.11v89.71c-38.44 20.04-76.88 40.09-115.31 60.13h-2.91L3.01 148.86Z\",\n \"M134 0h2c7.26 22.31 14.38 44.67 21.86 66.9 3.91 11.61 5.47 29.91 13.25 33.27C203 113.94 236.86 123.13 270 134v1L136 269h-1c-11.04-33.58-22.08-67.16-33.21-101.03C67.87 156.98 33.93 145.99 0 135v-1L134 0Z\",\n \"M107 0h1l108 108v1c-26.67 35.33-53.33 70.66-80 106h-1c-8.82-35.03-17.64-70.07-27-107.28C98.62 145.01 89.81 180 81.01 215h-1C53.33 179.66 26.67 144.33 0 109v-2L107 0Z\",\n \"M0 1C2.17.67 4.33.05 6.5.04 58.33-.01 110.17 0 162 0v270H2c26.2-22.17 52.41-44.33 78.86-66.71V67.4c-3.85-3.22-7.35-6.2-10.9-9.11C46.64 39.18 23.32 20.09 0 1Z\",\n \"M95 268.99h-1C62.66 238.66 31.33 208.33 0 178V88C26.67 58.67 53.33 29.33 80 0h1c0 29.45 0 58.89-.01 88.38 35.99 29.57 72 59.09 108.01 88.61v1l-94 91Z\",\n \"M13 0h67l135 135v1L81 270c-27-.33-54-.67-81-1 11.73-12.51 23.61-24.87 35.16-37.54 33.14-36.35 66.14-72.82 100.23-110.38C94.4 80.52 53.7 40.26 13 0Z\",\n];\n\nexport { ColorShapes };\n"],"names":[],"mappings":"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"}
|
package/dist/index.min.js
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
import{Game as ie,Sprite as le,Scene as v,WebColors as i,Transition as V,RandomDraws as f,Shape as c,Label as J,Action as h,Timer as j,TransitionDirection as pe,Easings as ce}from"@m2c2kit/core";import{Instructions as X,CountdownScene as he,Grid as ee,Button as H}from"@m2c2kit/addons";class de extends ie{constructor(){const e={fixation_duration_ms:{default:500,description:"How long fixation scene is shown, milliseconds.",type:"number"},shape_colors:{type:"array",description:"Array of colors for shapes.",items:{type:"object",properties:{colorName:{type:"string",description:"Human-friendly name of color."},rgbaColor:{type:"array",description:"Color as array, [r,g,b,a].",items:{type:"number"}}}},default:[{colorName:"black",rgbaColor:[0,0,0,1]},{colorName:"green",rgbaColor:[0,158,115,1]},{colorName:"yellow",rgbaColor:[240,228,66,1]},{colorName:"blue",rgbaColor:[0,114,178,1]},{colorName:"orange",rgbaColor:[213,94,0,1]},{colorName:"pink",rgbaColor:[204,121,167,1]}]},number_of_shapes_shown:{default:3,description:"How many shapes to show on the grid at one time.",type:"integer"},shapes_presented_duration_ms:{default:2e3,description:"How long the shapes are shown, milliseconds.",type:"number"},shapes_removed_duration_ms:{default:1e3,description:"How long to show a blank square after shapes are removed, milliseconds.",type:"number"},cells_per_side:{default:3,description:"How many cell positions for each side of the square grid (e.g., 3 is a 3x3 grid; 4 is a 4x4 grid).",type:"integer"},number_of_different_colors_trials:{default:2,type:"integer",description:"Number of trials where the shapes have different colors. If shapes have different colors in a trial, anywhere from 2 to (number of shapes) will be given different colors."},number_of_trials:{default:4,description:"How many trials to run.",type:"integer"},show_trials_complete_scene:{default:!0,type:"boolean",description:"After the final trial, should a completion scene be shown? Otherwise, the game will immediately end."},trials_complete_scene_text:{default:"You have completed all the color shapes trials",description:"Text for scene displayed after all trials are complete.",type:"string"},trials_complete_scene_button_text:{default:"OK",description:"Button text for scene displayed after all trials are complete.",type:"string"},instruction_type:{default:"long",description:"Type of instructions to show, 'short' or 'long'.",type:"string",enum:["short","long"]},show_quit_button:{type:"boolean",default:!0,description:"Should the activity quit button be shown?"},show_fps:{type:"boolean",default:!1,description:"Should the FPS be shown?"}},S={activity_begin_iso8601_timestamp:{type:"string",format:"date-time",description:"ISO 8601 timestamp at the beginning of the game activity."},trial_begin_iso8601_timestamp:{type:["string","null"],format:"date-time",description:"ISO 8601 timestamp at the beginning of the trial. Null if trial was skipped."},trial_end_iso8601_timestamp:{type:["string","null"],format:"date-time",description:"ISO 8601 timestamp at the end of the trial (when user presses 'Same' or 'Different'). Null if trial was skipped."},trial_index:{type:["integer","null"],description:"Index of the trial within this assessment, 0-based."},present_shapes:{description:"Configuration of shapes shown to the user in the presentation phase. Null if trial was skipped.",type:["array","null"],items:{type:"object",properties:{shape_index:{type:"integer",description:"Index of the shape within the library of shapes, 0-based"},color_name:{type:"string",description:"Human-friendly name of color."},rgba_color:{type:"array",description:"Color as array, [r,g,b,a].",items:{type:"number"}},location:{type:"object",description:"Location of shape.",properties:{row:{type:"number",description:"Row of the shape, 0-based."},column:{type:"number",description:"Column of the shape, 0-based."}}}}}},response_shapes:{description:"Configuration of shapes shown to the user in the response phase. Null if trial was skipped.",type:["array","null"],items:{type:"object",properties:{shape_index:{type:"integer",description:"Index of the shape within the library of shapes, 0-based"},color_name:{type:"string",description:"Human-friendly name of color."},rgba_color:{type:"array",description:"Color as array, [r,g,b,a].",items:{type:"number"}},location:{type:"object",description:"Location of shape.",properties:{row:{type:"number",description:"Row of the shape, 0-based."},column:{type:"number",description:"Column of the shape, 0-based."}}}}}},number_of_different_shapes:{type:["integer","null"],description:"Number of shapes shown with different colors in the response phase."},response_time_duration_ms:{type:["number","null"],description:"Milliseconds from when the response configuration of shapes is shown until the user taps a response. Null if trial was skipped."},user_response:{type:["string","null"],enum:["same","different"],description:"User's response to whether the shapes are same colors or different."},user_response_correct:{type:["boolean","null"],description:"Was the user's response correct?"},quit_button_pressed:{type:"boolean",description:"Was the quit button pressed?"}},a={name:"Color Shapes",id:"color-shapes",version:"0.8.15 (4e702d79)",moduleMetadata:{name:"@m2c2kit/assessment-color-shapes",version:"0.8.15",dependencies:{"@m2c2kit/addons":"^0.3.14","@m2c2kit/core":"^0.3.17"}},shortDescription:"Color Shapes is a visual array change detection task, measuring intra-item feature binding, where participants determine if shapes change color across two sequential presentations of shape stimuli.",longDescription:'Color Shapes is a change detection paradigm used to measure visual short-term memory binding (Parra et al., 2009). Participants are asked to memorize the shapes and colors of three different polygons for 3 seconds. The three polygons are then removed from the screen and re-displayed at different locations, either having the same or different colors. Participants are then asked to decide whether the combination of colors and shapes are the "Same" or "Different" between the study and test phases.',showFps:e.show_fps.default,width:400,height:800,trialSchema:S,parameters:e,fonts:[{fontName:"roboto",url:"fonts/roboto/Roboto-Regular.ttf"}],images:[{imageName:"instructions-1",height:256,width:256,url:"images/cs-instructions-1.png"},{imageName:"instructions-2",height:256,width:256,url:"images/cs-instructions-2.png"},{imageName:"instructions-3",height:330,width:256,url:"images/cs-instructions-3.png"},{imageName:"circle-x",height:32,width:32,url:"images/circle-x.svg"}]};super(a)}async initialize(){await super.initialize();const e=this,S=96,a=350,l=e.getParameter("number_of_shapes_shown"),I=this.makeShapes(S);if(e.getParameter("show_quit_button")){const n=new le({imageName:"circle-x",position:{x:380,y:20},isUserInteractionEnabled:!0});e.addFreeNode(n),n.onTapDown(s=>{e.removeAllFreeNodes(),s.handled=!0;const r=new v;e.addScene(r),e.presentScene(r),e.addTrialData("quit_button_pressed",!0),e.trialComplete(),e.cancel()})}let g;switch(e.getParameter("instruction_type")){case"short":{g=X.create({instructionScenes:[{title:"Color Shapes",text:`Try to remember the location and color of ${l} shapes, because they will soon disappear. When the shapes reappear, answer whether they have the SAME or DIFFERENT colors as they had before.`,imageName:"instructions-1",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2,nextButtonText:"START",nextButtonBackgroundColor:i.Green,nextSceneTransition:V.none()}]});break}case"long":{g=X.create({instructionScenes:[{title:"Color Shapes",text:`Try to remember the location and color of ${l} shapes, because they will soon disappear.`,imageName:"instructions-1",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2},{title:"Color Shapes",text:"Next you will see the same shapes reappear.",imageName:"instructions-2",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2},{title:"Color Shapes",text:"Answer whether the shapes have the SAME or DIFFERENT colors as they had before.",imageName:"instructions-3",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2,nextButtonText:"START",nextButtonBackgroundColor:i.Green}]});break}default:throw new Error("invalid value for instruction_type")}g[0].onAppear(()=>{e.addTrialData("activity_begin_iso8601_timestamp",this.beginIso8601Timestamp)}),e.addScenes(g);const O=new he({milliseconds:3e3,text:"GET READY!",zeroDwellMilliseconds:1e3,transition:V.none()});e.addScene(O);const N=e.getParameter("cells_per_side"),D=e.getParameter("cells_per_side"),k=e.getParameter("number_of_trials"),A=e.getParameter("shape_colors"),R=[],M=e.getParameter("cells_per_side"),Z=M,te=e.getParameter("number_of_different_colors_trials"),oe=f.FromRangeWithoutReplacement(te,0,k-1);for(let n=0;n<k;n++){const s=new Array,r=new Array,C=f.FromRangeWithoutReplacement(l,0,I.length-1),x=f.FromRangeWithoutReplacement(l,0,A.length-1),L=o=>!!(o.map(t=>t.row===0&&t.column===0).some(t=>t===!0)&&o.map(t=>t.row===1&&t.column===1).some(t=>t===!0)&&o.map(t=>t.row===2&&t.column===2).some(t=>t===!0)||o.map(t=>t.row===2&&t.column===0).some(t=>t===!0)&&o.map(t=>t.row===1&&t.column===1).some(t=>t===!0)&&o.map(t=>t.row===0&&t.column===2).some(t=>t===!0)),p=o=>{const t=new Set(o.map(T=>T.row)).size,b=new Set(o.map(T=>T.column)).size;return!(t!==1&&b!==1)};let G=!1,P;do P=f.FromGridWithoutReplacement(l,M,Z),!p(P)&&!L(P)?G=!0:G=!1;while(!G);for(let o=0;o<l;o++){const t={shape:I[C[o]],shapeIndex:C[o],color:A[x[o]].rgbaColor,colorName:A[x[o]].colorName,location:P[o]};s.push(t)}let U=!1,q;do q=f.FromGridWithoutReplacement(l,M,Z),!p(q)&&!L(q)?U=!0:U=!1;while(!U);for(let o=0;o<l;o++){const t={shape:s[o].shape,shapeIndex:C[o],color:s[o].color,colorName:A[x[o]].colorName,location:q[o]};r.push(t)}let K=0;if(oe.includes(n)){const o=f.SingleFromRange(2,l),b=f.FromRangeWithoutReplacement(o,0,l-1).map(u=>r[u]);K=b.length;const T=b[0].color;for(let u=0;u<o;u++){const Q=b[u];u+1<o?Q.color=b[u+1].color:Q.color=T}}R.push({presentShapes:s,responseShapes:r,numberOfShapesWithDifferentColors:K})}const y=new v;e.addScene(y);const Y=new c({rect:{size:{width:a,height:a}},fillColor:i.Transparent,strokeColor:i.Gray,lineWidth:4,position:{x:200,y:300}});y.addChild(Y);const ne=new J({text:"+",fontSize:32,fontColor:i.Black});Y.addChild(ne),y.onAppear(()=>{e.addTrialData("activity_begin_iso8601_timestamp",this.beginIso8601Timestamp),e.addTrialData("trial_begin_iso8601_timestamp",new Date().toISOString()),y.run(h.sequence([h.wait({duration:e.getParameter("fixation_duration_ms")}),h.custom({callback:()=>{e.presentScene(_)}})]))});const _=new v;e.addScene(_);const se=new c({rect:{size:{width:a,height:a}},fillColor:i.Transparent,strokeColor:i.Gray,lineWidth:4,position:{x:200,y:300}});_.addChild(se);const W=new ee({rows:N,columns:D,size:{width:a,height:a},position:{x:200,y:300},backgroundColor:i.Transparent,gridLineColor:i.Transparent});_.addChild(W),_.onAppear(()=>{const n=R[e.trialIndex];for(let s=0;s<n.presentShapes.length;s++){const r=n.presentShapes[s].shape;r.fillColor=n.presentShapes[s].color,r.position={x:0,y:0},W.addAtCell(r,n.presentShapes[s].location.row,n.presentShapes[s].location.column)}_.run(h.sequence([h.wait({duration:e.getParameter("shapes_presented_duration_ms")}),h.custom({callback:()=>{W.removeAllChildren()}}),h.wait({duration:e.getParameter("shapes_removed_duration_ms")}),h.custom({callback:()=>{W.removeAllChildren(),e.presentScene(m)}})]))});const m=new v;e.addScene(m);const re=new c({rect:{size:{width:a,height:a}},fillColor:i.Transparent,strokeColor:i.Gray,lineWidth:4,position:{x:200,y:300}});m.addChild(re);const B=new ee({rows:N,columns:D,size:{width:a,height:a},position:{x:200,y:300},backgroundColor:i.Transparent,gridLineColor:i.Transparent});m.addChild(B),m.onAppear(()=>{const n=R[e.trialIndex];for(let s=0;s<n.responseShapes.length;s++){const r=n.responseShapes[s].shape;r.fillColor=n.responseShapes[s].color,r.position={x:0,y:0},B.addAtCell(r,n.responseShapes[s].location.row,n.responseShapes[s].location.column)}F.isUserInteractionEnabled=!0,z.isUserInteractionEnabled=!0,j.startNew("rt")});const F=new H({text:"Same",position:{x:100,y:700},size:{width:125,height:50}});m.addChild(F),F.onTapDown(()=>{F.isUserInteractionEnabled=!1,$(!1)});const z=new H({text:"Different",position:{x:300,y:700},size:{width:125,height:50}});m.addChild(z),z.onTapDown(()=>{z.isUserInteractionEnabled=!1,$(!0)});const $=n=>{const s=j.elapsed("rt");j.remove("rt"),B.removeAllChildren(),e.addTrialData("trial_end_iso8601_timestamp",new Date().toISOString());const r=R[e.trialIndex];e.addTrialData("response_time_duration_ms",s),e.addTrialData("number_of_different_shapes",r.numberOfShapesWithDifferentColors),e.addTrialData("user_response",n?"different":"same");const C=r.numberOfShapesWithDifferentColors===0&&!n||r.numberOfShapesWithDifferentColors>0&&n;e.addTrialData("user_response_correct",C);const x=r.presentShapes.map(p=>({shape_index:p.shapeIndex,color_name:p.colorName,rgba_color:p.color,location:p.location}));e.addTrialData("present_shapes",x),e.addTrialData("quit_button_pressed",!1);const L=r.responseShapes.map(p=>({shape_index:p.shapeIndex,color_name:p.colorName,rgba_color:p.color,location:p.location}));e.addTrialData("response_shapes",L),e.addTrialData("trial_index",e.trialIndex),e.trialComplete(),e.trialIndex<k?e.presentScene(y):e.presentScene(w,V.slide({direction:pe.Left,duration:500,easing:ce.sinusoidalInOut}))},w=new v;e.addScene(w);const ae=new J({text:e.getParameter("trials_complete_scene_text"),position:{x:200,y:400}});w.addChild(ae);const E=new H({text:e.getParameter("trials_complete_scene_button_text"),position:{x:200,y:650}});E.isUserInteractionEnabled=!0,E.onTapDown(()=>{E.isUserInteractionEnabled=!1,w.removeAllChildren(),e.end()}),w.addChild(E),w.onSetup(()=>{e.removeAllFreeNodes()})}makeShapes(e){const S=new c({path:{pathString:d[0],height:e},lineWidth:0}),a=new c({path:{pathString:d[1],height:e},lineWidth:0}),l=new c({path:{pathString:d[2],height:e*.8},lineWidth:0}),I=new c({path:{pathString:d[3],height:e},lineWidth:0}),g=new c({path:{pathString:d[4],height:e*.8},lineWidth:0}),O=new c({path:{pathString:d[5],height:e},lineWidth:0}),N=new c({path:{pathString:d[6],height:e},lineWidth:0}),D=new c({path:{pathString:d[7],height:e},lineWidth:0});return[S,a,l,I,g,O,N,D]}}const d=["M0 89.94v-2L131.95 0h2v88.7c2.34 1.6 4.47 3.11 6.65 4.55 42.77 28.22 85.54 56.42 128.3 84.63v2c-44.65 29.65-89.3 59.29-133.95 88.94h-1v-90.84C89.44 148.72 44.72 119.33 0 89.94Z","M162 188c-.33 27-.67 54-1 81-26.87-26.18-53.74-52.35-80-77.94V269H0C0 180.83 0 92.67.04 4.5.04 3 .67 1.5 1 0c24.64 29.1 49.15 58.31 73.96 87.26 28.88 33.7 58.01 67.17 87.04 100.74Z","M3 148.86V61.12C41.76 40.75 80.52 20.37 119.28 0h2.91c21.32 20.7 42.64 41.4 63.96 62.11v89.71c-38.44 20.04-76.88 40.09-115.31 60.13h-2.91L3.01 148.86Z","M134 0h2c7.26 22.31 14.38 44.67 21.86 66.9 3.91 11.61 5.47 29.91 13.25 33.27C203 113.94 236.86 123.13 270 134v1L136 269h-1c-11.04-33.58-22.08-67.16-33.21-101.03C67.87 156.98 33.93 145.99 0 135v-1L134 0Z","M107 0h1l108 108v1c-26.67 35.33-53.33 70.66-80 106h-1c-8.82-35.03-17.64-70.07-27-107.28C98.62 145.01 89.81 180 81.01 215h-1C53.33 179.66 26.67 144.33 0 109v-2L107 0Z","M0 1C2.17.67 4.33.05 6.5.04 58.33-.01 110.17 0 162 0v270H2c26.2-22.17 52.41-44.33 78.86-66.71V67.4c-3.85-3.22-7.35-6.2-10.9-9.11C46.64 39.18 23.32 20.09 0 1Z","M95 268.99h-1C62.66 238.66 31.33 208.33 0 178V88C26.67 58.67 53.33 29.33 80 0h1c0 29.45 0 58.89-.01 88.38 35.99 29.57 72 59.09 108.01 88.61v1l-94 91Z","M13 0h67l135 135v1L81 270c-27-.33-54-.67-81-1 11.73-12.51 23.61-24.87 35.16-37.54 33.14-36.35 66.14-72.82 100.23-110.38C94.4 80.52 53.7 40.26 13 0Z"];export{de as ColorShapes};
|
|
1
|
+
import{Game as le,Sprite as pe,Scene as v,WebColors as i,Transition as V,RandomDraws as g,Shape as c,Label as ee,Action as h,Timer as H,TransitionDirection as ce,Easings as he}from"@m2c2kit/core";import{Instructions as Z,CountdownScene as de,Grid as te,Button as Y}from"@m2c2kit/addons";class me extends le{constructor(){const e={fixation_duration_ms:{default:500,description:"How long fixation scene is shown, milliseconds.",type:"number"},shape_colors:{type:"array",description:"Array of colors for shapes.",items:{type:"object",properties:{colorName:{type:"string",description:"Human-friendly name of color."},rgbaColor:{type:"array",description:"Color as array, [r,g,b,a].",items:{type:"number"}}}},default:[{colorName:"black",rgbaColor:[0,0,0,1]},{colorName:"green",rgbaColor:[0,158,115,1]},{colorName:"yellow",rgbaColor:[240,228,66,1]},{colorName:"blue",rgbaColor:[0,114,178,1]},{colorName:"orange",rgbaColor:[213,94,0,1]},{colorName:"pink",rgbaColor:[204,121,167,1]}]},number_of_shapes_shown:{default:3,description:"How many shapes to show on the grid at one time.",type:"integer"},shapes_presented_duration_ms:{default:2e3,description:"How long the shapes are shown, milliseconds.",type:"number"},shapes_removed_duration_ms:{default:1e3,description:"How long to show a blank square after shapes are removed, milliseconds.",type:"number"},cells_per_side:{default:3,description:"How many cell positions for each side of the square grid (e.g., 3 is a 3x3 grid; 4 is a 4x4 grid).",type:"integer"},number_of_different_colors_trials:{default:2,type:"integer",description:"Number of trials where the shapes have different colors. If shapes have different colors in a trial, anywhere from 2 to (number of shapes) will be given different colors."},number_of_trials:{default:4,description:"How many trials to run.",type:"integer"},show_trials_complete_scene:{default:!0,type:"boolean",description:"After the final trial, should a completion scene be shown? Otherwise, the game will immediately end."},trials_complete_scene_text:{default:"You have completed all the color shapes trials",description:"Text for scene displayed after all trials are complete.",type:"string"},trials_complete_scene_button_text:{default:"OK",description:"Button text for scene displayed after all trials are complete.",type:"string"},instruction_type:{default:"long",description:"Type of instructions to show, 'short' or 'long'.",type:"string",enum:["short","long"]},instructions:{default:null,type:["object","null"],description:"When non-null, an InstructionsOptions object that will completely override the built-in instructions."},show_quit_button:{type:"boolean",default:!0,description:"Should the activity quit button be shown?"},show_fps:{type:"boolean",default:!1,description:"Should the FPS be shown?"}},S={activity_begin_iso8601_timestamp:{type:"string",format:"date-time",description:"ISO 8601 timestamp at the beginning of the game activity."},trial_begin_iso8601_timestamp:{type:["string","null"],format:"date-time",description:"ISO 8601 timestamp at the beginning of the trial. Null if trial was skipped."},trial_end_iso8601_timestamp:{type:["string","null"],format:"date-time",description:"ISO 8601 timestamp at the end of the trial (when user presses 'Same' or 'Different'). Null if trial was skipped."},trial_index:{type:["integer","null"],description:"Index of the trial within this assessment, 0-based."},present_shapes:{description:"Configuration of shapes shown to the user in the presentation phase. Null if trial was skipped.",type:["array","null"],items:{type:"object",properties:{shape_index:{type:"integer",description:"Index of the shape within the library of shapes, 0-based"},color_name:{type:"string",description:"Human-friendly name of color."},rgba_color:{type:"array",description:"Color as array, [r,g,b,a].",items:{type:"number"}},location:{type:"object",description:"Location of shape.",properties:{row:{type:"number",description:"Row of the shape, 0-based."},column:{type:"number",description:"Column of the shape, 0-based."}}}}}},response_shapes:{description:"Configuration of shapes shown to the user in the response phase. Null if trial was skipped.",type:["array","null"],items:{type:"object",properties:{shape_index:{type:"integer",description:"Index of the shape within the library of shapes, 0-based"},color_name:{type:"string",description:"Human-friendly name of color."},rgba_color:{type:"array",description:"Color as array, [r,g,b,a].",items:{type:"number"}},location:{type:"object",description:"Location of shape.",properties:{row:{type:"number",description:"Row of the shape, 0-based."},column:{type:"number",description:"Column of the shape, 0-based."}}}}}},number_of_different_shapes:{type:["integer","null"],description:"Number of shapes shown with different colors in the response phase."},response_time_duration_ms:{type:["number","null"],description:"Milliseconds from when the response configuration of shapes is shown until the user taps a response. Null if trial was skipped."},user_response:{type:["string","null"],enum:["same","different"],description:"User's response to whether the shapes are same colors or different."},user_response_correct:{type:["boolean","null"],description:"Was the user's response correct?"},quit_button_pressed:{type:"boolean",description:"Was the quit button pressed?"}},a={name:"Color Shapes",id:"color-shapes",publishUuid:"394cb010-2ccf-4a87-9d23-cda7fb07a960",version:"0.8.17 (0679492d)",moduleMetadata:{name:"@m2c2kit/assessment-color-shapes",version:"0.8.17",dependencies:{"@m2c2kit/addons":"0.3.16","@m2c2kit/core":"0.3.19"}},shortDescription:"Color Shapes is a visual array change detection task, measuring intra-item feature binding, where participants determine if shapes change color across two sequential presentations of shape stimuli.",longDescription:'Color Shapes is a change detection paradigm used to measure visual short-term memory binding (Parra et al., 2009). Participants are asked to memorize the shapes and colors of three different polygons for 3 seconds. The three polygons are then removed from the screen and re-displayed at different locations, either having the same or different colors. Participants are then asked to decide whether the combination of colors and shapes are the "Same" or "Different" between the study and test phases.',showFps:e.show_fps.default,width:400,height:800,trialSchema:S,parameters:e,fonts:[{fontName:"roboto",url:"fonts/roboto/Roboto-Regular.ttf"}],images:[{imageName:"instructions-1",height:256,width:256,url:"images/cs-instructions-1.png"},{imageName:"instructions-2",height:256,width:256,url:"images/cs-instructions-2.png"},{imageName:"instructions-3",height:330,width:256,url:"images/cs-instructions-3.png"},{imageName:"circle-x",height:32,width:32,url:"images/circle-x.svg"}]};super(a)}async initialize(){await super.initialize();const e=this,S=96,a=350,l=e.getParameter("number_of_shapes_shown"),I=this.makeShapes(S);if(e.getParameter("show_quit_button")){const n=new pe({imageName:"circle-x",position:{x:380,y:20},isUserInteractionEnabled:!0});e.addFreeNode(n),n.onTapDown(s=>{e.removeAllFreeNodes(),s.handled=!0;const r=new v;e.addScene(r),e.presentScene(r),e.addTrialData("quit_button_pressed",!0),e.trialComplete(),e.cancel()})}let m;const N=e.getParameter("instructions");if(N)m=Z.create(N);else switch(e.getParameter("instruction_type")){case"short":{m=Z.create({instructionScenes:[{title:"Color Shapes",text:`Try to remember the color of ${l} shapes, because they will soon disappear. When the shapes reappear, answer whether they have the SAME or DIFFERENT colors as they had before.`,imageName:"instructions-1",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2,nextButtonText:"START",nextButtonBackgroundColor:i.Green,nextSceneTransition:V.none()}]});break}case"long":{m=Z.create({instructionScenes:[{title:"Color Shapes",text:`Try to remember the color of ${l} shapes, because they will soon disappear.`,imageName:"instructions-1",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2},{title:"Color Shapes",text:"Next you will see the same shapes reappear.",imageName:"instructions-2",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2},{title:"Color Shapes",text:"Answer whether the shapes have the SAME or DIFFERENT colors as they had before.",imageName:"instructions-3",imageAboveText:!1,imageMarginTop:32,textFontSize:24,titleFontSize:30,textVerticalBias:.2,nextButtonText:"START",nextButtonBackgroundColor:i.Green}]});break}default:throw new Error("invalid value for instruction_type")}m[0].onAppear(()=>{e.addTrialData("activity_begin_iso8601_timestamp",this.beginIso8601Timestamp)}),e.addScenes(m);const O=new de({milliseconds:3e3,text:"GET READY!",zeroDwellMilliseconds:1e3,transition:V.none()});e.addScene(O);const D=e.getParameter("cells_per_side"),q=e.getParameter("cells_per_side"),G=e.getParameter("number_of_trials"),k=e.getParameter("shape_colors"),A=[],M=e.getParameter("cells_per_side"),$=M,oe=e.getParameter("number_of_different_colors_trials"),ne=g.FromRangeWithoutReplacement(oe,0,G-1);for(let n=0;n<G;n++){const s=new Array,r=new Array,C=g.FromRangeWithoutReplacement(l,0,I.length-1),x=g.FromRangeWithoutReplacement(l,0,k.length-1),E=o=>!!(o.map(t=>t.row===0&&t.column===0).some(t=>t===!0)&&o.map(t=>t.row===1&&t.column===1).some(t=>t===!0)&&o.map(t=>t.row===2&&t.column===2).some(t=>t===!0)||o.map(t=>t.row===2&&t.column===0).some(t=>t===!0)&&o.map(t=>t.row===1&&t.column===1).some(t=>t===!0)&&o.map(t=>t.row===0&&t.column===2).some(t=>t===!0)),p=o=>{const t=new Set(o.map(T=>T.row)).size,b=new Set(o.map(T=>T.column)).size;return!(t!==1&&b!==1)};let j=!1,P;do P=g.FromGridWithoutReplacement(l,M,$),!p(P)&&!E(P)?j=!0:j=!1;while(!j);for(let o=0;o<l;o++){const t={shape:I[C[o]],shapeIndex:C[o],color:k[x[o]].rgbaColor,colorName:k[x[o]].colorName,location:P[o]};s.push(t)}let U=!1,L;do L=g.FromGridWithoutReplacement(l,M,$),!p(L)&&!E(L)?U=!0:U=!1;while(!U);for(let o=0;o<l;o++){const t={shape:s[o].shape,shapeIndex:C[o],color:s[o].color,colorName:k[x[o]].colorName,location:L[o]};r.push(t)}let J=0;if(ne.includes(n)){const o=g.SingleFromRange(2,l),b=g.FromRangeWithoutReplacement(o,0,l-1).map(f=>r[f]);J=b.length;const T=b[0].color;for(let f=0;f<o;f++){const X=b[f];f+1<o?X.color=b[f+1].color:X.color=T}}A.push({presentShapes:s,responseShapes:r,numberOfShapesWithDifferentColors:J})}const y=new v;e.addScene(y);const K=new c({rect:{size:{width:a,height:a}},fillColor:i.Transparent,strokeColor:i.Gray,lineWidth:4,position:{x:200,y:300}});y.addChild(K);const se=new ee({text:"+",fontSize:32,fontColor:i.Black});K.addChild(se),y.onAppear(()=>{e.addTrialData("activity_begin_iso8601_timestamp",this.beginIso8601Timestamp),e.addTrialData("trial_begin_iso8601_timestamp",new Date().toISOString()),y.run(h.sequence([h.wait({duration:e.getParameter("fixation_duration_ms")}),h.custom({callback:()=>{e.presentScene(w)}})]))});const w=new v;e.addScene(w);const re=new c({rect:{size:{width:a,height:a}},fillColor:i.Transparent,strokeColor:i.Gray,lineWidth:4,position:{x:200,y:300}});w.addChild(re);const R=new te({rows:D,columns:q,size:{width:a,height:a},position:{x:200,y:300},backgroundColor:i.Transparent,gridLineColor:i.Transparent});w.addChild(R),w.onAppear(()=>{const n=A[e.trialIndex];for(let s=0;s<n.presentShapes.length;s++){const r=n.presentShapes[s].shape;r.fillColor=n.presentShapes[s].color,r.position={x:0,y:0},R.addAtCell(r,n.presentShapes[s].location.row,n.presentShapes[s].location.column)}w.run(h.sequence([h.wait({duration:e.getParameter("shapes_presented_duration_ms")}),h.custom({callback:()=>{R.removeAllGridChildren()}}),h.wait({duration:e.getParameter("shapes_removed_duration_ms")}),h.custom({callback:()=>{R.removeAllGridChildren(),e.presentScene(u)}})]))});const u=new v;e.addScene(u);const ae=new c({rect:{size:{width:a,height:a}},fillColor:i.Transparent,strokeColor:i.Gray,lineWidth:4,position:{x:200,y:300}});u.addChild(ae);const B=new te({rows:D,columns:q,size:{width:a,height:a},position:{x:200,y:300},backgroundColor:i.Transparent,gridLineColor:i.Transparent});u.addChild(B),u.onAppear(()=>{const n=A[e.trialIndex];for(let s=0;s<n.responseShapes.length;s++){const r=n.responseShapes[s].shape;r.fillColor=n.responseShapes[s].color,r.position={x:0,y:0},B.addAtCell(r,n.responseShapes[s].location.row,n.responseShapes[s].location.column)}W.isUserInteractionEnabled=!0,F.isUserInteractionEnabled=!0,H.startNew("rt")});const W=new Y({text:"Same",position:{x:100,y:700},size:{width:125,height:50}});u.addChild(W),W.onTapDown(()=>{W.isUserInteractionEnabled=!1,Q(!1)});const F=new Y({text:"Different",position:{x:300,y:700},size:{width:125,height:50}});u.addChild(F),F.onTapDown(()=>{F.isUserInteractionEnabled=!1,Q(!0)});const Q=n=>{const s=H.elapsed("rt");H.remove("rt"),B.removeAllGridChildren(),e.addTrialData("trial_end_iso8601_timestamp",new Date().toISOString());const r=A[e.trialIndex];e.addTrialData("response_time_duration_ms",s),e.addTrialData("number_of_different_shapes",r.numberOfShapesWithDifferentColors),e.addTrialData("user_response",n?"different":"same");const C=r.numberOfShapesWithDifferentColors===0&&!n||r.numberOfShapesWithDifferentColors>0&&n;e.addTrialData("user_response_correct",C);const x=r.presentShapes.map(p=>({shape_index:p.shapeIndex,color_name:p.colorName,rgba_color:p.color,location:p.location}));e.addTrialData("present_shapes",x),e.addTrialData("quit_button_pressed",!1);const E=r.responseShapes.map(p=>({shape_index:p.shapeIndex,color_name:p.colorName,rgba_color:p.color,location:p.location}));e.addTrialData("response_shapes",E),e.addTrialData("trial_index",e.trialIndex),e.trialComplete(),e.trialIndex<G?e.presentScene(y):e.presentScene(_,V.slide({direction:ce.Left,duration:500,easing:he.sinusoidalInOut}))},_=new v;e.addScene(_);const ie=new ee({text:e.getParameter("trials_complete_scene_text"),position:{x:200,y:400}});_.addChild(ie);const z=new Y({text:e.getParameter("trials_complete_scene_button_text"),position:{x:200,y:650}});z.isUserInteractionEnabled=!0,z.onTapDown(()=>{z.isUserInteractionEnabled=!1,_.removeAllChildren(),e.end()}),_.addChild(z),_.onSetup(()=>{e.removeAllFreeNodes()})}makeShapes(e){const S=new c({path:{pathString:d[0],height:e},lineWidth:0}),a=new c({path:{pathString:d[1],height:e},lineWidth:0}),l=new c({path:{pathString:d[2],height:e*.8},lineWidth:0}),I=new c({path:{pathString:d[3],height:e},lineWidth:0}),m=new c({path:{pathString:d[4],height:e*.8},lineWidth:0}),N=new c({path:{pathString:d[5],height:e},lineWidth:0}),O=new c({path:{pathString:d[6],height:e},lineWidth:0}),D=new c({path:{pathString:d[7],height:e},lineWidth:0});return[S,a,l,I,m,N,O,D]}}const d=["M0 89.94v-2L131.95 0h2v88.7c2.34 1.6 4.47 3.11 6.65 4.55 42.77 28.22 85.54 56.42 128.3 84.63v2c-44.65 29.65-89.3 59.29-133.95 88.94h-1v-90.84C89.44 148.72 44.72 119.33 0 89.94Z","M162 188c-.33 27-.67 54-1 81-26.87-26.18-53.74-52.35-80-77.94V269H0C0 180.83 0 92.67.04 4.5.04 3 .67 1.5 1 0c24.64 29.1 49.15 58.31 73.96 87.26 28.88 33.7 58.01 67.17 87.04 100.74Z","M3 148.86V61.12C41.76 40.75 80.52 20.37 119.28 0h2.91c21.32 20.7 42.64 41.4 63.96 62.11v89.71c-38.44 20.04-76.88 40.09-115.31 60.13h-2.91L3.01 148.86Z","M134 0h2c7.26 22.31 14.38 44.67 21.86 66.9 3.91 11.61 5.47 29.91 13.25 33.27C203 113.94 236.86 123.13 270 134v1L136 269h-1c-11.04-33.58-22.08-67.16-33.21-101.03C67.87 156.98 33.93 145.99 0 135v-1L134 0Z","M107 0h1l108 108v1c-26.67 35.33-53.33 70.66-80 106h-1c-8.82-35.03-17.64-70.07-27-107.28C98.62 145.01 89.81 180 81.01 215h-1C53.33 179.66 26.67 144.33 0 109v-2L107 0Z","M0 1C2.17.67 4.33.05 6.5.04 58.33-.01 110.17 0 162 0v270H2c26.2-22.17 52.41-44.33 78.86-66.71V67.4c-3.85-3.22-7.35-6.2-10.9-9.11C46.64 39.18 23.32 20.09 0 1Z","M95 268.99h-1C62.66 238.66 31.33 208.33 0 178V88C26.67 58.67 53.33 29.33 80 0h1c0 29.45 0 58.89-.01 88.38 35.99 29.57 72 59.09 108.01 88.61v1l-94 91Z","M13 0h67l135 135v1L81 270c-27-.33-54-.67-81-1 11.73-12.51 23.61-24.87 35.16-37.54 33.14-36.35 66.14-72.82 100.23-110.38C94.4 80.52 53.7 40.26 13 0Z"];export{me as ColorShapes};
|
package/package.json
CHANGED
|
@@ -1,12 +1,13 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@m2c2kit/assessment-color-shapes",
|
|
3
|
-
"version": "0.8.
|
|
3
|
+
"version": "0.8.17",
|
|
4
4
|
"m2c2kit": {
|
|
5
5
|
"assessmentId": "color-shapes"
|
|
6
6
|
},
|
|
7
7
|
"description": "A visual array change detection task, measuring intra-item feature binding, where participants determine if shapes change color across two sequential presentations of shape stimuli",
|
|
8
8
|
"scripts": {
|
|
9
|
-
"build": "npm run clean && tsc && rollup -c",
|
|
9
|
+
"build": "npm run clean && tsc && rollup -c && npm run extract-schemas",
|
|
10
|
+
"extract-schemas": "node ../schema-util/build/index.js list --schema=all --files=src/index.ts --format=json-schema --title=\"Color Shapes version __VERSION__\" --game-class=../core/src/Game.ts > schemas.json",
|
|
10
11
|
"clean": "rimraf build dist .rollup.cache tsconfig.tsbuildinfo"
|
|
11
12
|
},
|
|
12
13
|
"main": "./dist/index.js",
|
|
@@ -23,6 +24,7 @@
|
|
|
23
24
|
"dist",
|
|
24
25
|
"!*.d.ts.map",
|
|
25
26
|
"assets",
|
|
27
|
+
"schemas.json",
|
|
26
28
|
"metadata.json"
|
|
27
29
|
],
|
|
28
30
|
"license": "MIT",
|
|
@@ -37,18 +39,18 @@
|
|
|
37
39
|
},
|
|
38
40
|
"homepage": "https://m2c2-project.github.io/m2c2kit",
|
|
39
41
|
"dependencies": {
|
|
40
|
-
"@m2c2kit/addons": "
|
|
41
|
-
"@m2c2kit/core": "
|
|
42
|
+
"@m2c2kit/addons": "0.3.16",
|
|
43
|
+
"@m2c2kit/core": "0.3.19"
|
|
42
44
|
},
|
|
43
45
|
"devDependencies": {
|
|
44
|
-
"@m2c2kit/build-helpers": "
|
|
46
|
+
"@m2c2kit/build-helpers": "0.3.16",
|
|
45
47
|
"@rollup/plugin-node-resolve": "15.2.3",
|
|
46
|
-
"@rollup/plugin-replace": "5.0.
|
|
47
|
-
"rimraf": "
|
|
48
|
-
"rollup": "4.
|
|
48
|
+
"@rollup/plugin-replace": "5.0.7",
|
|
49
|
+
"rimraf": "6.0.1",
|
|
50
|
+
"rollup": "4.18.1",
|
|
49
51
|
"rollup-plugin-copy": "3.5.0",
|
|
50
52
|
"rollup-plugin-esbuild": "6.1.1",
|
|
51
|
-
"typescript": "5.
|
|
53
|
+
"typescript": "5.5.3"
|
|
52
54
|
},
|
|
53
55
|
"engines": {
|
|
54
56
|
"node": ">=18"
|
package/schemas.json
ADDED
|
@@ -0,0 +1,377 @@
|
|
|
1
|
+
{
|
|
2
|
+
"$schema": "http://json-schema.org/draft-07/schema",
|
|
3
|
+
"title": "Color Shapes version 0.8.17, 0679492d",
|
|
4
|
+
"type": "object",
|
|
5
|
+
"description": "All game schemas",
|
|
6
|
+
"properties": {
|
|
7
|
+
"GameParameters": {
|
|
8
|
+
"type": "object",
|
|
9
|
+
"description": "Game parameters schema",
|
|
10
|
+
"properties": {
|
|
11
|
+
"fixation_duration_ms": {
|
|
12
|
+
"default": 500,
|
|
13
|
+
"description": "How long fixation scene is shown, milliseconds.",
|
|
14
|
+
"type": "number"
|
|
15
|
+
},
|
|
16
|
+
"shape_colors": {
|
|
17
|
+
"type": "array",
|
|
18
|
+
"description": "Array of colors for shapes.",
|
|
19
|
+
"items": {
|
|
20
|
+
"type": "object",
|
|
21
|
+
"properties": {
|
|
22
|
+
"colorName": {
|
|
23
|
+
"type": "string",
|
|
24
|
+
"description": "Human-friendly name of color."
|
|
25
|
+
},
|
|
26
|
+
"rgbaColor": {
|
|
27
|
+
"type": "array",
|
|
28
|
+
"description": "Color as array, [r,g,b,a].",
|
|
29
|
+
"items": {
|
|
30
|
+
"type": "number"
|
|
31
|
+
}
|
|
32
|
+
}
|
|
33
|
+
}
|
|
34
|
+
},
|
|
35
|
+
"default": [
|
|
36
|
+
{
|
|
37
|
+
"colorName": "black",
|
|
38
|
+
"rgbaColor": [
|
|
39
|
+
0,
|
|
40
|
+
0,
|
|
41
|
+
0,
|
|
42
|
+
1
|
|
43
|
+
]
|
|
44
|
+
},
|
|
45
|
+
{
|
|
46
|
+
"colorName": "green",
|
|
47
|
+
"rgbaColor": [
|
|
48
|
+
0,
|
|
49
|
+
158,
|
|
50
|
+
115,
|
|
51
|
+
1
|
|
52
|
+
]
|
|
53
|
+
},
|
|
54
|
+
{
|
|
55
|
+
"colorName": "yellow",
|
|
56
|
+
"rgbaColor": [
|
|
57
|
+
240,
|
|
58
|
+
228,
|
|
59
|
+
66,
|
|
60
|
+
1
|
|
61
|
+
]
|
|
62
|
+
},
|
|
63
|
+
{
|
|
64
|
+
"colorName": "blue",
|
|
65
|
+
"rgbaColor": [
|
|
66
|
+
0,
|
|
67
|
+
114,
|
|
68
|
+
178,
|
|
69
|
+
1
|
|
70
|
+
]
|
|
71
|
+
},
|
|
72
|
+
{
|
|
73
|
+
"colorName": "orange",
|
|
74
|
+
"rgbaColor": [
|
|
75
|
+
213,
|
|
76
|
+
94,
|
|
77
|
+
0,
|
|
78
|
+
1
|
|
79
|
+
]
|
|
80
|
+
},
|
|
81
|
+
{
|
|
82
|
+
"colorName": "pink",
|
|
83
|
+
"rgbaColor": [
|
|
84
|
+
204,
|
|
85
|
+
121,
|
|
86
|
+
167,
|
|
87
|
+
1
|
|
88
|
+
]
|
|
89
|
+
}
|
|
90
|
+
]
|
|
91
|
+
},
|
|
92
|
+
"number_of_shapes_shown": {
|
|
93
|
+
"default": 3,
|
|
94
|
+
"description": "How many shapes to show on the grid at one time.",
|
|
95
|
+
"type": "integer"
|
|
96
|
+
},
|
|
97
|
+
"shapes_presented_duration_ms": {
|
|
98
|
+
"default": 2000,
|
|
99
|
+
"description": "How long the shapes are shown, milliseconds.",
|
|
100
|
+
"type": "number"
|
|
101
|
+
},
|
|
102
|
+
"shapes_removed_duration_ms": {
|
|
103
|
+
"default": 1000,
|
|
104
|
+
"description": "How long to show a blank square after shapes are removed, milliseconds.",
|
|
105
|
+
"type": "number"
|
|
106
|
+
},
|
|
107
|
+
"cells_per_side": {
|
|
108
|
+
"default": 3,
|
|
109
|
+
"description": "How many cell positions for each side of the square grid (e.g., 3 is a 3x3 grid; 4 is a 4x4 grid).",
|
|
110
|
+
"type": "integer"
|
|
111
|
+
},
|
|
112
|
+
"number_of_different_colors_trials": {
|
|
113
|
+
"default": 2,
|
|
114
|
+
"type": "integer",
|
|
115
|
+
"description": "Number of trials where the shapes have different colors. If shapes have different colors in a trial, anywhere from 2 to (number of shapes) will be given different colors."
|
|
116
|
+
},
|
|
117
|
+
"number_of_trials": {
|
|
118
|
+
"default": 4,
|
|
119
|
+
"description": "How many trials to run.",
|
|
120
|
+
"type": "integer"
|
|
121
|
+
},
|
|
122
|
+
"show_trials_complete_scene": {
|
|
123
|
+
"default": true,
|
|
124
|
+
"type": "boolean",
|
|
125
|
+
"description": "After the final trial, should a completion scene be shown? Otherwise, the game will immediately end."
|
|
126
|
+
},
|
|
127
|
+
"trials_complete_scene_text": {
|
|
128
|
+
"default": "You have completed all the color shapes trials",
|
|
129
|
+
"description": "Text for scene displayed after all trials are complete.",
|
|
130
|
+
"type": "string"
|
|
131
|
+
},
|
|
132
|
+
"trials_complete_scene_button_text": {
|
|
133
|
+
"default": "OK",
|
|
134
|
+
"description": "Button text for scene displayed after all trials are complete.",
|
|
135
|
+
"type": "string"
|
|
136
|
+
},
|
|
137
|
+
"instruction_type": {
|
|
138
|
+
"default": "long",
|
|
139
|
+
"description": "Type of instructions to show, 'short' or 'long'.",
|
|
140
|
+
"type": "string",
|
|
141
|
+
"enum": [
|
|
142
|
+
"short",
|
|
143
|
+
"long"
|
|
144
|
+
]
|
|
145
|
+
},
|
|
146
|
+
"instructions": {
|
|
147
|
+
"default": null,
|
|
148
|
+
"type": [
|
|
149
|
+
"object",
|
|
150
|
+
"null"
|
|
151
|
+
],
|
|
152
|
+
"description": "When non-null, an InstructionsOptions object that will completely override the built-in instructions."
|
|
153
|
+
},
|
|
154
|
+
"show_quit_button": {
|
|
155
|
+
"type": "boolean",
|
|
156
|
+
"default": true,
|
|
157
|
+
"description": "Should the activity quit button be shown?"
|
|
158
|
+
},
|
|
159
|
+
"show_fps": {
|
|
160
|
+
"type": "boolean",
|
|
161
|
+
"default": false,
|
|
162
|
+
"description": "Should the FPS be shown?"
|
|
163
|
+
}
|
|
164
|
+
}
|
|
165
|
+
},
|
|
166
|
+
"TrialSchema": {
|
|
167
|
+
"type": "object",
|
|
168
|
+
"description": "Trial data schema",
|
|
169
|
+
"properties": {
|
|
170
|
+
"study_id": {
|
|
171
|
+
"type": [
|
|
172
|
+
"string",
|
|
173
|
+
"null"
|
|
174
|
+
],
|
|
175
|
+
"description": "The short human-readable text ID of the study (protocol, experiment, or other aggregate) that contains the administration of this activity."
|
|
176
|
+
},
|
|
177
|
+
"study_uuid": {
|
|
178
|
+
"type": [
|
|
179
|
+
"string",
|
|
180
|
+
"null"
|
|
181
|
+
],
|
|
182
|
+
"format": "uuid",
|
|
183
|
+
"description": "Unique identifier of the study (protocol, experiment, or other aggregate) that contains the administration of this activity."
|
|
184
|
+
},
|
|
185
|
+
"document_uuid": {
|
|
186
|
+
"type": "string",
|
|
187
|
+
"format": "uuid",
|
|
188
|
+
"description": "Unique identifier for this data document."
|
|
189
|
+
},
|
|
190
|
+
"session_uuid": {
|
|
191
|
+
"type": "string",
|
|
192
|
+
"format": "uuid",
|
|
193
|
+
"description": "Unique identifier for all activities in this administration of the session. This identifier changes each time a new session starts."
|
|
194
|
+
},
|
|
195
|
+
"activity_uuid": {
|
|
196
|
+
"type": "string",
|
|
197
|
+
"format": "uuid",
|
|
198
|
+
"description": "Unique identifier for all trials in this administration of the activity. This identifier changes each time the activity starts."
|
|
199
|
+
},
|
|
200
|
+
"activity_id": {
|
|
201
|
+
"type": "string",
|
|
202
|
+
"description": "Human-readable identifier of the activity."
|
|
203
|
+
},
|
|
204
|
+
"activity_publish_uuid": {
|
|
205
|
+
"type": "string",
|
|
206
|
+
"format": "uuid",
|
|
207
|
+
"description": "Persistent unique identifier of the activity. This identifier never changes. It can be used to identify the activity across different studies and sessions."
|
|
208
|
+
},
|
|
209
|
+
"activity_version": {
|
|
210
|
+
"type": "string",
|
|
211
|
+
"description": "Version of the activity."
|
|
212
|
+
},
|
|
213
|
+
"device_timezone": {
|
|
214
|
+
"type": "string",
|
|
215
|
+
"description": "Timezone of the device. Calculated from Intl.DateTimeFormat().resolvedOptions().timeZone."
|
|
216
|
+
},
|
|
217
|
+
"device_timezone_offset_minutes": {
|
|
218
|
+
"type": "integer",
|
|
219
|
+
"description": "Difference in minutes between UTC and device timezone. Calculated from Date.getTimezoneOffset()."
|
|
220
|
+
},
|
|
221
|
+
"locale": {
|
|
222
|
+
"type": [
|
|
223
|
+
"string",
|
|
224
|
+
"null"
|
|
225
|
+
],
|
|
226
|
+
"description": "Locale of the trial. null if the activity does not support localization."
|
|
227
|
+
},
|
|
228
|
+
"activity_begin_iso8601_timestamp": {
|
|
229
|
+
"type": "string",
|
|
230
|
+
"format": "date-time",
|
|
231
|
+
"description": "ISO 8601 timestamp at the beginning of the game activity."
|
|
232
|
+
},
|
|
233
|
+
"trial_begin_iso8601_timestamp": {
|
|
234
|
+
"type": [
|
|
235
|
+
"string",
|
|
236
|
+
"null"
|
|
237
|
+
],
|
|
238
|
+
"format": "date-time",
|
|
239
|
+
"description": "ISO 8601 timestamp at the beginning of the trial. Null if trial was skipped."
|
|
240
|
+
},
|
|
241
|
+
"trial_end_iso8601_timestamp": {
|
|
242
|
+
"type": [
|
|
243
|
+
"string",
|
|
244
|
+
"null"
|
|
245
|
+
],
|
|
246
|
+
"format": "date-time",
|
|
247
|
+
"description": "ISO 8601 timestamp at the end of the trial (when user presses 'Same' or 'Different'). Null if trial was skipped."
|
|
248
|
+
},
|
|
249
|
+
"trial_index": {
|
|
250
|
+
"type": [
|
|
251
|
+
"integer",
|
|
252
|
+
"null"
|
|
253
|
+
],
|
|
254
|
+
"description": "Index of the trial within this assessment, 0-based."
|
|
255
|
+
},
|
|
256
|
+
"present_shapes": {
|
|
257
|
+
"description": "Configuration of shapes shown to the user in the presentation phase. Null if trial was skipped.",
|
|
258
|
+
"type": [
|
|
259
|
+
"array",
|
|
260
|
+
"null"
|
|
261
|
+
],
|
|
262
|
+
"items": {
|
|
263
|
+
"type": "object",
|
|
264
|
+
"properties": {
|
|
265
|
+
"shape_index": {
|
|
266
|
+
"type": "integer",
|
|
267
|
+
"description": "Index of the shape within the library of shapes, 0-based"
|
|
268
|
+
},
|
|
269
|
+
"color_name": {
|
|
270
|
+
"type": "string",
|
|
271
|
+
"description": "Human-friendly name of color."
|
|
272
|
+
},
|
|
273
|
+
"rgba_color": {
|
|
274
|
+
"type": "array",
|
|
275
|
+
"description": "Color as array, [r,g,b,a].",
|
|
276
|
+
"items": {
|
|
277
|
+
"type": "number"
|
|
278
|
+
}
|
|
279
|
+
},
|
|
280
|
+
"location": {
|
|
281
|
+
"type": "object",
|
|
282
|
+
"description": "Location of shape.",
|
|
283
|
+
"properties": {
|
|
284
|
+
"row": {
|
|
285
|
+
"type": "number",
|
|
286
|
+
"description": "Row of the shape, 0-based."
|
|
287
|
+
},
|
|
288
|
+
"column": {
|
|
289
|
+
"type": "number",
|
|
290
|
+
"description": "Column of the shape, 0-based."
|
|
291
|
+
}
|
|
292
|
+
}
|
|
293
|
+
}
|
|
294
|
+
}
|
|
295
|
+
}
|
|
296
|
+
},
|
|
297
|
+
"response_shapes": {
|
|
298
|
+
"description": "Configuration of shapes shown to the user in the response phase. Null if trial was skipped.",
|
|
299
|
+
"type": [
|
|
300
|
+
"array",
|
|
301
|
+
"null"
|
|
302
|
+
],
|
|
303
|
+
"items": {
|
|
304
|
+
"type": "object",
|
|
305
|
+
"properties": {
|
|
306
|
+
"shape_index": {
|
|
307
|
+
"type": "integer",
|
|
308
|
+
"description": "Index of the shape within the library of shapes, 0-based"
|
|
309
|
+
},
|
|
310
|
+
"color_name": {
|
|
311
|
+
"type": "string",
|
|
312
|
+
"description": "Human-friendly name of color."
|
|
313
|
+
},
|
|
314
|
+
"rgba_color": {
|
|
315
|
+
"type": "array",
|
|
316
|
+
"description": "Color as array, [r,g,b,a].",
|
|
317
|
+
"items": {
|
|
318
|
+
"type": "number"
|
|
319
|
+
}
|
|
320
|
+
},
|
|
321
|
+
"location": {
|
|
322
|
+
"type": "object",
|
|
323
|
+
"description": "Location of shape.",
|
|
324
|
+
"properties": {
|
|
325
|
+
"row": {
|
|
326
|
+
"type": "number",
|
|
327
|
+
"description": "Row of the shape, 0-based."
|
|
328
|
+
},
|
|
329
|
+
"column": {
|
|
330
|
+
"type": "number",
|
|
331
|
+
"description": "Column of the shape, 0-based."
|
|
332
|
+
}
|
|
333
|
+
}
|
|
334
|
+
}
|
|
335
|
+
}
|
|
336
|
+
}
|
|
337
|
+
},
|
|
338
|
+
"number_of_different_shapes": {
|
|
339
|
+
"type": [
|
|
340
|
+
"integer",
|
|
341
|
+
"null"
|
|
342
|
+
],
|
|
343
|
+
"description": "Number of shapes shown with different colors in the response phase."
|
|
344
|
+
},
|
|
345
|
+
"response_time_duration_ms": {
|
|
346
|
+
"type": [
|
|
347
|
+
"number",
|
|
348
|
+
"null"
|
|
349
|
+
],
|
|
350
|
+
"description": "Milliseconds from when the response configuration of shapes is shown until the user taps a response. Null if trial was skipped."
|
|
351
|
+
},
|
|
352
|
+
"user_response": {
|
|
353
|
+
"type": [
|
|
354
|
+
"string",
|
|
355
|
+
"null"
|
|
356
|
+
],
|
|
357
|
+
"enum": [
|
|
358
|
+
"same",
|
|
359
|
+
"different"
|
|
360
|
+
],
|
|
361
|
+
"description": "User's response to whether the shapes are same colors or different."
|
|
362
|
+
},
|
|
363
|
+
"user_response_correct": {
|
|
364
|
+
"type": [
|
|
365
|
+
"boolean",
|
|
366
|
+
"null"
|
|
367
|
+
],
|
|
368
|
+
"description": "Was the user's response correct?"
|
|
369
|
+
},
|
|
370
|
+
"quit_button_pressed": {
|
|
371
|
+
"type": "boolean",
|
|
372
|
+
"description": "Was the quit button pressed?"
|
|
373
|
+
}
|
|
374
|
+
}
|
|
375
|
+
}
|
|
376
|
+
}
|
|
377
|
+
}
|