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 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049
//! `NcPlane*` methods and associated functions. use core::{ ptr::{null, null_mut}, slice::from_raw_parts_mut, }; use crate::{ cstring, error, error_ref, error_ref_mut, rstring, Nc, NcAlign, NcAlphaBits, NcBlitter, NcBoxMask, NcCell, NcChannel, NcChannels, NcComponent, NcDim, NcError, NcFadeCb, NcOffset, NcPaletteIndex, NcPixelGeometry, NcPlane, NcPlaneOptions, NcResizeCb, NcResult, NcRgb, NcStyle, NcTime, NCRESULT_ERR, }; /// # NcPlaneOptions Constructors impl NcPlaneOptions { /// New NcPlaneOptions using the horizontal x. pub fn new(y: NcOffset, x: NcOffset, rows: NcDim, cols: NcDim) -> Self { Self::with_flags(y, x, rows, cols, None, 0, 0, 0) } /// New NcPlaneOptions with horizontal alignment. pub fn new_aligned(y: NcOffset, align: NcAlign, rows: NcDim, cols: NcDim) -> Self { Self::with_flags_aligned(y, align, rows, cols, None, crate::NCPLANE_OPTION_HORALIGNED) } /// New NcPlaneOptions, with flags. pub fn with_flags( y: NcOffset, x: NcOffset, rows: NcDim, cols: NcDim, resizecb: Option<NcResizeCb>, flags: u64, margin_b: NcOffset, margin_r: NcOffset, ) -> Self { NcPlaneOptions { y: y as i32, x: x as i32, rows: rows as i32, cols: cols as i32, userptr: null_mut(), name: null(), resizecb: crate::ncresizecb_to_c(resizecb), flags, margin_b: margin_b as i32, margin_r: margin_r as i32, } } /// New NcPlaneOptions, with flags and horizontal alignment. /// /// Note: Already includes the /// [NCPLANE_OPTION_HORALIGNED][crate::NCPLANE_OPTION_HORALIGNED] flag. pub fn with_flags_aligned( y: NcOffset, align: NcAlign, rows: NcDim, cols: NcDim, resizecb: Option<NcResizeCb>, flags: u64, ) -> Self { let flags = crate::NCPLANE_OPTION_HORALIGNED | flags; NcPlaneOptions { y: y as i32, x: align as i32, rows: rows as i32, cols: cols as i32, userptr: null_mut(), name: null(), resizecb: crate::ncresizecb_to_c(resizecb), flags, margin_b: 0, margin_r: 0, } } } /// # NcPlane constructors & destructors impl NcPlane { /// New `NcPlane`. /// /// The returned plane will be the top, bottom, and root of this new pile. /// /// *C style function: [ncpile_create()][crate::ncpile_create].* pub fn new<'a>( nc: &mut Nc, y: NcOffset, x: NcOffset, rows: NcDim, cols: NcDim, ) -> NcResult<&'a mut NcPlane> { Self::with_options(nc, NcPlaneOptions::new(y, x, rows, cols)) } /// New `NcPlane`, expects an [NcPlaneOptions] struct. /// /// The returned plane will be the top, bottom, and root of this new pile. /// /// *C style function: [ncpile_create()][crate::ncpile_create].* pub fn with_options<'a>(nc: &mut Nc, options: NcPlaneOptions) -> NcResult<&'a mut NcPlane> { error_ref_mut![ unsafe { crate::ncpile_create(nc, &options) }, &format!["NcPlane::with_options(Nc, {:?})", &options] ] } /// New `NcPlane`, bound to another NcPlane. /// /// *C style function: [ncplane_create()][crate::ncplane_create].* pub fn new_bound<'a>( bound_to: &mut NcPlane, y: NcOffset, x: NcOffset, rows: NcDim, cols: NcDim, ) -> NcResult<&'a mut NcPlane> { Self::with_options_bound(bound_to, NcPlaneOptions::new(y, x, rows, cols)) } /// New `NcPlane`, bound to another plane, expects an [NcPlaneOptions] struct. /// /// *C style function: [ncplane_create()][crate::ncplane_create].* pub fn with_options_bound<'a>( bound_to: &mut NcPlane, options: NcPlaneOptions, ) -> NcResult<&'a mut NcPlane> { error_ref_mut![ unsafe { crate::ncplane_create(bound_to, &options) }, &format!("NcPlane::with_options_bound(NcPlane, {:?})", &options) ] } /// New `NcPlane`, with the same dimensions of the terminal. /// /// The returned plane will be the top, bottom, and root of this new pile. /// /// *(No equivalent C style function)* pub fn with_termsize<'a>(nc: &mut Nc) -> NcResult<&'a mut NcPlane> { let (trows, tcols) = crate::notcurses_term_dim_yx(nc); assert![(trows > 0) & (tcols > 0)]; Self::with_options( nc, NcPlaneOptions::new(0, 0, trows as NcDim, tcols as NcDim), ) } /// Destroys this `NcPlane`. /// /// None of its contents will be visible after the next render call. /// It is an error to attempt to destroy the standard plane. /// /// *C style function: [ncplane_destroy()][crate::ncplane_destroy].* pub fn destroy(&mut self) -> NcResult<()> { error![unsafe { crate::ncplane_destroy(self) }, "NcPlane.destroy()"] } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: `NcAlphaBits` impl NcPlane { /// Gets the foreground [`NcAlphaBits`] from this `NcPlane`, shifted to LSBs. /// /// *C style function: [ncplane_fg_alpha()][crate::ncplane_fg_alpha].* #[inline] pub fn fg_alpha(&self) -> NcAlphaBits { crate::ncchannels_fg_alpha(crate::ncplane_channels(self)) } /// Gets the background [`NcAlphaBits`] for this `NcPlane`, shifted to LSBs. /// /// *C style function: [ncplane_bg_alpha()][crate::ncplane_bg_alpha].* #[inline] pub fn bg_alpha(&self) -> NcAlphaBits { crate::ncchannels_bg_alpha(crate::ncplane_channels(self)) } /// Sets the foreground [`NcAlphaBits`] from this `NcPlane`. /// /// *C style function: [ncplane_set_fg_alpha()][crate::ncplane_set_fg_alpha].* pub fn set_fg_alpha(&mut self, alpha: NcAlphaBits) -> NcResult<()> { error![ unsafe { crate::ncplane_set_fg_alpha(self, alpha as i32) }, &format!("NcPlane.set_fg_alpha({:0X})", alpha) ] } /// Sets the background [`NcAlphaBits`] for this `NcPlane`. /// /// *C style function: [ncplane_set_bg_alpha()][crate::ncplane_set_bg_alpha].* pub fn set_bg_alpha(&mut self, alpha: NcAlphaBits) -> NcResult<()> { error![ unsafe { crate::ncplane_set_bg_alpha(self, alpha as i32) }, &format!("NcPlane.set_bg_alpha({:0X})", alpha) ] } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: `NcChannel` impl NcPlane { /// Gets the current [`NcChannels`] from this `NcPlane`. /// /// *C style function: [ncplane_channels()][crate::ncplane_channels].* pub fn channels(&self) -> NcChannels { crate::ncplane_channels(self) } /// Sets the current [`NcChannels`] for this `NcPlane`. /// /// *C style function: [ncplane_set_channels()][crate::ncplane_set_channels].* pub fn set_channels(&mut self, channels: NcChannels) { crate::ncplane_set_channels(self, channels); } /// Gets the foreground [`NcChannel`] from an [NcPlane]. /// /// *C style function: [ncplane_fchannel()][crate::ncplane_fchannel].* #[inline] pub fn fchannel(&self) -> NcChannel { crate::ncchannels_fchannel(crate::ncplane_channels(self)) } /// Gets the background [`NcChannel`] from an [NcPlane]. /// /// *C style function: [ncplane_bchannel()][crate::ncplane_bchannel].* #[inline] pub fn bchannel(&self) -> NcChannel { crate::ncchannels_bchannel(crate::ncplane_channels(self)) } /// Sets the current foreground [`NcChannel`] for this `NcPlane`. /// Returns the updated [`NcChannels`]. /// /// *C style function: [ncplane_set_fchannel()][crate::ncplane_set_fchannel].* pub fn set_fchannel(&mut self, channel: NcChannel) -> NcChannels { crate::ncplane_set_fchannel(self, channel) } /// Sets the current background [`NcChannel`] for this `NcPlane`. /// Returns the updated [`NcChannels`]. /// /// *C style function: [ncplane_set_bchannel()][crate::ncplane_set_bchannel].* pub fn set_bchannel(&mut self, channel: NcChannel) -> NcChannels { crate::ncplane_set_bchannel(self, channel) } /// Sets the given [`NcChannels`]s throughout the specified region, /// keeping content and attributes unchanged. /// /// Returns the number of cells set. /// /// *C style function: [ncplane_stain()][crate::ncplane_stain].* pub fn stain( &mut self, y_stop: NcDim, x_stop: NcDim, ul: NcChannels, ur: NcChannels, ll: NcChannels, lr: NcChannels, ) -> NcResult<u32> { let res = unsafe { crate::ncplane_stain(self, y_stop as i32, x_stop as i32, ul, ur, ll, lr) }; error![ res, &format!( "NcPlane.stain({}, {}, {:0X}, {:0X}, {:0X}, {:0X})", y_stop, x_stop, ul, ur, ll, lr ), res as u32 ] } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: `NcComponent`, `NcRgb` & default color impl NcPlane { /// Gets the foreground RGB [`NcComponent`]s from this `NcPlane`. /// /// *C style function: [ncplane_fg_rgb8()][crate::ncplane_fg_rgb8].* #[inline] pub fn fg_rgb8(&self) -> (NcComponent, NcComponent, NcComponent) { let (mut r, mut g, mut b) = (0, 0, 0); let _ = crate::ncchannels_fg_rgb8(crate::ncplane_channels(self), &mut r, &mut g, &mut b); (r, g, b) } /// Gets the background RGB [`NcComponent`]s from this `NcPlane`. /// /// *C style function: [ncplane_bg_rgb8()][crate::ncplane_bg_rgb8].* #[inline] pub fn bg_rgb8(&self) -> (NcComponent, NcComponent, NcComponent) { let (mut r, mut g, mut b) = (0, 0, 0); let _ = crate::ncchannels_bg_rgb8(crate::ncplane_channels(self), &mut r, &mut g, &mut b); (r, g, b) } /// Sets the foreground RGB [`NcComponent`]s for this `NcPlane`. /// /// If the terminal does not support directly-specified 3x8b cells /// (24-bit "TrueColor", indicated by the "RGB" terminfo capability), /// the provided values will be interpreted in some lossy fashion. /// /// "HP-like" terminals require setting foreground and background at the same /// time using "color pairs"; notcurses will manage color pairs transparently. /// /// *C style function: [ncplane_set_fg_rgb8()][crate::ncplane_set_fg_rgb8].* pub fn set_fg_rgb8(&mut self, red: NcComponent, green: NcComponent, blue: NcComponent) { unsafe { // Can't fail because of type enforcing. let _ = crate::ncplane_set_fg_rgb8(self, red as u32, green as u32, blue as u32); } } /// Sets the background RGB [`NcComponent`]s for this `NcPlane`. /// /// If the terminal does not support directly-specified 3x8b cells /// (24-bit "TrueColor", indicated by the "RGB" terminfo capability), /// the provided values will be interpreted in some lossy fashion. /// /// "HP-like" terminals require setting foreground and background at the same /// time using "color pairs"; notcurses will manage color pairs transparently. /// /// *C style function: [ncplane_set_bg_rgb8()][crate::ncplane_set_bg_rgb8].* pub fn set_bg_rgb8(&mut self, red: NcComponent, green: NcComponent, blue: NcComponent) { unsafe { // Can't fail because of type enforcing. let _ = crate::ncplane_set_bg_rgb8(self, red as u32, green as u32, blue as u32); } } /// Gets the foreground [`NcRgb`] from this `NcPlane`, shifted to LSBs. /// /// *C style function: [ncplane_fg_rgb()][crate::ncplane_fg_rgb].* #[inline] pub fn fg_rgb(&self) -> NcRgb { crate::ncchannels_fg_rgb(crate::ncplane_channels(self)) } /// Gets the background [`NcRgb`] from this `NcPlane`, shifted to LSBs. /// /// *C style function: [ncplane_bg_rgb()][crate::ncplane_bg_rgb].* #[inline] pub fn bg_rgb(&self) -> NcRgb { crate::ncchannels_bg_rgb(crate::ncplane_channels(self)) } /// Sets the foreground [`NcRgb`] for this `NcPlane`. /// /// *C style function: [ncplane_set_fg_rgb()][crate::ncplane_set_fg_rgb].* #[inline] pub fn set_fg_rgb(&mut self, rgb: NcRgb) { unsafe { crate::ncplane_set_fg_rgb(self, rgb); } } /// Sets the background [`NcRgb`] for this `NcPlane`. /// /// *C style function: [ncplane_set_bg_rgb()][crate::ncplane_set_bg_rgb].* #[inline] pub fn set_bg_rgb(&mut self, rgb: NcRgb) { unsafe { crate::ncplane_set_bg_rgb(self, rgb); } } /// Is this `NcPlane`'s foreground using the "default foreground color"? /// /// *C style function: [ncplane_fg_default_p()][crate::ncplane_fg_default_p].* #[inline] pub fn fg_default(&self) -> bool { crate::ncchannels_fg_default_p(crate::ncplane_channels(self)) } /// Is this `NcPlane`'s background using the "default background color"? /// /// *C style function: [ncplane_bg_default_p()][crate::ncplane_bg_default_p].* #[inline] pub fn bg_default(&self) -> bool { crate::ncchannels_bg_default_p(crate::ncplane_channels(self)) } /// Uses the default color for the foreground. /// /// *C style function: [ncplane_set_fg_default()][crate::ncplane_set_fg_default].* #[inline] pub fn set_fg_default(&mut self) { unsafe { crate::ncplane_set_fg_default(self); } } /// Uses the default color for the background. /// /// *C style function: [ncplane_set_bg_default()][crate::ncplane_set_bg_default].* #[inline] pub fn set_bg_default(&mut self) { unsafe { crate::ncplane_set_bg_default(self); } } /// Marks the foreground as NOT using the default color. /// /// Returns the new [`NcChannels`]. /// /// *C style function: [ncplane_set_fg_not_default()][crate::ncplane_set_fg_not_default].* // // Not in the C API #[inline] pub fn set_fg_not_default(&mut self) -> NcChannels { crate::ncplane_set_fg_not_default(self) } /// Marks the background as NOT using the default color. /// /// Returns the new [`NcChannels`]. /// /// *C style function: [ncplane_set_bg_not_default()][crate::ncplane_set_bg_not_default].* // // Not in the C API #[inline] pub fn set_bg_not_default(&mut self) -> NcChannels { crate::ncplane_set_bg_not_default(self) } /// Marks both the foreground and background as using the default color. /// /// Returns the new [`NcChannels`]. /// /// *C style function: [ncplane_set_default()][crate::ncplane_set_default].* // // Not in the C API #[inline] pub fn set_default(&mut self) -> NcChannels { crate::ncplane_set_default(self) } /// Marks both the foreground and background as NOT using the default color. /// /// Returns the new [`NcChannels`]. /// /// *C style function: [ncplane_set_not_default()][crate::ncplane_set_not_default].* // // Not in the C API #[inline] pub fn set_not_default(&mut self) -> NcChannels { crate::ncplane_set_not_default(self) } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: `NcStyle` & `PaletteIndex` impl NcPlane { /// Sets the given style throughout the specified region, keeping content /// and channels unchanged. /// /// Returns the number of cells set. /// /// *C style function: [ncplane_format()][crate::ncplane_format].* pub fn format(&mut self, y_stop: NcDim, x_stop: NcDim, stylemask: NcStyle) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_format(self, y_stop as i32, x_stop as i32, stylemask as u32) }; error![ res, &format!("NcPlane.format({}, {}, {:0X})", y_stop, x_stop, stylemask), res as u32 ] } /// Returns the current styling for this `NcPlane`. /// /// *C style function: [ncplane_styles()][crate::ncplane_styles].* pub fn styles(&self) -> NcStyle { unsafe { crate::ncplane_styles(self) } } /// Removes the specified styles from this `NcPlane`'s existing spec. /// /// *C style function: [ncplane_off_styles()][crate::ncplane_off_styles].* pub fn off_styles(&mut self, stylemask: NcStyle) { unsafe { crate::ncplane_off_styles(self, stylemask as u32); } } /// Adds the specified styles to this `NcPlane`'s existing spec. /// /// *C style function: [ncplane_on_styles()][crate::ncplane_on_styles].* pub fn on_styles(&mut self, stylemask: NcStyle) { unsafe { crate::ncplane_on_styles(self, stylemask as u32); } } /// Sets just the specified styles for this `NcPlane`. /// /// *C style function: [ncplane_set_styles()][crate::ncplane_set_styles].* pub fn set_styles(&mut self, stylemask: NcStyle) { unsafe { crate::ncplane_set_styles(self, stylemask as u32); } } /// Sets this `NcPlane`'s foreground [NcPaletteIndex]. /// /// Also sets the foreground palette index bit, sets it foreground-opaque, /// and clears the foreground default color bit. /// /// *C style function: [ncplane_set_fg_palindex()][crate::ncplane_set_fg_palindex].* pub fn set_fg_palindex(&mut self, palindex: NcPaletteIndex) { unsafe { crate::ncplane_set_fg_palindex(self, palindex as i32); } } /// Sets this `NcPlane`'s background [NcPaletteIndex]. /// /// Also sets the background palette index bit, sets it background-opaque, /// and clears the background default color bit. /// /// *C style function: [ncplane_set_bg_palindex()][crate::ncplane_set_bg_palindex].* pub fn set_bg_palindex(&mut self, palindex: NcPaletteIndex) { unsafe { crate::ncplane_set_bg_palindex(self, palindex as i32); } } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: `NcCell` & strings impl NcPlane { /// Retrieves the current contents of the [`NcCell`] under the cursor, /// returning the `EGC` and writing out the [`NcStyle`] and the [`NcChannels`]. /// /// This `EGC` must be freed by the caller. /// /// *C style function: [ncplane_at_cursor()][crate::ncplane_at_cursor].* pub fn at_cursor( &mut self, stylemask: &mut NcStyle, channels: &mut NcChannels, ) -> NcResult<String> { let egc = unsafe { crate::ncplane_at_cursor(self, stylemask, channels) }; if egc.is_null() { return Err(NcError::with_msg( NCRESULT_ERR, &format!("NcPlane.at_cursor({:0X}, {:0X})", stylemask, channels), )); } Ok(rstring![egc].into()) } /// Retrieves the current contents of the [`NcCell`] under the cursor /// into `cell`. Returns the number of bytes in the `EGC`. /// /// This NcCell is invalidated if the associated NcPlane is destroyed. /// /// *C style function: [ncplane_at_cursor_cell()][crate::ncplane_at_cursor_cell].* #[inline] pub fn at_cursor_cell(&mut self, cell: &mut NcCell) -> NcResult<u32> { let bytes = unsafe { crate::ncplane_at_cursor_cell(self, cell) }; error![ bytes, &format!("NcPlane.at_cursor_cell({:?})", cell), bytes as u32 ] } /// Retrieves the current contents of the specified [`NcCell`], returning the /// `EGC` and writing out the [`NcStyle`] and the [`NcChannels`]. /// /// This `EGC` must be freed by the caller. /// /// *C style function: [ncplane_at_yx()][crate::ncplane_at_yx].* pub fn at_yx( &mut self, y: NcDim, x: NcDim, stylemask: &mut NcStyle, channels: &mut NcChannels, ) -> NcResult<String> { let egc = unsafe { crate::ncplane_at_yx(self, y as i32, x as i32, stylemask, channels) }; if egc.is_null() { return Err(NcError::with_msg( NCRESULT_ERR, &format!( "NcPlane.at_yx({}, {}, {:0X}, {:0X})", y, x, stylemask, channels ), )); } Ok(rstring![egc].into()) } /// Retrieves the current contents of the specified [`NcCell`] into `cell`. /// Returns the number of bytes in the `EGC`. /// /// This NcCell is invalidated if the associated plane is destroyed. /// /// *C style function: [ncplane_at_yx_cell()][crate::ncplane_at_yx_cell].* #[inline] pub fn at_yx_cell(&mut self, y: NcDim, x: NcDim, cell: &mut NcCell) -> NcResult<u32> { let bytes = unsafe { crate::ncplane_at_yx_cell(self, y as i32, x as i32, cell) }; error![ bytes, &format!("NcPlane.at_yx_cell({}, {}, {:?})", y, x, cell), bytes as u32 ] } /// Extracts this `NcPlane`'s base [`NcCell`]. /// /// The reference is invalidated if this `NcPlane` is destroyed. /// /// *C style function: [ncplane_base()][crate::ncplane_base].* pub fn base(&mut self) -> NcResult<NcCell> { let mut cell = NcCell::new(); let res = unsafe { crate::ncplane_base(self, &mut cell) }; error![res, "NcPlane.base()", cell] } /// Sets this `NcPlane`'s base [`NcCell`] from its components. /// /// Returns the number of bytes copied out of `egc` if succesful. /// /// It will be used for purposes of rendering anywhere that the `NcPlane`'s /// gcluster is 0. /// /// Note that erasing the `NcPlane` does not reset the base cell. /// /// *C style function: [ncplane_set_base()][crate::ncplane_set_base].* // call stack: // - ncplane_set_base calls nccell_prime: // return nccell_prime(ncp, &ncp->basecell, egc, stylemask, channels); // - nccell_prime calls notcurses.c/nccell_load: // return nccell_load(n, c, gcluster); // - cell-load calls internal.h/pool load: // return pool_load(&n->pool, c, gcluster); pub fn set_base( &mut self, egc: &str, stylemask: NcStyle, channels: NcChannels, ) -> NcResult<u32> { let res = unsafe { crate::ncplane_set_base(self, cstring![egc], stylemask as u32, channels) }; error![ res, &format!( "NcPlane.set_base({:?}, {:0X}, {:0X})", egc, stylemask, channels ), res as u32 ] } /// Sets this `NcPlane`'s base [`NcCell`]. /// /// It will be used for purposes of rendering anywhere that the `NcPlane`'s /// gcluster is 0. /// /// Note that erasing the `NcPlane` does not reset the base cell. /// /// *C style function: [ncplane_set_base_cell()][crate::ncplane_set_base_cell].* pub fn set_base_cell(&mut self, cell: &NcCell) -> NcResult<()> { error![ unsafe { crate::ncplane_set_base_cell(self, cell) }, &format!("NcPlane.base({:?})", cell) ] } /// Creates a flat string from the `EGC`'s of the selected region of the /// `NcPlane`. /// /// Starts at the plane's `beg_y` * `beg_x` coordinates (which must lie on /// the plane), continuing for `len_y` x `len_x` cells. /// /// If either `through_y` or `through_x` are true, then `len_y` or `len_x`, /// will be respectively ignored, and will go through the boundary of the plane. /// /// *C style function: [ncplane_contents()][crate::ncplane_contents].* pub fn contents( &mut self, beg_y: NcDim, beg_x: NcDim, len_y: NcDim, len_x: NcDim, through_y: bool, through_x: bool, ) -> String { let (mut len_y, mut len_x) = (len_y as i32, len_x as i32); if through_y { len_y = -1; } if through_x { len_x = -1; } rstring![crate::ncplane_contents( self, beg_y as i32, beg_x as i32, len_y, len_x )] .to_string() } /// Erases every [`NcCell`] in this `NcPlane`, resetting all attributes to /// normal, all colors to the default color, and all cells to undrawn. /// /// All cells associated with this `NcPlane` are invalidated, and must not /// be used after the call, excluding the base cell. The cursor is homed. /// /// *C style function: [ncplane_erase()][crate::ncplane_erase].* pub fn erase(&mut self) { unsafe { crate::ncplane_erase(self); } } /// Replaces the `NcCell` at the **specified** coordinates with the provided /// `NcCell`, advancing the cursor by its width (but not past the end of /// the plane). /// /// The new `NcCell` must already be associated with the `NcPlane`. /// /// Returns the number of columns the cursor was advanced. /// /// *C style function: [ncplane_putc_yx()][crate::ncplane_putc_yx].* pub fn putc_yx(&mut self, y: NcDim, x: NcDim, cell: &NcCell) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_putc_yx(self, y as i32, x as i32, cell) }; error![ res, &format!("NcPlane.putc_yx({}, {}, {:?})", y, x, cell), res as NcDim ] } /// Replaces the [`NcCell`] at the **current** coordinates with the provided /// `NcCell`, advancing the cursor by its width (but not past the end of /// the plane). /// /// The new `NcCell` must already be associated with the `NcPlane`. /// /// Returns the number of columns the cursor was advanced. /// /// *C style function: [ncplane_putc()][crate::ncplane_putc].* pub fn putc(&mut self, cell: &NcCell) -> NcResult<NcDim> { let res = crate::ncplane_putc(self, cell); error![res, &format!("NcPlane.putc({:?})", cell), res as NcDim] } /// Calls [`putchar_yx`][NcPlane#method.putchar_yx] at the current cursor /// location. /// /// Returns the number of columns the cursor was advanced. /// /// *C style function: [ncplane_putchar()][crate::ncplane_putchar].* pub fn putchar(&mut self, ch: char) -> NcResult<NcDim> { let res = crate::ncplane_putchar(self, ch); error![res, &format!("NcPlane.putchar({:?})", ch), res as NcDim] } // TODO: call put_egc // /// Replaces the `EGC` to the current location, but retain // /// the styling. The current styling of the plane will not be changed. // pub fn putchar_stained(&mut self, y: NcDim, x: NcDim, ch: char) -> // NcResult<NcDim> { // error![crate::ncplane_putchar_stained(self, ch)] // } /// Replaces the [NcCell] at the `y`,`x` coordinates with the provided /// 7-bit `char`, but retain the styling. /// The current styling of the plane will not be changed. /// /// On success, returns the number of columns the cursor was advanced. /// /// *C style function: [ncplane_putchar_yx()][crate::ncplane_putchar_yx].* pub fn putchar_yx(&mut self, y: NcDim, x: NcDim, ch: char) -> NcResult<NcDim> { let res = crate::ncplane_putchar_yx(self, y, x, ch); error![ res, &format!("NcPlane.putchar_yx({}, {}, {:?})", y, x, ch), res as NcDim ] } /// Writes a string to the current location, using the current style. /// /// Advances the cursor by some positive number of columns (though not /// beyond the end of the plane), and this number is returned on success. /// /// On error, a non-positive number is returned, indicating /// the number of columns which were written before the error. /// /// *C style function: [ncplane_putstr()][crate::ncplane_putstr].* #[inline] pub fn putstr(&mut self, string: &str) -> NcResult<NcDim> { let res = crate::ncplane_putstr(self, string); error![res, &format!("NcPlane.putstr({:?})", string), res as NcDim] } /// Same as [`putstr`][NcPlane#method.putstr], but it also tries to move the /// cursor to the beginning of the next row. /// /// Advances the cursor by some positive number of columns (though not /// beyond the end of the plane); this number will be returned on success, /// after calling [`putln`][NcPlane#method.putln]. /// /// On error, a non-positive number is returned, indicating the number of /// columns which were written before the error. /// /// *(No equivalent C style function)* pub fn putstrln(&mut self, string: &str) -> NcResult<NcDim> { let cols = self.putstr(string)?; self.putln()?; Ok(cols) } /// Moves the cursor to the beginning of the next row. /// /// *(No equivalent C style function)* pub fn putln(&mut self) -> NcResult<()> { let (y, _x) = self.cursor_yx(); self.cursor_move_yx(y + 1, 0)?; Ok(()) } /// Same as [`putstr_yx()`][NcPlane#method.putstr_yx] /// but [`NcAlign`]ed on x. /// /// *C style function: [ncplane_putstr_aligned()][crate::ncplane_putstr_aligned].* pub fn putstr_aligned(&mut self, y: NcDim, align: NcAlign, string: &str) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_putstr_aligned(self, y as i32, align, cstring![string]) }; error![ res, &format!("NcPlane.putstr_aligned({}, {}, {:?})", y, align, string), res as NcDim ] } /// Writes a string to the current location, but retains the styling. /// /// The current styling of the plane will not be changed. /// /// Advances the cursor by some positive number of columns (though not /// beyond the end of the plane); this number is returned on success. /// /// On error, a non-positive number is returned, indicating the number of /// columns which were written before the error. /// /// *C style function: [ncplane_putstr_stained()][crate::ncplane_putstr_stained].* pub fn putstr_stained(&mut self, string: &str) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_putstr_stained(self, cstring![string]) }; error![ res, &format!("NcPlane.putstr_stained({:?})", string), res as NcDim ] } /// Writes a string to the provided location, using the current style. /// /// They will be interpreted as a series of columns. /// /// Advances the cursor by some positive number of columns (though not /// beyond the end of the plane); this number is returned on success. /// /// On error, a non-positive number is returned, indicating the number of /// columns which were written before the error. /// /// *C style function: [ncplane_putstr_yx()][crate::ncplane_putstr_yx].* pub fn putstr_yx(&mut self, y: NcDim, x: NcDim, string: &str) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_putstr_yx(self, y as i32, x as i32, cstring![string]) }; error![ res, &format!("NcPlane.putstr_yx({}, {}, {:?})", y, x, string), res as NcDim ] } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: `NcPlane` & `Nc` impl NcPlane { /// Gets the origin of this plane relative to its pile. /// /// *C style function: [ncplane_abs_yx()][crate::ncplane_abs_yx].* pub fn abs_yx(&self) -> (NcDim, NcDim) { let mut y = 0; let mut x = 0; unsafe { crate::ncplane_abs_yx(self, &mut y, &mut x); } (y as NcDim, x as NcDim) } /// Gets the origin of this plane relative to its pile, in the y axis. /// /// *C style function: [ncplane_abs_y()][crate::ncplane_abs_y].* pub fn abs_y(&self) -> NcDim { unsafe { crate::ncplane_abs_y(self) as NcDim } } /// Gets the origin of this plane relative to its pile, in the x axis. /// /// *C style function: [ncplane_abs_x()][crate::ncplane_abs_x].* pub fn abs_x(&self) -> NcDim { unsafe { crate::ncplane_abs_x(self) as NcDim } } /// Duplicates this `NcPlane`. /// /// The new NcPlane will have the same geometry, the same rendering state, /// and all the same duplicated content. /// /// The new plane will be immediately above the old one on the z axis, /// and will be bound to the same parent. Bound planes are not duplicated; /// the new plane is bound to the current parent, but has no bound planes. /// /// *C style function: [ncplane_dup()][crate::ncplane_dup].* // // TODO: deal with the opaque field that is stored in NcPlaneOptions.userptr pub fn dup(&mut self) -> &mut NcPlane { unsafe { &mut *crate::ncplane_dup(self, null_mut()) } } /// Returns the topmost `NcPlane` of the current pile. /// /// *C style function: [ncpile_top()][crate::ncpile_top].* pub fn top(&mut self) -> &mut NcPlane { unsafe { &mut *crate::ncpile_top(self) } } /// Returns the bottommost `NcPlane` of the current pile. /// /// *C style function: [ncpile_bottom()][crate::ncpile_bottom].* pub fn bottom<'a>(&mut self) -> &'a mut NcPlane { unsafe { &mut *crate::ncpile_bottom(self) } } /// Relocates this `NcPlane` at the top of the z-buffer. /// /// *C style function: [ncplane_move_top()][crate::ncplane_move_top].* pub fn move_top(&mut self) { unsafe { crate::ncplane_move_top(self); } } /// Relocates this `NcPlane` at the bottom of the z-buffer. /// /// *C style function: [ncplane_move_bottom()][crate::ncplane_move_bottom].* pub fn move_bottom(&mut self) { unsafe { crate::ncplane_move_bottom(self); } } /// Moves this `NcPlane` relative to the standard plane, or the plane to /// which it is bound. /// /// It is an error to attempt to move the standard plane. /// /// *C style function: [ncplane_move_yx()][crate::ncplane_move_yx].* pub fn move_yx(&mut self, y: NcOffset, x: NcOffset) -> NcResult<()> { error![ unsafe { crate::ncplane_move_yx(self, y, x) }, &format!("NcPlane.move_yx({}, {})", y, x) ] } /// Moves this `NcPlane` relative to its current location. /// /// Negative values move up and left, respectively. /// Pass 0 to hold an axis constant. /// /// It is an error to attempt to move the standard plane. /// /// *C style function: [ncplane_moverel()][crate::ncplane_moverel].* pub fn move_rel(&mut self, rows: NcOffset, cols: NcOffset) -> NcResult<()> { error![ crate::ncplane_moverel(self, rows, cols), &format!("NcPlane.move_rel({}, {})", rows, cols) ] } /// Returns the `NcPlane` above this one, or None if already at the top. /// /// *C style function: [ncplane_above()][crate::ncplane_above].* pub fn above(&mut self) -> NcResult<&mut NcPlane> { error_ref_mut![unsafe { crate::ncplane_above(self) }, "NcPlane.above()"] } /// Returns the `NcPlane` below this one, or None if already at the bottom. /// /// *C style function: [ncplane_below()][crate::ncplane_below].* pub fn below(&mut self) -> NcResult<&mut NcPlane> { error_ref_mut![unsafe { crate::ncplane_below(self) }, "NcPlane.below()"] } /// Relocates this `NcPlane` above the `above` NcPlane, in the z-buffer. /// /// Returns [NCRESULT_ERR] if the current plane is /// already in the desired location. Both planes must not be the same. /// /// *C style function: [ncplane_move_above()][crate::ncplane_move_above].* pub fn move_above(&mut self, above: &mut NcPlane) -> NcResult<()> { error![ unsafe { crate::ncplane_move_above(self, above) }, "NcPlane.move_above(NcPlane)" ] } /// Relocates this `NcPlane` below the `below` NcPlane, in the z-buffer. /// /// Returns [NCRESULT_ERR] if the current plane is /// already in the desired location. Both planes must not be the same. /// /// *C style function: [ncplane_move_below()][crate::ncplane_move_below].* pub fn move_below(&mut self, below: &mut NcPlane) -> NcResult<()> { error![ unsafe { crate::ncplane_move_below(self, below) }, "NcPlane.move_below(NcPlane)" ] } /// Merge the `NcPlane` `source` down onto the current `NcPlane` (`self`). /// /// This is most rigorously defined as "write to `self` the frame that would /// be rendered were the entire stack made up only of the specified subregion /// of `source` and, below it, the subregion of `self` having the specified /// origin. /// /// Merging is independent of the position of both planes on the z-axis. /// /// It is an error to define a subregion of zero area, or that is not /// entirely contained within `source`. It is an error to define a target /// origin such that the projected subregion is not entirely contained /// within `self`. /// /// Behavior is undefined if both planes are equivalent. `self` is modified, /// but `source` remains unchanged. /// /// neither `source` nor `self` may have sprixels. /// /// *C style function: [ncplane_mergedown()][crate::ncplane_mergedown].* pub fn mergedown( &mut self, source: &mut NcPlane, source_y: NcDim, source_x: NcDim, len_y: NcDim, len_x: NcDim, target_y: NcDim, target_x: NcDim, ) -> NcResult<()> { error![ unsafe { crate::ncplane_mergedown( source, self, source_y as i32, source_x as i32, len_y as i32, len_x as i32, target_y as i32, target_x as i32, ) }, &format!( "NcPlane.mergedown(NcPlane, {}, {}, {}, {}, {}, {})", source_y, source_x, len_y, len_x, target_y, target_x ) ] } /// Merges `source` down onto this `NcPlane`. /// /// If `source` does not intersect, this plane will not be changed, /// but it is not an error. /// /// See [`mergedown`][NcPlane#method.mergedown] /// for more information. /// /// *C style function: [ncplane_mergedown_simple()][crate::ncplane_mergedown_simple].* // // TODO: maybe create a reversed method, and/or an associated function, // for `mergedown` too. pub fn mergedown_simple(&mut self, source: &mut NcPlane) -> NcResult<()> { error![ unsafe { crate::ncplane_mergedown_simple(source, self) }, "NcPlane.mergedown_simple(NcPlane)" ] } /// Gets the parent to which this `NcPlane` is bound, if any. /// /// *C style function: [ncplane_parent()][crate::ncplane_parent].* // // TODO: CHECK: what happens when it's bound to itself. pub fn parent(&mut self) -> NcResult<&mut NcPlane> { error_ref_mut![unsafe { crate::ncplane_parent(self) }, "NcPlane.parent()"] } /// Gets the parent to which this `NcPlane` is bound, if any. /// /// *C style function: [ncplane_parent_const()][crate::ncplane_parent_const].* // // CHECK: what happens when it's bound to itself. pub fn parent_const(&self) -> NcResult<&NcPlane> { error_ref![ unsafe { crate::ncplane_parent_const(self) }, "NcPlane.parent_const()" ] } /// Unbounds this `NcPlane` from its parent, makes it a bound child of /// 'newparent', and returns itself. /// /// Any planes bound to this `NcPlane` are reparented to the previous parent. /// /// If this `NcPlane` is equal to `newparent`, then becomes the root of a new /// pile, unless it is already the root of a pile, in which case this is a /// no-op. /// /// The standard plane cannot be reparented. /// /// *C style function: [ncplane_reparent()][crate::ncplane_reparent].* pub fn reparent<'a>(&mut self, newparent: &'a mut NcPlane) -> NcResult<&'a mut NcPlane> { error_ref_mut![ unsafe { crate::ncplane_reparent(self, newparent) }, "NcPlane.reparent(NcPlane)" ] } /// Like [`reparent`][NcPlane#method.reparent], except any bound /// planes comes along with this `NcPlane` to its new destination. /// /// Their z-order is maintained. /// /// *C style function: [ncplane_reparent_family()][crate::ncplane_reparent_family].* // // TODO:CHECK: If 'newparent' is an ancestor, NULL is returned & no changes're made. pub fn reparent_family<'a>(&mut self, newparent: &'a mut NcPlane) -> NcResult<&'a mut NcPlane> { error_ref_mut![ unsafe { crate::ncplane_reparent_family(self, newparent) }, "NcPlane.reparent_family(NcPlane)" ] } /// Makes the physical screen match the last rendered frame from the pile of /// which this `NcPlane` is a part. /// /// This is a blocking call. Don't call this before the pile has been /// rendered (doing so will likely result in a blank screen). /// /// *C style function: [ncpile_rasterize()][crate::ncpile_rasterize].* pub fn rasterize(&mut self) -> NcResult<()> { error![ unsafe { crate::ncpile_rasterize(self) }, "NcPlane.rasterize()" ] } /// Renders the pile of which this `NcPlane` is a part. /// Rendering this pile again will blow away the render. /// To actually write out the render, call ncpile_rasterize(). /// /// *C style function: [ncpile_render()][crate::ncpile_render].* pub fn render(&mut self) -> NcResult<()> { error![unsafe { crate::ncpile_render(self) }, "NcPlane.render()"] } /// Gets a mutable reference to the [`Nc`] context of this `NcPlane`. /// /// *C style function: [ncplane_notcurses()][crate::ncplane_notcurses].* pub fn notcurses<'a>(&self) -> NcResult<&'a mut Nc> { error_ref_mut![ unsafe { crate::ncplane_notcurses(self) }, "NcPlane.notcurses()" ] } /// Gets an immutable reference to the [`Nc`] context of this `NcPlane`. /// /// *C style function: [ncplane_notcurses_const()][crate::ncplane_notcurses_const].* pub fn notcurses_const<'a>(&self) -> NcResult<&'a Nc> { error_ref![ unsafe { crate::ncplane_notcurses_const(self) }, "NcPlane.notcurses()" ] } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: cursor impl NcPlane { /// Moves the cursor to 0, 0. /// /// *C style function: [ncplane_home()][crate::ncplane_home].* pub fn cursor_home(&mut self) { unsafe { crate::ncplane_home(self); } } #[doc(hidden)] #[deprecated] pub fn home(&mut self) { self.cursor_home() } /// Returns the current position of the cursor within this `NcPlane`. /// /// *C style function: [ncplane_cursor_yx()][crate::ncplane_cursor_yx].* // // NOTE: y and/or x may be NULL. // check for null and return NcResult pub fn cursor_yx(&self) -> (NcDim, NcDim) { let (mut y, mut x) = (0, 0); unsafe { crate::ncplane_cursor_yx(self, &mut y, &mut x) }; (y as NcDim, x as NcDim) } /// Returns the current row of the cursor within this `NcPlane`. /// /// *(No equivalent C style function)* pub fn cursor_y(&self) -> NcDim { self.cursor_yx().0 } /// Returns the current column of the cursor within this `NcPlane`. /// /// *(No equivalent C style function)* pub fn cursor_x(&self) -> NcDim { self.cursor_yx().1 } /// Moves the cursor to the specified position within this `NcPlane`. /// /// The cursor doesn't need to be visible. /// /// Parameters exceeding the plane's dimensions will result in an error, /// and the cursor position will remain unchanged. /// /// *C style function: [ncplane_cursor_move_yx()][crate::ncplane_cursor_move_yx].* pub fn cursor_move_yx(&mut self, y: NcDim, x: NcDim) -> NcResult<()> { error![ unsafe { crate::ncplane_cursor_move_yx(self, y as i32, x as i32) }, &format!("NcPlane.move_yx({}, {})", y, x) ] } /// Moves the cursor to the specified row within this `NcPlane`. /// /// *(No equivalent C style function)* pub fn cursor_move_y(&mut self, y: NcDim) -> NcResult<()> { let x = self.cursor_x(); error![ unsafe { crate::ncplane_cursor_move_yx(self, y as i32, x as i32) }, &format!("NcPlane.move_y({})", y) ] } /// Moves the cursor to the specified column within this `NcPlane`. /// /// *(No equivalent C style function)* pub fn cursor_move_x(&mut self, x: NcDim) -> NcResult<()> { let y = self.cursor_y(); error![ unsafe { crate::ncplane_cursor_move_yx(self, y as i32, x as i32) }, &format!("NcPlane.move_x({})", x) ] } /// Moves the cursor the number of rows specified (forward or backwards). /// /// It will error if the target row exceeds the plane dimensions. /// /// *(No equivalent C style function)* pub fn cursor_move_rows(&mut self, rows: NcOffset) -> NcResult<()> { let (y, x) = self.cursor_yx(); self.cursor_move_yx((y as NcOffset + rows) as NcDim, x) } /// Moves the cursor the number of columns specified (forward or backwards). /// /// It will error if the target column exceeds the plane dimensions. /// /// *(No equivalent C style function)* pub fn cursor_move_cols(&mut self, cols: NcOffset) -> NcResult<()> { let (y, x) = self.cursor_yx(); self.cursor_move_yx(y, (x as NcOffset + cols) as NcDim) } /// Moves the cursor relatively, the number of rows and columns specified /// (forward or backwards). /// /// It will error if the target row or column exceeds the plane dimensions. /// /// *(No equivalent C style function)* pub fn cursor_move_rel(&mut self, rows: NcOffset, cols: NcOffset) -> NcResult<()> { self.cursor_move_rows(rows)?; self.cursor_move_cols(cols)?; Ok(()) } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: size, position & alignment impl NcPlane { /// Returns the column at which `cols` columns ought start in order to be /// aligned according to `align` within this `NcPlane`. /// /// Returns `-`[NCRESULT_MAX][crate::NCRESULT_MAX] if /// [NCALIGN_UNALIGNED][crate::NCALIGN_UNALIGNED] or invalid [NcAlign]. /// /// *C style function: [ncplane_halign()][crate::ncplane_halign].* #[inline] pub fn halign(&mut self, align: NcAlign, cols: NcDim) -> NcResult<()> { error![ crate::ncplane_halign(self, align, cols), &format!("NcPlane.halign({:?}, {})", align, cols) ] } /// Returns the row at which `rows` rows ought start in order to be /// aligned according to `align` within this `NcPlane`. /// /// Returns `-`[NCRESULT_MAX][crate::NCRESULT_MAX] if /// [NCALIGN_UNALIGNED][crate::NCALIGN_UNALIGNED] or invalid [NcAlign]. /// /// *C style function: [ncplane_valign()][crate::ncplane_valign].* #[inline] pub fn valign(&mut self, align: NcAlign, cols: NcDim) -> NcResult<()> { error![ crate::ncplane_valign(self, align, cols), &format!("NcPlane.valign({:?}, {})", align, cols) ] } /// /// /// *C style function: [ncplane_center_abs()][crate::ncplane_center_abs].* // // TODO: doc. pub fn center_abs(&self, y: &mut NcDim, x: &mut NcDim) { unsafe { crate::ncplane_center_abs(self, &mut (*y as i32), &mut (*x as i32)); } } /// Returns the dimensions of this `NcPlane`. /// /// *C style function: [ncplane_dim_yx()][crate::ncplane_dim_yx].* pub fn dim_yx(&self) -> (NcDim, NcDim) { let (mut y, mut x) = (0, 0); unsafe { crate::ncplane_dim_yx(self, &mut y, &mut x) }; (y as NcDim, x as NcDim) } /// Return the rows of this `NcPlane`. /// /// *C style function: [ncplane_dim_y()][crate::ncplane_dim_y].* #[inline] pub fn dim_y(&self) -> NcDim { self.dim_yx().0 } /// Return the columns of this `NcPlane`. /// /// *C style function: [ncplane_dim_x()][crate::ncplane_dim_x].* #[inline] pub fn dim_x(&self) -> NcDim { self.dim_yx().1 } /// Return the rows of this `NcPlane`. /// /// Alias of [dim_y][NcPlane#method.dim_y] /// /// *C style function: [ncplane_dim_y()][crate::ncplane_dim_y].* #[inline] pub fn rows(&self) -> NcDim { self.dim_yx().0 } /// Return the cols of this `NcPlane`. /// /// Alias of [dim_x][NcPlane#method.dim_x] /// /// *C style function: [ncplane_dim_x()][crate::ncplane_dim_x].* #[inline] pub fn cols(&self) -> NcDim { self.dim_yx().1 } /// Resizes this `NcPlane`. /// /// The four parameters `keep_y`, `keep_x`, `keep_len_y`, and `keep_len_x` /// defines a subset of this `NcPlane` to keep unchanged. This may be a section /// of size 0. /// /// `keep_x` and `keep_y` are relative to this `NcPlane`. They must specify a /// coordinate within the ncplane's totality. If either of `keep_len_y` or /// `keep_len_x` is non-zero, both must be non-zero. /// /// `y_off` and `x_off` are relative to `keep_y` and `keep_x`, and place the /// upper-left corner of the resized NcPlane. /// /// `y_len` and `x_len` are the dimensions of this `NcPlane` after resizing. /// `y_len` must be greater than or equal to `keep_len_y`, /// and `x_len` must be greater than or equal to `keeplenx`. /// /// It is an error to attempt to resize the standard plane. /// /// *C style function: [ncplane_resize()][crate::ncplane_resize].* pub fn resize( &mut self, keep_y: NcDim, keep_x: NcDim, keep_len_y: NcDim, keep_len_x: NcDim, y_off: NcOffset, x_off: NcOffset, y_len: NcDim, x_len: NcDim, ) -> NcResult<()> { error![ unsafe { crate::ncplane_resize( self, keep_y as i32, keep_x as i32, keep_len_y as i32, keep_len_x as i32, y_off as i32, x_off as i32, y_len as i32, x_len as i32, ) }, &format!( "NcPlane.resize({}, {}, {}, {}, {}, {}, {}, {})", keep_y, keep_x, keep_len_y, keep_len_x, y_off, x_off, y_len, x_len ) ] } /// Suitable for use as a 'resizecb' with planes created with /// [`NCPLANE_OPTION_MARGINALIZED`][crate::NCPLANE_OPTION_MARGINALIZED]. /// /// This will resize this plane against its parent, attempting to enforce /// the supplied margins. /// /// *C style function: [ncplane_resize_marginalized()][crate::ncplane_resize_marginalized].* pub fn resize_marginalized(&mut self) -> NcResult<()> { error![ unsafe { crate::ncplane_resize_marginalized(self) }, "NcPlane.resize_marginalized()" ] } /// Suitable for use as a 'resizecb', this will resize the plane /// to the visual region's size. It is used for the standard plane. /// /// *C style function: [ncplane_resize_maximize()][crate::ncplane_resize_maximize].* pub fn resize_maximize(&mut self) -> NcResult<()> { error![ unsafe { crate::ncplane_resize_maximize(self) }, "NcPlane.resize_maximize()" ] } /// Creates an RGBA flat array from the selected region of the plane. /// /// Starts at the plane's `beg_y`x`beg_x` coordinate (which must lie on the /// plane), continuing for `len_y`x`len_x` cells. /// /// Use `None` for either or both of `len_y` and `len_x` in order to /// go through the boundary of the plane in that axis. /// /// Only glyphs from the specified blitset may be present. /// /// *C style function: [ncplane_rgba()][crate::ncplane_as_rgba].* pub fn as_rgba( &mut self, blitter: NcBlitter, beg_y: NcDim, beg_x: NcDim, len_y: Option<NcDim>, len_x: Option<NcDim>, ) -> NcResult<&mut [u32]> { // converts length arguments to expected format let len_y2: i32; let len_x2: i32; if let Some(y) = len_y { len_y2 = y as i32; } else { len_y2 = -1; } if let Some(x) = len_x { len_x2 = x as i32; } else { len_x2 = -1; } // pixel geometry let mut pxdimy = 0; let mut pxdimx = 0; let res_array = unsafe { crate::ncplane_as_rgba( self, blitter, beg_y as i32, beg_x as i32, len_y2, len_x2, &mut pxdimy, &mut pxdimx, ) }; error_ref_mut![ res_array, &format![ "NcPlane.rgba({}, {}, {}, {:?}, {:?})", blitter, beg_y, beg_x, len_y, len_x ], from_raw_parts_mut(res_array, (pxdimy * pxdimx) as usize) ] } /// Returns an [NcPixelGeometry] structure filled with pixel geometry for /// the display region, each cell, and the maximum displayable bitmap. /// /// This function calls /// [notcurses_check_pixel_support][crate::notcurses_check_pixel_support], /// possibly leading to an interrogation of the terminal. /// /// *C style function: [ncplane_pixelgeom()][crate::ncplane_pixelgeom].* pub fn pixelgeom(&self) -> NcPixelGeometry { let mut pxy = 0; let mut pxx = 0; let mut celldimy = 0; let mut celldimx = 0; let mut maxbmapy = 0; let mut maxbmapx = 0; unsafe { crate::ncplane_pixelgeom( self, &mut pxy, &mut pxx, &mut celldimy, &mut celldimx, &mut maxbmapy, &mut maxbmapx, ); } NcPixelGeometry { term_y: pxy as NcDim, term_x: pxx as NcDim, cell_y: celldimy as NcDim, cell_x: celldimx as NcDim, max_bitmap_y: maxbmapy as NcDim, max_bitmap_x: maxbmapx as NcDim, } } /// Realigns this `NcPlane` against its parent, using the alignment specified /// at creation time. /// /// Suitable for use as an [NcResizeCb]. /// /// *C style function: [ncplane_resize_realign()][crate::ncplane_resize_realign].* // // TODO: suitable for use as an NcResizeCb? pub fn resize_realign(&mut self) -> NcResult<()> { error![unsafe { crate::ncplane_resize_realign(self) }] } /// Resizes this `NcPlane`, retaining what data we can (everything, unless we're /// shrinking in some dimension). Keeps the origin where it is. /// /// *C style function: [ncplane_resize_simple()][crate::ncplane_resize_simple].* #[inline] pub fn resize_simple(&mut self, y_len: NcDim, x_len: NcDim) -> NcResult<()> { error![crate::ncplane_resize_simple( self, y_len as u32, x_len as u32 )] } /// Returns this `NcPlane`'s current resize callback. /// /// *C style function: [ncplane_resizecb()][crate::ncplane_resizecb].* pub fn resizecb(&self) -> Option<NcResizeCb> { unsafe { crate::ncresizecb_to_rust(crate::ncplane_resizecb(self)) } } /// Replaces this `NcPlane`'s existing resize callback (which may be [None]). /// /// The standard plane's resizecb may not be changed. /// /// *C style function: [ncplane_set_resizecb()][crate::ncplane_set_resizecb].* pub fn set_resizecb(&mut self, resizecb: Option<NcResizeCb>) { unsafe { crate::ncplane_set_resizecb(self, crate::ncresizecb_to_c(resizecb)) } } /// Rotate the plane π/2 radians clockwise. /// /// This cannot be performed on arbitrary planes, because glyphs cannot be /// arbitrarily rotated. /// /// The glyphs which can be rotated are limited: line-drawing characters, /// spaces, half blocks, and full blocks. /// /// The plane must have an even number of columns. /// /// Use the ncvisual rotation for a more flexible approach. /// /// *C style function: [ncplane_rotate_cw()][crate::ncplane_rotate_cw].* pub fn rotate_cw(&mut self) -> NcResult<()> { error![unsafe { crate::ncplane_rotate_cw(self) }] } /// Rotate the plane π/2 radians counter-clockwise. /// /// See [`rotate_cw`][NcPlane#method.rotate_cw] /// for more information. /// /// *C style function: [ncplane_rotate_ccw()][crate::ncplane_rotate_ccw].* pub fn rotate_ccw(&mut self) -> NcResult<()> { error![unsafe { crate::ncplane_rotate_ccw(self) }] } /// Maps the provided coordinates relative to the origin of this `NcPlane`, /// to the same absolute coordinates relative to the origin of `target`. /// /// *C style function: [ncplane_translate()][crate::ncplane_translate].* // // TODO: API change, return the coordinates as a tuple instead of being &mut pub fn translate(&self, target: &NcPlane, y: &mut NcDim, x: &mut NcDim) { unsafe { crate::ncplane_translate(self, target, &mut (*y as i32), &mut (*x as i32)) } } /// Returns true if the provided absolute `y`/`x` coordinates are within /// this `NcPlane`, or false otherwise. /// /// Either way, translates the absolute coordinates relative to this `NcPlane`. /// /// *C style function: [ncplane_translate_abs()][crate::ncplane_translate_abs].* // // TODO: API change, return a tuple (y,x,bool) pub fn translate_abs(&self, y: &mut NcDim, x: &mut NcDim) -> bool { unsafe { crate::ncplane_translate_abs(self, &mut (*y as i32), &mut (*x as i32)) } } /// Gets the `y`, `x` origin of this `NcPlane` relative to the standard plane, /// or the `NcPlane` to which it is bound. /// /// *C style function: [ncplane_yx()][crate::ncplane_yx].* // // CHECK: negative offsets pub fn yx(&self) -> (NcOffset, NcOffset) { let (mut y, mut x) = (0, 0); unsafe { crate::ncplane_yx(self, &mut y, &mut x) }; (y as NcOffset, x as NcOffset) } /// Gets the `x` origin of this `NcPlane` relative to the standard plane, /// or the `NcPlane` to which it is bound. /// /// *C style function: [ncplane_x()][crate::ncplane_x].* pub fn x(&self) -> NcOffset { unsafe { crate::ncplane_x(self) as NcOffset } } /// Gets the `y` origin of this `NcPlane` relative to the standard plane, /// or the `NcPlane` to which it is bound. /// /// *C style function: [ncplane_y()][crate::ncplane_y].* pub fn y(&self) -> NcOffset { unsafe { crate::ncplane_y(self) as NcOffset } } /// Returns `true` if this `NcPlane` has scrolling enabled, or `false` otherwise. pub fn scrolling_p(&self) -> bool { unsafe { crate::ncplane_scrolling_p(self) } } /// Sets the scrolling behaviour of the plane, and /// returns true if scrolling was previously enabled, of false, if disabled. /// /// All planes are created with scrolling disabled. Attempting to print past /// the end of a line will stop at the plane boundary, and indicate an error. /// /// On a plane 10 columns wide and two rows high, printing "0123456789" /// at the origin should succeed, but printing "01234567890" will by default /// fail at the eleventh character. In either case, the cursor will be left /// at location 0x10; it must be moved before further printing can take place. I /// /// *C style function: [ncplane_set_scrolling()][crate::ncplane_set_scrolling].* pub fn set_scrolling(&mut self, scroll: bool) -> bool { unsafe { crate::ncplane_set_scrolling(self, scroll) } } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: boxes & perimeters impl NcPlane { /// Draws a box with its upper-left corner at the current cursor position, /// and its lower-right corner at `y_stop` * `x_stop`. /// /// The 6 cells provided are used to draw the upper-left, ur, ll, and lr corners, /// then the horizontal and vertical lines. /// /// See [NcBoxMask] for information about the border and gradient masks, /// and the drawing of corners. /// /// If the gradient bit is not set, the styling from the hline/vlline cells /// is used for the horizontal and vertical lines, respectively. /// /// If the gradient bit is set, the color is linearly interpolated between /// the two relevant corner cells. /// /// *C style function: [ncplane_box()][crate::ncplane_box].* pub fn r#box( &mut self, ul: &NcCell, ur: &NcCell, ll: &NcCell, lr: &NcCell, hline: &NcCell, vline: &NcCell, y_stop: NcDim, x_stop: NcDim, boxmask: NcBoxMask, ) -> NcResult<()> { error![unsafe { crate::ncplane_box( self, ul, ur, ll, lr, hline, vline, y_stop as i32, x_stop as i32, boxmask, ) }] } /// Draws a box with its upper-left corner at the current cursor position, /// having dimensions `y_len` * `x_len`. /// The minimum box size is 2x2, and it cannot be drawn off-screen. /// /// See the [`box`][NcPlane#method.box] method for more information. /// /// *C style function: [ncplane_box_sized()][crate::ncplane_box_sized].* #[inline] pub fn box_sized( &mut self, ul: &NcCell, ur: &NcCell, ll: &NcCell, lr: &NcCell, hline: &NcCell, vline: &NcCell, y_len: NcDim, x_len: NcDim, boxmask: NcBoxMask, ) -> NcResult<()> { error![crate::ncplane_box_sized( self, ul, ur, ll, lr, hline, vline, y_len, x_len, boxmask )] } /// NcPlane.[box()][NcPlane#method.box] with the double box-drawing characters. /// /// *C style function: [ncplane_double_box()][crate::ncplane_double_box].* #[inline] pub fn double_box( &mut self, stylemask: NcStyle, channels: NcChannels, y_stop: NcDim, x_stop: NcDim, boxmask: NcBoxMask, ) -> NcResult<()> { error![crate::ncplane_double_box( self, stylemask, channels, y_stop, x_stop, boxmask )] } /// /// /// *C style function: [ncplane_double_box_sized()][crate::ncplane_double_box_sized].* #[inline] pub fn double_box_sized( &mut self, stylemask: NcStyle, channels: NcChannels, y_len: NcDim, x_len: NcDim, boxmask: NcBoxMask, ) -> NcResult<()> { error![crate::ncplane_double_box( self, stylemask, channels, y_len, x_len, boxmask )] } /// Draws the perimeter around this `NcPlane`. /// /// *C style function: [ncplane_perimeter()][crate::ncplane_perimeter].* #[inline] pub fn perimeter( &mut self, ul: &NcCell, ur: &NcCell, ll: &NcCell, lr: &NcCell, hline: &NcCell, vline: &NcCell, boxmask: NcBoxMask, ) -> NcResult<()> { error![crate::ncplane_perimeter( self, ul, ur, ll, lr, hline, vline, boxmask )] } /// NcPlane.[perimeter()][NcPlane#method.perimeter] with the double box-drawing characters. /// /// *C style function: [ncplane_perimeter_double()][crate::ncplane_perimeter_double].* #[inline] pub fn perimeter_double( &mut self, stylemask: NcStyle, channels: NcChannels, boxmask: NcBoxMask, ) -> NcResult<()> { error![crate::ncplane_perimeter_double( self, stylemask, channels, boxmask )] } /// NcPlane.[perimeter()][NcPlane#method.perimeter] with the rounded box-drawing characters. /// /// /// *C style function: [ncplane_perimeter_rounded()][crate::ncplane_perimeter_rounded].* #[inline] pub fn perimeter_rounded( &mut self, stylemask: NcStyle, channels: NcChannels, boxmask: NcBoxMask, ) -> NcResult<()> { error![crate::ncplane_perimeter_rounded( self, stylemask, channels, boxmask )] } } // ----------------------------------------------------------------------------- /// ## NcPlane methods: fading, gradients & greyscale impl NcPlane { /// Fades this `NcPlane` in, over the specified time, calling 'fader' at /// each iteration. /// /// Usage: /// 1. Load this `NcPlane` with the target cells without rendering. /// 2. call this function. /// /// When it's done, the `NcPlane` will have reached the target levels, /// starting from zeroes. /// /// *C style function: [ncplane_fadein()][crate::ncplane_fadein].* pub fn fadein(&mut self, time: &NcTime, fader: NcFadeCb) -> NcResult<()> { error![unsafe { crate::ncplane_fadein(self, time, fader, null_mut()) }] } /// Fades in through 'iter' iterations, /// where 'iter' < 'ncfadectx_iterations(nctx)'. /// /// *C style function: [ncplane_fadein_iteration()][crate::ncplane_fadein_iteration].* pub fn fadein_iteration(&mut self, time: &NcTime, fader: NcFadeCb) -> NcResult<()> { error![unsafe { crate::ncplane_fadein(self, time, fader, null_mut()) }] } /// Fades this `NcPlane` out, over the specified time, calling 'fader' at /// each iteration. /// /// Requires a terminal which supports truecolor, or at least palette /// modification (if the terminal uses a palette, our ability to fade planes /// is limited, and affected by the complexity of the rest of the screen). /// /// *C style function: [ncplane_fadeout()][crate::ncplane_fadeout].* pub fn fadeout(&mut self, time: &NcTime, fader: NcFadeCb) -> NcResult<()> { error![unsafe { crate::ncplane_fadeout(self, time, fader, null_mut()) }] } /// Fades out through 'iter' iterations, /// where 'iter' < 'ncfadectx_iterations(nctx)'. /// /// *C style function: [ncplane_fadeout_iteration()][crate::ncplane_fadeout_iteration].* pub fn fadeout_iteration(&mut self, time: &NcTime, fader: NcFadeCb) -> NcResult<()> { error![unsafe { crate::ncplane_fadeout(self, time, fader, null_mut()) }] } /// Pulses this `NcPlane` in and out until the callback returns non-zero, /// relying on the callback 'fader' to initiate rendering. /// /// `time` defines the half-period (i.e. the transition from black to full /// brightness, or back again). /// /// Proper use involves preparing (but not rendering) the `NcPlane`, /// then calling this method, which will fade in from black to the /// specified colors. /// /// *C style function: [ncplane_pulse()][crate::ncplane_pulse].* pub fn pulse(&mut self, time: &NcTime, fader: NcFadeCb) -> NcResult<()> { error![unsafe { crate::ncplane_pulse(self, time, fader, null_mut()) }] } /// Draws a gradient with its upper-left corner at the current cursor /// position, stopping at `y_stop` * `xstop`. /// /// Returns the number of cells filled on success, /// or [NCRESULT_ERR] on error. /// /// The glyph composed of `egc` and `stylemask` is used for all cells. /// The channels specified by `ul`, `ur`, `ll`, and `lr` are composed into /// foreground and background gradients. /// /// To do a vertical gradient, `ul` ought equal `ur` and `ll` ought equal /// `lr`. To do a horizontal gradient, `ul` ought equal `ll` and `ur` ought /// equal `ul`. /// /// To color everything the same, all four channels should be equivalent. /// The resulting alpha values are equal to incoming alpha values. /// /// Palette-indexed color is not supported. /// /// Preconditions for gradient operations (error otherwise): /// /// all: only RGB colors, unless all four channels match as default /// all: all alpha values must be the same /// 1x1: all four colors must be the same /// 1xN: both top and both bottom colors must be the same (vertical gradient) /// Nx1: both left and both right colors must be the same (horizontal gradient) /// /// *C style function: [ncplane_gradient()][crate::ncplane_gradient].* pub fn gradient( &mut self, egc: &str, stylemask: NcStyle, ul: NcChannels, ur: NcChannels, ll: NcChannels, lr: NcChannels, y_stop: NcDim, x_stop: NcDim, ) -> NcResult<NcDim> { let res = crate::ncplane_gradient(self, egc, stylemask, ul, ur, ll, lr, y_stop, x_stop); error![res, "", res as NcDim] } /// Draw a gradient with its upper-left corner at the current cursor position, /// having dimensions `y_len` * `x_len`. /// /// See [gradient][NcPlane#method.gradient] for more information. /// /// *C style function: [ncplane_gradient_sized()][crate::ncplane_gradient_sized].* #[inline] pub fn gradient_sized( &mut self, egc: &str, stylemask: NcStyle, ul: NcChannels, ur: NcChannels, ll: NcChannels, lr: NcChannels, y_len: NcDim, x_len: NcDim, ) -> NcResult<NcDim> { let res = crate::ncplane_gradient_sized(self, egc, stylemask, ul, ur, ll, lr, y_len, x_len); error![res, "", res as NcDim] } /// Draws a high-resolution gradient using upper blocks and synced backgrounds. /// /// Returns the number of cells filled on success, /// or [NCRESULT_ERR] on error. /// /// This doubles the number of vertical gradations, but restricts you to /// half blocks (appearing to be full blocks). /// /// *C style function: [ncplane_highgradient()][crate::ncplane_highgradient].* pub fn highgradient( &mut self, ul: NcChannel, ur: NcChannel, ll: NcChannel, lr: NcChannel, y_stop: NcDim, x_stop: NcDim, ) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_highgradient(self, ul, ur, ll, lr, y_stop as i32, x_stop as i32) }; error![res, "", res as NcDim] } /// [`gradient_sized`][NcPlane#method.gradient_sized] /// meets [`highgradient`][NcPlane#method.highgradient]. /// /// *C style function: [ncplane_highgradient_sized()][crate::ncplane_highgradient_sized].* pub fn highgradient_sized( &mut self, ul: NcChannel, ur: NcChannel, ll: NcChannel, lr: NcChannel, y_stop: NcDim, x_stop: NcDim, ) -> NcResult<NcDim> { let res = unsafe { crate::ncplane_highgradient_sized(self, ul, ur, ll, lr, y_stop as i32, x_stop as i32) }; error![res, "", res as NcDim] } /// Converts this `NcPlane`'s content to greyscale. /// /// *C style function: [ncplane_greyscale()][crate::ncplane_greyscale].* pub fn greyscale(&mut self) { unsafe { crate::ncplane_greyscale(self); } } }