numbers.sce 2.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109
  1. randomize_trials=true;
  2. write_codes = true;
  3. pulse_width = 100;
  4. begin;
  5. text { caption="0"; font_color = 255,255,255; font_size = 400; } tx0;
  6. text { caption="1"; font_color = 255,255,255; font_size = 400; } tx1;
  7. text { caption="2"; font_color = 255,255,255; font_size = 400; } tx2;
  8. text { caption="3"; font_color = 255,255,255; font_size = 400; } tx3;
  9. text { caption="4"; font_color = 255,255,255; font_size = 400; } tx4;
  10. text { caption="5"; font_color = 255,255,255; font_size = 400; } tx5;
  11. text { caption="6"; font_color = 255,255,255; font_size = 400; } tx6;
  12. text { caption="7"; font_color = 255,255,255; font_size = 400; } tx7;
  13. text { caption="8"; font_color = 255,255,255; font_size = 400; } tx8;
  14. text { caption="9"; font_color = 255,255,255; font_size = 400; } tx9;
  15. trial {
  16. trial_duration=1000;
  17. start_delay=500;
  18. picture { text tx1; x=0; y=0;};
  19. port_code=1;
  20. } t1;
  21. trial {
  22. start_delay=500;
  23. trial_duration=1000;
  24. picture { text tx2; x=0; y=0; };
  25. port_code=2;
  26. } t2;
  27. trial {
  28. trial_duration=1000;
  29. start_delay=500;
  30. picture { text tx3; x=0; y=0; };
  31. port_code=3;
  32. } t3;
  33. trial {
  34. trial_duration=1000;
  35. start_delay=500;
  36. picture { text tx4; x=0; y=0;};
  37. port_code=4;
  38. } t4;
  39. trial {
  40. start_delay=500;
  41. trial_duration=1000;
  42. picture { text tx5; x=0; y=0; };
  43. port_code=5;
  44. } t5;
  45. trial {
  46. trial_duration=1000;
  47. start_delay=500;
  48. picture { text tx6; x=0; y=0; };
  49. port_code=6;
  50. } t6;
  51. trial {
  52. trial_duration=1000;
  53. start_delay=500;
  54. picture { text tx7; x=0; y=0;};
  55. port_code=7;
  56. } t7;
  57. trial {
  58. start_delay=500;
  59. trial_duration=1000;
  60. picture { text tx8; x=0; y=0; };
  61. port_code=8;
  62. } t8;
  63. trial {
  64. trial_duration=1000;
  65. start_delay=500;
  66. picture { text tx9; x=0; y=0; };
  67. port_code=9;
  68. } t9;
  69. trial {
  70. trial_duration=1000;
  71. start_delay=500;
  72. picture { text tx0; x=0; y=0;};
  73. port_code=10;
  74. } t0;
  75. LOOP $i 50;
  76. trial t1;
  77. trial t2;
  78. trial t3;
  79. trial t4;
  80. trial t5;
  81. trial t6;
  82. trial t7;
  83. trial t8;
  84. trial t9;
  85. trial t0;
  86. ENDLOOP;