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 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145
|
(* Orpie -- a stack-based RPN calculator for the console
* Copyright (C) 2003-2004 Paul Pelzl
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
*
* Please send bug reports, patches, etc. to Paul Pelzl at
* <pelzlpj@eecs.umich.edu>.
*)
open Curses;;
open Printf;;
open Rpc_calc;;
open Rpc_stack;;
open Complex;;
open Big_int;;
open Operations;;
open Interface;;
open Interface_draw;;
exception Interrupt_exception;;
(*******************************************************************)
(* RESIZE HANDLER *)
(*******************************************************************)
(* create the (new) windows corresponding to the different areas of the screen *)
let create_windows screen =
let height, width = get_size () in
if height >= 24 then
if width >= 80 && not !Rcfile.hide_help then
(* full two-pane window provided *)
let left_win = Some (newwin (height - 2) 40 0 0) and
right_win = newwin (height - 2) 40 0 40 and
bottom_win = newwin 2 80 (height - 2) 0 in
{stdscr = screen; lines = height; cols = width;
help_win = left_win; hw_lines = (height - 2); hw_cols = 40;
stack_win = right_win; sw_lines = (height - 2); sw_cols = 40;
entry_win = bottom_win; ew_lines = 2; ew_cols = 80}
else if width >= 40 then
(* only the stack window is provided *)
let right_win = newwin (height - 2) 40 0 0 and
bottom_win = newwin 2 width (height - 2) 0 in
{stdscr = screen; lines = height; cols = width;
help_win = None; hw_lines = 0; hw_cols = 0;
stack_win = right_win; sw_lines = (height - 2); sw_cols = 40;
entry_win = bottom_win; ew_lines = 2; ew_cols = 40}
else
(endwin ();
failwith "Orpie requires at least a 40 column window.")
else
(endwin ();
failwith "Orpie requires at least a 24 line window.");;
(* resize the various windows to fit the new terminal size *)
let resize_subwins scr =
let height, width = get_size () in
if height >= 24 then
if width >= 80 && not !Rcfile.hide_help then
(* full two-pane window provided *)
begin
scr.lines <- height;
scr.cols <- width;
begin match scr.help_win with
|None ->
scr.help_win <- Some (newwin (height - 2) 40 0 0)
|Some win ->
assert (wresize win (height - 2) 40);
end;
scr.hw_lines <- height - 2;
scr.hw_cols <- 40;
assert (wresize scr.stack_win (height - 2) 40);
assert (mvwin scr.stack_win 0 40);
scr.sw_lines <- height - 2;
scr.sw_cols <- 40;
assert (wresize scr.entry_win 2 80);
assert (mvwin scr.entry_win (height - 2) 0);
scr.ew_lines <- 2;
scr.ew_cols <- 80
end
else if width >= 40 then
(* only the stack window is provided *)
begin
scr.lines <- height;
scr.cols <- width;
begin match scr.help_win with
|None ->
()
|Some win ->
assert (delwin win);
scr.help_win <- None;
end;
scr.hw_lines <- 0;
scr.hw_cols <- 0;
assert (wresize scr.stack_win (height - 2) 40);
assert (mvwin scr.stack_win 0 0);
scr.sw_lines <- height - 2;
scr.sw_cols <- 40;
assert (wresize scr.entry_win 2 40);
assert (mvwin scr.entry_win (height - 2) 0);
scr.ew_lines <- 2;
scr.ew_cols <- 40
end
else
(endwin ();
failwith "Orpie requires at least a 40 column window.")
else
(endwin ();
failwith "Orpie requires at least a 24 line window.");;
(* refresh the screen *)
let handle_refresh (iface : interface_state_t) =
begin match iface.scr.help_win with
|None -> ()
|Some win -> let _ = touchwin win in ()
end;
let _ = touchwin iface.scr.stack_win in
let _ = touchwin iface.scr.entry_win in
draw_help iface;
draw_stack iface;
draw_update_entry iface;
draw_update_stack iface
(* handle a terminal resize *)
let handle_resize (iface : interface_state_t) =
(* reset ncurses *)
endwin ();
assert (refresh ());
let rows, cols = get_size () in
resize_subwins iface.scr;
handle_refresh iface;;
(*******************************************************************)
(* OBTAINING AN OBJECT FROM THE ENTRY BUFFER *)
(*******************************************************************)
(* parse the entry buffers to obtain a stack object *)
let get_entry_from_buffer (iface : interface_state_t) =
(* get a float from strings representing the mantissa and exponent *)
let get_float_el mantissa exponent =
if String.length mantissa > 0 then
if String.length exponent > 0 then
if exponent = "-" || exponent = "+" then
float_of_string mantissa
else
float_of_string (mantissa ^ "e" ^ exponent)
else
float_of_string mantissa
else
0.0
in
match iface.entry_type with
|IntEntry ->
let base_mode =
if iface.is_entering_base then
match iface.int_base_string with
|"b" -> Bin
|"o" -> Oct
|"d" -> Dec
|"h" -> Hex
|_ -> (iface.calc#get_modes ()).base
else
(iface.calc#get_modes ()).base
in
let base = match base_mode with
|Bin -> 2
|Oct -> 8
|Dec -> 10
|Hex -> 16 in
begin
try
let ival = Big_int_str.big_int_of_string_base
iface.int_entry_buffer base in
RpcInt ival
with Big_int_str.Big_int_string_failure error_msg ->
raise (Invalid_argument error_msg)
end
|FloatEntry ->
begin
let buffer = iface.gen_buffer.(0) in
try
let ff = get_float_el buffer.re_mantissa buffer.re_exponent in
let fu = Units.unit_of_float_string ff iface.units_entry_buffer in
RpcFloatUnit fu
with
|Failure "float_of_string" ->
raise (Invalid_argument "improperly formatted floating-point data")
|Units.Units_error ss ->
raise (Invalid_argument ss)
end
|ComplexEntry ->
begin
let buffer = iface.gen_buffer.(0) in
try
begin match buffer.is_polar with
|false ->
let real_part = get_float_el buffer.re_mantissa
buffer.re_exponent
and imag_part = get_float_el buffer.im_mantissa
buffer.im_exponent in
let cu = Units.unit_of_cpx_string
{re = real_part; im = imag_part} iface.units_entry_buffer in
RpcComplexUnit cu
(* if is_polar==true, then the data in the buffer represents
* polar data... so convert it to rect notation before storing
* it as a complex number. *)
|true ->
let r = get_float_el buffer.re_mantissa
buffer.re_exponent
and theta =
match (iface.calc#get_modes ()).angle with
|Rad ->
get_float_el buffer.im_mantissa buffer.im_exponent
|Deg ->
(pi /. 180.0 *. (get_float_el buffer.im_mantissa
buffer.im_exponent))
in
let cu = Units.unit_of_cpx_string
{re = r *. (cos theta); im = r *. (sin theta)}
iface.units_entry_buffer in
RpcComplexUnit cu
end
with
|Failure "float_of_string" ->
raise (Invalid_argument "improperly formatted complex floating-point data")
|Units.Units_error ss ->
raise (Invalid_argument ss)
end
|FloatMatrixEntry ->
begin
let matrix_rows =
if iface.has_multiple_rows then
succ (iface.curr_buf / iface.matrix_cols)
else
1
in
let temp_arr = Array.make (matrix_rows * iface.matrix_cols) 0.0 in
try
for i = 0 to iface.curr_buf do
temp_arr.(i) <- (get_float_el iface.gen_buffer.(i).re_mantissa
iface.gen_buffer.(i).re_exponent)
done;
let uu = Units.unit_of_string iface.units_entry_buffer in
RpcFloatMatrixUnit (Gsl_matrix.of_array temp_arr matrix_rows
iface.matrix_cols, uu)
with Failure "float_of_string" ->
raise (Invalid_argument "improperly formatted floating-point matrix data")
end
|ComplexMatrixEntry ->
begin
let matrix_rows =
if iface.has_multiple_rows then
succ (iface.curr_buf / iface.matrix_cols)
else
1
in
let temp_arr = Array.make (matrix_rows * iface.matrix_cols)
{re = 0.0; im = 0.0} in
try
for i = 0 to iface.curr_buf do
begin match iface.gen_buffer.(i).is_polar with
|false ->
let re_part = get_float_el iface.gen_buffer.(i).re_mantissa
iface.gen_buffer.(i).re_exponent
and im_part = get_float_el iface.gen_buffer.(i).im_mantissa
iface.gen_buffer.(i).im_exponent in
temp_arr.(i) <- {re = re_part; im = im_part}
(* if is_polar==true, then the data in the buffer represents
* polar data... so convert it to rect notation before storing
* it as a complex number. *)
|true ->
let r = get_float_el iface.gen_buffer.(i).re_mantissa
iface.gen_buffer.(i).re_exponent
and theta =
match (iface.calc#get_modes ()).angle with
|Rad ->
get_float_el iface.gen_buffer.(i).im_mantissa
iface.gen_buffer.(i).im_exponent
|Deg ->
(pi /. 180.0 *. (get_float_el
iface.gen_buffer.(i).im_mantissa
iface.gen_buffer.(i).im_exponent))
in
temp_arr.(i) <- {re = r *. (cos theta);
im = r *. (sin theta)}
end
done;
let uu = Units.unit_of_string iface.units_entry_buffer in
RpcComplexMatrixUnit (Gsl_matrix_complex.of_array temp_arr
matrix_rows iface.matrix_cols, uu)
with Failure "float_of_string" ->
raise (Invalid_argument "improperly formatted complex
floating-point matrix data")
end
|VarEntry ->
RpcVariable iface.variable_entry_buffer
(* parse the entry buffers to obtain a stack object, then stack#push it *)
let push_entry (iface : interface_state_t) =
(* perform this cleanup routine after every entry, so we are prepared
to receive a new object. *)
let post_entry_cleanup () =
iface.has_entry <- false;
iface.entry_type <- FloatEntry;
iface.int_entry_buffer <- "";
iface.int_base_string <- "";
iface.is_entering_base <- false;
iface.is_entering_exponent <- false;
for i = 0 to pred max_matrix_size do
iface.gen_buffer.(i) <-
{re_mantissa = ""; re_exponent = "";
im_mantissa = ""; im_exponent = ""; is_polar = false}
done;
iface.curr_buf <- 0;
iface.is_entering_imag <- false;
iface.matrix_cols <- 1;
iface.has_multiple_rows <- false;
iface.variable_entry_buffer <- "";
iface.units_entry_buffer <- "";
iface.is_entering_units <- false;
draw_update_entry iface
in
begin
try
iface.calc#push (get_entry_from_buffer iface)
with
Invalid_argument error_msg ->
(post_entry_cleanup ();
(* raise the EXN again, so it can be caught within do_main_loop *)
raise (Invalid_argument error_msg))
end;
post_entry_cleanup ()
(***********************************************************************)
(* HANDLERS FOR EDITING KEYSTROKES *)
(***********************************************************************)
(* handle an 'enter' keypress *)
let handle_enter (iface : interface_state_t) =
iface.interface_mode <- StandardEntryMode;
begin match iface.help_mode with
|StandardIntHelp ->
iface.help_mode <- StandardHelp;
draw_help iface
|_ ->
()
end;
try
(if iface.has_entry then
push_entry iface
else
raise Not_handled);
draw_update_stack iface
with Invalid_argument error_msg ->
draw_error iface error_msg;
assert (doupdate ())
(* handle a 'begin_int' keypress *)
let handle_begin_int (iface : interface_state_t) =
if iface.entry_type = FloatEntry then
(iface.entry_type <- IntEntry;
iface.interface_mode <- IntEditMode;
iface.int_entry_buffer <- "";
iface.help_mode <- StandardIntHelp;
draw_help iface;
draw_update_entry iface)
else
()
(* handle a 'begin_complex' keypress *)
let handle_begin_complex (iface : interface_state_t) =
iface.has_entry <- true;
match iface.entry_type with
|FloatEntry ->
(iface.entry_type <- ComplexEntry;
draw_update_entry iface)
|FloatMatrixEntry ->
(iface.entry_type <- ComplexMatrixEntry;
draw_update_entry iface)
|_ ->
()
(* handle a 'begin_matrix' keypress *)
let handle_begin_matrix (iface : interface_state_t) =
iface.has_entry <- true;
match iface.entry_type with
|FloatEntry ->
(iface.entry_type <- FloatMatrixEntry;
draw_update_entry iface)
|ComplexEntry ->
(iface.entry_type <- ComplexMatrixEntry;
draw_update_entry iface)
|FloatMatrixEntry ->
if not iface.has_multiple_rows then
(iface.has_multiple_rows <- true;
iface.curr_buf <- succ iface.curr_buf;
iface.matrix_cols <- iface.curr_buf;
iface.is_entering_exponent <- false;
draw_update_entry iface)
else if (succ iface.curr_buf) mod iface.matrix_cols = 0 then
(iface.curr_buf <- succ iface.curr_buf;
iface.is_entering_exponent <- false;
(*FIXME: any other items to reset here?*)
draw_update_entry iface)
else
()
|ComplexMatrixEntry ->
if not iface.has_multiple_rows then
(iface.has_multiple_rows <- true;
iface.curr_buf <- succ iface.curr_buf;
iface.matrix_cols <- iface.curr_buf;
iface.is_entering_exponent <- false;
iface.is_entering_imag <- false;
draw_update_entry iface)
else if (succ iface.curr_buf) mod iface.matrix_cols = 0 then
(iface.curr_buf <- succ iface.curr_buf;
iface.is_entering_exponent <- false;
iface.is_entering_imag <- false;
(*FIXME: any other items to reset here?*)
draw_update_entry iface)
else
()
|_ ->
()
(* handle a 'separator' keypress *)
let handle_separator (iface : interface_state_t) =
match iface.entry_type with
|ComplexEntry ->
if not iface.is_entering_imag then
(iface.is_entering_imag <- true;
iface.is_entering_exponent <- false;
draw_update_entry iface)
else
()
|FloatMatrixEntry ->
if iface.curr_buf < pred max_matrix_size then
(iface.curr_buf <- succ iface.curr_buf;
iface.is_entering_exponent <- false;
(if not iface.has_multiple_rows then
iface.matrix_cols <- succ iface.curr_buf
else
());
(*FIXME: any other items to reset here?*)
draw_update_entry iface)
else
()
|ComplexMatrixEntry ->
if iface.is_entering_imag then
if iface.curr_buf < pred max_matrix_size then
(iface.curr_buf <- succ iface.curr_buf;
iface.is_entering_exponent <- false;
iface.is_entering_imag <- false;
(if not iface.has_multiple_rows then
iface.matrix_cols <- succ iface.curr_buf
else
());
(*FIXME: any other items to reset here?*)
draw_update_entry iface)
else
()
else
(iface.is_entering_imag <- true;
iface.is_entering_exponent <- false;
draw_update_entry iface)
|_ ->
()
(* handle an 'angle' keypress *)
let handle_angle (iface : interface_state_t) =
match iface.entry_type with
|ComplexEntry ->
if not iface.is_entering_imag then
(iface.is_entering_imag <- true;
iface.gen_buffer.(iface.curr_buf).is_polar <- true;
iface.is_entering_exponent <- false;
draw_update_entry iface)
else
()
|ComplexMatrixEntry ->
if iface.is_entering_imag then
()
else
(iface.is_entering_imag <- true;
iface.gen_buffer.(iface.curr_buf).is_polar <- true;
iface.is_entering_exponent <- false;
draw_update_entry iface)
|_ ->
()
(* cancel integer entry mode *)
let handle_exit_int (iface : interface_state_t) =
iface.interface_mode <- StandardEntryMode;
iface.entry_type <- FloatEntry;
iface.help_mode <- StandardHelp;
iface.is_entering_base <- false;
iface.int_base_string <- "";
if (String.length iface.gen_buffer.(0).re_mantissa > 0) or
(String.length iface.gen_buffer.(0).re_exponent > 0) or
(String.length iface.gen_buffer.(0).im_mantissa > 0) or
(String.length iface.gen_buffer.(0).im_exponent > 0) then
iface.has_entry <- true
else
iface.has_entry <- false;
draw_help iface;
draw_update_entry iface
(* handle a 'backspace' keypress *)
let handle_backspace (iface : interface_state_t) =
let buffer = iface.gen_buffer.(iface.curr_buf) in
begin match iface.entry_type with
|IntEntry ->
if iface.is_entering_base then begin
iface.is_entering_base <- false;
iface.int_base_string <- ""
end else if String.length iface.int_entry_buffer > 0 then begin
let len = String.length iface.int_entry_buffer in
iface.int_entry_buffer <- String.sub iface.int_entry_buffer 0 (len - 1)
end else
handle_exit_int iface
|FloatEntry ->
if iface.is_entering_exponent then
if String.length buffer.re_exponent > 0 then
(let len = String.length buffer.re_exponent in
buffer.re_exponent <- String.sub buffer.re_exponent 0 (len - 1))
else
(iface.is_entering_exponent <- false;
draw_update_entry iface)
else if String.length buffer.re_mantissa > 1 then
(let len = String.length buffer.re_mantissa in
buffer.re_mantissa <- String.sub buffer.re_mantissa 0 (len - 1))
else
(iface.has_entry <- false;
buffer.re_mantissa <- "")
|ComplexEntry ->
if iface.is_entering_imag then
if iface.is_entering_exponent then
if String.length buffer.im_exponent > 0 then
(let len = String.length buffer.im_exponent in
buffer.im_exponent <- String.sub buffer.im_exponent 0 (len - 1))
else
iface.is_entering_exponent <- false
else if String.length buffer.im_mantissa > 0 then
(let len = String.length buffer.im_mantissa in
buffer.im_mantissa <- String.sub buffer.im_mantissa 0 (len - 1))
else
begin
iface.is_entering_imag <- false;
buffer.is_polar <- false;
(if String.length buffer.re_exponent > 0 then
iface.is_entering_exponent <- true
else
())
end
(* not entering imag/angle *)
else if iface.is_entering_exponent then
if String.length buffer.re_exponent > 0 then
(let len = String.length buffer.re_exponent in
buffer.re_exponent <- String.sub buffer.re_exponent 0 (len - 1))
else
iface.is_entering_exponent <- false
else if String.length buffer.re_mantissa > 0 then
(let len = String.length buffer.re_mantissa in
buffer.re_mantissa <- String.sub buffer.re_mantissa 0 (len - 1))
else
(iface.entry_type <- FloatEntry;
iface.has_entry <- false)
|FloatMatrixEntry ->
if iface.is_entering_exponent then
if String.length buffer.re_exponent > 0 then
(let len = String.length buffer.re_exponent in
buffer.re_exponent <- String.sub buffer.re_exponent 0 (len - 1))
else
iface.is_entering_exponent <- false
else if String.length buffer.re_mantissa > 0 then
(let len = String.length buffer.re_mantissa in
buffer.re_mantissa <- String.sub buffer.re_mantissa 0 (len - 1))
else if iface.curr_buf > 0 then
begin
iface.curr_buf <- pred iface.curr_buf;
(if String.length iface.gen_buffer.(iface.curr_buf).re_exponent > 0 then
iface.is_entering_exponent <- true
else
());
(if succ iface.curr_buf <= iface.matrix_cols then
(iface.matrix_cols <- succ iface.curr_buf;
iface.has_multiple_rows <- false)
else
())
end
else begin
iface.entry_type <- FloatEntry;
iface.has_entry <- false
end
|ComplexMatrixEntry ->
if iface.is_entering_imag then
if iface.is_entering_exponent then
if String.length buffer.im_exponent > 0 then
(let len = String.length buffer.im_exponent in
buffer.im_exponent <- String.sub buffer.im_exponent 0 (len - 1))
else
iface.is_entering_exponent <- false
else if String.length buffer.im_mantissa > 0 then
(let len = String.length buffer.im_mantissa in
buffer.im_mantissa <- String.sub buffer.im_mantissa 0 (len - 1))
else
begin
iface.is_entering_imag <- false;
buffer.is_polar <- false;
(if String.length buffer.re_exponent > 0 then
iface.is_entering_exponent <- true
else
())
end
(* not entering imag/angle *)
else if iface.is_entering_exponent then
if String.length buffer.re_exponent > 0 then
(let len = String.length buffer.re_exponent in
buffer.re_exponent <- String.sub buffer.re_exponent 0 (len - 1))
else
iface.is_entering_exponent <- false
else if String.length buffer.re_mantissa > 0 then
(let len = String.length buffer.re_mantissa in
buffer.re_mantissa <- String.sub buffer.re_mantissa 0 (len - 1))
else if iface.curr_buf > 0 then
begin
iface.curr_buf <- pred iface.curr_buf;
iface.is_entering_imag <- true;
(if String.length iface.gen_buffer.(iface.curr_buf).im_exponent > 0 then
iface.is_entering_exponent <- true
else
());
(if succ iface.curr_buf <= iface.matrix_cols then
(iface.matrix_cols <- succ iface.curr_buf;
iface.has_multiple_rows <- false)
else
())
end
else begin
iface.entry_type <- FloatEntry;
iface.has_entry <- false
end
|_ ->
failwith "caught unhandled backspace"
end;
draw_update_entry iface
(* handle a 'scientific_notation' (or base change) keypress *)
let handle_scientific_notation (iface : interface_state_t) =
begin match iface.entry_type with
|IntEntry ->
if String.length iface.int_entry_buffer > 0 then
(iface.is_entering_base <- true;
draw_update_entry iface)
else
()
|FloatEntry | FloatMatrixEntry ->
if String.length iface.gen_buffer.(iface.curr_buf).re_mantissa > 0 then
(iface.is_entering_exponent <- true;
draw_update_entry iface)
else
()
|ComplexEntry | ComplexMatrixEntry ->
if iface.is_entering_imag then
if String.length iface.gen_buffer.(iface.curr_buf).im_mantissa > 0 then
(iface.is_entering_exponent <- true;
draw_update_entry iface)
else
()
else
if String.length iface.gen_buffer.(0).re_mantissa > 0 then
(iface.is_entering_exponent <- true;
draw_update_entry iface)
else
()
|_ ->
failwith "caught unhandled scientific notation"
end;
draw_update_entry iface
(* handle a 'minus' keypress *)
let handle_minus (iface : interface_state_t) =
if iface.has_entry then
match iface.entry_type with
|IntEntry ->
(begin
match iface.int_entry_buffer.[0] with
|'-' -> iface.int_entry_buffer.[0] <- '+'
|'+' -> iface.int_entry_buffer.[0] <- '-'
|_ -> iface.int_entry_buffer <- "-" ^ iface.int_entry_buffer
end;
draw_update_entry iface)
|FloatEntry | FloatMatrixEntry ->
begin
let buffer = iface.gen_buffer.(iface.curr_buf) in
if iface.is_entering_exponent then
if String.length buffer.re_exponent > 0 then
match buffer.re_exponent.[0] with
|'-' -> buffer.re_exponent.[0] <- '+'
|'+' -> buffer.re_exponent.[0] <- '-'
|_ -> buffer.re_exponent <- "-" ^ buffer.re_exponent
else
()
else
if String.length buffer.re_mantissa > 0 then
match buffer.re_mantissa.[0] with
|'-' -> buffer.re_mantissa.[0] <- '+'
|'+' -> buffer.re_mantissa.[0] <- '-'
|_ -> buffer.re_mantissa <- "-" ^ buffer.re_mantissa
else
()
end;
draw_update_entry iface
|ComplexEntry | ComplexMatrixEntry ->
begin
let buffer = iface.gen_buffer.(iface.curr_buf) in
let mantissa =
if iface.is_entering_imag then
buffer.im_mantissa
else
buffer.re_mantissa
and exponent =
if iface.is_entering_imag then
buffer.im_exponent
else
buffer.re_exponent
in
if iface.is_entering_exponent then
if String.length exponent > 0 then
match exponent.[0] with
|'-' -> exponent.[0] <- '+'
|'+' -> exponent.[0] <- '-'
|_ ->
if iface.is_entering_imag then
buffer.im_exponent <- "-" ^ buffer.im_exponent
else
buffer.re_exponent <- "-" ^ buffer.re_exponent
else
()
else
if String.length mantissa > 0 then
match mantissa.[0] with
|'-' -> mantissa.[0] <- '+'
|'+' -> mantissa.[0] <- '-'
|_ ->
if iface.is_entering_imag then
buffer.im_mantissa <- "-" ^ buffer.im_mantissa
else
buffer.re_mantissa <- "-" ^ buffer.re_mantissa
else
()
end;
draw_update_entry iface
|_ ->
failwith "caught unhandled minus key"
else
raise Not_handled
(* handle entry of a digit *)
let handle_digit (iface : interface_state_t) key =
let process_float_digit buffer is_imag =
let exponent_buffer =
if is_imag then buffer.im_exponent
else buffer.re_exponent
and mantissa_buffer =
if is_imag then buffer.im_mantissa
else buffer.re_mantissa
in
let has_decimal =
let dot_regex = Str.regexp "^.*\\..*$" in
Str.string_match dot_regex mantissa_buffer 0
in
begin
if iface.is_entering_exponent then
let explen =
(if String.length exponent_buffer > 0 then
match exponent_buffer.[0] with
|'-' | '+'-> 4
|_ -> 3
else
3)
in
if String.length exponent_buffer < explen then
let digits = "0123456789" in
try
let c = char_of_int key in
if String.contains digits c then
(* need this hack to be able to perform
* the mutable field assignment... *)
(if is_imag then
buffer.im_exponent <- exponent_buffer ^
(String.make 1 c)
else
buffer.re_exponent <- exponent_buffer ^
(String.make 1 c);
draw_update_entry iface)
else
()
with Invalid_argument "char_of_int" ->
()
else
()
else if String.length mantissa_buffer < 17 then
let digits =
if has_decimal then "0123456789"
else "0123456789."
in
try
let c = char_of_int key in
if String.contains digits c then
begin
(if is_imag then
buffer.im_mantissa <- mantissa_buffer ^
(String.make 1 c)
else
buffer.re_mantissa <- mantissa_buffer ^
(String.make 1 c));
iface.has_entry <- true;
draw_update_entry iface
end
else
()
with Invalid_argument "char_of_int" ->
()
else
()
end
in
match iface.entry_type with
|IntEntry ->
begin
if iface.is_entering_base then
let base_chars = "bodh" in
try
let c = char_of_int key in
if String.contains base_chars c then
(iface.int_base_string <- String.make 1 c;
draw_update_entry iface)
else
()
with Invalid_argument "char_of_int" ->
()
else
let digits = "0123456789abcdefABCDEF" in
try
let c = char_of_int key in
if String.contains digits c then
(iface.int_entry_buffer <- iface.int_entry_buffer ^ (String.make 1 c);
iface.has_entry <- true;
draw_update_entry iface)
else
()
with Invalid_argument "char_of_int" ->
()
end
|FloatEntry | FloatMatrixEntry ->
let buffer = iface.gen_buffer.(iface.curr_buf) in
process_float_digit buffer false
|ComplexEntry | ComplexMatrixEntry ->
let buffer = iface.gen_buffer.(iface.curr_buf) in
if iface.is_entering_imag then
process_float_digit buffer true
else
process_float_digit buffer false
|_ ->
failwith "caught unhandled digit"
(* begin abbrev entry *)
let handle_begin_abbrev (iface : interface_state_t) =
if iface.interface_mode <> AbbrevEntryMode then begin
iface.interface_mode <- AbbrevEntryMode;
iface.help_mode <- AbbrevHelp;
draw_help iface;
draw_update_entry iface
(* do other cleanup stuff *)
end else
()
(* begin entry of a variable name *)
let handle_begin_variable (iface : interface_state_t) =
if iface.interface_mode <> VarEditMode then begin
iface.interface_mode <- VarEditMode;
iface.entry_type <- VarEntry;
iface.help_mode <- VarHelp;
(* FIXME: generation of the sorted variable list can be done far
* more efficiently *)
let add_variable var_str var_binding var_list =
var_str :: var_list
in
let all_variables =
Hashtbl.fold add_variable (iface.calc#get_variables ()) []
in
iface.sorted_variables <- List.stable_sort String.compare all_variables;
iface.matched_variables <- iface.sorted_variables;
draw_help iface;
draw_update_entry iface
end else
()
(* begin entry of units *)
let handle_begin_units (iface : interface_state_t) =
match iface.entry_type with
|FloatEntry ->
if iface.gen_buffer.(0).re_mantissa = "" then
iface.gen_buffer.(0).re_mantissa <- "1"
else
();
iface.has_entry <- true;
iface.interface_mode <- UnitEditMode;
iface.is_entering_units <- true;
draw_update_entry iface
|ComplexEntry ->
if iface.gen_buffer.(0).re_mantissa = "" then
iface.gen_buffer.(0).re_mantissa <- "0"
else
();
if iface.gen_buffer.(0).im_mantissa = "" && iface.is_entering_imag then
iface.gen_buffer.(0).im_mantissa <- "0"
else
();
iface.has_entry <- true;
iface.interface_mode <- UnitEditMode;
iface.is_entering_units <- true;
draw_update_entry iface
|FloatMatrixEntry | ComplexMatrixEntry ->
iface.has_entry <- true;
iface.interface_mode <- UnitEditMode;
iface.is_entering_units <- true;
draw_update_entry iface
(* FIXME: add other matches as units code gets filled out *)
|_ -> ()
(***********************************************************************)
(* HANDLERS FOR BROWSING-RELATED KEYSTROKES *)
(***********************************************************************)
(* begin stack browsing *)
let handle_begin_browse (iface : interface_state_t) =
if iface.calc#get_stack_size () > 0 then
( (* fprintf stderr "beginning browse\n";
flush stderr; *)
iface.interface_mode <- BrowsingMode;
iface.calc#backup ();
draw_help iface;
draw_update_stack iface)
else
()
(* handle exit of browsing mode *)
let handle_end_browse (iface : interface_state_t) =
iface.horiz_scroll <- 0;
iface.stack_selection <- 1;
iface.stack_bottom_row <- 1;
iface.interface_mode <- StandardEntryMode;
draw_help iface;
draw_update_stack iface
(* handle scrolling left in browsing mode *)
let handle_scroll_left (iface : interface_state_t) =
(if iface.horiz_scroll > 0 then
iface.horiz_scroll <- pred iface.horiz_scroll
else
());
draw_update_stack iface
(* handle scrolling right in browsing mode *)
let handle_scroll_right (iface : interface_state_t) =
let s = iface.calc#get_display_line iface.stack_selection in
let len = String.length s in
(if iface.horiz_scroll < len - iface.scr.sw_cols + 7 then
iface.horiz_scroll <- succ iface.horiz_scroll
else
());
draw_update_stack iface
(* handle cyclic rolldown in browsing mode *)
let handle_rolldown (iface : interface_state_t) =
iface.calc#rolldown iface.stack_selection;
draw_update_stack iface
(* handle cyclic rollup in browsing mode *)
let handle_rollup (iface : interface_state_t) =
iface.calc#rollup iface.stack_selection;
draw_update_stack iface
(* handle moving up a line in browsing mode *)
let handle_prev_line (iface : interface_state_t) =
if iface.stack_selection < iface.calc#get_stack_size () then
(iface.stack_selection <- succ iface.stack_selection;
iface.horiz_scroll <- 0;
let num_stack_lines =
begin match iface.scr.help_win with
|Some win -> iface.scr.sw_lines
|None -> iface.scr.sw_lines - 2
end
in
(if iface.stack_selection > pred (iface.stack_bottom_row + num_stack_lines) then
iface.stack_bottom_row <- iface.stack_selection - num_stack_lines + 1
else
());
draw_update_stack iface)
else
()
(* handle moving down a line in browsing mode *)
let handle_next_line (iface : interface_state_t) =
if iface.stack_selection > 1 then
(iface.stack_selection <- pred iface.stack_selection;
iface.horiz_scroll <- 0;
(if iface.stack_selection < iface.stack_bottom_row then
iface.stack_bottom_row <- iface.stack_selection
else
());
draw_update_stack iface)
else
()
(* handle echoing stack selection (browsing mode) *)
let handle_browse_echo (iface : interface_state_t) =
iface.calc#echo iface.stack_selection;
handle_prev_line iface
(* handle fullscreen viewing of a selected stack element *)
let handle_browse_view (iface : interface_state_t) =
try
let fs_string = iface.calc#get_fullscreen_display iface.stack_selection in
let fs_file = Utility.join_path !(Rcfile.datadir) "fullscreen" in
let buf = Utility.open_or_create_out_ascii fs_file in
output_string buf fs_string;
close_out buf;
let _ =
Sys.command (!(Rcfile.editor) ^ " " ^ fs_file)
in ();
draw_help iface;
draw_stack iface;
draw_update_entry iface
with
Sys_error ss ->
draw_error iface ss;
assert (doupdate ())
(* drop a particular stack element *)
let handle_browse_drop1 (iface : interface_state_t) =
iface.calc#delete iface.stack_selection;
(if iface.stack_selection > iface.calc#get_stack_size () then
iface.stack_selection <- iface.calc#get_stack_size ()
else
());
(if iface.stack_selection < iface.stack_bottom_row then
iface.stack_bottom_row <- iface.stack_selection
else
());
if iface.calc#get_stack_size () < 1 then
handle_end_browse iface
else
draw_update_stack iface
(* drop all elements below selected element (inclusive) *)
let handle_browse_dropn (iface : interface_state_t) =
iface.calc#deleteN iface.stack_selection;
iface.stack_selection <- 1;
iface.stack_bottom_row <- 1;
if iface.calc#get_stack_size () < 1 then
handle_end_browse iface
else
draw_update_stack iface
(* keep only the selected stack element *)
let handle_browse_keep (iface : interface_state_t) =
iface.calc#keep iface.stack_selection;
iface.stack_selection <- 1;
iface.stack_bottom_row <- 1;
draw_update_stack iface
(* keep only stack elements below the current selection (inclusive) *)
let handle_browse_keepn (iface : interface_state_t) =
iface.calc#keepN iface.stack_selection;
draw_update_stack iface
(* call !Rcfile.editor to edit the input textfile buffer, then
* parse it to generate one or more stack elements.
* If is_browsing = true, then the stack element will be
* bumped up to the selected stack level. *)
let edit_parse_input_textfile (iface : interface_state_t) (is_browsing) =
try
let input_file = Utility.join_path !(Rcfile.datadir) "input" in
let _ =
Sys.command (!(Rcfile.editor) ^ " " ^ input_file)
in ();
(* wake up curses again, and check for resize *)
assert (refresh ());
let rows, cols = get_size () in
resize_subwins iface.scr;
handle_refresh iface;
let edited_buf = Utility.expand_open_in_ascii input_file in
let lexbuf = Lexing.from_channel edited_buf in
let data =
(* need to call completely different parsers when using degrees
* or when using radians *)
begin match (iface.calc#get_modes ()).angle with
|Rad ->
Txtin_parser.decode_data_rad Txtin_lexer.token lexbuf
|Deg ->
Txtin_parser.decode_data_deg Txtin_lexer.token lexbuf
end
in
let rec push_data d =
begin match d with
|[] ->
()
|hd :: tl ->
if is_browsing then
begin
iface.calc#delete iface.stack_selection;
iface.calc#push hd;
iface.calc#rolldown iface.stack_selection
end
else
iface.calc#push hd;
push_data tl
end
in
push_data data;
close_in edited_buf;
handle_refresh iface
with
|Parsing.Parse_error ->
draw_help iface;
draw_stack iface;
draw_error iface "syntax error in input";
draw_update_entry iface
|Utility.Txtin_error ss ->
draw_help iface;
draw_stack iface;
draw_error iface ss;
draw_update_entry iface
|Big_int_str.Big_int_string_failure ss ->
draw_help iface;
draw_stack iface;
draw_error iface ss;
draw_update_entry iface
|Units.Units_error ss ->
draw_help iface;
draw_stack iface;
draw_error iface ss;
draw_update_entry iface
|Failure ss ->
draw_help iface;
draw_stack iface;
draw_error iface "syntax error in input";
draw_update_entry iface
(* edit the selected stack element with an external editor *)
let handle_browse_edit (iface : interface_state_t) =
try
let fs_string = iface.calc#get_fullscreen_display iface.stack_selection in
let input_file = Utility.join_path !(Rcfile.datadir) "input" in
let buf = Utility.open_or_create_out_ascii input_file in
output_string buf fs_string;
close_out buf;
edit_parse_input_textfile iface true
with
Sys_error ss ->
(draw_help iface;
draw_stack iface;
draw_error iface ss;
draw_update_entry iface)
(* view the last stack element in fullscreen *)
let handle_view (iface : interface_state_t) =
try
let fs_string = iface.calc#get_fullscreen_display 1 in
let fs_file = Utility.join_path !(Rcfile.datadir) "fullscreen" in
let buf = Utility.open_or_create_out_ascii fs_file in
output_string buf fs_string;
close_out buf;
let _ =
Sys.command (!(Rcfile.editor) ^ " " ^ fs_file)
in ();
draw_help iface;
draw_stack iface;
draw_update_entry iface
with
Sys_error ss ->
draw_error iface ss;
assert (doupdate ())
(* handle a call to edit a new input buffer *)
let handle_edit_input (iface : interface_state_t) =
try
edit_parse_input_textfile iface false
with
Sys_error ss ->
(draw_help iface;
draw_stack iface;
draw_error iface ss;
draw_update_entry iface)
(* display an "about" screen *)
let handle_about (iface : interface_state_t) =
draw_about iface;
let a = getch () in ();
erase ();
assert (refresh ());
handle_refresh iface
(* cycle the help screen *)
let handle_cycle_help (iface : interface_state_t) =
if iface.help_page < 1 then
iface.help_page <- succ iface.help_page
else
iface.help_page <- 0;
draw_help iface;
assert (doupdate ())
(* quit the calculator *)
let handle_quit (iface : interface_state_t) =
iface.calc#save_state ();
iface.run_calc <- false
(***********************************************************************)
(* HANDLERS FOR STANDARD CALCULATOR FUNCTIONS AND COMMANDS *)
(***********************************************************************)
(* register an autobinding.
* The autobindings are stored both in an array for quick ordered
* access, and in the standard keybinding hashtables. *)
let register_autobinding (op : operation_t) =
(* find oldest autobinding *)
let oldest = ref 0 in
let oldest_age = ref (-1) in
for i = 0 to pred (Array.length !Rcfile.autobind_keys) do
let (key, key_string, bound_f, age) = !Rcfile.autobind_keys.(i) in
if age > !oldest_age then begin
oldest := i;
oldest_age := age
end else
();
(* make all autobindings "older" *)
!Rcfile.autobind_keys.(i) <- (key, key_string, bound_f, (succ age))
done;
if Array.length !Rcfile.autobind_keys > 0 then begin
let (key, key_string, bound_f, age) = !Rcfile.autobind_keys.(!oldest) in
begin match bound_f with
|None -> ()
|Some op -> Rcfile.remove_binding key op
end;
Rcfile.register_binding_internal key key_string op;
!Rcfile.autobind_keys.(!oldest) <- (key, key_string, Some op, 0)
end else
()
(* handle a call to a function (which first pushes the item in the
* entry buffer) *)
let handle_function_call (iface : interface_state_t) calc_function =
try
if iface.has_entry then
push_entry iface
else
();
calc_function ();
draw_update_stack iface
with
Invalid_argument error_msg ->
draw_error iface error_msg;
assert (doupdate ())
(* handle a call to the simple commands that require no argument *)
let handle_command_call (iface : interface_state_t) calc_command =
try
calc_command ();
draw_update_stack iface
with
Invalid_argument error_msg ->
draw_error iface error_msg;
assert (doupdate ())
(* handle a call to an interruptible function *)
let handle_interr_function_call (iface : interface_state_t) calc_function =
try
if iface.has_entry then
push_entry iface
else
();
draw_message iface "Working... (press a key to abort)";
assert (doupdate ());
assert (nodelay iface.scr.entry_win true);
while not (calc_function ()) do
let key = wgetch iface.scr.entry_win in
if key <> ~-1 then
raise Interrupt_exception
else
()
done;
assert (nodelay iface.scr.entry_win false);
draw_update_stack iface
with
|Invalid_argument error_msg ->
assert (nodelay iface.scr.entry_win false);
draw_error iface error_msg;
assert (doupdate ())
|Interrupt_exception ->
assert (nodelay iface.scr.entry_win false);
iface.calc#abort_computation ();
draw_message iface "Computation aborted.";
assert (doupdate ())
let process_function (iface : interface_state_t) ff =
begin match ff with
|Add ->
handle_function_call iface iface.calc#add
|Sub ->
handle_function_call iface iface.calc#sub
|Mult ->
handle_function_call iface iface.calc#mult
|Div ->
handle_function_call iface iface.calc#div
|Neg ->
handle_function_call iface iface.calc#neg
|Inv ->
handle_function_call iface iface.calc#inv
|Pow ->
handle_function_call iface iface.calc#pow
|Sq ->
handle_function_call iface iface.calc#sq
|Sqrt ->
handle_function_call iface iface.calc#sqrt
|Abs ->
handle_function_call iface iface.calc#abs
|Arg ->
handle_function_call iface iface.calc#arg
|Exp ->
handle_function_call iface iface.calc#exp
|Ln ->
handle_function_call iface iface.calc#ln
|Ten_x ->
handle_function_call iface iface.calc#ten_pow_x
|Log10 ->
handle_function_call iface iface.calc#log10
|Conj ->
handle_function_call iface iface.calc#conj
|Sin ->
handle_function_call iface iface.calc#sin
|Cos ->
handle_function_call iface iface.calc#cos
|Tan ->
handle_function_call iface iface.calc#tan
|Sinh ->
handle_function_call iface iface.calc#sinh
|Cosh ->
handle_function_call iface iface.calc#cosh
|Tanh ->
handle_function_call iface iface.calc#tanh
|Asin ->
handle_function_call iface iface.calc#asin
|Acos ->
handle_function_call iface iface.calc#acos
|Atan ->
handle_function_call iface iface.calc#atan
|Asinh ->
handle_function_call iface iface.calc#asinh
|Acosh ->
handle_function_call iface iface.calc#acosh
|Atanh ->
handle_function_call iface iface.calc#atanh
|Re ->
handle_function_call iface iface.calc#re
|Im ->
handle_function_call iface iface.calc#im
|Gamma ->
handle_function_call iface iface.calc#gamma
|LnGamma ->
handle_function_call iface iface.calc#lngamma
|Erf ->
handle_function_call iface iface.calc#erf
|Erfc ->
handle_function_call iface iface.calc#erfc
|Fact ->
handle_interr_function_call iface iface.calc#fact
|Transpose ->
handle_function_call iface iface.calc#transpose
|Mod ->
handle_function_call iface iface.calc#mod_int
|Floor ->
handle_function_call iface iface.calc#floor
|Ceiling ->
handle_function_call iface iface.calc#ceiling
|ToInt ->
handle_function_call iface iface.calc#to_int
|ToFloat ->
handle_function_call iface iface.calc#to_float
|SolveLin ->
handle_function_call iface iface.calc#solve_linear
|Eval ->
handle_function_call iface iface.calc#eval
|Store ->
handle_function_call iface iface.calc#store
|Purge ->
handle_function_call iface iface.calc#purge
|Gcd ->
handle_interr_function_call iface iface.calc#gcd
|Lcm ->
handle_interr_function_call iface iface.calc#lcm
|Binom ->
handle_interr_function_call iface iface.calc#binom
|Perm ->
handle_interr_function_call iface iface.calc#permutations
|Total ->
handle_function_call iface iface.calc#total
|Mean ->
handle_function_call iface iface.calc#mean
|Sumsq ->
handle_function_call iface iface.calc#sum_squares
|Var ->
handle_function_call iface iface.calc#variance_unbiased
|VarBias ->
handle_function_call iface iface.calc#variance_biased
|Stdev ->
handle_function_call iface iface.calc#standard_deviation_unbiased
|StdevBias ->
handle_function_call iface iface.calc#standard_deviation_biased
|Min ->
handle_function_call iface iface.calc#minimum
|Max ->
handle_function_call iface iface.calc#maximum
|Utpn ->
handle_function_call iface iface.calc#upper_tail_prob_normal
|StandardizeUnits ->
handle_function_call iface iface.calc#standardize_units
|ConvertUnits ->
handle_function_call iface iface.calc#convert_units
|UnitValue ->
handle_function_call iface iface.calc#unit_value
|Trace ->
handle_function_call iface iface.calc#trace
end
let process_command (iface : interface_state_t) cc =
begin match cc with
|Drop ->
handle_command_call iface iface.calc#drop
|Clear ->
handle_command_call iface iface.calc#clear
|Swap ->
handle_command_call iface iface.calc#swap
|Dup ->
handle_command_call iface iface.calc#dup
|Undo ->
handle_command_call iface iface.calc#undo
|BeginBrowse ->
handle_begin_browse iface
|BeginAbbrev ->
handle_begin_abbrev iface
|BeginVar ->
handle_begin_variable iface
|Quit ->
handle_quit iface
|SetRadians ->
handle_command_call iface iface.calc#mode_rad;
draw_help iface;
draw_update_stack iface
|SetDegrees ->
handle_command_call iface iface.calc#mode_deg;
draw_help iface;
draw_update_stack iface
|SetRect ->
handle_command_call iface iface.calc#mode_rect;
draw_help iface;
draw_update_stack iface
|SetPolar ->
handle_command_call iface iface.calc#mode_polar;
draw_help iface;
draw_update_stack iface
|SetBin ->
handle_command_call iface iface.calc#mode_bin;
draw_help iface;
draw_update_stack iface
|SetOct ->
handle_command_call iface iface.calc#mode_oct;
draw_help iface;
draw_update_stack iface
|SetDec ->
handle_command_call iface iface.calc#mode_dec;
draw_help iface;
draw_update_stack iface
|SetHex ->
handle_command_call iface iface.calc#mode_hex;
draw_help iface;
draw_update_stack iface
|ToggleAngleMode ->
handle_command_call iface iface.calc#toggle_angle_mode;
draw_help iface;
draw_update_stack iface
|ToggleComplexMode ->
handle_command_call iface iface.calc#toggle_complex_mode;
draw_help iface;
draw_update_stack iface
|CycleBase ->
handle_command_call iface iface.calc#cycle_base;
draw_help iface;
draw_update_stack iface
|View ->
handle_view iface
|About ->
handle_about iface
|Refresh ->
handle_refresh iface
|EnterPi ->
handle_command_call iface iface.calc#enter_pi
|Rand ->
handle_command_call iface iface.calc#rand
|EditInput ->
handle_edit_input iface
|CycleHelp ->
handle_cycle_help iface
end
(****************************************************************)
(* IMPLEMENTATION OF ABBREVIATION ENTRY SYSTEM *)
(****************************************************************)
(* exit abbrev entry *)
let handle_exit_abbrev (iface : interface_state_t) =
if iface.interface_mode = AbbrevEntryMode then
(iface.interface_mode <- StandardEntryMode;
iface.help_mode <- StandardHelp;
iface.abbrev_entry_buffer <- "";
iface.matched_abbrev_entry <- "";
draw_help iface;
draw_update_entry iface)
else
()
(* search through a list of commands and find all that match
* iface.abbrev_entry_buffer. As a side effect, set matched_abbrev_entry
* to the head of this list.
* The list is built up in reverse order using Str.search_backward,
* so the head of the list is actually the first match. *)
let match_abbrev_buffer (iface : interface_state_t) buf =
if String.length buf > 0 then
(let regex_str = "^" ^ (Str.quote buf) ^ ".*$" in
let regex = Str.regexp regex_str in
let rec find_matching_strings starting_pos matches_list =
try
let next_pos =
Str.search_backward regex !Rcfile.abbrev_commands starting_pos
in
let m = Str.matched_string !Rcfile.abbrev_commands in
if next_pos >= 1 then
find_matching_strings (pred next_pos) (m :: matches_list)
else
(m :: matches_list)
with
Not_found ->
begin
match matches_list with
|[] -> raise Not_found
|_ -> matches_list
end
in
iface.matched_abbrev_entry <- "";
let m_list =
find_matching_strings (pred (String.length !Rcfile.abbrev_commands)) [];
in
iface.matched_abbrev_entry <- List.hd m_list;
m_list)
else
(iface.matched_abbrev_entry <- "";
raise Not_found)
(* backspace during abbrev entry *)
let handle_abbrev_backspace (iface : interface_state_t) =
let len = String.length iface.abbrev_entry_buffer in
if len > 0 then
(iface.abbrev_entry_buffer <- Str.string_before iface.abbrev_entry_buffer
(pred len);
(try
iface.matched_abbrev_entry_list <-
match_abbrev_buffer iface iface.abbrev_entry_buffer
with
Not_found -> ());
(if len = 1 then
iface.matched_abbrev_entry <- ""
else
());
draw_help iface;
draw_update_entry iface)
else
()
(* handle entry of an arbitrary character in abbrev mode *)
let handle_abbrev_character (iface : interface_state_t) key =
let ch = char_of_int key in
let test_buffer = iface.abbrev_entry_buffer ^ (String.make 1 ch) in
(* search through the list of commands for the first one that matches
* iface.abbrev_entry_buffer *)
try
iface.matched_abbrev_entry_list <- match_abbrev_buffer iface test_buffer;
iface.abbrev_entry_buffer <- test_buffer;
draw_help iface;
draw_update_entry iface
with
Not_found -> let err = beep () in ()
(* enter an abbrev entry *)
let handle_enter_abbrev (iface : interface_state_t) =
if iface.interface_mode = AbbrevEntryMode then
(iface.interface_mode <- StandardEntryMode;
iface.help_mode <- StandardHelp;
(try
iface.matched_abbrev_entry_list <-
match_abbrev_buffer iface iface.abbrev_entry_buffer;
let operation = Rcfile.translate_abbrev
iface.matched_abbrev_entry in
begin match operation with
|Function ff ->
process_function iface ff
|Command cc -> process_command iface cc
|_ -> failwith
"found abbrev command that is neither Function nor Command"
end;
(* check whether ff should be autobound *)
begin try
let _ = Rcfile.key_of_operation operation in ()
with Not_found ->
register_autobinding operation
end
with
Not_found -> ());
iface.abbrev_entry_buffer <- "";
iface.matched_abbrev_entry <- "";
draw_help iface;
draw_update_entry iface)
else
()
(****************************************************************)
(* IMPLEMENTATION OF VARIABLE ENTRY SYSTEM *)
(****************************************************************)
(* exit variable entry *)
let handle_exit_variable (iface : interface_state_t) =
if iface.interface_mode = VarEditMode then begin
iface.interface_mode <- StandardEntryMode;
iface.help_mode <- StandardHelp;
iface.entry_type <- FloatEntry;
iface.variable_entry_buffer <- "";
draw_help iface;
draw_update_entry iface
end else
()
(* search through a list of variables and find all that match
* iface.variable_entry_buffer. *)
let match_variable_buffer (iface : interface_state_t) buf =
let buf_regex = Str.regexp (Str.quote buf) in
let rec match_aux var_lst matches_lst =
match var_lst with
|[] ->
matches_lst
|vv :: tail ->
if Str.string_match buf_regex vv 0 then
match_aux tail (vv :: matches_lst)
else
match_aux tail matches_lst
in
List.rev (match_aux iface.sorted_variables [])
(* backspace during variable entry *)
let handle_variable_backspace (iface : interface_state_t) =
let len = String.length iface.variable_entry_buffer in
if len > 0 then begin
iface.completion <- None;
iface.variable_entry_buffer <- Str.string_before iface.variable_entry_buffer
(pred len);
iface.matched_variables <-
match_variable_buffer iface iface.variable_entry_buffer;
draw_help iface;
draw_update_entry iface
end else
()
(* handle entry of an arbitrary character in variable entry mode *)
let handle_variable_character (iface : interface_state_t) key =
(* variables with long strings simply aren't useful, and
* it's possible that deleting them could become difficult. *)
if String.length iface.variable_entry_buffer < 25 then
let allowable_regex = Str.regexp "[-a-zA-Z0-9_]" in
let ch = char_of_int key in
let ss = String.make 1 ch in
if Str.string_match allowable_regex ss 0 then
let test_buffer = iface.variable_entry_buffer ^ ss in
(* search through the list of variables for the first one that matches
* iface.variable_entry_buffer *)
begin try
iface.completion <- None;
iface.matched_variables <- match_variable_buffer iface test_buffer;
iface.variable_entry_buffer <- test_buffer;
draw_help iface;
draw_update_entry iface
with
Not_found ->
iface.matched_variables <- [];
iface.variable_entry_buffer <- test_buffer;
draw_help iface;
draw_update_entry iface
end
else
let _ = beep () in ()
else
()
(* enter an variable entry *)
let handle_enter_variable (iface : interface_state_t) =
if iface.interface_mode = VarEditMode then begin
if String.length iface.variable_entry_buffer > 0 then
push_entry iface
else
iface.entry_type <- FloatEntry;
iface.interface_mode <- StandardEntryMode;
iface.help_mode <- StandardHelp;
iface.completion <- None;
iface.variable_entry_buffer <- "";
draw_help iface;
draw_stack iface;
draw_update_entry iface
end else
()
(* autocomplete a variable *)
let handle_complete_variable (iface : interface_state_t) =
if List.length iface.matched_variables > 0 then begin
begin match iface.completion with
|None ->
iface.completion <- Some 0;
iface.variable_entry_buffer_back <- iface.variable_entry_buffer;
iface.variable_entry_buffer <-
List.nth iface.matched_variables 0
|Some i ->
if i < List.length iface.matched_variables - 1 then begin
iface.completion <- Some (succ i);
iface.variable_entry_buffer <-
List.nth iface.matched_variables (succ i)
end else begin
iface.completion <- None;
iface.variable_entry_buffer <- iface.variable_entry_buffer_back
end
end;
draw_help iface;
draw_update_entry iface
end else
let _ = beep () in ()
(****************************************************************)
(* IMPLEMENTATION OF UNITS ENTRY SYSTEM *)
(****************************************************************)
(* exit units entry *)
let handle_exit_units (iface : interface_state_t) =
if iface.interface_mode = UnitEditMode then begin
iface.interface_mode <- StandardEntryMode;
iface.units_entry_buffer <- "";
iface.is_entering_units <- false;
draw_update_entry iface
end else
()
(* backspace during units entry *)
let handle_units_backspace (iface : interface_state_t) =
let len = String.length iface.units_entry_buffer in
if len > 0 then begin
iface.units_entry_buffer <- Str.string_before iface.units_entry_buffer
(pred len);
draw_update_entry iface
end else begin
iface.interface_mode <- StandardEntryMode;
iface.is_entering_units <- false;
draw_update_entry iface
end
(* handle entry of an arbitrary character in units entry mode *)
let handle_units_character (iface : interface_state_t) key =
let allowable_regex = Str.regexp "[a-zA-Z0-9\\.\\^\\*/-]" in
let ch = char_of_int key in
let ss = String.make 1 ch in
if Str.string_match allowable_regex ss 0 then begin
iface.units_entry_buffer <- iface.units_entry_buffer ^ ss;
draw_update_entry iface
end else
let _ = beep () in ()
(****************************************************************)
(* MAIN LOOP *)
(****************************************************************)
let do_main_loop (iface : interface_state_t) =
while iface.run_calc do
iface.calc#launch_fill_in_thread ();
let key = wgetch iface.scr.entry_win in
(* using the ncurses SIGWINCH handler to catch window resize events *)
if key = Key.resize then
handle_resize iface
else
match iface.interface_mode with
|StandardEntryMode ->
(* check whether this keypress is a macro *)
begin try
let ch_list = Rcfile.macro_of_key key in
let rec push_macro chars =
match chars with
| [] -> ()
| head :: tail ->
let _ = ungetch head in
push_macro tail
in
push_macro ch_list
with Not_found ->
(* if it's not a macro, go ahead and process it *)
begin try
(* editing operations take priority *)
let edit_op = Rcfile.edit_of_key key in
match edit_op with
|Edit ee ->
begin match ee with
|Digit ->
handle_digit iface key
|Enter ->
handle_enter iface
|Backspace ->
handle_backspace iface
|Minus ->
handle_minus iface
|BeginInteger ->
handle_begin_int iface
|BeginComplex ->
handle_begin_complex iface
|BeginMatrix ->
handle_begin_matrix iface
|Separator ->
handle_separator iface
|Angle ->
handle_angle iface
|SciNotBase ->
handle_scientific_notation iface
|BeginUnits ->
handle_begin_units iface
end
|_ ->
failwith "Non-Edit operation found in Edit Hashtbl"
with Not_found | Not_handled ->
(* next we try to match on functions *)
try
let function_op = Rcfile.function_of_key key in
match function_op with
|Function ff ->
process_function iface ff
|_ ->
failwith "Non-Function operation found in Function Hashtbl"
with Not_found ->
if iface.has_entry then
(* finally we try entry of digits *)
handle_digit iface key
else
(* commands are only suitable when there is no entry *)
try
let command_op = Rcfile.command_of_key key in
match command_op with
|Command cc ->
process_command iface cc
|_ ->
failwith "Non-Command operation found in Command Hashtbl"
with Not_found ->
handle_digit iface key
end
end
|IntEditMode ->
begin
try
let edit_op = Rcfile.edit_of_key key in
match edit_op with
|Edit ee ->
begin match ee with
|Digit ->
handle_digit iface key
|Enter ->
handle_enter iface
|Backspace ->
handle_backspace iface
|Minus ->
handle_minus iface
|SciNotBase ->
handle_scientific_notation iface
|_ -> raise Not_handled
end
|_ ->
failwith "Non-Edit operation found in Edit Hashtbl"
with Not_found | Not_handled ->
try
let intedit_op = Rcfile.intedit_of_key key in
match intedit_op with
|IntEdit ie ->
begin match ie with
|ExitIntEdit ->
handle_exit_int iface
end
|_ ->
failwith "Non-IntEdit operation found in IntEdit Hashtbl"
with Not_found | Not_handled ->
handle_digit iface key
end
|UnitEditMode ->
begin try
let edit_op = Rcfile.edit_of_key key in
match edit_op with
|Edit ee ->
begin match ee with
|Enter ->
handle_enter iface
|Backspace ->
handle_units_backspace iface
|_ ->
handle_units_character iface key
end
|_ ->
failwith "Non-Edit operation found in Edit Hashtbl"
with Not_found | Not_handled ->
handle_units_character iface key
end
|AbbrevEntryMode ->
begin
(* check to see whether the user is either exiting abbrev mode or
* is applying the abbrev command *)
try
let abbrev_op = Rcfile.abbrev_of_key key in
match abbrev_op with
|Abbrev ee ->
begin
match ee with
|ExitAbbrev ->
handle_exit_abbrev iface
|EnterAbbrev ->
handle_enter_abbrev iface
|AbbrevBackspace ->
handle_abbrev_backspace iface
end
|_ ->
failwith "Non-Abbrev command found in Abbrev Hashtbl"
with Not_found ->
handle_abbrev_character iface key
end
|VarEditMode ->
begin try
let varedit_op = Rcfile.varedit_of_key key in
match varedit_op with
|VarEdit vv ->
begin match vv with
|ExitVarEdit ->
handle_exit_variable iface
|EnterVarEdit ->
handle_enter_variable iface
|VarEditBackspace ->
handle_variable_backspace iface
|CompleteVarEdit ->
handle_complete_variable iface
end
|_ ->
failwith "Non-Variable command found in VarEdit Hashtbl"
with Not_found ->
handle_variable_character iface key
end
|BrowsingMode ->
try
let browse_op = Rcfile.browse_of_key key in
match browse_op with
|Browse bb ->
begin
match bb with
|EndBrowse ->
handle_end_browse iface
|ScrollLeft ->
handle_scroll_left iface
|ScrollRight ->
handle_scroll_right iface
|RollDown ->
handle_rolldown iface
|RollUp ->
handle_rollup iface
|PrevLine ->
handle_prev_line iface
|NextLine ->
handle_next_line iface
|Echo ->
handle_browse_echo iface
|ViewEntry ->
handle_browse_view iface
|Drop1 ->
handle_browse_drop1 iface
|DropN ->
handle_browse_dropn iface
|Keep ->
handle_browse_keep iface
|KeepN ->
handle_browse_keepn iface
|EditEntry ->
handle_browse_edit iface
end
|_ ->
failwith "Non-Browsing operation found in Browse Hashtbl"
with Not_found | Not_handled ->
()
done
(* initialize the interface and begin the main loop *)
let run (iface : interface_state_t) =
iface.calc#backup ();
assert (keypad iface.scr.entry_win true);
(* initialize buffers for matrix entry *)
for i = 1 to pred max_matrix_size do
iface.gen_buffer.(i) <-
{re_mantissa = ""; re_exponent = "";
im_mantissa = ""; im_exponent = ""; is_polar = false}
done;
begin
try
iface.calc#load_state ();
draw_stack iface;
draw_help iface;
draw_update_entry iface;
with
Invalid_argument err ->
draw_stack iface;
draw_help iface;
draw_error iface err;
draw_update_entry iface
end;
do_main_loop iface
(* arch-tag: DO_NOT_CHANGE_b4519dd2-7e94-4cbf-931a-bb5f97445cbf *)
|