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
|
#define PERL_NO_GET_CONTEXT
#include "EXTERN.h"
#include "perl.h"
#include "XSUB.h"
#include "ppport.h"
#include <GLFW/glfw3.h>
#include <stdio.h>
// AV index values for callbacks which are stored as an *AV
// in the GLFW user pointer. The first element of the array
// is used to hold the user pointer (a.k.a. perl user ref).
//
enum AVindex {
userpointer = 0,
charfun,
charmodsfun,
cursorenterfun,
cursorposfun,
dropfun,
framebuffersizefun,
keyfun,
mousebuttonfun,
scrollfun,
windowclosefun,
windowfocusfun,
windowiconifyfun,
windowposfun,
windowrefreshfun,
windowsizefun,
AVlen
};
static int done_non_void_callback_warn = 0;
void callback_warn(void) {
if (! done_non_void_callback_warn ) {
warn("Callback set in non-void context! Return values not implemented");
done_non_void_callback_warn++;
}
}
//----------------------------------------------------------------
// Global callbacks
//----------------------------------------------------------------
static SV * errorfunsv = (SV*) NULL;
void errorfun_callback(int error, const char* description)
{
dTHX;
dSP;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newSViv(error)));
XPUSHs(sv_2mortal(newSVpv(description, 0)));
PUTBACK;
if ( SvOK(errorfunsv) ) {
call_sv(errorfunsv, G_VOID);
}
SPAGAIN;
FREETMPS;
LEAVE;
}
static SV * monitorfunsv = (SV*) NULL;
void monitorfun_callback(GLFWmonitor* monitor, int event)
{
dTHX;
dSP;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(monitor)))));
XPUSHs(sv_2mortal(newSViv(event)));
PUTBACK;
if ( SvOK(monitorfunsv) ) {
call_sv(monitorfunsv, G_VOID);
}
SPAGAIN;
FREETMPS;
LEAVE;
}
static SV * joystickfunsv = (SV*) NULL;
void joystickfun_callback(int joy_id, int event)
{
dTHX;
dSP;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newSViv(joy_id)));
XPUSHs(sv_2mortal(newSViv(event)));
PUTBACK;
if ( SvOK(joystickfunsv) ) {
call_sv(joystickfunsv, G_VOID);
}
SPAGAIN;
FREETMPS;
LEAVE;
}
//----------------------------------------------------------------
// Per-window callbacks
//
// The per-window callbacks are stored in a perl array
// whose reference is kept in the User Pointer.
//----------------------------------------------------------------
// (* GLFWcharfun)(GLFWwindow*,unsigned int);
void charfun_callback (GLFWwindow* window, unsigned int codepoint)
{
dTHX;
dSP;
AV* winav;
int cvind = charfun;
SV** fetchval;
SV* charfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("charfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("charfun_callback: winav[charfun] is NULL");
charfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSVuv(codepoint)));
PUTBACK;
call_sv(charfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWcharmodsfun)(GLFWwindow*,unsigned int,int);
void charmodsfun_callback (GLFWwindow* window, unsigned int codepoint, int mods)
{
dTHX;
dSP;
AV* winav;
int cvind = charmodsfun;
SV** fetchval;
SV* charmodsfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("charmodsfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("charmodsfun_callback: winav[charmodsfun] is NULL");
charmodsfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSVuv(codepoint)));
XPUSHs(sv_2mortal(newSViv(mods)));
PUTBACK;
call_sv(charmodsfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWcursorenterfun)(GLFWwindow*,int);
void cursorenterfun_callback (GLFWwindow* window, int entered)
{
dTHX;
dSP;
AV* winav;
int cvind = cursorenterfun;
SV** fetchval;
SV* cursorenterfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("cursorenterfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("cursorenterfun_callback: winav[cursorenterfun] is NULL");
cursorenterfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(entered)));
PUTBACK;
call_sv(cursorenterfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWcursorposfun)(GLFWwindow*,double,double);
void cursorposfun_callback (GLFWwindow* window, double xpos, double ypos)
{
dTHX;
dSP;
AV* winav;
int cvind = cursorposfun;
SV** fetchval;
SV* cursorposfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("cursorposfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("cursorposfun_callback: winav[cursorposfun] is NULL");
cursorposfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSVnv(xpos)));
XPUSHs(sv_2mortal(newSVnv(ypos)));
PUTBACK;
call_sv(cursorposfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWdropfun)(GLFWwindow*,int,const char**);
void dropfun_callback (GLFWwindow* window, int count, const char** paths)
{
dTHX;
dSP;
AV* winav;
int cvind = dropfun;
SV** fetchval;
SV* dropfunsv;
int npath;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("dropfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("dropfun_callback: winav[dropfun] is NULL");
dropfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
// XPUSHs(sv_2mortal(newSViv(count)));
for (npath=0; npath<count; npath++)
XPUSHs(sv_2mortal(newSVpv(paths[npath],0)));
PUTBACK;
call_sv(dropfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWframebuffersizefun)(GLFWwindow*,int,int);
void framebuffersizefun_callback (GLFWwindow* window, int width, int height)
{
dTHX;
dSP;
AV* winav;
int cvind = framebuffersizefun;
SV** fetchval;
SV* framebuffersizefunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("framebuffersizefun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("framebuffersizefun_callback: winav[framebuffersizefun] is NULL");
framebuffersizefunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(width)));
XPUSHs(sv_2mortal(newSViv(height)));
PUTBACK;
call_sv(framebuffersizefunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// void key_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
void keyfun_callback(GLFWwindow* window, int key, int scancode, int action, int mods)
{
dTHX;
dSP;
AV* winav;
int cvind = keyfun;
SV** fetchval;
SV* keyfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("keyfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("keyfun_callback: winav[keyfun] is NULL");
keyfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(key)));
XPUSHs(sv_2mortal(newSViv(scancode)));
XPUSHs(sv_2mortal(newSViv(action)));
XPUSHs(sv_2mortal(newSViv(mods)));
PUTBACK;
call_sv(keyfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWmousebuttonfun)(GLFWwindow*,int,int,int);
void mousebuttonfun_callback (GLFWwindow* window, int button, int action, int mods)
{
dTHX;
dSP;
AV* winav;
int cvind = mousebuttonfun;
SV** fetchval;
SV* mousebuttonfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("mousebuttonfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("mousebuttonfun_callback: winav[mousebuttonfun] is NULL");
mousebuttonfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(button)));
XPUSHs(sv_2mortal(newSViv(action)));
XPUSHs(sv_2mortal(newSViv(mods)));
PUTBACK;
call_sv(mousebuttonfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWscrollfun)(GLFWwindow*,double,double);
void scrollfun_callback (GLFWwindow* window, double xoffset, double yoffset)
{
dTHX;
dSP;
AV* winav;
int cvind = scrollfun;
SV** fetchval;
SV* scrollfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("scrollfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("scrollfun_callback: winav[scrollfun] is NULL");
scrollfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSVnv(xoffset)));
XPUSHs(sv_2mortal(newSVnv(yoffset)));
PUTBACK;
call_sv(scrollfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWwindowclosefun)(GLFWwindow*);
void windowclosefun_callback (GLFWwindow* window)
{
dTHX;
dSP;
AV* winav;
int cvind = windowclosefun;
SV** fetchval;
SV* windowclosefunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("windowclosefun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("windowclosefun_callback: winav[windowclosefun] is NULL");
windowclosefunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
PUTBACK;
call_sv(windowclosefunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWwindowfocusfun)(GLFWwindow*,int);
void windowfocusfun_callback (GLFWwindow* window, int focused)
{
dTHX;
dSP;
AV* winav;
int cvind = windowfocusfun;
SV** fetchval;
SV* windowfocusfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("windowfocusfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("windowfocusfun_callback: winav[windowfocusfun] is NULL");
windowfocusfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(focused)));
PUTBACK;
call_sv(windowfocusfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWwindowiconifyfun)(GLFWwindow*,int);
void windowiconifyfun_callback (GLFWwindow* window, int iconified)
{
dTHX;
dSP;
AV* winav;
int cvind = windowiconifyfun;
SV** fetchval;
SV* windowiconifyfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("windowiconifyfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("windowiconifyfun_callback: winav[windowiconifyfun] is NULL");
windowiconifyfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(iconified)));
PUTBACK;
call_sv(windowiconifyfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWwindowposfun)(GLFWwindow*,int,int);
void windowposfun_callback (GLFWwindow* window, int xpos, int ypos)
{
dTHX;
dSP;
AV* winav;
int cvind = windowposfun;
SV** fetchval;
SV* windowposfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("windowposfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("windowposfun_callback: winav[windowposfun] is NULL");
windowposfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(xpos)));
XPUSHs(sv_2mortal(newSViv(ypos)));
PUTBACK;
call_sv(windowposfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWwindowrefreshfun)(GLFWwindow*);
void windowrefreshfun_callback (GLFWwindow* window)
{
dTHX;
dSP;
AV* winav;
int cvind = windowrefreshfun;
SV** fetchval;
SV* windowrefreshfunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("windowrefreshfun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("windowrefreshfun_callback: winav[windowrefreshfun] is NULL");
windowrefreshfunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
PUTBACK;
call_sv(windowrefreshfunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
// (* GLFWwindowsizefun)(GLFWwindow*,int,int);
void windowsizefun_callback (GLFWwindow* window, int width, int height)
{
dTHX;
dSP;
AV* winav;
int cvind = windowsizefun;
SV** fetchval;
SV* windowsizefunsv;
winav = glfwGetWindowUserPointer(window);
if (winav == (AV*) NULL)
croak("windowsizefun_callback: winav is NULL");
fetchval = av_fetch(winav, cvind, 0);
if (! fetchval)
croak("windowsizefun_callback: winav[windowsizefun] is NULL");
windowsizefunsv = *fetchval;
ENTER;
SAVETMPS;
PUSHMARK(SP);
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(window)))));
XPUSHs(sv_2mortal(newSViv(width)));
XPUSHs(sv_2mortal(newSViv(height)));
PUTBACK;
call_sv(windowsizefunsv, G_VOID);
SPAGAIN;
FREETMPS;
LEAVE;
}
MODULE = OpenGL::GLFW PACKAGE = OpenGL::GLFW
#//----------------------------------------------------
#// Set Per-window callbacks
#//----------------------------------------------------
#// want SV*
void
glfwSetWindowPosCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWwindowposfun fpstatus;
void * upoint;
int cvind = windowposfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,windowposfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper windowposfun callback
fpstatus = glfwSetWindowPosCallback(window, windowposfun_callback);
#// want SV*
void
glfwSetWindowSizeCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWwindowsizefun fpstatus;
void * upoint;
int cvind = windowsizefun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,windowsizefun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper windowsizefun callback
fpstatus = glfwSetWindowSizeCallback(window, windowsizefun_callback);
#// want SV*
void
glfwSetWindowCloseCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWwindowclosefun fpstatus;
void * upoint;
int cvind = windowclosefun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,windowclosefun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper windowclosefun callback
fpstatus = glfwSetWindowCloseCallback(window, windowclosefun_callback);
#// want SV*
void
glfwSetWindowRefreshCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWwindowrefreshfun fpstatus;
void * upoint;
int cvind = windowrefreshfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,windowrefreshfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper windowrefreshfun callback
fpstatus = glfwSetWindowRefreshCallback(window, windowrefreshfun_callback);
#// want SV*
void
glfwSetWindowFocusCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWwindowfocusfun fpstatus;
void * upoint;
int cvind = windowfocusfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,windowfocusfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper windowfocusfun callback
fpstatus = glfwSetWindowFocusCallback(window, windowfocusfun_callback);
#// want SV*
void
glfwSetWindowIconifyCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWwindowiconifyfun fpstatus;
void * upoint;
int cvind = windowiconifyfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,windowiconifyfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper windowiconifyfun callback
fpstatus = glfwSetWindowIconifyCallback(window, windowiconifyfun_callback);
#// want SV*
void
glfwSetFramebufferSizeCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWframebuffersizefun fpstatus;
void * upoint;
int cvind = framebuffersizefun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,framebuffersizefun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper framebuffersizefun callback
fpstatus = glfwSetFramebufferSizeCallback(window, framebuffersizefun_callback);
#// want SV*
void
glfwSetKeyCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWkeyfun fpstatus;
void * upoint;
int cvind = keyfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,keyfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper keyfun callback
fpstatus = glfwSetKeyCallback(window, keyfun_callback);
#// want SV*
void
glfwSetCharCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWcharfun fpstatus;
void * upoint;
int cvind = charfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,charfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper charfun callback
fpstatus = glfwSetCharCallback(window, charfun_callback);
#// want SV*
void
glfwSetCharModsCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWcharmodsfun fpstatus;
void * upoint;
int cvind = charmodsfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,charmodsfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper charmodsfun callback
fpstatus = glfwSetCharModsCallback(window, charmodsfun_callback);
#// want SV*
void
glfwSetMouseButtonCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWmousebuttonfun fpstatus;
void * upoint;
int cvind = mousebuttonfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,mousebuttonfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper mousebuttonfun callback
fpstatus = glfwSetMouseButtonCallback(window, mousebuttonfun_callback);
#// want SV*
void
glfwSetCursorPosCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWcursorposfun fpstatus;
void * upoint;
int cvind = cursorposfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,cursorposfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper cursorposfun callback
fpstatus = glfwSetCursorPosCallback(window, cursorposfun_callback);
#// want SV*
void
glfwSetCursorEnterCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWcursorenterfun fpstatus;
void * upoint;
int cvind = cursorenterfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,cursorenterfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper cursorenterfun callback
fpstatus = glfwSetCursorEnterCallback(window, cursorenterfun_callback);
#// want SV*
void
glfwSetScrollCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWscrollfun fpstatus;
void * upoint;
int cvind = scrollfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,scrollfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper scrollfun callback
fpstatus = glfwSetScrollCallback(window, scrollfun_callback);
#// want SV*
void
glfwSetDropCallback(window, cbfun);
GLFWwindow* window
SV * cbfun
CODE:
GLFWdropfun fpstatus;
void * upoint;
int cvind = dropfun;
int i;
SV** fetchval;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (NULL == av_store((AV*)upoint,dropfun,SvREFCNT_inc(cbfun)))
SvREFCNT_dec(cbfun);
// Enable the C wrapper dropfun callback
fpstatus = glfwSetDropCallback(window, dropfun_callback);
#//----------------------------------------------------
#// Set Global callbacks
#//----------------------------------------------------
#// want to return SV*
void
glfwSetErrorCallback(cbfun)
SV * cbfun
CODE:
GLFWerrorfun fpstatus;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
//
// Need to fix return of previous CV
// which was causing a segfault in re.pl
//
if (errorfunsv == (SV*) NULL) {
errorfunsv = newSVsv(cbfun);
} else {
SvSetSV(errorfunsv, cbfun);
}
// Enable the C wrapper errorfun callback
fpstatus = glfwSetErrorCallback(errorfun_callback);
#// want to return SV*
void
glfwSetMonitorCallback(cbfun)
SV * cbfun
CODE:
GLFWmonitorfun fpstatus;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Need to fix return of previous CV
// which was causing a segfault in re.pl
//
if (monitorfunsv == (SV*) NULL) {
monitorfunsv = newSVsv(cbfun);
} else {
SvSetSV(monitorfunsv, cbfun);
}
// Enable the C wrapper errorfun callback
fpstatus = glfwSetMonitorCallback(monitorfun_callback);
#// want to return SV*
void
glfwSetJoystickCallback(cbfun)
SV * cbfun
CODE:
GLFWjoystickfun fpstatus;
// Warn if used in non-void context
if (GIMME_V != G_VOID) callback_warn();
// Need to fix return of previous CV
// which was causing a segfault in re.pl
//
if (joystickfunsv == (SV*) NULL) {
joystickfunsv = newSVsv(cbfun);
} else {
SvSetSV(joystickfunsv, cbfun);
}
// Enable the C wrapper errorfun callback
fpstatus = glfwSetJoystickCallback(joystickfun_callback);
#//-------------------------------------------------------------------
#// Uses GLFWimage
#//-------------------------------------------------------------------
#// void
#// glfwSetWindowIcon(GLFWwindow* window, int count, const GLFWimage* images);
void
glfwSetWindowIcon(GLFWwindow* window, ...);
PREINIT:
GLFWimage* imgstruct;
GLFWimage* images[10];
SV * image;
HV * imghv;
SV** svp;
int width, height, n, numimages;
unsigned char* pixels;
CODE:
// printf("glfwSetWindowIcon got %d items\n", items);
if (items == 1) {
glfwSetWindowIcon(window, 0, NULL);
} else if (1 < items && items < 10) {
// loop over input image structure hashes
// to generate in input images array for
// the call to glfwSetWindowIcon().
//
numimages = items - 1;
New(0, imgstruct, numimages*sizeof(GLFWimage), GLFWimage);
SAVEFREEPV(imgstruct);
for (n=0; n<numimages; n++) {
image = ST(n+1);
if ( SvROK(image) && SvTYPE(SvRV(image))==SVt_PVHV) {
imghv = (HV *)SvRV(image);
if (svp = hv_fetch(imghv, "width", 5, 0))
(imgstruct+n)->width = width = SvIV(*svp);
if (svp = hv_fetch(imghv, "height", 6, 0))
(imgstruct+n)->height = height = SvIV(*svp);
if (svp = hv_fetch(imghv, "pixels", 6, 0))
(imgstruct+n)->pixels = pixels = (unsigned char *)SvPV_nolen(*svp);
images[n] = imgstruct+n;
} else {
croak("Invalid image argument type\n");
}
}
// for (n=0; n<numimages; n++) {
// printf("images[%d].width = %d\n", n, images[n]->width);
// printf("images[%d].height = %d\n", n, images[n]->height);
// printf("images[%d].pixels = %p\n", n, images[n]->pixels);
// }
glfwSetWindowIcon(window, numimages, *images);
} else if (items > 10) {
croak("glfwSetWindowIcon got too many images (max is 10)\n");
}
#//-------------------------------------------------------------------
#// GLFWcursor routines
#//-------------------------------------------------------------------
#// GLFWcursor*
#// glfwCreateCursor(const GLFWimage* image, int xhot, int yhot);
GLFWcursor*
glfwCreateCursor(SV* image, int xhot, int yhot);
PREINIT:
GLFWimage imgstruct;
HV * imghv;
SV** svp;
int width, height;
unsigned char* pixels;
CODE:
if ( SvROK(image) && SvTYPE(SvRV(image))==SVt_PVHV) {
imghv = (HV *)SvRV(image);
}
if (svp = hv_fetch(imghv, "width", 5, 0))
imgstruct.width = width = SvIV(*svp);
if (svp = hv_fetch(imghv, "height", 6, 0))
imgstruct.height = height = SvIV(*svp);
if (svp = hv_fetch(imghv, "pixels", 6, 0))
imgstruct.pixels = pixels = (unsigned char *)SvPV_nolen(*svp);
RETVAL = glfwCreateCursor(&imgstruct, xhot, yhot);
OUTPUT:
RETVAL
GLFWcursor*
glfwCreateStandardCursor(int shape);
void
glfwDestroyCursor(GLFWcursor* cursor);
void
glfwSetCursor(GLFWwindow* window, GLFWcursor* cursor);
#//-------------------------------------------------------------------
#// GLFWmonitor routines
#//-------------------------------------------------------------------
GLFWmonitor*
glfwGetPrimaryMonitor();
#// GLFWmonitor**
#// glfwGetMonitors(OUTLIST int count);
void
glfwGetMonitors();
PREINIT:
GLFWmonitor** monitors = NULL;
int n, count;
PPCODE:
monitors = glfwGetMonitors(&count);
printf("glfwGetMonitors() returns %d values\n",count);
for (n=0; n<count; n++)
XPUSHs(sv_2mortal(newRV_noinc(newSViv(PTR2IV(monitors+n)))));
const char*
glfwGetMonitorName(GLFWmonitor* monitor);
void
glfwGetMonitorPhysicalSize(GLFWmonitor* monitor, OUTLIST int widthMM, OUTLIST int heightMM);
void
glfwGetMonitorPos(GLFWmonitor* monitor, OUTLIST int xpos, OUTLIST int ypos);
void
glfwGetMonitorWorkarea(GLFWmonitor* monitor, OUTLIST int xpos, OUTLIST int ypos, OUTLIST int width, OUTLIST int height);
void
glfwSetGamma(GLFWmonitor* monitor, float gamma);
#// const GLFWgammaramp*
HV*
glfwGetGammaRamp(GLFWmonitor* monitor);
PREINIT:
HV * hash;
const GLFWgammaramp * gramp = NULL;
CODE:
// get video mode
gramp = glfwGetGammaRamp(monitor);
if (!gramp) croak("null pointer as GLFWgammaramp");
// pack gammaramp into hash
hash = (HV*)sv_2mortal((SV*)newHV());
hv_store(hash, "size", 4, newSViv(gramp->size), 0); // implict
hv_store(hash, "red", 3, newSVpvn((char*)gramp->red, 2*gramp->size), 0);
hv_store(hash, "green", 5, newSVpvn((char*)gramp->green,2*gramp->size), 0);
hv_store(hash, "blue", 4, newSVpvn((char*)gramp->blue, 2*gramp->size), 0);
// return hash reference
RETVAL = hash;
OUTPUT:
RETVAL
#// void
#// glfwSetGammaRamp(GLFWmonitor* monitor, const GLFWgammaramp* ramp);
void
glfwSetGammaRamp(GLFWmonitor* monitor, SV* ramp);
PREINIT:
GLFWgammaramp rampstruct;
HV * ramphv;
SV** svp;
int size;
CODE:
if ( SvROK(ramp) && SvTYPE(SvRV(ramp))==SVt_PVHV) {
ramphv = (HV *)SvRV(ramp);
}
if (svp = hv_fetch(ramphv, "size", 4, 0))
rampstruct.size = size = SvIV(*svp);
if (svp = hv_fetch(ramphv, "red", 3, 0))
rampstruct.red = (unsigned short *)SvPV_nolen(*svp);
if (svp = hv_fetch(ramphv, "green", 5, 0))
rampstruct.green = (unsigned short *)SvPV_nolen(*svp);
if (svp = hv_fetch(ramphv, "blue", 4, 0))
rampstruct.blue = (unsigned short *)SvPV_nolen(*svp);
glfwSetGammaRamp(monitor,&rampstruct);
#// const GLFWvidmode*
HV*
glfwGetVideoMode(GLFWmonitor* monitor);
PREINIT:
HV * hash;
const GLFWvidmode* vidm = NULL;
CODE:
// get video mode
vidm = glfwGetVideoMode(monitor);
if (!vidm) croak("null pointer as GLFWvidmode");
// pack vidmode into hash
hash = (HV*)sv_2mortal((SV*)newHV());
hv_store(hash, "width", 5, newSViv(vidm->width), 0);
hv_store(hash, "height", 6, newSViv(vidm->height), 0);
hv_store(hash, "redBits", 7, newSViv(vidm->redBits), 0);
hv_store(hash, "greenBits", 9, newSViv(vidm->greenBits), 0);
hv_store(hash, "blueBits", 8, newSViv(vidm->blueBits), 0);
hv_store(hash, "refreshRate", 11, newSViv(vidm->refreshRate), 0);
// return hash reference
RETVAL = hash;
OUTPUT:
RETVAL
#// const GLFWvidmode*
void
glfwGetVideoModes(GLFWmonitor* monitor);
PREINIT:
HV * hash;
const GLFWvidmode* vidms = NULL;
int nmodes = -1;
int n;
PPCODE:
// get video modes
vidms = glfwGetVideoModes(monitor,&nmodes);
if (!vidms) croak("null pointer as GLFWvidmode-s");
if (nmodes <= 0) croak("no GLFWvidmode-s returned");
for (n=0; n<nmodes; n++) {
// pack vidmode into hash
hash = (HV*)sv_2mortal((SV*)newHV());
hv_store(hash, "width", 5, newSViv((vidms+n)->width), 0);
hv_store(hash, "height", 6, newSViv((vidms+n)->height), 0);
hv_store(hash, "redBits", 7, newSViv((vidms+n)->redBits), 0);
hv_store(hash, "greenBits", 9, newSViv((vidms+n)->greenBits), 0);
hv_store(hash, "blueBits", 8, newSViv((vidms+n)->blueBits), 0);
hv_store(hash, "refreshRate", 11, newSViv((vidms+n)->refreshRate), 0);
// push onto output stack
XPUSHs( newRV_noinc((SV*)hash) );
}
#//-------------------------------------------------------------------
#// GLFWmonitor with GLFWwindow routines
#//-------------------------------------------------------------------
GLFWmonitor*
glfwGetWindowMonitor(GLFWwindow* window);
GLFWwindow*
glfwCreateWindow(int width, int height, const char* title, GLFWmonitor* monitor, GLFWwindow* share);
void
glfwSetWindowMonitor(GLFWwindow* window, GLFWmonitor* monitor, int xpos, int ypos, int width, int height, int refreshRate);
#//-------------------------------------------------------------------
#// GLFWwindow routines
#//-------------------------------------------------------------------
GLFWwindow*
glfwGetCurrentContext();
int
glfwGetInputMode(GLFWwindow* window, int mode);
int
glfwGetKey(GLFWwindow* window, int key);
int
glfwGetMouseButton(GLFWwindow* window, int button);
int
glfwGetWindowAttrib(GLFWwindow* window, int attrib);
int
glfwWindowShouldClose(GLFWwindow* window);
void
glfwDestroyWindow(GLFWwindow* window);
void
glfwFocusWindow(GLFWwindow* window);
const char*
glfwGetClipboardString(GLFWwindow* window);
void
glfwGetCursorPos(GLFWwindow* window, OUTLIST double xpos, OUTLIST double ypos);
void
glfwGetFramebufferSize(GLFWwindow* window, OUTLIST int width, OUTLIST int height);
void
glfwGetWindowFrameSize(GLFWwindow* window, OUTLIST int left, OUTLIST int top, OUTLIST int right, OUTLIST int bottom);
void
glfwGetWindowPos(GLFWwindow* window, OUTLIST int xpos, OUTLIST int ypos);
void
glfwGetWindowSize(GLFWwindow* window, OUTLIST int width, OUTLIST int height);
void
glfwHideWindow(GLFWwindow* window);
void
glfwIconifyWindow(GLFWwindow* window);
void
glfwMakeContextCurrent(GLFWwindow* window);
void
glfwMaximizeWindow(GLFWwindow* window);
void
glfwRestoreWindow(GLFWwindow* window);
void
glfwSetClipboardString(GLFWwindow* window, const char* string);
void
glfwSetCursorPos(GLFWwindow* window, double xpos, double ypos);
void
glfwSetInputMode(GLFWwindow* window, int mode, int value);
void
glfwSetWindowAspectRatio(GLFWwindow* window, int numer, int denom);
void
glfwSetWindowPos(GLFWwindow* window, int xpos, int ypos);
void
glfwSetWindowShouldClose(GLFWwindow* window, int value);
void
glfwSetWindowSize(GLFWwindow* window, int width, int height);
void
glfwSetWindowSizeLimits(GLFWwindow* window, int minwidth, int minheight, int maxwidth, int maxheight);
void
glfwSetWindowTitle(GLFWwindow* window, const char* title);
void
glfwSetWindowUserPointer(GLFWwindow* window, SV* reference);
PREINIT:
void* upoint;
int i;
CODE:
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
}
if (!SvROK(reference))
croak("glfwSetWindowUserPointer: pointer must be a perl reference\n");
av_store((AV*)upoint,userpointer,newSVsv(reference));
void
glfwShowWindow(GLFWwindow* window);
void
glfwSwapBuffers(GLFWwindow* window);
SV*
glfwGetWindowUserPointer(GLFWwindow* window);
PREINIT:
SV* upoint;
SV** sav;
int i;
CODE:
// Get user pointer
upoint = glfwGetWindowUserPointer(window);
if (NULL == upoint) {
upoint = (SV *)newAV();
av_fill((AV*)upoint,AVlen);
for (i=0; i<AVlen; i++)
av_store((AV*)upoint,i,&PL_sv_undef);
glfwSetWindowUserPointer(window,upoint);
RETVAL = &PL_sv_undef;
} else {
sav = av_fetch((AV*)upoint,userpointer,0);
RETVAL = newSVsv(*sav);
}
OUTPUT:
RETVAL
#//-------------------------------------------------------------------
#// Standard types routines
#//-------------------------------------------------------------------
void
glfwDefaultWindowHints();
void
glfwGetVersion(OUTLIST int major, OUTLIST int minor, OUTLIST int rev);
void
glfwPollEvents();
void
glfwPostEmptyEvent();
void
glfwSetTime(double time);
void
glfwSwapInterval(int interval);
void
glfwTerminate();
void
glfwWaitEvents();
void
glfwWaitEventsTimeout(double timeout);
void
glfwWindowHint(int hint, int value);
const char*
glfwGetJoystickName(int joy);
const char*
glfwGetKeyName(int key, int scancode);
const char*
glfwGetVersionString();
#// const float*
#// glfwGetJoystickAxes(int joy, OUTLIST int count);
void
glfwGetJoystickAxes(int joy);
PREINIT:
const float* axes = NULL;
int n, count;
PPCODE:
axes = glfwGetJoystickAxes(joy,&count);
printf("glfwGetJoystickAxes() returns %d values\n",count);
for (n=0; n<count; n++)
XPUSHs(sv_2mortal(newSVnv(*(axes+n))));
#// const unsigned char*
#// glfwGetJoystickButtons(int joy, OUTLIST int count);
void
glfwGetJoystickButtons(int joy);
PREINIT:
const unsigned char* buttons = NULL;
int n, count;
PPCODE:
buttons = glfwGetJoystickButtons(joy,&count);
printf("glfwGetJoystickButtons() returns %d values\n",count);
for (n=0; n<count; n++)
XPUSHs(sv_2mortal(newSViv(*(buttons+n))));
int
glfwInit();
int
glfwJoystickPresent(int joy);
double
glfwGetTime();
uint64_t
glfwGetTimerFrequency();
uint64_t
glfwGetTimerValue();
#if (GLFW_VERSION_MAJOR*10000 + GLFW_VERSION_MINOR*100) >= 30300
void
glfwRequestWindowAttention(GLFWwindow* window);
#endif
#if (GLFW_VERSION_MAJOR*10000 + GLFW_VERSION_MINOR*100) >= 30400
int
glfwPlatformSupported(int platform);
int
glfwGetPlatform();
#endif
void
glfwGetError();
PREINIT:
int errcode;
char* description;
PPCODE:
errcode = glfwGetError((const char**)&description);
EXTEND(SP, 2);
PUSHs(sv_2mortal(newSViv(errcode)));
PUSHs(!description ? &PL_sv_undef : sv_2mortal(newSVpv(description, 0)));
void
glfwInitHint(int hint, int value);
#//-------------------------------------------------------------------
#// OpenGL not supported (use GLEW)
#//-------------------------------------------------------------------
int
glfwExtensionSupported(const char* extension);
CODE:
croak("glfwExtensionSupported not implemented (use glewIsSupported)");
void
glfwGetProcAddress(const char* procname);
CODE:
croak("glfwGetProcAddress not implemented (use GLEW)");
#//-------------------------------------------------------------------
#// Vulkan not supported
#//-------------------------------------------------------------------
int
glfwVulkanSupported();
CODE:
RETVAL = 0;
OUTPUT:
RETVAL
void
glfwGetRequiredInstanceExtensions(...)
CODE:
croak("No Vulkan Support: glfwGetRequiredInstanceExtensions not implemented!");
void
glfwGetInstanceProcAddress(...)
CODE:
croak("No Vulkan Support: glfwGetInstanceProcAddress not implemented!");
void
glfwGetPhysicalDevicePresentationSupport(...)
CODE:
croak("No Vulkan Support: glfwGetPhysicalDevicePresentationSupport not implemented!");
void
glfwCreateWindowSurface(...)
CODE:
croak("No Vulkan Support: glfwCreateWindowSurface not implemented!");
|