Skip to content

Commit

Permalink
Merge pull request #27 from UiL-OTS-labs/incid_mem_aug24
Browse files Browse the repository at this point in the history
Incid mem aug24
  • Loading branch information
maartenuni authored Sep 5, 2022
2 parents 6d46202 + 0161804 commit f726d8c
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 25 deletions.
2 changes: 1 addition & 1 deletion incid_mem_zep/incid_mem.zp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Experiment experiment
on_event:entry()
{
entry_page.set_text(WELCOME_TEXT);
entry_page.action(this, 0s);
entry_page.action(this, 1s);
}
}

Expand Down
11 changes: 7 additions & 4 deletions incid_mem_zep/modules/global_texts.zm
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,10 @@ const string SECOND_BUTTON_TEXT = "Second";

// Other texts.
const string WELCOME_TEXT = "Welkom!";
const string THANK_YOU_TEXT = "Dit is het einde van het experiment.\n\nBedankt voor uw inzet.";
const string EXPERIMENT_TEST_QUESTION = "Is dit woord correct in de taal die u zojuist heeft geleerd?";
const string TRAINING_QUESTION = "Dit woord klinkt als een woord dat behoort tot de categorie …";
const string TEST_QUESTION = "Heb je dit woord in de vorige fase gehoord?";
const string THANK_YOU_TEXT = "Dit is het einde van het experiment.\n\n"
"Bedankt voor uw inzet.";
const string EXPERIMENT_TEST_QUESTION = "Is dit woord correct in de taal die je "
"zojuist hebt geleerd?";
const string TRAINING_QUESTION = "Dit woord klinkt als een woord dat behoort "
"tot de categorie …";
const string TEST_QUESTION = "Heb je dit woord in de vorige fase gehoord?";
2 changes: 1 addition & 1 deletion incid_mem_zep/test/task.zm
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ Block task
pause_page.set_text(
"Je gaat zo luisteren naar woorden uit een vergeten taal. Elk woord behoort to één van de volgende categorieën: bloemen, dieren, of gereedschap.\n"
"Jouw taak is om ieder woord in te delen in één van deze categorieën, gebaseerd op hoe het woord klinkt.\n"
"Nadat je het woord gehoord hebt, krijg je steeds 3 seconden de tijd om een categorie te kiezen. Dit doe je door op de bijbehorende knop op de knoppenkast voor je te drukken.\n"
"Nadat je het woord gehoord hebt, krijg je steeds 3 seconden de tijd om een categorie te kiezen. Gebruik de muis om op de BLOEMEN, DIEREN of GEREEDSCHAP knop op het scherm te klikken.\n"
"Zorg ervoor dat je altijd binnen de tijd een categorie gekozen hebt.\n"
"\n"
"<i>Druk op START zodra je klaar bent om te beginnen.</i>",
Expand Down
19 changes: 0 additions & 19 deletions incid_mem_zep/test/test_page.zm
Original file line number Diff line number Diff line change
Expand Up @@ -47,25 +47,6 @@ Page training_page
}


on_event:key_press()
{
// Handle left-shift (no) and right-shift (yes).
if (input_key == KEY_Shift_L)
response.process_hit(1, event_time);
else if (input_key == KEY_Shift_R)
response.process_hit(0, event_time);
else
handle_special_key(this, input_key, input_modifiers);
}


on_event:message()
{
// Process button-box message. See setup() below.
response.process_hit(message_arg, event_time);
}


VerticalLayout layout
{
init()
Expand Down

0 comments on commit f726d8c

Please sign in to comment.