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 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971
|
// $Id: yascreen.c,v 2.11 2026/03/14 22:06:37 bbonev Exp $
//
// Copyright © 2015-2026 Boian Bonev (bbonev@ipacct.com) {{{
//
// SPDX-License-Identifer: LGPL-3.0-or-later
//
// This file is part of yascreen - yet another screen library.
//
// yascreen is free software, released under the terms of GNU Lesser General Public License v3.0 or later
// }}}
// {{{ includes
#ifndef _GNU_SOURCE
#define _GNU_SOURCE
#endif
#ifndef _DEFAULT_SOURCE
#define _DEFAULT_SOURCE
#endif
#include <time.h>
#include <wchar.h>
#include <stdio.h>
#include <stdarg.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include <termios.h>
#include <sys/time.h>
#include <sys/ioctl.h>
#include <yascreen.h>
// }}}
// {{{ definitions
#define mymax(a,b) (((a)>(b))?(a):(b))
#define mymin(a,b) (((a)<(b))?(a):(b))
#define ESC "\x1b"
// size of string that can be stored immediately w/o allocation
#define PSIZE (sizeof(char *))
// step to allocate key buffer
#define KEYSTEP (4096/sizeof(int))
// default timeout in milliseconds before escape is returned
#define YAS_DEFAULT_ESCTO 300
// check if a given value is a valid simple color value
#define YAS_ISCOLOR(c) ((c)>=8&&(c)<=15)
// check if a given value is a valid extended color value
#define YAS_ISXCOLOR(c) ((c)&0x100)
#define YAS_STORAGE 0x80000000 // data is longer than PSIZE and is stored in allocated memory
#define YAS_TOUCHED 0x40000000 // there are changes in this line, update cannot skip it
#define YAS_INTERNAL (YAS_STORAGE|YAS_TOUCHED)
#define TELNET_EOSN 240 // 0xf0 // end of subnegotiation
#define TELNET_NOP 241 // 0xf1 // NOP
#define TELNET_SYNCH 242 // 0xf2 // SYNCH
#define TELNET_NVTBRK 243 //0xf3 // NVTBRK
#define TELNET_IP 244 // 0xf4 // IP
#define TELNET_AO 245 // 0xf5 // AO
#define TELNET_AYT 246 //0xf6 // AYT are you there
#define TELNET_EC 247 // 0xf7 // EC
#define TELNET_EL 248 // 0xf8 // EL
#define TELNET_GOA 249 // 0xf9 // go ahead
#define TELNET_SOSN 250 // 0xfa // start of subnegotiation
#define TELNET_WILL 251 // 0xfb // will
#define TELNET_WONT 252 // 0xfc // wont
#define TELNET_DO 253 // 0xfd // do
#define TELNET_DONT 254 // 0xfe // dont
#define TELNET_IAC 255 // 0xff // telnet protocol escape code (IAC)
#define TELNET_NOOP 0x100 // telnet protocol handler have eaten a byte w/o yielding any result
#define TELNET_SIZE 0x101 // telnet protocol handler have detected screen size change notification
#define TELNET_NAWS 31 // 0x1f // negotiate about window size
// data is kept as utf8, including its combining chars
// if it fits in PSZIE, it is in d, with 0 terminating char
// if the char at previous position requires 2 columns, current char should be empty
// after initialization all chars are set to ' ' (0x20)
typedef struct _cell {
uint32_t style; // color, style and storage type
union {
char *p;
char d[PSIZE];
};
} cell;
typedef enum { // ansi sequence state machine
ST_NORM, // normal input, check for ESC
ST_ENTER, // eat LF/NUL after CR
ST_ESC, // escape sequence
ST_ESC_SQ, // escape [ sequence
ST_ESC_SQ_D, // escape [ digit sequence
ST_ESC_O, // escape O sequence
ST_ESC_ESC, // escape escape sequence
} yas_k_state;
typedef enum { // telnet sequence state machine
T_NORM, // expect regular byte or IAC
T_IAC, // telnet IAC, expect option
T_IAC_O, // telnet IAC option, expect opt code
T_IAC_SB, // telnet IAC extended, expect IAC
T_IAC_SE, // telnet IAC extended, expect SE
} yas_t_state;
typedef enum { // utf8 sequence state machine
U_NORM, // expect single byte or leading byte
U_L2C1, // expect 1/1 continuation byte
U_L3C1, // expect 1/2 continuation bytes
U_L3C2, // expect 2/2 continuation bytes
U_L4C1, // expect 1/3 continuation bytes
U_L4C2, // expect 2/3 continuation bytes
U_L4C3, // expect 3/3 continuation bytes
U_L5C1, // expect 1/4 continuation bytes
U_L5C2, // expect 2/4 continuation bytes
U_L5C3, // expect 3/4 continuation bytes
U_L5C4, // expect 4/4 continuation bytes
U_L6C1, // expect 1/5 continuation bytes
U_L6C2, // expect 2/5 continuation bytes
U_L6C3, // expect 3/5 continuation bytes
U_L6C4, // expect 4/5 continuation bytes
U_L6C5, // expect 5/5 continuation bytes
} yas_u_state;
struct _yascreen {
int sx,sy; // size of screen
ssize_t (*outcb)(yascreen *s,const void *data,size_t len); // output callback
cell *mem; // memory state
cell *scr; // screen state
struct termios *tsstack; // saved terminal state
int tssize; // number of items in the stack
int escto; // single ESC key timeout (in milliseconds)
int keysize; // saved key storage size
int keycnt; // saved key count
int *keys; // saved key array
unsigned char ansibuf[21]; // buffer for escape sequence parsing
unsigned char ansipos; // next byte will go in this pos
unsigned char sosnbuf[20]; // buffer for telnet SOSN options parsing
unsigned char sosnpos; // next byte will go in this pos
unsigned char utf[3]; // buffer for utf8 sequence parsing; last byte is not put here, its never zero terminated
// must be increased to 4 or 5 if some day unicode permits 5 or 6 byte sequences
int64_t escts; // single ESC key timestamp
yas_k_state state; // input parser state
yas_t_state tstate; // telnet parser state
yas_u_state ustate; // utf8 parser state
int cursorx; // position to place cursor on update
int cursory; // position to place cursor on update
int scrx; // last reported screen size
int scry; // last reported screen size
uint8_t haveansi:1; // we do have a reported screen size from ansi sequence
uint8_t havenaws:1; // we do have a reported screen size from telent naws
uint8_t istelnet:1; // do process telnet sequences
uint8_t isunicode:1; // do process unicode sequences
uint8_t cursor:1; // last cursor state
uint8_t redraw:1; // flag to redraw from scratch
uint8_t lineflush:1; // always flush after line operations
int hint; // user defined hint (scalar)
void *phint; // user defined hint (pointer)
uint8_t outb[256]; // buffered output
uint16_t outp; // position in outb
};
// helpers for versioned symbols
#if YASCREEN_VERSIONED // implementation always follows the attribute
#if defined __GNUC__ && __GNUC__ >= 10 && !defined(__clang__)
#define symver_o(impl,sym,ver) __attribute__((symver(#sym"@"#ver)))
#define symver_d(impl,sym,ver) __attribute__((symver(#sym"@@"#ver)))
#else
#define symver_o(impl,sym,ver) asm(".symver "#impl","#sym"@"#ver);
#define symver_d(impl,sym,ver) asm(".symver "#impl","#sym"@@"#ver);
#endif
#define VV(foo,ver) foo##ver
#define V(foo,ver) VV(foo,ver)
#define V193 _193
#else
#define symver_o(impl,sym,ver)
#define symver_d(impl,sym,ver)
#define V(foo,ver) foo
#define V193
#endif
#define symver_V(impl,sym,ver) symver_d(impl,sym,ver)
#define YASCREEN_193 YASCREEN_1.93
// }}}
static inline int64_t mytime() { // {{{
struct timespec ts;
int64_t res;
clock_gettime(CLOCK_MONOTONIC,&ts);
res=ts.tv_sec*1000;
res+=ts.tv_nsec/1000000;
return res;
} // }}}
static inline ssize_t out(yascreen *s,const void *vbuf,size_t len) { // {{{
const uint8_t *buf=vbuf;
size_t olen=len;
repeat:
if (len) {
if (sizeof s->outb-s->outp>=len) {
memcpy(s->outb+s->outp,buf,len);
s->outp+=len;
} else {
size_t brem=sizeof s->outb-s->outp;
ssize_t wr;
memcpy(s->outb+s->outp,buf,brem);
s->outp+=brem;
buf+=brem;
len-=brem;
wr=write(STDOUT_FILENO,s->outb,s->outp);
if (wr<=0) // error
return wr;
if (wr==s->outp) {
s->outp-=wr;
goto repeat;
}
// wr>0 and wr<s->outp
memmove(s->outb,s->outb+wr,s->outp-wr);
s->outp-=wr;
goto repeat;
}
}
if (!olen&&s->outp) { // flush is requested
ssize_t wr=write(STDOUT_FILENO,s->outb,s->outp);
if (wr==s->outp)
s->outp=0;
else
if (wr>0) {
memmove(s->outb,s->outb+wr,s->outp-wr);
s->outp-=wr;
}
}
return olen;
} // }}}
static inline void outs(yascreen *s,const char *str) { // {{{
ssize_t (*o)(yascreen *s,const void *buf,size_t len);
size_t len;
if (!s)
return;
if (!str)
return;
len=strlen(str);
o=s->outcb?s->outcb:out;
if (!len) // explicit flush
o(s,"",0);
while (len) {
ssize_t r=o(s,str,len);
if (r>=0) {
len-=r;
str+=r;
} else
break;
}
} // }}}
static inline int yascreen_vasprintf(yascreen *s,char **ps,const char *format,va_list ap) { // {{{
if (!s)
return -1;
if (!format)
return -1;
return vasprintf(ps,format,ap);
} // }}}
static inline void outf(yascreen *s,const char *format,...) __attribute__((format(printf,2,3))); // {{{
// }}}
static inline void outf(yascreen *s,const char *format,...) { // {{{
va_list ap;
char *ns;
int size;
va_start(ap,format);
size=yascreen_vasprintf(s,&ns,format,ap);
va_end(ap);
if (size==-1) // some error, nothing more to do
return;
outs(s,ns);
free(ns);
} // }}}
inline void yascreen_set_hint_i(yascreen *s,int hint) { // {{{
if (!s)
return;
s->hint=hint;
} // }}}
inline int yascreen_get_hint_i(yascreen *s) { // {{{
if (!s)
return 0;
return s->hint;
} // }}}
inline void yascreen_set_hint_p(yascreen *s,void *hint) { // {{{
if (!s)
return;
s->phint=hint;
} // }}}
inline void *yascreen_get_hint_p(yascreen *s) { // {{{
if (!s)
return NULL;
return s->phint;
} // }}}
static char myver[]="\0Yet another screen library (https://github.com/bbonev/yascreen) $Revision: 2.11 $\n\n"; // {{{
// }}}
inline const char *yascreen_ver(void) { // {{{
return myver;
} // }}}
static inline void yascreen_auto_size(yascreen *s,int *sx,int *sy) { // {{{
if (!sx||!sy)
return;
if (!*sx||!*sy)
if (!s->outcb&&isatty(STDOUT_FILENO)) {
struct winsize ws={0};
if (!ioctl(STDOUT_FILENO,TIOCGWINSZ,&ws)) {
if (!ws.ws_col)
ws.ws_col=80;
if (!ws.ws_row)
ws.ws_row=24;
if (!*sx)
*sx=ws.ws_col;
if (!*sy)
*sy=ws.ws_row;
} else {
if (!*sx)
*sx=80;
if (!*sy)
*sy=24;
}
}
} // }}}
static inline void yascreen_free_memcell(yascreen *s,size_t i) { // {{{
if (s->mem[i].style&YAS_STORAGE) {
free(s->mem[i].p);
s->mem[i].style&=~YAS_STORAGE;
}
} // }}}
static inline void yascreen_free_cell(yascreen *s,size_t i) { // {{{
yascreen_free_memcell(s,i);
if (s->scr[i].style&YAS_STORAGE) {
free(s->scr[i].p);
s->scr[i].style&=~YAS_STORAGE;
}
} // }}}
static inline void yascreen_empty_cell(yascreen *s,size_t i) { // {{{
s->mem[i].style=s->scr[i].style=0;
s->mem[i].d[0]=' ';
s->mem[i].d[1]=0;
s->scr[i].d[0]=0;
} // }}}
static inline void yascreen_free_empty_cell(yascreen *s,size_t i) { // {{{
yascreen_free_cell(s,i);
yascreen_empty_cell(s,i);
} // }}}
static inline void yascreen_free_dynamic(yascreen *s) { // {{{
if (s->mem)
free(s->mem);
if (s->scr)
free(s->scr);
if (s->tsstack)
free(s->tsstack);
if (s->keys)
free(s->keys);
} // }}}
inline yascreen *yascreen_init(int sx,int sy) { // {{{
yascreen *s;
size_t i;
if (myver[0]==0) { // reformat the static version string
char *rev=strstr(myver+1,"$Revision: ");
int vermaj,vermin;
if (rev) {
sscanf(rev+strlen("$Revision: "),"%d.%d",&vermaj,&vermin);
vermaj+=vermin/100;
vermin=vermin%100;
memmove(myver,myver+1,strlen(myver+1)+1);
snprintf(rev-1,sizeof myver-(rev-1-myver),"%d.%02d\n\n",vermaj,vermin);
}
}
if (sx<0||sy<0)
return NULL;
s=(yascreen *)calloc(1,sizeof *s);
if (!s)
return NULL;
if (/*!s->outcb&&*/isatty(STDOUT_FILENO)) { // output is a terminal
s->tsstack=(struct termios *)calloc(1,sizeof(struct termios));
if (!s->tsstack) {
free(s);
return NULL;
}
s->tssize=1;
tcgetattr(STDOUT_FILENO,s->tsstack);
yascreen_auto_size(s,&sx,&sy);
}
if (sx<=0||sy<=0) {
yascreen_free_dynamic(s);
free(s);
return NULL;
}
s->sx=sx;
s->sy=sy;
// s->outcb is already NULL
// s->mem is initialized below
// s->scr is initialized below
// s->tstack is initialized above
// s->tssize is initialized above
s->escto=YAS_DEFAULT_ESCTO;
// s->keysize is initialized below
// s->keycnt is already zero
// s->keys is initialized below
// s->ansibuf is already zeroes
// s->ansipos is already zero
// s->sosnbuf is already zeroes
// s->sosnpos is already zero
// s->utf is already zeroes
// s->escts is already zero
s->state=ST_NORM;
s->tstate=T_NORM;
s->ustate=U_NORM;
// s->cursorx is already zero
// s->cursory is already zero
// s->scrx is already zero
// s->scry is already zero
// s->haveansi is already zero
// s->havenaws is already zero
// s->istelnet is already zero
s->isunicode=1; // previous versions were unicode only
s->cursor=1; // cursor is visible by default
s->redraw=1; // leave scr empty, so that on first refresh everything is redrawn
s->lineflush=1; // be compatible with earlier versions that worked without output buffering normally a recent client will set this to 0 and use explicit flush
// s->hint is already zero
// s->phint is already NULL
// s->outb is already zeroes
// s->outp is already zero
s->keys=(int *)calloc(KEYSTEP,sizeof(int));
if (!s->keys) {
yascreen_free_dynamic(s);
free(s);
return NULL;
}
s->keysize=KEYSTEP;
s->mem=(cell *)calloc((size_t)sx*sy,sizeof(cell));
s->scr=(cell *)calloc((size_t)sx*sy,sizeof(cell));
if (!s->mem||!s->scr) {
yascreen_free_dynamic(s);
free(s);
return NULL;
}
for (i=0;i<(size_t)sx*sy;i++)
strncpy(s->mem[i].d," ",sizeof s->mem[i].d);
return s;
} // }}}
inline int yascreen_setout(yascreen *s,ssize_t (*out)(yascreen *s,const void *data,size_t len)) { // {{{
if (!s)
return -1;
s->outcb=out;
s->redraw=1;
return 0;
} // }}}
inline void yascreen_set_telnet(yascreen *s,int on) { // {{{
if (!s)
return;
s->istelnet=!!on;
} // }}}
inline void yascreen_set_unicode(yascreen *s,int on) { // {{{
if (!s)
return;
s->isunicode=!!on;
s->keycnt=0; // flush input buffer - it may not be verified unicode
} // }}}
inline void yascreen_init_telnet(yascreen *s) { // {{{
if (!s)
return;
if (s->istelnet)
outs(s,
"\xff\xfb\x03" // will(251) suppress go ahead
"\xff\xfb\x01" // will(251) echo
"\xff\xfd\x03" // do(253) suppress go ahead
"\xff\xfd\x01" // do(253) echo
"\xff\xfb\x1f" // will(251) negotiate terminal size
"\xff\xfd\x1f" // do(253) negotiate terminal size
);
else
outs(s,
"\xff\xfc\x03" // wont(251) suppress go ahead
"\xff\xfc\x01" // wont(251) echo
"\xff\xfe\x03" // dont(253) suppress go ahead
"\xff\xfe\x01" // dont(253) echo
"\xff\xfc\x1f" // wont(251) negotiate terminal size
"\xff\xfe\x1f" // dont(253) negotiate terminal size
);
} // }}}
inline int yascreen_resize(yascreen *s,int sx,int sy) { // {{{
cell *mem,*scr;
size_t i;
if (!s)
return -1;
if (sx<0||sy<0)
return -1;
yascreen_auto_size(s,&sx,&sy);
if (sx<=0||sy<=0)
return -1;
if (s->sx==sx&&s->sy==sy)
return 0;
for (i=0;i<(size_t)s->sx*s->sy;i++) // free old allocated data and set for reusage
if (i<(size_t)sx*sy)
yascreen_free_empty_cell(s,i);
else
yascreen_free_cell(s,i);
if ((size_t)sx*sy>(size_t)s->sx*s->sy) { // allocate bigger buffer
mem=(cell *)realloc(s->mem,(size_t)sx*sy*sizeof(cell));
if (!mem)
return -1;
s->mem=mem;
scr=(cell *)realloc(s->scr,(size_t)sx*sy*sizeof(cell));
if (!scr)
return -1;
s->scr=scr;
for (i=(size_t)s->sx*s->sy;i<(size_t)sx*sy;i++) // initialize the rest of the area
yascreen_empty_cell(s,i);
}
s->redraw=1;
s->sx=sx;
s->sy=sy;
return 0;
} // }}}
inline void yascreen_free(yascreen *s) { // {{{
size_t i;
if (!s)
return;
if (!s->mem||!s->scr) { // error condition that will happen only if mem is corrupt
yascreen_free_dynamic(s);
free(s); // most probably will crash, because there is no way to have s partally initialized
return;
}
for (i=0;i<(size_t)s->sx*s->sy;i++)
yascreen_free_cell(s,i);
yascreen_free_dynamic(s);
outs(s,ESC"[0m");
free(s);
} // }}}
inline void yascreen_update_attr(yascreen *s,uint32_t oattr,uint32_t nattr) { // {{{
if (!s)
return;
if (oattr==0xffffffff) {
oattr=~nattr; // force setting all
outs(s,ESC"[0m");
}
if ((oattr&YAS_BOLD)!=(nattr&YAS_BOLD))
outs(s,(nattr&YAS_BOLD)?ESC"[1m":ESC"[22m");
if ((oattr&YAS_ITALIC)!=(nattr&YAS_ITALIC))
outs(s,(nattr&YAS_ITALIC)?ESC"[3m":ESC"[23m");
if ((oattr&YAS_UNDERL)!=(nattr&YAS_UNDERL))
outs(s,(nattr&YAS_UNDERL)?ESC"[4m":ESC"[24m");
if ((oattr&YAS_BLINK)!=(nattr&YAS_BLINK))
outs(s,(nattr&YAS_BLINK)?ESC"[5m":ESC"[25m");
if ((oattr&YAS_INVERSE)!=(nattr&YAS_INVERSE))
outs(s,(nattr&YAS_INVERSE)?ESC"[7m":ESC"[27m");
if ((oattr&YAS_STRIKE)!=(nattr&YAS_STRIKE))
outs(s,(nattr&YAS_STRIKE)?ESC"[9m":ESC"[29m");
if (YAS_FG(oattr)!=YAS_FG(nattr)) {
if (YAS_ISXCOLOR(YAS_FG(nattr)))
outf(s,ESC"[38;5;%dm",YAS_FG(nattr)-0x100);
else {
if (YAS_ISCOLOR(YAS_FG(nattr)))
outf(s,ESC"[%dm",YAS_FG(nattr)-8+30);
else
outs(s,ESC"[39m");
}
}
if (YAS_BG(oattr)!=YAS_BG(nattr)) {
if (YAS_ISXCOLOR(YAS_BG(nattr)))
outf(s,ESC"[48;5;%dm",YAS_BG(nattr)-0x100);
else {
if (YAS_ISCOLOR(YAS_BG(nattr)))
outf(s,ESC"[%dm",YAS_BG(nattr)-8+40);
else
outs(s,ESC"[49m");
}
}
} // }}}
static inline int yascreen_update_range(yascreen *s,int y1,int y2) { // {{{
int i,j,ob=0,redraw=0;
char ra[]=ESC"[0m";
uint32_t lsty=0,nsty;
if (!s)
return -1;
if (s->redraw) {
redraw=1;
s->redraw=0;
outf(s,ESC"[2J"ESC"[H%s",ra); // clear and position on topleft
*ra=0;
}
y1=mymin(s->sy-1,mymax(0,y1));
y2=mymin(s->sy,mymax(0,y2));
for (j=y1;j<y2;j++) {
int skip=1,cnt=0;
if (!redraw&&!(s->mem[(size_t)s->sx*j].style&YAS_TOUCHED)) // skip untouched lines
continue;
s->mem[(size_t)s->sx*j].style&=~YAS_TOUCHED; // mark updated lines as not touched
for (i=0;i<s->sx;i++) {
int diff=redraw; // forced redraw
if (!diff) // compare attributes
diff=(s->mem[i+(size_t)s->sx*j].style&~YAS_INTERNAL)!=(s->scr[i+(size_t)s->sx*j].style&~YAS_INTERNAL);
if (!diff) // compare content
diff=!!strcmp((s->mem[i+(size_t)s->sx*j].style&YAS_STORAGE)?s->mem[i+(size_t)s->sx*j].p:s->mem[i+(size_t)s->sx*j].d,(s->scr[i+(size_t)s->sx*j].style&YAS_STORAGE)?s->scr[i+(size_t)s->sx*j].p:s->scr[i+(size_t)s->sx*j].d);
if (diff||!skip) {
if (skip) {
outf(s,ESC"[%d;%dH%s",1+j,1+i,ra);
*ra=0;
skip=0;
}
if (diff) {
if (cnt>7) {
outf(s,ESC"[%d;%dH%s",1+j,1+i,ra);
*ra=0;
cnt=0;
}
while (cnt>=0) {
nsty=s->mem[(size_t)j*s->sx+i-cnt].style&~YAS_INTERNAL;
if (lsty!=nsty) {
yascreen_update_attr(s,lsty,nsty);
lsty=nsty;
}
outs(s,(s->mem[(size_t)j*s->sx+i-cnt].style&YAS_STORAGE)?s->mem[(size_t)j*s->sx+i-cnt].p:s->mem[(size_t)j*s->sx+i-cnt].d);
cnt--;
}
cnt=0; // loop above leaves cnt at -1
} else
cnt++;
}
if (s->scr[(size_t)j*s->sx+i].style&YAS_STORAGE)
free(s->scr[(size_t)j*s->sx+i].p);
s->scr[(size_t)j*s->sx+i].style=s->mem[(size_t)j*s->sx+i].style;
if (s->mem[(size_t)j*s->sx+i].style&YAS_STORAGE) {
s->scr[(size_t)j*s->sx+i].p=strdup(s->mem[(size_t)j*s->sx+i].p);
if (!s->scr[(size_t)j*s->sx+i].p) { // make it empty in case of allocation failure
s->scr[(size_t)j*s->sx+i].style&=~YAS_STORAGE;
strcpy(s->scr[(size_t)j*s->sx+i].d," ");
}
} else
strncpy(s->scr[(size_t)j*s->sx+i].d,s->mem[(size_t)j*s->sx+i].d,sizeof s->scr[(size_t)j*s->sx+i].d);
}
}
if (s->cursor)
outf(s,ESC"[%d;%dH",s->cursory+1,s->cursorx+1);
outs(s,""); // request a flush
return ob;
} // }}}
inline int yascreen_update(yascreen *s) { // {{{
if (!s)
return -1;
return yascreen_update_range(s,0,s->sy);
} // }}}
static inline void yascreen_putcw(yascreen *s,uint32_t attr,const char *str,int width) { // {{{
if (!*str) // noop
return;
if (!str[1]) { // handle CR/LF
switch (*str) {
case '\n':
s->cursory++;
// fall through
case '\r':
s->cursorx=0;
return;
}
}
if (width<0) // non-printable character, skip
return;
if (s->cursory<0||s->cursory>=s->sy)
return;
if (width&&s->cursorx>=0&&s->cursorx<s->sx&&s->cursorx+width<=s->sx) {
int i;
// normal char
yascreen_free_memcell(s,s->cursorx+(size_t)s->cursory*s->sx);
if (strlen(str)<PSIZE) {
strncpy(s->mem[s->cursorx+(size_t)s->cursory*s->sx].d,str,sizeof s->mem[s->cursorx+(size_t)s->cursory*s->sx].d);
s->mem[s->cursorx+(size_t)s->cursory*s->sx].style=attr;
} else {
char *ts=strdup(str);
if (!ts)
return; // nothing more to do
s->mem[s->cursorx+(size_t)s->cursory*s->sx].p=ts;
s->mem[s->cursorx+(size_t)s->cursory*s->sx].style=YAS_STORAGE|attr;
}
s->mem[(size_t)s->cursory*s->sx].style|=YAS_TOUCHED;
s->cursorx++;
for (i=1;i<width;i++) {
if (s->cursorx<s->sx) {
yascreen_free_memcell(s,s->cursorx+(size_t)s->cursory*s->sx);
*s->mem[s->cursorx+(size_t)s->cursory*s->sx].d=0;
s->mem[s->cursorx+(size_t)s->cursory*s->sx].style=attr;
}
s->cursorx++;
}
return;
}
if (s->cursorx<0&&s->cursorx+width>=0) { // wide character spanning left bound
int x;
for (x=0;x<s->cursorx+width;x++) { // zap spanned chars
yascreen_free_memcell(s,x+(size_t)s->cursory*s->sx);
strncpy(s->mem[x+(size_t)s->cursory*s->sx].d,"<",sizeof s->mem[x+(size_t)s->cursory*s->sx].d);
s->mem[x+(size_t)s->cursory*s->sx].style=attr;
s->mem[(size_t)s->cursory*s->sx].style|=YAS_TOUCHED;
}
s->cursorx+=width;
return;
}
if (s->cursorx<0||s->cursorx>=s->sx) { // noop for characters out of screen
s->cursorx+=width;
return;
}
if (!width&&s->cursorx==0) // nowhere to append - noop
return;
if (!width&&s->cursorx>0&&s->cursorx<=s->sx) { // combining char, add to previous
int clen;
char *ts;
s->cursorx--;
clen=strlen((s->mem[s->cursorx+(size_t)s->cursory*s->sx].style&YAS_STORAGE)?s->mem[s->cursorx+(size_t)s->cursory*s->sx].p:s->mem[s->cursorx+(size_t)s->cursory*s->sx].d);
if (clen+strlen(str)<PSIZE) { // new fits, so current should fit too and don't have YAS_STORAGE
strncpy(s->mem[s->cursorx+(size_t)s->cursory*s->sx].d+clen,str,sizeof s->mem[s->cursorx+(size_t)s->cursory*s->sx].d-clen);
s->mem[s->cursorx+(size_t)s->cursory*s->sx].style=attr; // as a side effect combining chars set attr for main char
} else {
size_t tslen=clen+strlen(str)+1;
ts=malloc(tslen);
if (!ts) {
s->cursorx++;
return; // nothing more we could do
}
strcpy(ts,(s->mem[s->cursorx+(size_t)s->cursory*s->sx].style&YAS_STORAGE)?s->mem[s->cursorx+(size_t)s->cursory*s->sx].p:s->mem[s->cursorx+(size_t)s->cursory*s->sx].d);
strcat(ts,str);
if (s->mem[s->cursorx+(size_t)s->cursory*s->sx].style&YAS_STORAGE)
free(s->mem[s->cursorx+(size_t)s->cursory*s->sx].p);
s->mem[s->cursorx+(size_t)s->cursory*s->sx].p=ts;
s->mem[s->cursorx+(size_t)s->cursory*s->sx].style=attr|YAS_STORAGE;
}
s->mem[(size_t)s->cursory*s->sx].style|=YAS_TOUCHED;
s->cursorx++;
}
if (!width) // noop
return;
if (s->cursorx+width>s->sx) { // wide character spanning right bound
int x;
for (x=s->cursorx;x<s->sx;x++) { // zap spanned chars
yascreen_free_memcell(s,x+(size_t)s->cursory*s->sx);
strncpy(s->mem[x+(size_t)s->cursory*s->sx].d,">",sizeof s->mem[x+(size_t)s->cursory*s->sx].d);
s->mem[x+(size_t)s->cursory*s->sx].style=attr;
s->mem[(size_t)s->cursory*s->sx].style|=YAS_TOUCHED;
}
s->cursorx+=width;
return;
}
return;
} // }}}
inline int yascreen_putsxy(yascreen *s,int x,int y,uint32_t attr,const char *str) { // {{{
yas_u_state st=U_NORM;
char utf[5]; // 4 byte sequence + 1 for terminating 0
size_t i;
if (!s)
return EOF;
if (attr&YAS_INTERNAL)
return EOF;
s->cursorx=x; // set cursor position to whatever is requested
s->cursory=y;
if (x>=s->sx||y>=s->sy) {
s->cursorx=mymax(0,mymin(s->sx-1,s->cursorx)); // fixup position to be within screen
s->cursory=mymax(0,mymin(s->sy-1,s->cursory));
return 1; // somewhat successful print outside bounds
}
for (i=0;i<strlen(str);i++) {
switch (st) {
case U_NORM:
if (str[i]&0x80) {
if ((str[i]&0xc0)==0x80) // unexpected continuation byte
break;
startbyte:
if ((str[i]&0xe0)==0xc0) { // 2 byte seq
utf[0]=str[i];
st=U_L2C1;
break;
}
if ((str[i]&0xf0)==0xe0) { // 3 byte seq
utf[0]=str[i];
st=U_L3C1;
break;
}
if ((str[i]&0xf8)==0xf0) { // 4 byte seq
utf[0]=str[i];
st=U_L4C1;
break;
}
if ((str[i]&0xfc)==0xf8) { // 5 byte seq
//utf[0]=str[i];
st=U_L5C1;
break;
}
if ((str[i]&0xfe)==0xfc) { // 6 byte seq
//utf[0]=str[i];
st=U_L6C1;
break;
}
// pass 0xff and 0xfe - violates rfc
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
st=U_NORM; // in case we come from unexpected start byte
} else {
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
}
break;
case U_L2C1:
if ((str[i]&0xc0)==0x80) { // continuation byte
wchar_t wc;
utf[1]=str[i];
utf[2]=0;
wc=((utf[0]&0x1f)<<6)|(utf[1]&0x3f);
yascreen_putcw(s,attr,utf,wcwidth(wc));
st=U_NORM;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L3C1:
if ((str[i]&0xc0)==0x80) { // continuation byte
utf[1]=str[i];
st=U_L3C2;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L3C2:
if ((str[i]&0xc0)==0x80) { // continuation byte
wchar_t wc;
utf[2]=str[i];
utf[3]=0;
wc=((utf[0]&0x0f)<<12)|((utf[1]&0x3f)<<6)|(utf[2]&0x3f);
yascreen_putcw(s,attr,utf,wcwidth(wc));
st=U_NORM;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L4C1:
if ((str[i]&0xc0)==0x80) { // continuation byte
utf[1]=str[i];
st=U_L4C2;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L4C2:
if ((str[i]&0xc0)==0x80) { // continuation byte
utf[2]=str[i];
st=U_L4C3;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L4C3:
if ((str[i]&0xc0)==0x80) { // continuation byte
wchar_t wc;
utf[3]=str[i];
utf[4]=0;
wc=((utf[0]&0x07)<<18)|((utf[1]&0x3f)<<12)|((utf[2]&0x3f)<<6)|(utf[3]&0x3f);
yascreen_putcw(s,attr,utf,wcwidth(wc));
st=U_NORM;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L5C1:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[1]=str[i];
st=U_L5C2;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L5C2:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[2]=str[i];
st=U_L5C3;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L5C3:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[3]=str[i];
st=U_L5C4;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L5C4:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[4]=str[i];
//utf[5]=0;
// ignore char by rfc
st=U_NORM;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L6C1:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[1]=str[i];
st=U_L6C2;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L6C2:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[2]=str[i];
st=U_L6C3;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L6C3:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[3]=str[i];
st=U_L6C4;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L6C4:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[4]=str[i];
st=U_L6C5;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
case U_L6C5:
if ((str[i]&0xc0)==0x80) { // continuation byte
//utf[5]=str[i];
//utf[6]=0;
// ignore char by rfc
st=U_NORM;
break;
}
if (str[i]&0x80) // start another sequence
goto startbyte;
st=U_NORM; // normal byte kills current sequence and is processed
utf[0]=str[i];
utf[1]=0;
yascreen_putcw(s,attr,utf,1); // assume width 1
break;
}
}
s->cursorx=mymax(0,mymin(s->sx-1,s->cursorx)); // fixup position to be within screen
s->cursory=mymax(0,mymin(s->sy-1,s->cursory));
return 1;
} // }}}
inline int yascreen_putsxyu(yascreen *s,int x,int y,uint32_t attr,const char *str) { // {{{
int rv,ny;
if (!s)
return EOF;
rv=yascreen_putsxy(s,x,y,attr,str);
if (rv==EOF)
return rv;
ny=s->cursory;
yascreen_update_range(s,y,ny+1);
return rv;
} // }}}
inline int yascreen_printxy(yascreen *s,int x,int y,uint32_t attr,const char *format,...) { // {{{
va_list ap;
char *ns;
int size;
int rv;
va_start(ap,format);
size=yascreen_vasprintf(s,&ns,format,ap);
va_end(ap);
if (size==-1) // some error, nothing more to do
return size;
rv=yascreen_putsxy(s,x,y,attr,ns);
free(ns);
return rv;
} // }}}
inline int yascreen_printxyu(yascreen *s,int x,int y,uint32_t attr,const char *format,...) { // {{{
va_list ap;
char *ns;
int size;
int rv;
va_start(ap,format);
size=yascreen_vasprintf(s,&ns,format,ap);
va_end(ap);
if (size==-1) // some error, nothing more to do
return size;
rv=yascreen_putsxyu(s,x,y,attr,ns);
free(ns);
return rv;
} // }}}
inline int yascreen_write(yascreen *s,const char *str,int len) { // {{{
ssize_t (*o)(yascreen *s,const void *buf,size_t len);
int rv;
if (!s)
return -1;
if (!str)
return -1;
o=s->outcb?s->outcb:out;
rv=o(s,str,len);
if (s->lineflush)
outs(s,""); // request a flush
return rv;
} // }}}
inline int yascreen_puts(yascreen *s,const char *str) { // {{{
if (!s)
return -1;
if (!str)
return -1;
outs(s,str);
if (s->lineflush)
outs(s,""); // request a flush
return 1;
} // }}}
inline int yascreen_print(yascreen *s,const char *format,...) { // {{{
va_list ap;
char *ns;
int size;
int rv;
va_start(ap,format);
size=yascreen_vasprintf(s,&ns,format,ap);
va_end(ap);
if (size==-1) // some error, nothing more to do
return size;
rv=yascreen_puts(s,ns);
free(ns);
if (s->lineflush)
outs(s,""); // request a flush
return rv;
} // }}}
inline const char *yascreen_clearln_s(yascreen *s __attribute__((unused))) { // {{{
return ESC"[2K";
} // }}}
inline void yascreen_dump(yascreen *s) { // {{{
int i,j;
if (!s)
return;
printf("PSIZE: %zu\n",PSIZE);
for (j=0;j<s->sy;j++)
for (i=0;i<s->sx;i++)
printf("x: %3d y: %3d len: %3zu attr: %08x s: %s\n",i,j,strlen((s->mem[i+(size_t)s->sx*j].style&YAS_STORAGE)?s->mem[i+(size_t)s->sx*j].p:s->mem[i+(size_t)s->sx*j].d),s->mem[i+(size_t)s->sx*j].style,(s->mem[i+(size_t)s->sx*j].style&YAS_STORAGE)?s->mem[i+(size_t)s->sx*j].p:s->mem[i+(size_t)s->sx*j].d);
} // }}}
inline void yascreen_redraw(yascreen *s) { // {{{
if (!s)
return;
s->redraw=1;
} // }}}
inline void yascreen_cursor(yascreen *s,int on) { // {{{
if (!s)
return;
s->cursor=!!on;
if (on)
outs(s,ESC"[?25h"); // show cursor
else
outs(s,ESC"[?25l"); // hide cursor
if (s->lineflush)
outs(s,""); // request a flush
} // }}}
inline void yascreen_cursor_xy(yascreen *s,int x,int y) { // {{{
if (!s)
return;
s->cursorx=mymin(mymax(x,0),s->sx-1);
s->cursory=mymin(mymax(y,0),s->sy-1);
outf(s,ESC"[%d;%dH",s->cursory+1,s->cursorx+1);
if (s->lineflush)
outs(s,""); // request a flush
} // }}}
inline void yascreen_altbuf(yascreen *s,int on) { // {{{
if (!s)
return;
if (on)
outs(s,ESC"[?1049h"); // go to alternative buffer
else
outs(s,ESC"[?1049l"); // go back to normal buffer
if (s->lineflush)
outs(s,""); // request a flush
} // }}}
inline void yascreen_clear(yascreen *s) { // {{{
if (!s)
return;
outs(s,ESC"[0m"ESC"[2J"ESC"[H"); // reset attributes, clear screen and reset position
if (s->lineflush)
outs(s,""); // request a flush
} // }}}
inline void yascreen_clearln(yascreen *s) { // {{{
if (!s)
return;
outs(s,yascreen_clearln_s(s)); // clear line
if (s->lineflush)
outs(s,""); // request a flush
} // }}}
inline void yascreen_term_save(yascreen *s) { // {{{
if (!s)
return;
if (s->outcb)
return;
if (!isatty(STDOUT_FILENO))
return;
if (!s->tssize) { // no saved state, allocate new one
s->tsstack=(struct termios *)calloc(1,sizeof(struct termios));
if (!s->tsstack)
return;
s->tssize=1;
}
tcgetattr(STDOUT_FILENO,s->tsstack);
} // }}}
inline void yascreen_term_restore(yascreen *s) { // {{{
if (!s)
return;
if (s->outcb)
return;
if (!isatty(STDOUT_FILENO))
return;
if (!s->tssize) // no saved state
return;
outs(s,""); // request a flush
tcsetattr(STDOUT_FILENO,TCSANOW,s->tsstack);
} // }}}
inline void yascreen_term_push(yascreen *s) { // {{{
struct termios *t;
if (!s)
return;
if (s->outcb)
return;
if (!isatty(STDOUT_FILENO))
return;
t=(struct termios *)realloc(s->tsstack,(s->tssize+1)*sizeof(struct termios));
if (!t)
return;
s->tsstack=t;
s->tssize++;
memmove(s->tsstack+1,s->tsstack,(s->tssize-1)*sizeof(struct termios));
tcgetattr(STDOUT_FILENO,s->tsstack);
} // }}}
inline void yascreen_term_pop(yascreen *s) { // {{{
if (!s)
return;
if (s->outcb)
return;
if (!isatty(STDOUT_FILENO))
return;
if (!s->tssize)
return;
tcsetattr(STDOUT_FILENO,TCSANOW,s->tsstack);
if (s->tssize>1) {
memmove(s->tsstack,s->tsstack+1,(s->tssize-1)*sizeof(struct termios));
s->tssize--;
}
} // }}}
inline void yascreen_term_set(yascreen *s,int mode) { // {{{
struct termios t;
if (!s)
return;
if (s->outcb)
return;
if (!isatty(STDOUT_FILENO))
return;
// get the terminal state
tcgetattr(STDOUT_FILENO,&t);
// turn off canonical mode
if (mode&YAS_NOBUFF)
t.c_lflag&=~(ICANON|IEXTEN);
if (mode&YAS_NOSIGN)
t.c_lflag&=~(ISIG);
if (mode&YAS_NOECHO)
t.c_lflag&=~(ECHO);
// set input modes
t.c_iflag&=~(BRKINT|ICRNL|INPCK|ISTRIP|IXON);
// no post processing
t.c_oflag&=~(OPOST|ONLCR|OCRNL);
if (mode&YAS_ONLCR)
t.c_oflag|=ONLCR|OPOST;
// 8bit mode
t.c_cflag|=CS8;
// minimum of number input read.
t.c_cc[VMIN]=1;
// no timeout
t.c_cc[VTIME]=0;
tcsetattr(STDOUT_FILENO,TCSANOW,&t);
} // }}}
inline int yascreen_sx(yascreen *s) { // {{{
if (!s)
return -1;
return s->sx;
} // }}}
inline int yascreen_sy(yascreen *s) { // {{{
if (!s)
return -1;
return s->sy;
} // }}}
inline int yascreen_x(yascreen *s) { // {{{
if (!s)
return -1;
return s->cursorx;
} // }}}
inline int yascreen_y(yascreen *s) { // {{{
if (!s)
return -1;
return s->cursory;
} // }}}
inline void yascreen_ckto(yascreen *s) { // {{{
int64_t now;
if (!s)
return;
now=mytime();
if (s->state==ST_ESC&&s->ansipos==1&&s->escto&&s->escts+s->escto<now) {
s->ansipos=0;
s->state=ST_NORM;
yascreen_pushch(s,YAS_K_ESC);
}
if (s->state==ST_ESC_ESC&&s->ansipos==2&&s->escto&&s->escts+s->escto<now) {
s->ansipos=0;
s->state=ST_NORM;
yascreen_pushch(s,YAS_K_ESC); // return a double escape as a signle one, is that the proper way?
}
if ((s->state==ST_ESC||s->state==ST_ESC_ESC)&&s->escto&&s->escts+s->escto<now) {
s->ansipos=0;
s->state=ST_NORM; // ignore slow escape sequences
}
} // }}}
inline uint64_t yascreen_willto(yascreen *s) { // {{{
int64_t now;
if (!s)
return 0;
if (s->state!=ST_ESC||s->ansipos!=1||s->ansibuf[0]!=YAS_K_ESC||!s->escto)
return 0; // no timeout pending
now=mytime();
if (s->escts+s->escto<=now)
return 1; // timeout already expired
else
return s->escts+s->escto-now;
} // }}}
static inline int yascreen_feed_telnet(yascreen *s,unsigned char c) { // {{{
if (!s)
return TELNET_NOOP;
switch (s->tstate) {
case T_NORM:
if (c==TELNET_IAC) {
s->tstate=T_IAC;
return TELNET_NOOP;
} else
return c;
case T_IAC:
switch (c) { // naive, not so RFC compliant telnet protocol handling
default: // treat as 2 byte sequence
case TELNET_EOSN: // end of subnegotiation
case TELNET_NOP: // NOP
case TELNET_SYNCH: // SYNCH
case TELNET_NVTBRK: // NVT BRK
case TELNET_IP: // IP
case TELNET_AO: // AO
case TELNET_AYT: // AYT are you there
case TELNET_EC: // EC
case TELNET_EL: // EL
case TELNET_GOA: // go ahead
s->tstate=T_NORM;
return TELNET_NOOP;
case TELNET_SOSN: // start of subnegotiation
s->sosnpos=0;
s->tstate=T_IAC_SB;
return TELNET_NOOP;
case TELNET_WILL: // will
case TELNET_WONT: // wont
case TELNET_DO: // do
case TELNET_DONT: // dont
s->tstate=T_IAC_O; // treat as 3 bytes sequence
return TELNET_NOOP;
case TELNET_IAC: // escaped 255
s->tstate=T_NORM;
return TELNET_IAC;
}
break;
case T_IAC_O:
s->tstate=T_NORM;
return TELNET_NOOP;
case T_IAC_SB:
if (c==TELNET_IAC)
s->tstate=T_IAC_SE;
else
if (s->sosnpos<sizeof s->sosnbuf)
s->sosnbuf[s->sosnpos++]=c;
return TELNET_NOOP;
case T_IAC_SE:
switch (c) {
case TELNET_EOSN: // try to redetect terminal size
s->tstate=T_NORM;
if (s->sosnpos==5&&s->sosnbuf[0]==TELNET_NAWS) { // get terminal size from NAWS
uint16_t sx,sy;
sx=(s->sosnbuf[1]<<8)+s->sosnbuf[2];
sy=(s->sosnbuf[3]<<8)+s->sosnbuf[4];
if (sx>10&&sy>3&&sx<=999&&sy<=999) { // ignore non-sane values
s->scrx=sx;
s->scry=sy;
s->havenaws=1;
yascreen_pushch(s,YAS_SCREEN_SIZE);
return TELNET_NOOP;
}
}
// fallback to the old way of redetecting screen size via ansi
return TELNET_SIZE;
case TELNET_IAC: // escaped 255
if (s->sosnpos<sizeof s->sosnbuf)
s->sosnbuf[s->sosnpos++]=c;
s->tstate=T_IAC_SB;
return TELNET_NOOP;
default: // protocol error
s->tstate=T_NORM;
return TELNET_NOOP;
}
break;
}
return TELNET_NOOP;
} // }}}
#if YASCREEN_VERSIONED
inline void yascreen_feed_193(yascreen *s,unsigned char c);
inline void yascreen_feed_179(yascreen *s,unsigned char c);
#endif
static inline int yascreen_getch_to_gen(yascreen *s,int timeout,int key_none) { // {{{
int64_t toms=timeout*1000L,tto;
struct timeval to,*pto=&to;
fd_set r;
if (!s)
return key_none;
memset(&r,0,sizeof r); // make clang static analyzer happier (llvm bug #8920)
if (s->outcb) // we do not handle the input, so return immediately
timeout=-1;
if (timeout==0&&s->escto==0) // wait forever
pto=NULL;
else
if (timeout<0) // return immediately
toms=0;
tto=s->escto?mymin(s->escto,timeout==0?s->escto:toms):toms;
if (toms)
toms-=tto; // remaining time to wait is in toms
to.tv_sec=tto/1000;
to.tv_usec=(tto%1000)*1000;
for (;;) {
yascreen_ckto(s); // check for esc timeout to return it as a key
if (s->keycnt) { // check if we have stored key
int key=s->keys[0];
s->keycnt--;
memmove(s->keys,s->keys+1,sizeof(int)*s->keycnt);
return key;
}
if (s->outcb)
return key_none;
if (STDOUT_FILENO<0)
return key_none;
FD_ZERO(&r);
FD_SET(STDOUT_FILENO,&r);
if (-1!=select(STDOUT_FILENO+1,&r,NULL,NULL,pto)) {
unsigned char c; // important to be unsigned, so codes>127 do not expand as negative int values
if (FD_ISSET(STDOUT_FILENO,&r)&&sizeof c==read(STDOUT_FILENO,&c,sizeof c)) {
#if YASCREEN_VERSIONED
if (key_none==YAS_K_NONE) // default behaviour, new symbols
yascreen_feed_193(s,c);
else
yascreen_feed_179(s,c);
#else
yascreen_feed(s,c);
#endif
continue; // check if feed has yielded a key
}
}
if (pto&&(timeout>0||s->escto)&&to.tv_sec==0&&to.tv_usec==0) { // return because of timeout
if (timeout<0) // nowait is set
return key_none;
if (!toms&&timeout>0) // timeout is finished
return key_none;
if (!toms)
tto=s->escto;
else
tto=s->escto?mymin(s->escto,toms):toms;
if (toms)
toms-=tto; // remaining time to wait is in toms
to.tv_sec=tto/1000;
to.tv_usec=(tto%1000)*1000;
}
}
} // }}}
symver_d(yascreen_getch_to_193,yascreen_getch_to,YASCREEN_1.93) // {{{
inline int V(yascreen_getch_to,V193)(yascreen *s,int timeout) {
return yascreen_getch_to_gen(s,timeout,YAS_K_NONE);
} // }}}
static inline int yascreen_realloc_keys(yascreen *s) { // {{{
int *tk;
if (!s)
return 1;
if (s->keysize<=s->keycnt) { // need to reallocate key storage
int newsize=s->keysize+KEYSTEP;
tk=(int *)realloc(s->keys,sizeof(int)*newsize);
if (!tk)
return 1;
s->keys=tk;
s->keysize=newsize;
}
return 0;
} // }}}
inline void yascreen_ungetch(yascreen *s,int key) { // {{{
if (!s)
return;
if (yascreen_realloc_keys(s))
return;
memmove(s->keys+1,s->keys,sizeof(int)*s->keycnt);
s->keys[0]=key;
s->keycnt++;
} // }}}
inline void yascreen_pushch(yascreen *s,int key) { // {{{
if (!s)
return;
if (yascreen_realloc_keys(s))
return;
s->keys[s->keycnt++]=key;
} // }}}
inline void yascreen_esc_to(yascreen *s,int timeout) { // {{{
if (!s)
return;
s->escto=(timeout>=0)?timeout:YAS_DEFAULT_ESCTO;
} // }}}
symver_d(yascreen_peekch_193,yascreen_peekch,YASCREEN_1.93) // {{{
inline int V(yascreen_peekch,V193)(yascreen *s) {
int ch=yascreen_getch_nowait(s);
if (ch!=YAS_K_NONE)
yascreen_ungetch(s,ch);
return ch;
} // }}}
inline void yascreen_clear_mem(yascreen *s,uint32_t attr) { // {{{
size_t i;
if (!s)
return;
attr&=~YAS_STORAGE;
for (i=0;i<(size_t)s->sx*s->sy;i++) {
if (s->mem[i].style&YAS_STORAGE)
free(s->mem[i].p);
s->mem[i].style=attr;
strncpy(s->mem[i].d," ",sizeof s->mem[i].d);
}
} // }}}
inline void yascreen_getsize(yascreen *s,int *sx,int *sy) { // {{{
if (!s)
return;
if (sx)
*sx=s->scrx;
if (sy)
*sy=s->scry;
} // }}}
inline void yascreen_reqsize(yascreen *s) { // {{{
outs(s,ESC"[s"ESC"[999;999H"ESC"[6n"ESC"[u");
outs(s,""); // request a flush
} // }}}
inline void yascreen_line_flush(yascreen *s,int on) { // {{{
if (!s)
return;
s->lineflush=!!on;
} // }}}
inline wchar_t yascreen_getwch_to(yascreen *s,int timeout) { // {{{
int ch;
if (!s)
return YAS_K_NONE;
if (!s->isunicode)
return YAS_K_NONE;
ch=yascreen_getch_to(s,timeout);
if (YAS_IS_CC(ch))
return ch;
if (ch>=0&&ch<=0x7f)
return ch;
if ((ch&0xe0)==0xc0) { // 2 byte seq
// unicode mode guarantees that we have a valid sequence
unsigned char c2=yascreen_getch_nowait(s);
wchar_t w;
w=((ch&0x1f)<<6)|(c2&0x3f);
return w;
}
if ((ch&0xf0)==0xe0) { // 3 byte seq
// unicode mode guarantees that we have a valid sequence
unsigned char c2=yascreen_getch_nowait(s);
unsigned char c3=yascreen_getch_nowait(s);
wchar_t w;
w=((ch&0x0f)<<12)|((c2&0x3f)<<6)|(c3&0x3f);
return w;
}
if ((ch&0xf8)==0xf0) { // 4 byte seq
// unicode mode guarantees that we have a valid sequence
unsigned char c2=yascreen_getch_nowait(s);
unsigned char c3=yascreen_getch_nowait(s);
unsigned char c4=yascreen_getch_nowait(s);
wchar_t w;
w=((ch&0x07)<<18)|((c2&0x3f)<<12)|((c3&0x3f)<<6)|(c4&0x3f);
return w;
}
//if ((ch&0xfc)==0xf8) { // 5 byte seq
//}
//if ((str[i]&0xfe)==0xfc) { // 6 byte seq
//}
return YAS_K_NONE;
} // }}}
inline void yascreen_ungetwch(yascreen *s,wchar_t key) { // {{{
if (!s)
return;
if (!s->isunicode)
return;
if (YAS_IS_CC(key))
yascreen_ungetch(s,key);
else {
char ns[MB_CUR_MAX+1];
int rc=wctomb(ns,key);
int i;
if (rc<=0)
return;
for (i=rc-1;i>0;i--)
yascreen_ungetch(s,ns[i]);
}
} // }}}
inline wchar_t yascreen_peekwch(yascreen *s) { // {{{
wchar_t ch;
if (!s)
return YAS_K_NONE;
if (!s->isunicode)
return YAS_K_NONE;
ch=yascreen_getwch_nowait(s);
if (ch!=YAS_K_NONE)
yascreen_ungetwch(s,ch);
return ch;
} // }}}
// get yascreen_feed with the new symbol or unversioned
#include "yascreen_feed.c"
#if YASCREEN_VERSIONED // redefine YAS_K_* {{{
#undef YAS_K_ALT
#define YAS_K_ALT(code) (((code)&0xff)|0x200)
#define YAS_K_NONE -1 // no key available
// extended keys send as escape sequences
// function keys with ALT/CTRL/SHIFT
#define YAS_K_F1 0x100
#define YAS_K_F2 0x101
#define YAS_K_F3 0x102
#define YAS_K_F4 0x103
#define YAS_K_F5 0x104
#define YAS_K_F6 0x105
#define YAS_K_F7 0x106
#define YAS_K_F8 0x107
#define YAS_K_F9 0x108
#define YAS_K_F10 0x109
#define YAS_K_F11 0x10a
#define YAS_K_F12 0x10b
#define YAS_K_S_F1 0x10c
#define YAS_K_S_F2 0x10d
#define YAS_K_S_F3 0x10e
#define YAS_K_S_F4 0x10f
#define YAS_K_S_F5 0x110
#define YAS_K_S_F6 0x111
#define YAS_K_S_F7 0x112
#define YAS_K_S_F8 0x113
#define YAS_K_S_F9 0x114
#define YAS_K_S_F10 0x115
#define YAS_K_S_F11 0x116
#define YAS_K_S_F12 0x117
#define YAS_K_C_F1 0x118
#define YAS_K_C_F2 0x119
#define YAS_K_C_F3 0x11a
#define YAS_K_C_F4 0x11b
#define YAS_K_C_F5 0x11c
#define YAS_K_C_F6 0x11d
#define YAS_K_C_F7 0x11e
#define YAS_K_C_F8 0x11f
#define YAS_K_C_F9 0x120
#define YAS_K_C_F10 0x121
#define YAS_K_C_F11 0x122
#define YAS_K_C_F12 0x123
#define YAS_K_A_F1 0x124
#define YAS_K_A_F2 0x125
#define YAS_K_A_F3 0x126
#define YAS_K_A_F4 0x127
#define YAS_K_A_F5 0x128
#define YAS_K_A_F6 0x129
#define YAS_K_A_F7 0x12a
#define YAS_K_A_F8 0x12b
#define YAS_K_A_F9 0x12c
#define YAS_K_A_F10 0x12d
#define YAS_K_A_F11 0x12e
#define YAS_K_A_F12 0x12f
#define YAS_K_LEFT 0x130
#define YAS_K_UP 0x131
#define YAS_K_DOWN 0x132
#define YAS_K_RIGHT 0x133
#define YAS_K_HOME 0x134
#define YAS_K_END 0x135
#define YAS_K_PGUP 0x136
#define YAS_K_PGDN 0x137
#define YAS_K_INS 0x138
#define YAS_K_DEL 0x139
#define YAS_K_C_LEFT 0x13a
#define YAS_K_C_UP 0x13b
#define YAS_K_C_DOWN 0x13c
#define YAS_K_C_RIGHT 0x13d
// ALT+letter
#define YAS_K_A_BT YAS_K_ALT('`')
#define YAS_K_A_1 YAS_K_ALT('1')
#define YAS_K_A_2 YAS_K_ALT('2')
#define YAS_K_A_3 YAS_K_ALT('3')
#define YAS_K_A_4 YAS_K_ALT('4')
#define YAS_K_A_5 YAS_K_ALT('5')
#define YAS_K_A_6 YAS_K_ALT('6')
#define YAS_K_A_7 YAS_K_ALT('7')
#define YAS_K_A_8 YAS_K_ALT('8')
#define YAS_K_A_9 YAS_K_ALT('9')
#define YAS_K_A_0 YAS_K_ALT('0')
#define YAS_K_A_MINUS YAS_K_ALT('-')
#define YAS_K_A_EQ YAS_K_ALT(' ')
#define YAS_K_A_BSP YAS_K_ALT(0x7f)
#define YAS_K_A_TLD YAS_K_ALT('~')
#define YAS_K_A_EXCL YAS_K_ALT('!')
#define YAS_K_A_AT YAS_K_ALT('@')
#define YAS_K_A_HASH YAS_K_ALT('#')
#define YAS_K_A_POUND YAS_K_ALT('$')
#define YAS_K_A_PERC YAS_K_ALT('%')
#define YAS_K_A_CARRET YAS_K_ALT('^')
#define YAS_K_A_AND YAS_K_ALT('&')
#define YAS_K_A_STAR YAS_K_ALT('*')
#define YAS_K_A_OBRA YAS_K_ALT('(')
#define YAS_K_A_CBRA YAS_K_ALT(')')
#define YAS_K_A_UND YAS_K_ALT('_')
#define YAS_K_A_PLUS YAS_K_ALT('+')
#define YAS_K_A_a YAS_K_ALT('a')
#define YAS_K_A_b YAS_K_ALT('b')
#define YAS_K_A_c YAS_K_ALT('c')
#define YAS_K_A_d YAS_K_ALT('d')
#define YAS_K_A_e YAS_K_ALT('e')
#define YAS_K_A_f YAS_K_ALT('f')
#define YAS_K_A_g YAS_K_ALT('g')
#define YAS_K_A_h YAS_K_ALT('h')
#define YAS_K_A_i YAS_K_ALT('i')
#define YAS_K_A_j YAS_K_ALT('j')
#define YAS_K_A_k YAS_K_ALT('k')
#define YAS_K_A_l YAS_K_ALT('l')
#define YAS_K_A_m YAS_K_ALT('m')
#define YAS_K_A_n YAS_K_ALT('n')
#define YAS_K_A_o YAS_K_ALT('o')
#define YAS_K_A_p YAS_K_ALT('p')
#define YAS_K_A_q YAS_K_ALT('q')
#define YAS_K_A_r YAS_K_ALT('r')
#define YAS_K_A_s YAS_K_ALT('s')
#define YAS_K_A_t YAS_K_ALT('t')
#define YAS_K_A_u YAS_K_ALT('u')
#define YAS_K_A_v YAS_K_ALT('v')
#define YAS_K_A_w YAS_K_ALT('w')
#define YAS_K_A_x YAS_K_ALT('x')
#define YAS_K_A_y YAS_K_ALT('y')
#define YAS_K_A_z YAS_K_ALT('z')
#define YAS_SCREEN_SIZE 0x800
#define YAS_TELNET_SIZE 0x801
// }}}
// {{{
symver_o(yascreen_getch_to_179,yascreen_getch_to,YASCREEN_1.79) // {{{
inline int yascreen_getch_to_179(yascreen *s,int timeout) {
return yascreen_getch_to_gen(s,timeout,YAS_K_NONE);
} // }}}
symver_o(yascreen_peekch_179,yascreen_peekch,YASCREEN_1.79) // {{{
inline int yascreen_peekch_179(yascreen *s) {
int ch=yascreen_getch_to_179(s,-1);
if (ch!=YAS_K_NONE)
yascreen_ungetch(s,ch);
return ch;
} // }}}
// now get yascreen_feed old version
#undef symver_V
#define symver_V(impl,sym,ver) symver_o(impl,sym,ver)
#undef V193
#define V193 _179
#undef YASCREEN_193
#define YASCREEN_193 YASCREEN_1.79
#include "yascreen_feed.c"
#endif
|