1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 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 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770
|
/*
PsychToolbox3/Source/Linux/PsychHID/PsychHIDStandardInterfaces.c
PROJECTS: PsychHID only.
PLATFORMS: Linux.
AUTHORS:
mario.kleiner.de@gmail.com mk
HISTORY:
27.07.2011 mk Created.
*/
#include "PsychHIDStandardInterfaces.h"
static Display *dpy = NULL;
static Display *thread_dpy = NULL;
static int xi_opcode, event, error, major, minor;
static XIDeviceInfo *info = NULL;
static int ndevices = 0;
static int masterDevice = -1;
static XDevice* x_dev[PSYCH_HID_MAX_DEVICES];
static double* psychHIDKbQueueFirstPress[PSYCH_HID_MAX_DEVICES];
static double* psychHIDKbQueueFirstRelease[PSYCH_HID_MAX_DEVICES];
static double* psychHIDKbQueueLastPress[PSYCH_HID_MAX_DEVICES];
static double* psychHIDKbQueueLastRelease[PSYCH_HID_MAX_DEVICES];
static int* psychHIDKbQueueScanKeys[PSYCH_HID_MAX_DEVICES];
static int psychHIDKbQueueNumValuators[PSYCH_HID_MAX_DEVICES];
static unsigned int psychHIDKbQueueFlags[PSYCH_HID_MAX_DEVICES];
static PsychHIDEventRecord psychHIDKbQueueOldEvent[PSYCH_HID_MAX_DEVICES];
static Window psychHIDKbQueueXWindow[PSYCH_HID_MAX_DEVICES];
static psych_bool psychHIDKbQueueActive[PSYCH_HID_MAX_DEVICES];
static psych_mutex KbQueueMutex;
static psych_condition KbQueueCondition;
static psych_bool KbQueueThreadTerminate;
static psych_thread KbQueueThread;
static XEvent KbQueue_xevent;
static XIM x_inputMethod = NULL;
static XIC x_inputContext = NULL;
static XDevice* GetXDevice(int deviceIndex)
{
if (deviceIndex < 0 || deviceIndex >= PSYCH_HID_MAX_DEVICES) PsychErrorExitMsg(PsychError_user, "Invalid deviceIndex specified. No such device!");
if (x_dev[deviceIndex] == NULL) x_dev[deviceIndex] = XOpenDevice(dpy, (XID) info[deviceIndex].deviceid);
return(x_dev[deviceIndex]);
}
void PsychHIDInitializeHIDStandardInterfaces(void)
{
int rc, i;
// Init x_dev array:
for (i = 0; i < PSYCH_HID_MAX_DEVICES; i++) x_dev[i] = NULL;
// Init keyboard queue arrays:
memset(&psychHIDKbQueueFirstPress[0], 0, sizeof(psychHIDKbQueueFirstPress));
memset(&psychHIDKbQueueFirstRelease[0], 0, sizeof(psychHIDKbQueueFirstRelease));
memset(&psychHIDKbQueueLastPress[0], 0, sizeof(psychHIDKbQueueLastPress));
memset(&psychHIDKbQueueLastRelease[0], 0, sizeof(psychHIDKbQueueLastRelease));
memset(&psychHIDKbQueueActive[0], 0, sizeof(psychHIDKbQueueActive));
memset(&psychHIDKbQueueScanKeys[0], 0, sizeof(psychHIDKbQueueScanKeys));
memset(&psychHIDKbQueueNumValuators[0], 0, sizeof(psychHIDKbQueueNumValuators));
memset(&psychHIDKbQueueOldEvent[0], 0, sizeof(psychHIDKbQueueOldEvent));
memset(&psychHIDKbQueueFlags[0], 0, sizeof(psychHIDKbQueueFlags));
memset(&psychHIDKbQueueXWindow[0], 0, sizeof(psychHIDKbQueueXWindow));
// Call XInitThreads() ourselves before any other X-Lib call if we need to
// do this to work around lack of proper X-Lib threading init in the host
// application:
if (getenv("DISPLAY") && PsychOSNeedXInitThreads(getenv("PSYCHHID_TELLME") ? 4 : 3))
XInitThreads();
// Open our own private X-Display connection for HID handling:
dpy = XOpenDisplay(NULL);
if (!dpy) {
PsychErrorExitMsg(PsychError_system, "PsychHID: FATAL ERROR: Couldn't open default X11 display connection to X-Server! Game over!");
}
// XInputExtension supported? If so do basic init:
if (!XQueryExtension(dpy, "XInputExtension", &xi_opcode, &event, &error)) {
printf("PsychHID: ERROR: XINPUT extension unsupported!\n");
goto out;
}
// XInput V2.2 supported?
major = 2;
minor = 2;
rc = XIQueryVersion(dpy, &major, &minor);
if (rc == BadRequest) {
printf("PsychHID: ERROR: No XI2 support. Server supports version %d.%d only.\n", major, minor);
goto out;
} else if (rc != Success) {
printf("PsychHID: ERROR: Internal Error! This is a bug in Xlib.\n");
goto out;
}
// Open our own 2nd private X-Display connection for HID handling. This one is for the
// async KbQueue processing thread:
thread_dpy = XOpenDisplay(NULL);
if (!thread_dpy) {
PsychErrorExitMsg(PsychError_system, "PsychHID: FATAL ERROR: Couldn't open default X11 display connection to X-Server! Game over!");
}
// XInputExtension supported? If so do basic init:
if (!XQueryExtension(thread_dpy, "XInputExtension", &xi_opcode, &event, &error)) {
printf("PsychHID: ERROR: XINPUT extension unsupported!\n");
goto out;
}
// XInput V2.2 supported?
major = 2;
minor = 2;
rc = XIQueryVersion(thread_dpy, &major, &minor);
if (rc == BadRequest) {
printf("PsychHID: ERROR: No XI2 support. Server supports version %d.%d only.\n", major, minor);
goto out;
} else if (rc != Success) {
printf("PsychHID: ERROR: Internal Error! This is a bug in Xlib.\n");
goto out;
}
// Enumerate all XI2 input devices:
info = XIQueryDevice(dpy, XIAllDevices, &ndevices);
masterDevice = -1;
for(i = 0; i < ndevices; i++) {
if (info[i].use == XIMasterPointer) {
masterDevice = i;
break;
}
}
if (masterDevice == -1) printf("PsychHID: WARNING! No master keyboard/pointer found! This will end badly...\n");
// Switch X-Server connection into synchronous mode: We need this to get
// a higher timing precision.
XSynchronize(dpy, TRUE);
// Create keyboard queue mutex for later use:
KbQueueThreadTerminate = FALSE;
PsychInitMutex(&KbQueueMutex);
PsychInitCondition(&KbQueueCondition, NULL);
return;
out:
if (dpy) XCloseDisplay(dpy);
dpy = NULL;
if (thread_dpy) XCloseDisplay(thread_dpy);
thread_dpy = NULL;
PsychErrorExitMsg(PsychError_system, "PsychHID: FATAL ERROR: X Input extension version 2.0 or later not available! Game over!");
}
void PsychHIDShutdownHIDStandardInterfaces(void)
{
int i;
// Close all devices registered in x_dev array:
for (i = 0; i < PSYCH_HID_MAX_DEVICES; i++) {
if (x_dev[i]) XCloseDevice(dpy, x_dev[i]);
x_dev[i] = NULL;
}
// Release all keyboard queues:
for (i = 0; i < PSYCH_HID_MAX_DEVICES; i++) {
if (psychHIDKbQueueFirstPress[i]) {
PsychHIDOSKbQueueRelease(i);
}
}
// Delete input method and context if any was in use:
if (x_inputContext) {
XDestroyIC(x_inputContext);
x_inputContext = NULL;
}
if (x_inputMethod) {
XCloseIM(x_inputMethod);
x_inputMethod = NULL;
}
// Release keyboard queue mutex:
PsychDestroyMutex(&KbQueueMutex);
PsychDestroyCondition(&KbQueueCondition);
KbQueueThreadTerminate = FALSE;
// Release list of enumerated input devices:
XIFreeDeviceInfo(info);
info = NULL;
// Close our dedicated x-display connection and we are done:
if (dpy) XCloseDisplay(dpy);
dpy = NULL;
if (thread_dpy) XCloseDisplay(thread_dpy);
thread_dpy = NULL;
return;
}
// Return -1 if not a touch device. Return >= 0 for touch device.
// Returns 0 for "unknown number of touch points - device didn't tell us".
// Otherwise returns > 0 for number of maximally supported touch points.
// *type is 0 for dependent touch devices like trackpads, 1 for real touch screens.
int PsychHIDIsTouchDevice(int deviceIndex, int* type)
{
int j, count = 0, num_touches = 0;
XIDeviceInfo *dev = &info[deviceIndex];
if (type)
*type = -1;
// XInput 2.2+ supported? Otherwise no touch device support.
if (minor >= 2) {
for (j = 0; j < dev->num_classes; j++) {
XIAnyClassInfo *class = dev->classes[j];
XITouchClassInfo *t = (XITouchClassInfo*) class;
if (class->type != XITouchClass)
continue;
count++;
num_touches += t->num_touches;
if (type)
*type = (t->mode == XIDirectTouch) ? 1 : 0;
}
}
return((count > 0) ? num_touches : -1);
}
PsychError PsychHIDEnumerateHIDInputDevices(int deviceClass)
{
const char *deviceFieldNames[]={"usagePageValue", "usageValue", "usageName", "index", "transport", "vendorID", "productID", "version",
"manufacturer", "product", "serialNumber", "locationID", "interfaceID", "totalElements", "features", "inputs",
"outputs", "collections", "axes", "buttons", "hats", "sliders", "dials", "wheels", "touchDeviceType", "maxTouchpoints"};
int numDeviceStructElements, numDeviceStructFieldNames=26, deviceIndex;
PsychGenericScriptType *deviceStruct;
XIDeviceInfo *dev;
int i, j;
int numKeys, numAxis, touchType;
char *type = "";
// Preparse: Count matching devices for deviceClass
numDeviceStructElements = 0;
for(i = 0; i < ndevices; i++) {
dev = &info[i];
if ((int) (dev->use) == deviceClass) numDeviceStructElements++;
}
// Alloc struct array of sufficient size:
PsychAllocOutStructArray(1, FALSE, numDeviceStructElements, numDeviceStructFieldNames, deviceFieldNames, &deviceStruct);
deviceIndex = 0;
// Return info:
for(i = 0; i < ndevices; i++) {
// Check i'th device:
dev = &info[i];
// Skip if non matching class:
if ((int) (dev->use) != deviceClass) continue;
switch(dev->use) {
case XIMasterPointer: type = "master pointer"; break;
case XIMasterKeyboard: type = "master keyboard"; break;
case XISlavePointer: type = "slave pointer"; break;
case XISlaveKeyboard: type = "slave keyboard"; break;
case XIFloatingSlave: type = "floating slave"; break;
}
// Usagepage is 1 for "Desktop usage page":
PsychSetStructArrayDoubleElement("usagePageValue", deviceIndex, (double) 1, deviceStruct);
if (dev->use == XIMasterKeyboard || dev->use == XISlaveKeyboard) {
// Usage 6 is for keyboard:
PsychSetStructArrayDoubleElement("usageValue", deviceIndex, (double) 6, deviceStruct);
}
else if (dev->use != XIFloatingSlave) {
// Usage is 2 for mouse:
PsychSetStructArrayDoubleElement("usageValue", deviceIndex, (double) 2, deviceStruct);
} else {
// Assign meaningless Usage of zero for floating slave devices:
PsychSetStructArrayDoubleElement("usageValue", deviceIndex, (double) 0, deviceStruct);
}
PsychSetStructArrayStringElement("usageName", deviceIndex, type, deviceStruct);
PsychSetStructArrayDoubleElement("index", deviceIndex, (double) i, deviceStruct);
PsychSetStructArrayStringElement("transport", deviceIndex, (dev->enabled) ? "enabled" : "disabled", deviceStruct);
PsychSetStructArrayStringElement("product", deviceIndex, dev->name, deviceStruct);
PsychSetStructArrayDoubleElement("locationID", deviceIndex, (double) dev->attachment, deviceStruct);
PsychSetStructArrayDoubleElement("interfaceID", deviceIndex, (double) dev->deviceid, deviceStruct);
//PsychSetStructArrayDoubleElement("vendorID", deviceIndex, (double)currentDevice->vendorID, deviceStruct);
//PsychSetStructArrayDoubleElement("productID", deviceIndex, (double)currentDevice->productID, deviceStruct);
//PsychSetStructArrayDoubleElement("version", deviceIndex, (double)currentDevice->version, deviceStruct);
//PsychSetStructArrayStringElement("manufacturer", deviceIndex, currentDevice->manufacturer, deviceStruct);
//PsychSetStructArrayStringElement("serialNumber", deviceIndex, currentDevice->serial, deviceStruct);
numKeys = numAxis = 0;
for (j = 0; j < dev->num_classes; j++) {
if (dev->classes[j]->type == XIKeyClass) numKeys += (int) (((XIKeyClassInfo*) dev->classes[j])->num_keycodes);
if (dev->classes[j]->type == XIButtonClass) numKeys += (int) (((XIButtonClassInfo*) dev->classes[j])->num_buttons);
if (dev->classes[j]->type == XIValuatorClass) numAxis++;
}
PsychSetStructArrayDoubleElement("totalElements", deviceIndex, (double) numKeys + numAxis, deviceStruct);
PsychSetStructArrayDoubleElement("features", deviceIndex, (double) dev->num_classes, deviceStruct);
PsychSetStructArrayDoubleElement("inputs", deviceIndex, (double) numKeys + numAxis, deviceStruct);
PsychSetStructArrayDoubleElement("outputs", deviceIndex, (double) 0, deviceStruct);
PsychSetStructArrayDoubleElement("collections", deviceIndex, (double) 0, deviceStruct);
PsychSetStructArrayDoubleElement("axes", deviceIndex, (double) numAxis, deviceStruct);
PsychSetStructArrayDoubleElement("buttons", deviceIndex, (double) numKeys, deviceStruct);
PsychSetStructArrayDoubleElement("hats", deviceIndex, (double) 0, deviceStruct);
PsychSetStructArrayDoubleElement("sliders", deviceIndex, (double) 0, deviceStruct);
PsychSetStructArrayDoubleElement("dials", deviceIndex, (double) 0, deviceStruct);
PsychSetStructArrayDoubleElement("wheels", deviceIndex, (double) 0, deviceStruct);
PsychSetStructArrayDoubleElement("maxTouchpoints", deviceIndex, (double) PsychHIDIsTouchDevice(i, NULL), deviceStruct);
PsychHIDIsTouchDevice(i, &touchType);
PsychSetStructArrayDoubleElement("touchDeviceType", deviceIndex, (double) touchType, deviceStruct);
deviceIndex++;
}
return(PsychError_none);
}
PsychError PsychHIDOSKbCheck(int deviceIndex, double* scanList)
{
double* buttonStates;
unsigned char keys_return[32];
int keysdown;
double timestamp;
int i, j;
psych_bool isButtons = FALSE;
memset(keys_return, 0, sizeof(keys_return));
// Map "default" deviceIndex to legacy "Core protocol" method of querying keyboard
// state. This will give us whatever X has setup as default keyboard:
if (deviceIndex == INT_MAX) {
// Request current keyboard state of default keyboard from X-Server:
XQueryKeymap(dpy, (char*) keys_return);
} else if (deviceIndex < 0 || deviceIndex >= ndevices) {
PsychErrorExitMsg(PsychError_user, "Invalid keyboard deviceIndex specified. No such device!");
} else if (info[deviceIndex].use == XIMasterKeyboard) {
// Master keyboard:
// Query current client pointer assignment, then switch it to
// associated master pointer for the master keyboard we want
// to query. This way, all future queries will query our requested
// master keyboard:
j = -1;
if (!XIGetClientPointer(dpy, None, &j) || (j != info[deviceIndex].attachment)) XISetClientPointer(dpy, None, info[deviceIndex].attachment);
// Request current keyboard state from X-Server:
XQueryKeymap(dpy, (char*) keys_return);
// Reset master pointer/keyboard assignment to pre-query state:
if ((j > 0) && (j != info[deviceIndex].attachment)) XISetClientPointer(dpy, None, j);
} else {
// Non-Default deviceIndex: Want to query specific slave keyboard.
if (info[deviceIndex].use == XIMasterPointer) PsychErrorExitMsg(PsychError_user, "Invalid deviceIndex specified! Cannot query master mouse pointers as keyboards.");
// Open connection to non-master-keyboard device:
XDevice* mydev = GetXDevice(deviceIndex);
// Query its current state: Can be NULL for some special devices.
XDeviceState* state = XQueryDeviceState(dpy, mydev);
// printf("Dummy = %i , NClasses = %i\n", dummy1, state->num_classes);
// Find state structure with key status info:
for (i = 0; state && (i < state->num_classes); i++) {
XInputClass* data = state->data;
// printf("Class %i: Type %i - %i\n", i, (int) data->class, (int) data->length);
if (data->class == KeyClass) {
// printf("NumKeys %i\n", ((XKeyState*) data)->num_keys);
// Copy 32 Byte keystate vector into key_return. Each bit encodes for one key:
memcpy(&keys_return[0], &(((XKeyState*) data)->keys[0]), sizeof(keys_return));
isButtons = FALSE;
}
// Also handle devices with buttons as if they are keyboards, e.g., mouse, joystick...
if (data->class == ButtonClass) {
// printf("NumButtons %i\n", ((XButtonState*) data)->num_buttons);
// Copy 32 Byte buttonstate vector into key_return. Each bit encodes for one button:
memcpy(&keys_return[0], &(((XButtonState*) data)->buttons[0]), sizeof(keys_return));
isButtons = TRUE;
}
// Advance to next entry:
data = (XInputClass*) (((void*) data) + ((size_t) data->length));
}
XFreeDeviceState(state);
}
// Done with query. We have keyboard state in keys_return[] now.
// Request current time of query:
PsychGetAdjustedPrecisionTimerSeconds(×tamp);
// Reset overall key state to "none pressed":
keysdown = 0;
// Any key down?
for (i = 0; i < 32; i++) keysdown+=(unsigned int) keys_return[i];
// Copy out overall keystate:
PsychCopyOutDoubleArg(1, kPsychArgOptional, (keysdown > 0) ? 1 : 0);
// Copy out timestamp:
PsychCopyOutDoubleArg(2, kPsychArgOptional, timestamp);
// Copy keyboard state:
PsychAllocOutDoubleMatArg(3, kPsychArgOptional, 1, 256, 1, &buttonStates);
// Map 32 times 8 bitvector to 256 element return vector:
for(i = 0; i < 32; i++) {
for(j = 0; j < 8; j++) {
// This button or key down?
buttonStates[i*8 + j] = (keys_return[i] & (1<<j)) ? 1 : 0;
// Is this a button, e.g., on mouse/joystick, instead of a key on keyboard?
if (isButtons) {
// All buttons are shifted to + 1 index, so we need to shift back by
// 1 position. Do this in a pathetic way to save brain-cycles:
if (i*8 + j > 0) buttonStates[i*8 + j - 1] = buttonStates[i*8 + j];
if (i*8 + j >= 255) buttonStates[i*8 + j] = 0;
}
// Apply scanList mask, if any provided:
if (scanList && (scanList[i*8 + j] <= 0)) buttonStates[i*8 + j] = 0;
}
}
return(PsychError_none);
}
PsychError PsychHIDOSGamePadAxisQuery(int deviceIndex, int axisId, double* min, double* max, double* val, char* axisLabel)
{
XIDeviceInfo *dev = NULL;
int i, j, dummy1;
dev = XIQueryDevice(dpy, info[deviceIndex].deviceid, &dummy1);
printf("Dummy = %i , NClasses = %i\n", dummy1, dev->num_classes);
for (i = 0; i < dev->num_classes; i++) {
printf("Class %i: Type %i\n", i, (int) dev->classes[i]->type);
if (dev->classes[i]->type == XIKeyClass) printf("NumKeys %i\n", ((XIKeyClassInfo*) dev->classes[i])->num_keycodes);
if (dev->classes[i]->type == XIButtonClass) printf("NumButtons %i\n", ((XIButtonClassInfo*) dev->classes[i])->num_buttons);
if (dev->classes[i]->type == XIValuatorClass) {
printf("Value %f\n", (float) ((XIValuatorClassInfo*) dev->classes[i])->value);
if (val) *val = (double) ((XIValuatorClassInfo*) dev->classes[i])->value;
}
}
XIFreeDeviceInfo(dev);
// Open connection to slave keyboard device:
XDevice* mydev = GetXDevice(deviceIndex);
// Query its current state: Can be NULL for some exotic devices.
XDeviceState* state = XQueryDeviceState(dpy, mydev);
//printf("NClasses = %i\n", state->num_classes);
// Find state structure with key status info:
for (i = 0; state && (i < state->num_classes); i++) {
XInputClass* data = state->data;
printf("Class = %i\n", (int) data->class);
if (data->class == ValuatorClass) {
XValuatorState* valuator = (XValuatorState*) data;
printf("NumAxis %i [Mode=%s]\n", valuator->num_valuators, (valuator->mode == Absolute) ? "Absolute" : "Relative");
for (j = 0 ; j < valuator->num_valuators; j++) printf("Axis %i: %i\n", j, valuator->valuators[j]);
}
data = (XInputClass*) (((void*) data) + ((size_t) data->length));
}
XFreeDeviceState(state);
int nSamples, mode_return, axis_count_return;
double* outSamples;
double tSample;
// Query motion history of this device:
XDeviceTimeCoord* samples = XGetDeviceMotionEvents(dpy, mydev, 0, CurrentTime, &nSamples, &mode_return, &axis_count_return);
printf("[%p] n = %i , mr = %s , ac = %i\n", samples, nSamples, (mode_return == Absolute) ? "Absolute" : "Relative" , axis_count_return);
// Return it as 1st argument to userspace if requested:
if (PsychAllocOutDoubleMatArg(1, kPsychArgOptional, 2 + axis_count_return, nSamples, 1, &outSamples)) {
for (i = 0; i < nSamples; i++) {
// Sampleindex in row 1:
*(outSamples++) = (double) i;
// Sampletime in row 2: Need to convert msecs to sec and
// then map from CLOCK_MONOTONIC to our CLOCK_REALTIME
// GetSecs() timebase:
tSample = (double) samples[i].time / 1000.0;
*(outSamples++) = PsychOSMonotonicToRefTime(tSample);
// Axis motion samples in successive rows:
for (j = 0; j < axis_count_return; j++) {
*(outSamples++) = (double) samples[i].data[j];
}
// Next sample in next column:
}
}
// Release returned sample motion buffer:
XFreeDeviceMotionEvents(samples);
return(PsychError_none);
}
// This is the event dequeue & process function which updates
// Keyboard queue state. It can be called with 'blockingSinglepass'
// set to TRUE to process exactly one event, if called from the
// background keyboard queue processing thread. Alternatively it
// can be called synchronously from KbQueueCheck with a setting of FALSE
// to iterate over all available events and process them instantaneously:
static void KbQueueProcessEvents(void)
{
PsychHIDEventRecord evt;
XKeyPressedEvent key;
XIDeviceEvent* event;
XIRawEvent* rawevent;
psych_bool valid;
double tnow;
int i, j, index, deviceid, numValuators;
unsigned int screen_width, screen_height;
char asciiChar;
wchar_t wideChar;
Status status_return;
{
XGenericEventCookie *cookie = &KbQueue_xevent.xcookie;
// Wait until at least one event available and dequeue it:
XNextEvent(thread_dpy, &KbQueue_xevent);
// Take timestamp:
PsychGetAdjustedPrecisionTimerSeconds(&tnow);
// Clear ringbuffer event:
memset(&evt, 0 , sizeof(evt));
// Set cooked character to "undefined" as a starter: It will only get
// assigned something else if keypress/release events from real keyboards
// or keypads are processed:
evt.cookedEventCode = -1;
// Is this an event we're interested in?
if ((cookie->type == GenericEvent) && (cookie->extension == xi_opcode)) {
// Yes. Process it:
if (XGetEventData(thread_dpy, cookie)) {
// Process it:
// printf("Event type %d received\n", cookie->evtype);
if (cookie->evtype == XI_RawButtonPress || cookie->evtype == XI_RawButtonRelease || cookie->evtype == XI_RawMotion ||
cookie->evtype == XI_RawTouchBegin || cookie->evtype == XI_RawTouchEnd || cookie->evtype == XI_RawTouchUpdate) {
// Raw device event for mice and similar devices:
rawevent = (XIRawEvent*) cookie->data;
event = NULL;
valid = TRUE; // Always true for raw devices like mice etc., unless queue flag 1 is set, see below.
index = rawevent->detail;
deviceid = rawevent->deviceid;
}
else {
// Regular device event:
Window rootRet;
unsigned int depth_return, border_width_return;
int x, y;
event = (XIDeviceEvent*) cookie->data;
rawevent = NULL;
valid = !(event->flags & XIKeyRepeat);
index = event->detail;
deviceid = event->deviceid;
// Get width x height of associated root window, aka screen size for touch coordinate remapping:
XGetGeometry(thread_dpy, event->root, &rootRet, &x, &y, &screen_width, &screen_height, &border_width_return, &depth_return);
}
if (event && (cookie->evtype != XI_TouchOwnership)) {
// Process device button state:
for (j = 0; (j < event->buttons.mask_len * 8) && (j < 32); j++) {
// j'th device button pressed?
if (XIMaskIsSet(event->buttons.mask, j)) {
// Yes: Set status to "pressed" as at least one device button is pressed:
// Note this gets overriden for some event types below, like touch and
// keyboard. It only really affects mouse/gamepad/joystick movements.
evt.status |= (1 << 0);
// Mark button pressed:
evt.buttonStates |= (1 << j);
}
}
}
// Map Xinput device id to PTB 'deviceIndex' aka the proper keyboard queue:
for (i = 0; i < ndevices; i++) if (deviceid == info[i].deviceid) break;
// Special handling for synthetic key repeat flags required?
if ((i < ndevices) && (psychHIDKbQueueFlags[i] & 0x3)) {
// Yes: Filter out key repeat on raw events (from pointer devices) as well?
// This will suppress scroll events (mouse wheel, PowerMate knob etc.):
if (rawevent && (psychHIDKbQueueFlags[i] & 0x1))
valid = !(rawevent->flags & XIKeyRepeat);
// Always accept key repeats:
if (psychHIDKbQueueFlags[i] & 0x2)
valid = TRUE;
}
// We're only interested in key press and release events, and only in
// real ones, not XServer generated synthetic key auto-repeat events.
// Also only for a device that we've registered:
if ((i < ndevices) && valid &&
((cookie->evtype == XI_KeyPress) || (cookie->evtype == XI_KeyRelease) ||
(cookie->evtype == XI_ButtonPress) || (cookie->evtype == XI_ButtonRelease) ||
(cookie->evtype == XI_RawButtonPress) || (cookie->evtype == XI_RawButtonRelease))) {
// If this is a button event from a mouse/joystick etc. instead of a key event from a keyboard/keypad, then
// all button indices are shifted by an offset of 1 for some weird reason. Decrement index by one to compensate
// for this. [Tested on Ubuntu 10.10 and 11.10 with two mice and 1 joystick]
if ((index > 0) &&
((cookie->evtype == XI_ButtonPress) || (cookie->evtype == XI_ButtonRelease) ||
(cookie->evtype == XI_RawButtonPress) || (cookie->evtype == XI_RawButtonRelease))) {
index--;
}
// Key release on keyboard maps to character code 0.
if (cookie->evtype == XI_KeyRelease) evt.cookedEventCode = 0;
// Key press on a real keyboard needs to be mapped to character ascii code, if possible:
if (cookie->evtype == XI_KeyPress) {
// Assign info from our XIDeviceEvent to a standard XKeyPressedEvent which
// XLookupString() can actually understand:
key.type = KeyPress;
key.root = event->root;
key.window = event->event;
key.subwindow = event->child;
key.time = event->time;
key.x = event->event_x;
key.y = event->event_y;
key.x_root = event->root_x;
key.y_root = event->root_y;
key.same_screen = True;
key.send_event = False;
key.serial = event->serial;
key.display = thread_dpy;
key.keycode = index;
key.state = event->mods.effective;
if (x_inputContext &&
(1 == XwcLookupString(x_inputContext, &key, &wideChar, 1, NULL, &status_return)) &&
(status_return == XLookupChars || status_return == XLookupBoth)) {
// Mapped to wide character according to current keyboard layout:
evt.cookedEventCode = (int) wideChar;
}
else if (1 == XLookupString((XKeyEvent*) &key, &asciiChar, 1, NULL, NULL)) {
// Mapped to ISO Latin-1 or ASCII CTRL char: Assign it.
evt.cookedEventCode = (int) asciiChar;
}
else {
// Not mappable:
evt.cookedEventCode = 0;
}
// Was this a CTRL + C interrupt request? This is mapped to ASCII control character 3 "ETX".
if (evt.cookedEventCode == 3) {
// Yes: Tell ConsoleInputHelper() about it, to reenable keystroke
// character dispatch in the terminal. This will undo a potential ListenChar(2)
// op if GetChar() et al. are used with the help of this keyboard queue from
// within Octave or Matlab in -nojvm mode.
ConsoleInputHelper(-1);
}
if (evt.cookedEventCode >= 0) {
// Tell ConsoleInputHelper() about the character:
ConsoleInputHelper(evt.cookedEventCode);
}
}
// Need the lock from here on:
PsychLockMutex(&KbQueueMutex);
// This keyboard queue created and started? Interested in this
// keycode?
if (psychHIDKbQueueActive[i] && (psychHIDKbQueueScanKeys[i][index] != 0)) {
// Yes: The queue wants to receive info about this key event.
// Press or release?
if ((cookie->evtype == XI_KeyPress) || (cookie->evtype == XI_ButtonPress) || (cookie->evtype == XI_RawButtonPress)) {
// Enqueue key press. Always in the "last press" array, because any
// press at this time is the best candidate for the last press.
// Only enqeue in "first press" if there wasn't any registered before,
// ie., the slot is so far empty:
if (psychHIDKbQueueFirstPress[i][index] == 0) psychHIDKbQueueFirstPress[i][index] = tnow;
psychHIDKbQueueLastPress[i][index] = tnow;
evt.status |= (1 << 0);
} else {
// Enqueue key release. See logic above:
if (psychHIDKbQueueFirstRelease[i][index] == 0) psychHIDKbQueueFirstRelease[i][index] = tnow;
psychHIDKbQueueLastRelease[i][index] = tnow;
evt.status &= ~(1 << 0);
}
// Update event buffer:
evt.timestamp = tnow;
evt.rawEventCode = index + 1;
// Also provide (x,y) position of the pointing device at time of event:
// Note: For raw events no such absolute position info is available.
if (event) {
evt.X = event->event_x;
evt.Y = event->event_y;
evt.normX = evt.X / screen_width;
evt.normY = evt.Y / screen_height;
}
else {
evt.X = evt.Y = evt.normX = evt.normY = 0;
}
PsychHIDAddEventToEventBuffer(i, &evt);
// Tell waiting userspace (under KbQueueMutex protection for better scheduling) something interesting has changed:
PsychSignalCondition(&KbQueueCondition);
}
// Done with shared data access:
PsychUnlockMutex(&KbQueueMutex);
}
else {
PsychLockMutex(&KbQueueMutex);
if ((i < ndevices) && valid && psychHIDKbQueueActive[i] && (psychHIDKbQueueNumValuators[i] > 0)) {
// Handling of motion events / valuator change events / touch events. These only go into the event buffer,
// not legacy KbQueue arrays, as those don't make sense here:
numValuators = psychHIDKbQueueNumValuators[i];
evt.cookedEventCode = -1;
evt.timestamp = tnow;
evt.rawEventCode = 0;
// Mouse/Touchpad/Trackpad/Trackpoint/Trackball/Joystick/Pointing device
// change of position or axis state:
if ((cookie->evtype == XI_Motion || cookie->evtype == XI_RawMotion) && (numValuators >= 2)) {
// Type is a pointer or axis motion event:
evt.type = 1;
// Motion event:
evt.status |= (1 << 1);
// Store absolute position:
// Note: For raw events no such absolute position info is available.
if (event) {
evt.X = event->event_x;
evt.Y = event->event_y;
evt.normX = evt.X / screen_width;
evt.normY = evt.Y / screen_height;
}
else {
evt.X = evt.Y = evt.normX = evt.normY = 0;
}
// More than 2 standard valuators for (x,y) position or deflection?
if (numValuators >= 2) {
if (event) {
// Store up to numValuators valuator values:
double *valuator = event->valuators.values;
for (j = 0; (j < event->valuators.mask_len * 8) && (j < numValuators); j++) {
evt.numValuators++;
// Updated valuator value?
if (XIMaskIsSet(event->valuators.mask, j)) {
// Yes: Assign.
evt.valuators[j] = (float) *valuator;
valuator++;
}
else {
// No: Assign old value from last pass:
evt.valuators[j] = (float) psychHIDKbQueueOldEvent[i].valuators[j];
}
}
}
else {
// Raw motion event:
// Store up to numValuators raw values:
double *raw_values = rawevent->raw_values;
for (j = 0; (j < rawevent->valuators.mask_len * 8) && (j < numValuators); j++) {
evt.numValuators++;
// Updated valuator value?
if (XIMaskIsSet(rawevent->valuators.mask, j)) {
// Yes: Assign.
evt.valuators[j] = (float) *raw_values;
raw_values++;
}
else {
// No: Assign old value from last pass:
evt.valuators[j] = (float) psychHIDKbQueueOldEvent[i].valuators[j];
}
}
// Derive somewhat X, Y values from first two valuators:
evt.X = evt.valuators[0];
evt.Y = evt.valuators[1];
}
// Keep track of last event for above valuator updating:
memcpy(&psychHIDKbQueueOldEvent[i], &evt, sizeof(evt));
}
}
if ((cookie->evtype == XI_TouchBegin || cookie->evtype == XI_TouchEnd || cookie->evtype == XI_TouchUpdate || cookie->evtype == XI_TouchOwnership ||
cookie->evtype == XI_RawTouchBegin || cookie->evtype == XI_RawTouchEnd || cookie->evtype == XI_RawTouchUpdate) && (numValuators >= 4)) {
XIDeviceInfo *dev = &info[i];
// Touch point id, 32-Bit integer - unique until 32 bit wraparound ;) :
evt.rawEventCode = (event) ? event->detail : rawevent->detail;
// Fetch most recent touch record in the series for this touch point:
// oldevt == NULL if none yet exists, or none exists anymore due to some buffer wraparound:
PsychHIDEventRecord *oldevt = PsychHIDLastTouchEventFromEventBuffer(i, evt.rawEventCode);
// Everything of interest is in the valuators:
if (cookie->evtype != XI_TouchOwnership) {
// Store up to numValuators valuator values:
if (event) {
double *valuator = event->valuators.values;
for (j = 0; (j < event->valuators.mask_len * 8) && (j < numValuators); j++) {
evt.numValuators++;
// Updated valuator value?
if (XIMaskIsSet(event->valuators.mask, j)) {
// Yes: Assign.
evt.valuators[j] = (float) *valuator;
valuator++;
}
else {
// No: Assign old value from last pass:
evt.valuators[j] = (float) ((oldevt) ? oldevt->valuators[j] : 0.0);
}
}
}
else {
double *valuator = rawevent->raw_values;
for (j = 0; (j < rawevent->valuators.mask_len * 8) && (j < numValuators); j++) {
evt.numValuators++;
// Updated valuator value?
// TODO: Workaround for what might be a X-Server bug as of 1.19.6.
// XIMaskIsSet() reports true also for axis/valuators that don't have
// actual updated values! The corresponding *valuator value is always
// zero if the axis didn't update in this event!
// Work around this by only updating for non-zero *valuator values.
// Use cached value from previous touch point update otherwise.
// Downside is obviously that we can't report any zero values for a valuator.
//
// This is fine for (x,y) axis, as a user hitting exactly x==0 or y==0
// ie., the left/upper touchscreen edges, is unlikely. We might get away with it
// as well for pressure or area valuators, as they only become zero if
// a touch ends. Valuators for touch orientation or such, where 0 degrees is
// a valid reported angle, will not work properly though. This needs some fix
// in the upstream X-Server, but for the moment this is the best we can do:
// Disabled: if (XIMaskIsSet(rawevent->valuators.mask, j)) {
if (XIMaskIsSet(rawevent->valuators.mask, j) && *valuator) {
// Yes: Assign.
// printf("%i: Valuator[%i]: %f\n", evt.rawEventCode, j, *valuator);
evt.valuators[j] = (float) *valuator;
valuator++;
}
else {
// No: Assign old value from last pass:
// printf("%i: Valuator[%i]: Gap\n", evt.rawEventCode, j);
evt.valuators[j] = (float) ((oldevt) ? oldevt->valuators[j] : 0.0);
}
}
}
}
if (event) {
evt.X = event->event_x;
evt.Y = event->event_y;
evt.normX = evt.X / screen_width;
evt.normY = evt.Y / screen_height;
}
else {
evt.X = evt.Y = evt.normX = evt.normY = 0;
}
// Normalize x and y positions to 0.0 - 1.0 range (at least for absolute touch devices).
// Also remap to X-Screen space:
for (j = 0; j < dev->num_classes; j++) {
XIAnyClassInfo *class = dev->classes[j];
XIValuatorClassInfo *v = (XIValuatorClassInfo*) class;
double r;
if (class->type != XIValuatorClass)
continue;
r = v->max - v->min;
if (r > 0) {
if (v->number == 0)
evt.normX = (float) ((evt.valuators[0] - v->min) / r);
if (v->number == 1)
evt.normY = (float) ((evt.valuators[1] - v->min) / r);
}
// Remap to X-Screen / RootWindow width x height:
evt.X = evt.normX * screen_width;
evt.Y = evt.normY * screen_height;
}
switch (cookie->evtype) {
case XI_TouchBegin:
case XI_RawTouchBegin:
// Touch begins - Finger pressed, integrity bit cleared:
evt.status = 1;
evt.type = 2;
break;
case XI_TouchUpdate:
case XI_RawTouchUpdate:
// Finger motion event, with finger pressed onto the touch surface:
evt.status |= 1 + 2;
evt.type = 3;
// If we get signalled that this is the end of the physical touch sequence,
// but somebody else has a grab on it and hasn't decided to accept/reject
// yet, then we know we've seen the full touch sequence. We may or may not
// get a XI_TouchOwnership event before the XI_TouchEnd, but we know we are
// good, so simply set the integrity bit:
//
// See http://who-t.blogspot.de/2012/01/multitouch-in-x-touch-grab-handling.html
if ((event && event->flags & XITouchPendingEnd) || (rawevent && rawevent->flags & XITouchPendingEnd)) {
// Set integrity bit for this touch point:
evt.status |= (1 << 31);
// printf("TouchPendingEnd!!\n");
}
break;
case XI_TouchEnd:
case XI_RawTouchEnd:
// Touch ends - Finger released and no more motion:
evt.status &= ~(1 + 2);
evt.type = 4;
// By this time we must have the integrity bit set, or we lost data.
// TODO: No actually! This produces lots of false positives for multi-touch sequences,
// because usually only the 1st (primary) touch in a sequence will receive the XI_TouchOwnership event
// and so gets the integrity bit set on its touch id. The same is true for XITouchPendingEnd marking
// on only one XI_TouchUpdate event for one touchpoint of a sequence. If multi-touches other than those
// marked ones are released and ended, then this will signal a false positive touch sequence data loss.
// Additionally, if raw touch events are used, we don't seem to receive XI_TouchOwnership events at all.
//
// We either need to do without sequence loss detection or completely rethink the approach.
// Leave it here for now, but disable loss reporting:
//if (!oldevt || !(oldevt->status & (1 << 31))) {
if (FALSE) {
// Nope, we lost touch data. Did we already send a fail event for this touch queue?
// If not, then do it now via the magic 0xffffffff touch point with type 5 for sequence abort.
if (!PsychHIDLastTouchEventFromEventBuffer(i, 0xffffffff)) {
// Inject touch end event now ...
PsychHIDAddEventToEventBuffer(i, &evt);
// Then let the code below inject it again, but with type 5 for fail,
// and magic id 0xffffffff:
evt.type = 5;
evt.rawEventCode = 0xffffffff;
}
}
break;
case XI_TouchOwnership:
// Ownership marker: We are the sole owner of this sequence, so got all the data
// untampered :) - Set integrity bit for this touch point in last event for it:
if (oldevt)
oldevt->status |= (1 << 31);
// printf("%i: XI_TouchOwnership!! %p\n", evt.rawEventCode, oldevt);
break;
}
// Propagate positive integrity bit from preceeding event for this touch point:
if (oldevt && (oldevt->status & (1 << 31)))
evt.status |= (1 << 31);
// End of touch handling.
}
// Add anything but touch ownership events:
if (cookie->evtype != XI_TouchOwnership) {
// Update event buffer:
PsychHIDAddEventToEventBuffer(i, &evt);
// Tell waiting userspace (under KbQueueMutex protection for better scheduling) something interesting has changed:
PsychSignalCondition(&KbQueueCondition);
}
}
PsychUnlockMutex(&KbQueueMutex);
}
// Release event data:
XFreeEventData(thread_dpy, cookie);
}
}
}
return;
}
// Async processing thread for keyboard events:
void* KbQueueWorkerThreadMain(void* dummy)
{
int rc;
// Assign a name to ourselves, for debugging:
PsychSetThreadName("PsychHIDKbQueue");
// Try to raise our priority: We ask to switch ourselves (NULL) to priority class 2 aka
// rt_fifo realtime scheduling, with a tweakPriority of +1, ie., raise the relative
// priority level by +1 wrt. to the current level:
if ((rc = PsychSetThreadPriority(NULL, 2, 1)) > 0) {
printf("PsychHID: KbQueueStart: Failed to switch to realtime priority [%s].\n", strerror(rc));
}
while (1) {
PsychLockMutex(&KbQueueMutex);
// Check if we should terminate:
if (KbQueueThreadTerminate) break;
PsychUnlockMutex(&KbQueueMutex);
// Perform X-Event processing until no more events are pending:
KbQueueProcessEvents();
}
// Done. Unlock the mutex:
PsychUnlockMutex(&KbQueueMutex);
// printf("DEBUG: THREAD TERMINATING...\n"); fflush(NULL);
// Return and terminate:
return(NULL);
}
psych_bool PsychHIDIsNotSpecialButtonOrXTest(XIDeviceInfo* dev)
{
return(!strstr(dev->name, "XTEST") && !strstr(dev->name, "utton") && !strstr(dev->name, "Bus") &&
!strstr(dev->name, "iSight") && !strstr(dev->name, "eceiver") && !strstr(dev->name, "amera"));
}
psych_bool PsychHIDIsNotMouse(XIDeviceInfo* dev)
{
// Lots of mice that enumerate as keyboards, because they have special "keyboardy" buttons:
return(PsychHIDIsNotSpecialButtonOrXTest(dev) && !strstr(dev->name, "Gaming Mouse G502") &&
!strstr(dev->name, "M720 Triathlon") && !strstr(dev->name, "MX MASTER 3") &&
!strstr(dev->name, "MX ERGO") && !strstr(dev->name, "M585") &&
!strstr(dev->name, "MX ANYWHERE 2S") && !strstr(dev->name, "M500") &&
!strstr(dev->name, "M720") && !strstr(dev->name, "M510") &&
!strstr(dev->name, "M705") && !strstr(dev->name, "TRIATHLON"));
}
int PsychHIDGetDefaultKbQueueDevice(void)
{
int deviceIndex;
XIDeviceInfo* dev = NULL;
// Find first suitable slave device. For some reason, master keyboards don't work.
// Whitelist scan: Use mouseemu virtual keyboard, if any:
for(deviceIndex = 0; deviceIndex < ndevices; deviceIndex++) {
dev = &info[deviceIndex];
if ((dev->use == XISlaveKeyboard) && strstr(dev->name, "Mouseemu")) return(deviceIndex);
}
// Whitelist scan: Use first "*eyboard", if any. This is not foolproof, e.g., the
// "Razer" gaming keyboard doesn't have the term "keyboard" in its name. But many
// keyboards do:
for(deviceIndex = 0; deviceIndex < ndevices; deviceIndex++) {
dev = &info[deviceIndex];
if ((dev->use == XISlaveKeyboard) && strstr(dev->name, "eyboard") &&
PsychHIDIsNotSpecialButtonOrXTest(dev) && PsychHIDIsNotMouse(dev))
return(deviceIndex);
}
// Blacklist scan: Use whatever comes first and isn't a button in disguise of
// a keyboard or the virtual XTEST keyboard etc.:
for(deviceIndex = 0; deviceIndex < ndevices; deviceIndex++) {
dev = &info[deviceIndex];
if ((dev->use == XISlaveKeyboard) &&
PsychHIDIsNotSpecialButtonOrXTest(dev) && PsychHIDIsNotMouse(dev)) {
return(deviceIndex);
}
}
// Ok, no keyboard found at all. Fallback to mice, joysticks etc.:
for(deviceIndex = 0; deviceIndex < ndevices; deviceIndex++) {
dev = &info[deviceIndex];
if ((dev->use == XISlavePointer) && PsychHIDIsNotSpecialButtonOrXTest(dev)) {
return(deviceIndex);
}
}
// Ok, nothing at all. Fallback to XTEST keyboard, which always exists. Maybe we deal with some
// virtual keyboard like onscreen keyboard:
for(deviceIndex = 0; deviceIndex < ndevices; deviceIndex++) {
dev = &info[deviceIndex];
if (dev->use == XISlaveKeyboard) return(deviceIndex);
}
// Nothing found? If so, abort:
PsychErrorExitMsg(PsychError_user, "Could not find any useable keyboard device!");
// Make compiler happy:
return(-1);
}
PsychError PsychHIDOSKbQueueCreate(int deviceIndex, int numScankeys, int* scanKeys, int numValuators, int numSlots, unsigned int flags, psych_uint64 windowHandle)
{
XIDeviceInfo* dev = NULL;
static psych_bool oneTimeWarningDone = FALSE;
// Valid number of keys?
if (scanKeys && (numScankeys != 256)) {
PsychErrorExitMsg(PsychError_user, "Second argument to KbQueueCreate must be a vector with 256 elements.");
}
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
} else if (deviceIndex >= ndevices) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid 'deviceIndex' specified. No such device!");
}
// Do we finally have a valid keyboard?
dev = &info[deviceIndex];
if (dev->use == XIMasterKeyboard) {
PsychErrorExitMsg(PsychError_user, "Invalid 'deviceIndex' specified. Master keyboards can not be handled by this function.");
}
// Keyboard queue for this deviceIndex already created?
if (psychHIDKbQueueFirstPress[deviceIndex]) {
// Yep. Release it, so we can start from scratch:
PsychHIDOSKbQueueRelease(deviceIndex);
}
// Allocate and zero-init memory for tracking key presses and key releases:
psychHIDKbQueueFirstPress[deviceIndex] = calloc(256, sizeof(double));
psychHIDKbQueueFirstRelease[deviceIndex] = calloc(256, sizeof(double));
psychHIDKbQueueLastPress[deviceIndex] = calloc(256, sizeof(double));
psychHIDKbQueueLastRelease[deviceIndex] = calloc(256, sizeof(double));
psychHIDKbQueueScanKeys[deviceIndex] = calloc(256, sizeof(int));
memset(&psychHIDKbQueueOldEvent[deviceIndex], 0, sizeof(psychHIDKbQueueOldEvent[deviceIndex]));
// Assign scanKeys vector, if any:
if (scanKeys) {
// Copy it:
memcpy(psychHIDKbQueueScanKeys[deviceIndex], scanKeys, 256 * sizeof(int));
} else {
// None provided. Enable all keys by default:
memset(psychHIDKbQueueScanKeys[deviceIndex], 1, 256 * sizeof(int));
}
// Store how many valuators we should return at most for this device:
psychHIDKbQueueNumValuators[deviceIndex] = numValuators;
// Store queue specific flags:
psychHIDKbQueueFlags[deviceIndex] = flags;
// Store associated X-Window handle, or zero for unspecified:
psychHIDKbQueueXWindow[deviceIndex] = (unsigned int) windowHandle;
if (x_inputMethod == NULL) {
// Create an input method and context in the currently set locale
// for use in translation to the currently set keyboard layout. This
// is used for the event.CookedKey of returned keyboard queue events.
if (!XSupportsLocale()) {
// Failed. Maybe this is the latest Matlab compatibility bug, introduced past R2022b, first
// noticed in R2023b on Ubuntu 20.04-LTS and in Ubuntu 22.04. The override libX11.so libraries
// provided/enforced by Matlab have a buggy locale search path encoded which is incompatible
// with at least Debian/Ubuntu distributions, so functions like XSetLocaleModifiers() and
// XOpenIM() fail due to not finding the config files for locales. Try to set an override
// locale directory path via XLOCALEDIR env variable which is at least correct for Ubuntu,
// then retry. If XLOCALEDIR is already set by the user to something then we skip the override:
if (!getenv("XLOCALEDIR")) {
// XLOCALEDIR not yet set. Set it to a Debian/Ubuntu compatible setting as a workaround.
// This at least worked to fix Matlab R2023b bugs on Ubuntu 20.04.6-LTS and 22.04.3-LTS:
setenv("XLOCALEDIR", "/usr/share/X11/locale/", 0);
// Workaround worked?
if (!XSupportsLocale()) {
if (!oneTimeWarningDone) {
printf("PsychHID-WARNING: International keyboard handling may be broken due to a misconfiguration of\n");
printf("PsychHID-WARNING: your system, or a Matlab bug, known to be present in at least Matlab R2023b.\n");
printf("PsychHID-WARNING: My automatic workaround of setting the XLOCALEDIR environment variable to the\n");
printf("PsychHID-WARNING: path '/usr/share/X11/locale/' did not fix the problem. Maybe troubleshoot yourself?\n");
}
}
}
else if (strcmp(getenv("XLOCALEDIR"), "/usr/share/X11/locale/") && !oneTimeWarningDone) {
// XLOCALEDIR already set, but not by us from a previous PsychHID invocation to our preferred
// setting for workaround on Ubuntu. Instead some user or 3rd party code seems to have selected
// some different override setting. Clearly this did not make things work, or maybe even broke
// them. Tell user about this potential cause of trouble:
printf("PsychHID-WARNING: The XLOCALEDIR environment variable is set to an unusual path, which is at least\n");
printf("PsychHID-WARNING: unusual or potentially troublesome with Ubuntu 20.04-LTS and later. The setting is:\n");
printf("PsychHID-WARNING: %s\n", getenv("XLOCALEDIR"));
printf("PsychHID-WARNING: International keyboard handling seems to not work. Maybe this XLOCALEDIR setting\n");
printf("PsychHID-WARNING: is the reason for the failure, and you may want to troubleshoot that?\n");
printf("PsychHID-WARNING: A good setting for Ubuntu 20.04 / 22.04 would be '/usr/share/X11/locale/'\n");
}
}
// Try to use env setting for locale modifiers:
XSetLocaleModifiers("");
x_inputMethod = XOpenIM(thread_dpy, NULL, NULL, NULL);
if (!x_inputMethod) {
// Fallback to internal settings:
XSetLocaleModifiers("@im=none");
x_inputMethod = XOpenIM(thread_dpy, NULL, NULL, NULL);
}
if (!x_inputMethod) {
if (!oneTimeWarningDone)
printf("PsychHID-WARNING: Failed to setup international keyboard handling due to failed input method creation.\n");
}
else {
x_inputContext = XCreateIC(x_inputMethod, XNInputStyle, XIMPreeditNone | XIMStatusNone, NULL);
if (!x_inputContext) {
if (!oneTimeWarningDone)
printf("PsychHID-WARNING: Failed to setup international keyboard handling due to failed input context creation.\n");
}
else {
XSetICFocus(x_inputContext);
}
}
if (!x_inputContext && !oneTimeWarningDone) {
printf("PsychHID-WARNING: Only US keyboard layouts will be mapped properly due to this failure for GetChar() et al.\n");
printf("PsychHID-WARNING: This is a one time warning that won't repeat until you call 'clear all' or 'clear PsychHID'.\n");
oneTimeWarningDone = TRUE;
}
}
// Create event buffer:
if (!PsychHIDCreateEventBuffer(deviceIndex, numValuators, numSlots)) {
PsychHIDOSKbQueueRelease(deviceIndex);
PsychErrorExitMsg(PsychError_system, "Failed to create keyboard queue due to out of memory condition.");
}
// Ready to use this keybord queue.
return(PsychError_none);
}
void PsychHIDOSKbQueueRelease(int deviceIndex)
{
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
}
if ((deviceIndex < 0) || (deviceIndex >= ndevices)) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No such device!");
}
// Keyboard queue for this deviceIndex already exists?
if (NULL == psychHIDKbQueueFirstPress[deviceIndex]) {
// No. Nothing to do then.
return;
}
// Ok, we have a keyboard queue. Stop any operation on it first:
PsychHIDOSKbQueueStop(deviceIndex);
// Release its data structures:
free(psychHIDKbQueueFirstPress[deviceIndex]); psychHIDKbQueueFirstPress[deviceIndex] = NULL;
free(psychHIDKbQueueFirstRelease[deviceIndex]); psychHIDKbQueueFirstRelease[deviceIndex] = NULL;
free(psychHIDKbQueueLastPress[deviceIndex]); psychHIDKbQueueLastPress[deviceIndex] = NULL;
free(psychHIDKbQueueLastRelease[deviceIndex]); psychHIDKbQueueLastRelease[deviceIndex] = NULL;
free(psychHIDKbQueueScanKeys[deviceIndex]); psychHIDKbQueueScanKeys[deviceIndex] = NULL;
// Release kbqueue event buffer:
PsychHIDDeleteEventBuffer(deviceIndex);
// Done.
return;
}
static void SingleXSelectEvents(XIEventMask *pemask, int deviceIndex, Window xwindow)
{
Status rc;
// Always grab a touch device for our exclusive use:
if (XIMaskIsSet(pemask->mask, XI_TouchBegin) || XIMaskIsSet(pemask->mask, XI_RawTouchBegin)) {
if (Success != (rc = XIGrabDevice(thread_dpy, pemask->deviceid, xwindow, CurrentTime, None, XIGrabModeAsync, XIGrabModeAsync, True, pemask)))
printf("PsychHID-WARNING: KbQueueStart: Failed to grab touch input device %i with xinput device id %i for window %i: %s.\n",
deviceIndex, pemask->deviceid, (int) xwindow,
(rc == AlreadyGrabbed || rc == GrabFrozen) ? "Already grabbed by another application" :
(rc == GrabNotViewable) ? "Window not viewable" : "Unknown error");
}
else {
// No touch device -> No exclusive grab:
XISelectEvents(thread_dpy, xwindow, pemask, 1);
}
}
// Helper: Set same event mask for all root windows of all x-screens for a server:
static void MultiXISelectEvents(XIEventMask *pemask, int deviceIndex, Window xwindow)
{
int i;
// xwindow zero ==> Apply to all X-Screens:
if (xwindow == (Window) 0) {
for (i = 0; i < ScreenCount(thread_dpy); i++)
SingleXSelectEvents(pemask, deviceIndex, RootWindow(thread_dpy, i));
}
else if (xwindow <= (Window) ScreenCount(thread_dpy)) {
// xwindow = [1 ; X-Screencount] ==> Apply to xwindow'th X-Screen:
SingleXSelectEvents(pemask, deviceIndex, RootWindow(thread_dpy, ((int) xwindow) - 1));
}
else
// Apply to specified xwindow handle:
SingleXSelectEvents(pemask, deviceIndex, xwindow);
}
void PsychHIDOSKbQueueStop(int deviceIndex)
{
psych_bool queueActive;
int i;
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
}
if ((deviceIndex < 0) || (deviceIndex >= ndevices)) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No such device!");
}
// Keyboard queue for this deviceIndex already exists?
if (NULL == psychHIDKbQueueFirstPress[deviceIndex]) {
// No. Bad bad...
printf("PsychHID-ERROR: Tried to stop processing on non-existent keyboard queue for deviceIndex %i! Call KbQueueCreate first!\n", deviceIndex);
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No queue for that device yet!");
}
// Keyboard queue already stopped?
if (!psychHIDKbQueueActive[deviceIndex]) return;
// Queue is active. Stop it:
PsychLockMutex(&KbQueueMutex);
// Setup event mask, so events from our associated xinput device
// do not reach our event queue:
XIEventMask emask;
unsigned char mask[(XI_LASTEVENT + 7)/8];
// Clear the event mask. That should to the trick:
memset(mask, 0, sizeof(mask));
emask.deviceid = info[deviceIndex].deviceid;
emask.mask_len = sizeof(mask);
emask.mask = mask;
MultiXISelectEvents(&emask, deviceIndex, psychHIDKbQueueXWindow[deviceIndex]);
XFlush(thread_dpy);
// Mark queue logically stopped:
psychHIDKbQueueActive[deviceIndex] = FALSE;
PsychUnlockMutex(&KbQueueMutex);
// Was this the last active queue?
queueActive = FALSE;
for (i = 0; i < PSYCH_HID_MAX_DEVICES; i++) {
queueActive |= psychHIDKbQueueActive[i];
}
// If more queues are active then we're done:
if (queueActive) return;
// No more active queues. Shutdown the common processing thread:
PsychLockMutex(&KbQueueMutex);
KbQueueThreadTerminate = TRUE;
// Send some event to unblock the thread:
XKeyEvent event;
event.display = thread_dpy;
event.window = DefaultRootWindow(thread_dpy);
event.root = DefaultRootWindow(thread_dpy);
event.subwindow = None;
event.time = CurrentTime;
event.x = 1;
event.y = 1;
event.x_root = 1;
event.y_root = 1;
event.same_screen = TRUE;
event.type = KeyRelease;
event.keycode = 0;
event.state = 0;
// printf("DEBUG: Sending termination fake event...\n"); fflush(NULL);
XSelectInput(event.display, event.window, KeyReleaseMask);
XFlush(thread_dpy);
XSendEvent(event.display, event.window, TRUE, KeyReleaseMask, (XEvent *) &event);
XFlush(thread_dpy);
// printf("DEBUG: DONE.\n"); fflush(NULL);
// Release grabbed touch input device:
if ((psychHIDKbQueueNumValuators[deviceIndex] >= 4) && (PsychHIDIsTouchDevice(deviceIndex, NULL) >= 0))
XIUngrabDevice(thread_dpy, info[deviceIndex].deviceid, CurrentTime);
// Done.
PsychUnlockMutex(&KbQueueMutex);
// Shutdown the thread, wait for its termination:
PsychDeleteThread(&KbQueueThread);
KbQueueThreadTerminate = FALSE;
// printf("DEBUG: THREAD JOINED.\n"); fflush(NULL);
return;
}
void PsychHIDOSKbQueueStart(int deviceIndex)
{
psych_bool queueActive;
int i;
int numValuators;
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
}
if ((deviceIndex < 0) || (deviceIndex >= ndevices)) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No such device!");
}
// Does Keyboard queue for this deviceIndex already exist?
if (NULL == psychHIDKbQueueFirstPress[deviceIndex]) {
// No. Bad bad...
printf("PsychHID-ERROR: Tried to start processing on non-existent keyboard queue for deviceIndex %i! Call KbQueueCreate first!\n", deviceIndex);
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No queue for that device yet!");
}
// Keyboard queue already stopped? Then we ain't nothing to do:
if (psychHIDKbQueueActive[deviceIndex]) return;
// Queue is inactive. Start it:
// Will this be the first active queue, ie., aren't there any queues running so far?
queueActive = FALSE;
for (i = 0; i < PSYCH_HID_MAX_DEVICES; i++) {
queueActive |= psychHIDKbQueueActive[i];
}
PsychLockMutex(&KbQueueMutex);
// No other queues running yet? Then we need to create a clean slate for the
// to be freshly (re-)started X event processing:
if (!queueActive) {
// Note: This tries to address a potential race condition that could happen during a
// previous PsychHIDOSKbQueueStop() cycle, when the X-Server would enqueue new X-Events
// while we are already in shutdown, so the KbQueueThread would terminate before it can
// dequeue and discard those fresh events in the X event queue. User action / input,
// KbQueueProcessEvents() execution and call of KbQueueStop by user script would have
// to happen in just the right order within a small (< 1 msecs?) time window for this
// spillover to happen, but it is not impossible. This will hopefully help against the
// spillover problem reported in forum message #23899 when using a touch screen.
//
// Drain our X event queue from possible stale events from previous runs of keyboard queues:
while (XCheckTypedEvent(thread_dpy, GenericEvent, &KbQueue_xevent))
PsychYieldIntervalSeconds(0.001);
}
// Clear out current state for this queue:
memset(psychHIDKbQueueFirstPress[deviceIndex] , 0, (256 * sizeof(double)));
memset(psychHIDKbQueueFirstRelease[deviceIndex] , 0, (256 * sizeof(double)));
memset(psychHIDKbQueueLastPress[deviceIndex] , 0, (256 * sizeof(double)));
memset(psychHIDKbQueueLastRelease[deviceIndex] , 0, (256 * sizeof(double)));
numValuators = psychHIDKbQueueNumValuators[deviceIndex];
// Setup event mask, so events from our associated xinput device
// get enqueued in our event queue:
XIEventMask emask;
unsigned char mask[(XI_LASTEVENT + 7)/8];
memset(mask, 0, sizeof(mask));
XISetMask(mask, XI_KeyPress);
XISetMask(mask, XI_KeyRelease);
// For mouse, joystick, gamepad and other "keyboardish" devices with buttons:
XISetMask(mask, XI_RawButtonPress);
XISetMask(mask, XI_RawButtonRelease);
// Report motion events on pointing devices (mouse, trackpad etc.) if requested:
// Queue flags +4 select for raw motion events, which don't go through pointer acceleration and other preprocessing:
if ((numValuators >= 2) && (info[deviceIndex].use == XIMasterPointer || info[deviceIndex].use == XISlavePointer || info[deviceIndex].use == XIFloatingSlave))
XISetMask(mask, (psychHIDKbQueueFlags[deviceIndex] & 0x4) ? XI_RawMotion : XI_Motion);
// XInput version 2.2+ supported, and this device (Multi-)touch enabled?
if ((numValuators >= 4) && (PsychHIDIsTouchDevice(deviceIndex, NULL) >= 0)) {
// Due to what i suppose are X-Server bugs in touch-handling, normal touch
// events don't work well at all on multi-X-Screen setups! The first (primary)
// touch gets totally misscaled and wraps around -- some screwup in coordinate
// transformations or state handling. This as of at least X-Server 1.19.6.
//
// Work around this: For single X-Screen setups, use regular touch events.
// For multi X-Screen setups, use raw touch events instead, which behave more
// reasonable, but have their own share of bugs -- easier managable bugs though...
if (ScreenCount(thread_dpy) == 1) {
// Single X-Screen: Regular touch events:
XISetMask(mask, XI_TouchBegin);
XISetMask(mask, XI_TouchUpdate);
XISetMask(mask, XI_TouchEnd);
}
else {
// Multi X-Screen: Raw events:
XISetMask(mask, XI_RawTouchBegin);
XISetMask(mask, XI_RawTouchUpdate);
XISetMask(mask, XI_RawTouchEnd);
}
// Always request this, although it only seems to work for regular events,
// and our touch sequence loss reporting is currently disabled due to its
// own share of flaws...
XISetMask(mask, XI_TouchOwnership);
}
emask.deviceid = info[deviceIndex].deviceid;
emask.mask_len = sizeof(mask);
emask.mask = mask;
MultiXISelectEvents(&emask, deviceIndex, psychHIDKbQueueXWindow[deviceIndex]);
XFlush(thread_dpy);
// Mark this queue as logically started:
psychHIDKbQueueActive[deviceIndex] = TRUE;
// Queue started.
PsychUnlockMutex(&KbQueueMutex);
// If other queues are already active then we're done:
if (queueActive) return;
// No other active queues. We are the first one.
// Start the common processing thread for all queues:
PsychLockMutex(&KbQueueMutex);
KbQueueThreadTerminate = FALSE;
if (PsychCreateThread(&KbQueueThread, NULL, KbQueueWorkerThreadMain, NULL)) {
// We are soo screwed:
// Cleanup the mess:
psychHIDKbQueueActive[deviceIndex] = FALSE;
PsychUnlockMutex(&KbQueueMutex);
// Whine a little bit:
printf("PsychHID-ERROR: Start of keyboard queue processing failed!\n");
PsychErrorExitMsg(PsychError_system, "Creation of keyboard queue background processing thread failed!");
}
// Up and running, we're done!
PsychUnlockMutex(&KbQueueMutex);
return;
}
void PsychHIDOSKbQueueFlush(int deviceIndex)
{
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
}
if ((deviceIndex < 0) || (deviceIndex >= ndevices)) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No such device!");
}
// Does Keyboard queue for this deviceIndex already exist?
if (NULL == psychHIDKbQueueFirstPress[deviceIndex]) {
// No. Bad bad...
printf("PsychHID-ERROR: Tried to flush non-existent keyboard queue for deviceIndex %i! Call KbQueueCreate first!\n", deviceIndex);
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No queue for that device yet!");
}
// Clear out current state for this queue:
PsychLockMutex(&KbQueueMutex);
memset(psychHIDKbQueueFirstPress[deviceIndex] , 0, (256 * sizeof(double)));
memset(psychHIDKbQueueFirstRelease[deviceIndex] , 0, (256 * sizeof(double)));
memset(psychHIDKbQueueLastPress[deviceIndex] , 0, (256 * sizeof(double)));
memset(psychHIDKbQueueLastRelease[deviceIndex] , 0, (256 * sizeof(double)));
PsychUnlockMutex(&KbQueueMutex);
return;
}
void PsychHIDOSKbQueueCheck(int deviceIndex)
{
double *hasKeyBeenDownOutput, *firstPressTimeOutput, *firstReleaseTimeOutput, *lastPressTimeOutput, *lastReleaseTimeOutput;
psych_bool isFirstPressSpecified, isFirstReleaseSpecified, isLastPressSpecified, isLastReleaseSpecified;
int i;
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
}
if ((deviceIndex < 0) || (deviceIndex >= ndevices)) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No such device!");
}
// Does Keyboard queue for this deviceIndex already exist?
if (NULL == psychHIDKbQueueFirstPress[deviceIndex]) {
// No. Bad bad...
printf("PsychHID-ERROR: Tried to check non-existent keyboard queue for deviceIndex %i! Call KbQueueCreate first!\n", deviceIndex);
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No queue for that device yet!");
}
// Allocate output
PsychAllocOutDoubleArg(1, FALSE, &hasKeyBeenDownOutput);
isFirstPressSpecified = PsychAllocOutDoubleMatArg(2, FALSE, 1, 256, 1, &firstPressTimeOutput);
isFirstReleaseSpecified = PsychAllocOutDoubleMatArg(3, FALSE, 1, 256, 1, &firstReleaseTimeOutput);
isLastPressSpecified = PsychAllocOutDoubleMatArg(4, FALSE, 1, 256, 1, &lastPressTimeOutput);
isLastReleaseSpecified = PsychAllocOutDoubleMatArg(5, FALSE, 1, 256, 1, &lastReleaseTimeOutput);
// Initialize output
if(isFirstPressSpecified) memset((void*) firstPressTimeOutput, 0, sizeof(double) * 256);
if(isFirstReleaseSpecified) memset((void*) firstReleaseTimeOutput, 0, sizeof(double) * 256);
if(isLastPressSpecified) memset((void*) lastPressTimeOutput, 0, sizeof(double) * 256);
if(isLastReleaseSpecified) memset((void*) lastReleaseTimeOutput, 0, sizeof(double) * 256);
*hasKeyBeenDownOutput=0;
// Compute and assign output:
PsychLockMutex(&KbQueueMutex);
for (i = 0; i < 256; i++) {
double lastRelease = psychHIDKbQueueLastRelease[deviceIndex][i];
double lastPress = psychHIDKbQueueLastPress[deviceIndex][i];
double firstRelease = psychHIDKbQueueFirstRelease[deviceIndex][i];
double firstPress = psychHIDKbQueueFirstPress[deviceIndex][i];
if (firstPress) {
*hasKeyBeenDownOutput=1;
if(isFirstPressSpecified) firstPressTimeOutput[i] = firstPress;
psychHIDKbQueueFirstPress[deviceIndex][i] = 0;
}
if (firstRelease) {
if(isFirstReleaseSpecified) firstReleaseTimeOutput[i] = firstRelease;
psychHIDKbQueueFirstRelease[deviceIndex][i] = 0;
}
if (lastPress) {
if(isLastPressSpecified) lastPressTimeOutput[i] = lastPress;
psychHIDKbQueueLastPress[deviceIndex][i] = 0;
}
if (lastRelease) {
if(isLastReleaseSpecified) lastReleaseTimeOutput[i] = lastRelease;
psychHIDKbQueueLastRelease[deviceIndex][i] = 0;
}
}
PsychUnlockMutex(&KbQueueMutex);
return;
}
void PsychHIDOSKbTriggerWait(int deviceIndex, int numScankeys, int* scanKeys)
{
int keyMask[256];
int i;
double t, tc;
if (deviceIndex < 0) {
deviceIndex = PsychHIDGetDefaultKbQueueDevice();
// Ok, deviceIndex now contains our default keyboard to use - The first suitable keyboard.
}
if ((deviceIndex < 0) || (deviceIndex >= ndevices)) {
// Out of range index:
PsychErrorExitMsg(PsychError_user, "Invalid keyboard 'deviceIndex' specified. No such device!");
}
if(psychHIDKbQueueFirstPress[deviceIndex]) PsychErrorExitMsg(PsychError_user, "A queue for this device is already running, you must call KbQueueRelease() before invoking KbTriggerWait.");
// Create a keyboard queue for this deviceIndex:
memset(&keyMask[0], 0, sizeof(keyMask));
for (i = 0; i < numScankeys; i++) {
if (scanKeys[i] < 1 || scanKeys[i] > 256) PsychErrorExitMsg(PsychError_user, "Invalid entry for triggerKey specified. Not in valid range 1 - 256!");
keyMask[scanKeys[i] - 1] = 1;
}
// Create keyboard queue with proper mask:
PsychHIDOSKbQueueCreate(deviceIndex, 256, &keyMask[0], 0, 0, 0, 0);
PsychHIDOSKbQueueStart(deviceIndex);
PsychLockMutex(&KbQueueMutex);
// Scan for trigger key:
while (1) {
// Wait until something changes in a keyboard queue:
PsychWaitCondition(&KbQueueCondition, &KbQueueMutex);
// Check if our queue had one of the dedicated trigger keys pressed:
for (i = 0; i < numScankeys; i++) {
// Break out of scan loop if key pressed:
if (psychHIDKbQueueFirstPress[deviceIndex][scanKeys[i] - 1] != 0) break;
}
// Triggerkey pressed?
if ((i < numScankeys) && (psychHIDKbQueueFirstPress[deviceIndex][scanKeys[i] - 1] != 0)) break;
// No change for our trigger keys. Repeat scan loop.
}
// If we reach this point, we know some triggerkey has been pressed. As we aborted
// the scan on detection of the first pressed key, we can't be certain we caught the
// key with the earliest key press, maybe one of the untested keys was pressed even
// earlier. Therefore do another pass over all keys to find the pressed one with the
// earliest (minimum) pressed time:
t = DBL_MAX;
for (i = 0; i < numScankeys; i++) {
tc = psychHIDKbQueueFirstPress[deviceIndex][scanKeys[i] - 1];
if ((tc != 0) && (tc <= t)) t = tc;
}
// Done. Release the lock:
PsychUnlockMutex(&KbQueueMutex);
// Stop and release the queue:
PsychHIDOSKbQueueStop(deviceIndex);
PsychHIDOSKbQueueRelease(deviceIndex);
// Return timestamp:
PsychCopyOutDoubleArg(1, FALSE, t);
return;
}
|