File size: 175,835 Bytes
a2a15a2 |
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 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158 2159 2160 2161 2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177 2178 2179 2180 2181 2182 2183 2184 2185 2186 2187 2188 2189 2190 2191 2192 2193 2194 2195 2196 2197 2198 2199 2200 2201 2202 2203 2204 2205 2206 2207 2208 2209 2210 2211 2212 2213 2214 2215 2216 2217 2218 2219 2220 2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236 2237 2238 2239 2240 2241 2242 2243 2244 2245 2246 2247 2248 2249 2250 2251 2252 2253 2254 2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291 2292 2293 2294 2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305 2306 2307 2308 2309 2310 2311 2312 2313 2314 2315 2316 2317 2318 2319 2320 2321 2322 2323 2324 2325 2326 2327 2328 2329 2330 2331 2332 2333 2334 2335 2336 2337 2338 2339 2340 2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360 2361 2362 2363 2364 2365 2366 2367 2368 2369 2370 2371 2372 2373 2374 2375 2376 2377 2378 2379 2380 2381 2382 2383 2384 2385 2386 2387 2388 2389 2390 2391 2392 2393 2394 2395 2396 2397 2398 2399 2400 2401 2402 2403 2404 2405 2406 2407 2408 2409 2410 2411 2412 2413 2414 2415 2416 2417 2418 2419 2420 2421 2422 2423 2424 2425 2426 2427 2428 2429 2430 2431 2432 2433 2434 2435 2436 2437 2438 2439 2440 2441 2442 2443 2444 2445 2446 2447 2448 2449 2450 2451 2452 2453 2454 2455 2456 2457 2458 2459 2460 2461 2462 2463 2464 2465 2466 2467 2468 2469 2470 2471 2472 2473 2474 2475 2476 2477 2478 2479 2480 2481 2482 2483 2484 2485 2486 2487 2488 2489 2490 2491 2492 2493 2494 2495 2496 2497 2498 2499 2500 2501 2502 2503 2504 2505 2506 2507 2508 2509 2510 2511 2512 2513 2514 2515 2516 2517 2518 2519 2520 2521 2522 2523 2524 2525 2526 2527 2528 2529 2530 2531 2532 2533 2534 2535 2536 2537 2538 2539 2540 2541 2542 2543 2544 2545 2546 2547 2548 2549 2550 2551 2552 2553 2554 2555 2556 2557 2558 2559 2560 2561 2562 2563 2564 2565 2566 2567 2568 2569 2570 2571 2572 2573 2574 2575 2576 2577 2578 2579 2580 2581 2582 2583 2584 2585 2586 2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602 2603 2604 2605 2606 2607 2608 2609 2610 2611 2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627 2628 2629 2630 2631 2632 2633 2634 2635 2636 2637 2638 2639 2640 2641 2642 2643 2644 2645 2646 2647 2648 2649 2650 2651 2652 2653 2654 2655 2656 2657 2658 2659 2660 2661 2662 2663 2664 2665 2666 2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682 2683 2684 2685 2686 2687 2688 2689 2690 2691 2692 2693 2694 2695 2696 2697 2698 2699 2700 2701 2702 2703 2704 2705 2706 2707 2708 2709 2710 2711 2712 2713 2714 2715 2716 2717 2718 2719 2720 2721 2722 2723 2724 2725 2726 2727 2728 2729 2730 2731 2732 2733 2734 2735 2736 2737 2738 2739 2740 2741 2742 2743 2744 2745 2746 2747 2748 2749 2750 2751 2752 2753 2754 2755 2756 2757 2758 2759 2760 2761 2762 2763 2764 2765 2766 2767 2768 2769 2770 2771 2772 2773 2774 2775 2776 2777 2778 2779 2780 2781 2782 2783 2784 2785 2786 2787 2788 2789 2790 2791 2792 2793 2794 2795 2796 2797 2798 2799 2800 2801 2802 2803 2804 2805 2806 2807 2808 2809 2810 2811 2812 2813 2814 2815 2816 2817 2818 2819 2820 2821 2822 2823 2824 2825 2826 2827 2828 2829 2830 2831 2832 2833 2834 2835 2836 2837 2838 2839 2840 2841 2842 2843 2844 2845 2846 2847 2848 2849 2850 2851 2852 2853 2854 2855 2856 2857 2858 2859 2860 2861 2862 2863 2864 2865 2866 2867 2868 2869 2870 2871 2872 2873 2874 2875 2876 2877 2878 2879 2880 2881 2882 2883 2884 2885 2886 2887 2888 2889 2890 2891 2892 2893 2894 2895 2896 2897 2898 2899 2900 2901 2902 2903 2904 2905 2906 2907 2908 2909 2910 2911 2912 2913 2914 2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928 2929 2930 2931 2932 2933 2934 2935 2936 2937 2938 2939 2940 2941 2942 2943 2944 2945 2946 2947 2948 2949 2950 2951 2952 2953 2954 2955 2956 2957 2958 2959 2960 2961 2962 2963 2964 2965 2966 2967 2968 2969 2970 2971 2972 2973 2974 2975 2976 2977 2978 2979 2980 2981 2982 2983 2984 2985 2986 2987 2988 2989 2990 2991 2992 2993 2994 2995 2996 2997 2998 2999 3000 3001 3002 3003 3004 3005 3006 3007 3008 3009 3010 3011 3012 3013 3014 3015 3016 3017 3018 3019 3020 3021 3022 3023 3024 3025 3026 3027 3028 3029 3030 3031 3032 3033 3034 3035 3036 3037 3038 3039 3040 3041 3042 3043 3044 3045 3046 3047 3048 3049 3050 3051 3052 3053 3054 3055 3056 3057 3058 3059 3060 3061 3062 3063 3064 3065 3066 3067 3068 3069 3070 3071 3072 3073 3074 3075 3076 3077 3078 3079 3080 3081 3082 3083 3084 3085 3086 3087 3088 3089 3090 3091 3092 3093 3094 3095 3096 3097 3098 3099 3100 3101 3102 3103 3104 3105 3106 3107 3108 3109 3110 3111 3112 3113 3114 3115 3116 3117 3118 3119 3120 3121 3122 3123 3124 3125 3126 3127 3128 3129 3130 3131 3132 3133 3134 3135 3136 3137 3138 3139 3140 3141 3142 3143 3144 3145 3146 3147 3148 3149 3150 3151 3152 3153 3154 3155 3156 3157 3158 3159 3160 3161 3162 3163 3164 3165 3166 3167 3168 3169 3170 3171 3172 3173 3174 3175 3176 3177 3178 3179 3180 3181 3182 3183 3184 3185 3186 3187 3188 3189 3190 3191 3192 3193 3194 3195 3196 3197 3198 3199 3200 3201 3202 3203 3204 3205 3206 3207 3208 3209 3210 3211 3212 3213 3214 3215 3216 3217 3218 3219 3220 3221 3222 3223 3224 3225 3226 3227 3228 3229 3230 3231 3232 3233 3234 3235 3236 3237 3238 3239 3240 3241 3242 3243 3244 3245 3246 3247 3248 3249 3250 3251 3252 3253 3254 3255 3256 3257 3258 3259 3260 3261 3262 3263 3264 3265 3266 3267 3268 3269 3270 3271 3272 3273 3274 3275 3276 3277 3278 3279 3280 3281 3282 3283 3284 3285 3286 3287 3288 3289 3290 3291 3292 3293 3294 3295 3296 3297 3298 3299 3300 3301 3302 3303 3304 3305 3306 3307 3308 3309 3310 3311 3312 3313 3314 3315 3316 3317 3318 3319 3320 3321 3322 3323 3324 3325 3326 3327 3328 3329 3330 3331 3332 3333 3334 3335 3336 3337 3338 3339 3340 3341 3342 3343 3344 3345 3346 3347 3348 3349 3350 3351 3352 3353 3354 3355 3356 3357 3358 3359 3360 3361 3362 3363 3364 3365 3366 3367 3368 3369 3370 3371 3372 3373 3374 3375 3376 3377 3378 3379 3380 3381 3382 3383 3384 3385 3386 3387 3388 3389 3390 3391 3392 3393 3394 3395 3396 3397 3398 3399 3400 3401 3402 3403 3404 3405 3406 3407 3408 3409 3410 3411 3412 3413 3414 3415 3416 3417 3418 3419 3420 3421 3422 3423 3424 3425 3426 3427 3428 3429 3430 3431 3432 3433 3434 3435 3436 3437 3438 3439 3440 3441 3442 3443 3444 3445 3446 3447 3448 3449 3450 3451 3452 3453 3454 3455 3456 3457 3458 3459 3460 3461 3462 3463 3464 3465 3466 3467 3468 3469 3470 3471 3472 3473 3474 3475 3476 3477 3478 3479 3480 3481 3482 3483 3484 3485 3486 3487 3488 3489 3490 3491 3492 3493 3494 3495 3496 3497 3498 3499 3500 3501 3502 3503 3504 3505 3506 3507 3508 3509 3510 3511 3512 3513 3514 3515 3516 3517 3518 3519 3520 3521 3522 3523 3524 3525 3526 3527 3528 3529 3530 3531 3532 3533 3534 3535 3536 3537 3538 3539 3540 3541 3542 3543 3544 3545 3546 3547 3548 3549 3550 3551 3552 3553 3554 3555 3556 3557 3558 3559 3560 3561 3562 3563 3564 3565 3566 3567 3568 3569 3570 3571 3572 3573 3574 3575 3576 3577 3578 3579 3580 3581 3582 3583 3584 3585 3586 3587 3588 3589 3590 3591 3592 3593 3594 3595 3596 3597 3598 3599 3600 3601 3602 3603 3604 3605 3606 3607 3608 3609 3610 3611 3612 3613 3614 3615 3616 3617 3618 3619 3620 3621 3622 3623 3624 3625 3626 3627 3628 3629 3630 3631 3632 3633 3634 3635 3636 3637 3638 3639 3640 3641 3642 3643 3644 3645 3646 3647 3648 3649 3650 3651 3652 3653 3654 3655 3656 3657 3658 3659 3660 3661 3662 3663 3664 3665 3666 3667 3668 3669 3670 3671 3672 3673 3674 3675 3676 3677 3678 3679 3680 3681 3682 3683 3684 3685 3686 3687 3688 3689 3690 3691 3692 3693 3694 3695 3696 3697 3698 3699 3700 3701 3702 3703 3704 3705 3706 3707 3708 3709 3710 3711 3712 3713 3714 3715 3716 3717 3718 3719 3720 3721 3722 3723 3724 3725 3726 3727 3728 3729 3730 3731 3732 3733 3734 3735 3736 3737 3738 3739 3740 3741 3742 3743 3744 3745 3746 3747 3748 3749 3750 3751 3752 3753 3754 3755 3756 3757 3758 3759 3760 3761 3762 3763 3764 3765 3766 3767 3768 3769 3770 3771 3772 3773 3774 3775 3776 3777 3778 3779 3780 3781 3782 3783 3784 3785 3786 3787 3788 3789 3790 3791 3792 3793 3794 3795 3796 3797 3798 3799 3800 3801 3802 3803 3804 3805 3806 3807 3808 3809 3810 3811 3812 3813 3814 3815 3816 3817 3818 3819 3820 3821 3822 3823 3824 3825 3826 3827 3828 3829 3830 3831 3832 3833 3834 3835 3836 3837 3838 3839 3840 3841 3842 3843 3844 3845 3846 3847 3848 3849 3850 3851 3852 3853 3854 3855 3856 3857 3858 3859 3860 3861 3862 3863 3864 3865 3866 3867 3868 3869 3870 3871 3872 3873 3874 3875 3876 3877 3878 3879 3880 3881 3882 3883 3884 3885 3886 3887 3888 3889 3890 3891 3892 3893 3894 3895 3896 3897 3898 3899 3900 3901 3902 3903 3904 3905 3906 3907 3908 3909 3910 3911 3912 3913 3914 3915 3916 3917 3918 3919 3920 3921 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3934 3935 3936 3937 3938 3939 3940 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3969 3970 3971 3972 3973 3974 3975 3976 3977 3978 3979 3980 3981 3982 3983 3984 3985 3986 3987 3988 3989 3990 3991 3992 3993 3994 3995 3996 3997 3998 3999 4000 4001 4002 4003 4004 4005 4006 4007 4008 4009 4010 4011 4012 4013 4014 4015 4016 4017 4018 4019 4020 4021 4022 4023 4024 4025 4026 4027 4028 4029 4030 4031 4032 4033 4034 4035 4036 4037 4038 4039 4040 4041 4042 4043 4044 4045 4046 4047 4048 4049 4050 4051 4052 4053 4054 4055 4056 4057 4058 4059 4060 4061 4062 4063 4064 4065 4066 4067 4068 4069 4070 4071 4072 4073 4074 4075 4076 4077 4078 4079 4080 4081 4082 4083 4084 4085 4086 4087 4088 4089 4090 4091 4092 4093 4094 4095 4096 4097 4098 4099 4100 4101 4102 4103 4104 4105 4106 4107 4108 4109 4110 4111 4112 4113 4114 4115 4116 4117 4118 4119 4120 4121 4122 4123 4124 4125 4126 4127 4128 4129 4130 4131 4132 4133 4134 4135 4136 4137 4138 4139 4140 4141 4142 4143 4144 4145 4146 4147 4148 4149 4150 4151 4152 4153 4154 4155 4156 4157 4158 4159 4160 4161 4162 4163 4164 4165 4166 4167 4168 4169 4170 4171 4172 4173 4174 4175 4176 4177 4178 4179 4180 4181 4182 4183 4184 4185 4186 4187 4188 4189 4190 4191 4192 4193 4194 4195 4196 4197 4198 4199 4200 4201 4202 4203 4204 4205 4206 4207 4208 4209 4210 4211 4212 4213 4214 4215 4216 4217 4218 4219 4220 4221 4222 4223 4224 4225 4226 4227 4228 4229 4230 4231 4232 4233 4234 4235 4236 4237 4238 4239 4240 4241 4242 4243 4244 4245 4246 4247 4248 4249 4250 4251 4252 4253 4254 4255 4256 4257 4258 4259 4260 4261 4262 4263 4264 4265 4266 4267 4268 4269 4270 4271 4272 4273 4274 4275 4276 4277 4278 4279 4280 4281 4282 4283 4284 4285 4286 4287 4288 4289 4290 4291 4292 4293 4294 4295 4296 4297 4298 4299 4300 4301 4302 4303 4304 4305 4306 4307 4308 4309 4310 4311 4312 4313 4314 4315 4316 4317 4318 4319 4320 4321 4322 4323 4324 4325 4326 4327 4328 4329 4330 4331 4332 4333 4334 4335 4336 4337 4338 4339 4340 4341 4342 4343 4344 4345 4346 4347 4348 4349 4350 4351 4352 4353 4354 4355 4356 4357 4358 4359 4360 4361 4362 4363 4364 4365 4366 4367 4368 4369 4370 4371 4372 4373 4374 4375 4376 4377 4378 4379 4380 4381 4382 4383 4384 4385 4386 4387 4388 4389 4390 4391 4392 4393 4394 4395 4396 4397 4398 4399 4400 4401 4402 4403 4404 4405 4406 4407 4408 4409 4410 4411 4412 4413 4414 4415 4416 4417 4418 4419 4420 4421 4422 4423 4424 4425 4426 4427 4428 4429 4430 4431 4432 4433 4434 4435 4436 4437 4438 4439 4440 4441 4442 4443 4444 4445 4446 4447 4448 4449 4450 4451 4452 4453 4454 4455 4456 4457 4458 4459 4460 4461 4462 4463 4464 4465 4466 4467 4468 4469 4470 4471 4472 4473 4474 4475 4476 4477 4478 4479 4480 4481 4482 4483 4484 4485 4486 4487 4488 4489 4490 4491 4492 4493 4494 4495 4496 4497 4498 4499 4500 4501 4502 4503 4504 4505 4506 4507 4508 4509 4510 4511 4512 4513 4514 4515 4516 4517 4518 4519 4520 4521 4522 4523 4524 4525 4526 4527 4528 4529 4530 4531 4532 4533 4534 4535 4536 4537 4538 4539 4540 4541 4542 4543 4544 4545 4546 4547 4548 4549 4550 4551 4552 4553 4554 4555 4556 4557 4558 4559 4560 4561 4562 4563 4564 4565 4566 4567 4568 4569 4570 4571 4572 4573 4574 4575 4576 4577 4578 4579 4580 4581 4582 4583 4584 4585 4586 4587 4588 4589 4590 4591 4592 4593 4594 4595 4596 4597 4598 4599 4600 4601 4602 4603 4604 4605 4606 4607 4608 4609 4610 4611 4612 4613 4614 4615 4616 4617 4618 4619 4620 4621 4622 4623 4624 4625 4626 4627 4628 4629 4630 4631 4632 4633 4634 4635 4636 4637 4638 4639 4640 4641 4642 4643 4644 4645 4646 4647 4648 4649 4650 4651 4652 4653 4654 4655 4656 4657 4658 4659 4660 4661 4662 4663 4664 4665 4666 4667 4668 4669 4670 4671 4672 4673 4674 4675 4676 4677 4678 4679 4680 4681 4682 4683 4684 4685 4686 4687 4688 4689 4690 4691 4692 4693 4694 4695 4696 4697 4698 4699 4700 4701 4702 4703 4704 4705 4706 4707 4708 4709 4710 4711 4712 4713 4714 4715 4716 4717 4718 4719 4720 4721 4722 4723 4724 4725 4726 4727 4728 4729 4730 4731 4732 4733 4734 4735 4736 4737 4738 4739 4740 4741 4742 4743 4744 4745 4746 4747 4748 4749 4750 4751 4752 4753 4754 4755 4756 4757 4758 4759 4760 4761 4762 4763 4764 4765 4766 4767 4768 4769 4770 4771 4772 4773 4774 4775 4776 4777 4778 4779 4780 4781 4782 4783 4784 4785 4786 4787 4788 4789 4790 4791 4792 4793 4794 4795 4796 4797 4798 4799 4800 4801 4802 4803 4804 4805 4806 4807 4808 4809 4810 4811 4812 4813 4814 4815 4816 4817 4818 4819 4820 4821 4822 4823 4824 4825 4826 4827 4828 4829 4830 4831 4832 4833 4834 4835 4836 4837 4838 4839 4840 4841 4842 4843 4844 4845 4846 4847 4848 4849 4850 4851 4852 4853 4854 4855 4856 4857 4858 4859 4860 4861 4862 4863 4864 4865 4866 4867 4868 4869 4870 4871 4872 4873 4874 4875 4876 4877 4878 4879 4880 4881 4882 4883 4884 4885 4886 4887 4888 4889 4890 4891 4892 4893 4894 4895 4896 4897 4898 4899 4900 4901 4902 4903 4904 4905 4906 4907 4908 4909 4910 4911 4912 4913 4914 4915 4916 4917 4918 4919 4920 4921 4922 4923 4924 4925 4926 4927 4928 4929 4930 4931 4932 4933 4934 4935 4936 4937 4938 4939 4940 4941 4942 4943 4944 4945 4946 4947 4948 4949 4950 4951 4952 4953 4954 4955 4956 4957 4958 4959 4960 4961 4962 4963 4964 4965 4966 4967 4968 4969 4970 4971 4972 4973 4974 4975 4976 4977 4978 4979 4980 4981 4982 4983 4984 4985 4986 4987 4988 4989 4990 4991 4992 4993 4994 4995 4996 4997 4998 4999 5000 5001 5002 5003 5004 5005 5006 5007 5008 5009 5010 5011 5012 5013 5014 5015 5016 5017 5018 5019 5020 5021 5022 5023 5024 5025 5026 5027 5028 5029 5030 5031 5032 5033 5034 5035 5036 5037 5038 5039 5040 5041 5042 5043 5044 5045 5046 5047 5048 5049 5050 5051 5052 5053 5054 5055 5056 5057 5058 5059 5060 5061 5062 5063 5064 5065 5066 5067 5068 5069 5070 5071 5072 5073 5074 5075 5076 5077 5078 5079 5080 5081 5082 5083 5084 5085 5086 5087 5088 5089 5090 5091 5092 5093 5094 5095 5096 5097 5098 5099 5100 5101 5102 5103 5104 5105 5106 5107 5108 5109 5110 5111 5112 5113 5114 5115 5116 5117 5118 5119 5120 5121 5122 5123 5124 5125 5126 5127 5128 5129 5130 5131 5132 5133 5134 5135 5136 5137 5138 5139 5140 5141 5142 5143 5144 5145 5146 5147 5148 5149 5150 5151 5152 5153 5154 5155 5156 5157 5158 5159 5160 5161 5162 5163 5164 5165 5166 5167 5168 5169 5170 5171 5172 5173 5174 5175 5176 5177 5178 5179 5180 5181 5182 5183 5184 5185 5186 5187 5188 5189 5190 5191 5192 5193 5194 5195 5196 5197 5198 5199 5200 5201 5202 5203 5204 5205 5206 5207 5208 5209 5210 5211 5212 5213 5214 5215 5216 5217 5218 5219 5220 5221 5222 5223 5224 5225 5226 5227 5228 5229 5230 5231 5232 5233 5234 5235 5236 5237 5238 5239 5240 5241 5242 5243 5244 5245 5246 5247 5248 5249 5250 5251 5252 5253 5254 5255 5256 5257 5258 5259 5260 5261 5262 5263 5264 5265 5266 5267 5268 5269 5270 5271 5272 5273 5274 5275 5276 5277 5278 5279 5280 5281 5282 5283 5284 5285 5286 5287 5288 5289 5290 5291 5292 5293 5294 5295 5296 5297 5298 5299 5300 5301 5302 5303 5304 5305 5306 5307 5308 5309 5310 5311 5312 5313 5314 5315 5316 5317 5318 5319 5320 5321 5322 5323 5324 5325 5326 5327 5328 5329 5330 5331 5332 5333 5334 5335 5336 5337 5338 5339 5340 5341 5342 5343 5344 5345 5346 5347 5348 5349 5350 5351 5352 5353 5354 5355 5356 5357 5358 5359 5360 5361 5362 5363 5364 5365 5366 5367 5368 5369 5370 5371 5372 5373 5374 5375 5376 5377 5378 5379 5380 5381 5382 5383 5384 5385 5386 5387 5388 5389 5390 5391 5392 5393 5394 5395 5396 5397 5398 5399 5400 5401 5402 5403 5404 5405 5406 5407 5408 5409 5410 5411 5412 5413 5414 5415 5416 5417 5418 5419 5420 5421 5422 5423 5424 5425 5426 5427 5428 5429 5430 5431 5432 5433 5434 5435 5436 5437 5438 5439 5440 5441 5442 5443 5444 5445 5446 5447 5448 5449 5450 5451 5452 5453 5454 5455 5456 5457 5458 5459 5460 5461 5462 5463 5464 5465 5466 5467 5468 5469 5470 5471 5472 5473 5474 5475 5476 5477 5478 5479 5480 5481 5482 5483 5484 5485 5486 5487 5488 5489 5490 5491 5492 5493 5494 5495 5496 5497 5498 5499 5500 5501 5502 5503 5504 5505 5506 5507 5508 5509 5510 5511 5512 5513 5514 5515 5516 5517 5518 5519 5520 5521 5522 5523 5524 5525 5526 5527 5528 5529 5530 5531 5532 5533 5534 5535 5536 5537 5538 5539 5540 5541 5542 5543 5544 5545 5546 5547 5548 5549 5550 5551 5552 5553 5554 5555 5556 5557 5558 5559 5560 5561 5562 5563 5564 5565 5566 5567 5568 5569 5570 5571 5572 5573 5574 5575 5576 5577 5578 5579 5580 5581 5582 5583 5584 5585 5586 5587 5588 5589 5590 5591 5592 5593 5594 5595 5596 5597 5598 5599 5600 5601 5602 5603 5604 5605 5606 5607 5608 5609 5610 5611 5612 5613 5614 5615 5616 5617 5618 5619 5620 5621 5622 5623 5624 5625 5626 5627 5628 5629 5630 5631 5632 5633 5634 5635 5636 5637 5638 5639 5640 5641 5642 5643 5644 5645 5646 5647 5648 5649 5650 5651 5652 5653 5654 5655 5656 5657 5658 5659 5660 5661 5662 5663 5664 5665 5666 5667 5668 5669 5670 5671 5672 5673 5674 5675 5676 5677 5678 5679 5680 5681 5682 5683 5684 5685 5686 5687 5688 5689 5690 5691 5692 5693 5694 5695 5696 5697 5698 5699 5700 5701 5702 5703 5704 5705 5706 5707 5708 5709 5710 5711 5712 5713 5714 5715 5716 5717 5718 5719 5720 5721 5722 5723 5724 5725 5726 5727 5728 5729 5730 5731 5732 5733 5734 5735 5736 5737 5738 5739 5740 5741 5742 5743 5744 5745 5746 5747 5748 5749 5750 5751 5752 5753 5754 5755 5756 5757 5758 5759 5760 5761 5762 5763 5764 5765 5766 5767 5768 5769 5770 5771 5772 5773 5774 5775 5776 5777 5778 5779 5780 5781 5782 5783 5784 5785 5786 5787 5788 5789 5790 5791 5792 5793 5794 5795 5796 5797 5798 5799 5800 5801 5802 5803 5804 5805 5806 5807 5808 5809 5810 5811 5812 5813 5814 5815 5816 5817 5818 5819 5820 5821 5822 5823 5824 5825 5826 5827 5828 5829 5830 5831 5832 5833 5834 5835 5836 5837 5838 5839 5840 5841 5842 5843 5844 5845 5846 5847 5848 5849 5850 5851 5852 5853 5854 5855 5856 5857 5858 5859 5860 5861 5862 5863 5864 5865 5866 5867 5868 5869 5870 5871 5872 5873 5874 5875 5876 5877 5878 5879 5880 5881 5882 5883 5884 5885 5886 5887 5888 5889 5890 5891 5892 5893 5894 5895 5896 5897 5898 5899 5900 5901 5902 5903 5904 5905 5906 5907 5908 5909 5910 5911 5912 5913 5914 5915 5916 5917 5918 5919 5920 5921 5922 5923 5924 5925 5926 5927 5928 5929 5930 5931 5932 5933 5934 5935 5936 5937 5938 5939 5940 5941 5942 5943 5944 5945 5946 5947 5948 5949 5950 5951 5952 5953 5954 5955 5956 5957 5958 5959 5960 5961 5962 5963 5964 5965 5966 5967 5968 5969 5970 5971 5972 5973 5974 5975 5976 5977 5978 5979 5980 5981 5982 5983 5984 5985 5986 5987 5988 5989 5990 5991 5992 5993 5994 5995 5996 5997 5998 5999 6000 6001 6002 6003 6004 6005 6006 6007 6008 6009 6010 6011 6012 6013 6014 6015 6016 6017 6018 6019 6020 6021 6022 6023 6024 6025 6026 6027 6028 6029 6030 6031 6032 6033 6034 6035 6036 6037 6038 6039 6040 6041 6042 6043 6044 6045 6046 6047 6048 6049 6050 6051 6052 6053 6054 6055 6056 6057 6058 6059 6060 6061 6062 6063 6064 6065 6066 6067 6068 6069 6070 6071 6072 6073 6074 6075 6076 6077 6078 6079 6080 6081 6082 6083 6084 6085 6086 6087 6088 6089 6090 6091 6092 6093 6094 6095 6096 6097 6098 6099 6100 6101 6102 6103 6104 6105 6106 6107 6108 6109 6110 6111 6112 6113 6114 6115 6116 6117 6118 6119 6120 6121 6122 6123 6124 6125 6126 6127 6128 6129 6130 6131 6132 6133 6134 6135 6136 6137 6138 6139 6140 6141 6142 6143 6144 6145 6146 6147 6148 6149 6150 6151 6152 6153 6154 6155 6156 6157 6158 6159 6160 6161 6162 6163 6164 6165 6166 6167 6168 6169 6170 6171 6172 6173 6174 6175 6176 6177 6178 6179 6180 6181 6182 6183 6184 6185 6186 6187 6188 6189 6190 6191 6192 6193 6194 6195 6196 6197 6198 6199 6200 6201 6202 6203 6204 6205 6206 6207 6208 6209 6210 6211 6212 6213 6214 6215 6216 6217 6218 6219 6220 6221 6222 6223 6224 6225 6226 6227 6228 6229 6230 6231 6232 6233 6234 6235 6236 6237 6238 6239 6240 6241 6242 6243 6244 6245 6246 6247 6248 6249 6250 6251 6252 6253 6254 6255 6256 6257 6258 6259 6260 6261 6262 6263 6264 6265 6266 6267 6268 6269 6270 6271 6272 6273 6274 6275 6276 6277 6278 6279 6280 6281 6282 6283 6284 6285 6286 6287 6288 6289 6290 6291 6292 6293 6294 6295 6296 6297 6298 6299 6300 6301 6302 6303 6304 6305 6306 6307 6308 6309 6310 6311 6312 6313 6314 6315 6316 6317 6318 6319 6320 6321 6322 6323 6324 6325 6326 6327 6328 6329 6330 6331 6332 6333 6334 6335 6336 6337 6338 6339 6340 6341 6342 6343 6344 6345 6346 6347 6348 6349 6350 6351 6352 6353 6354 6355 6356 6357 6358 6359 6360 6361 6362 6363 6364 6365 6366 6367 6368 6369 6370 6371 6372 6373 6374 6375 6376 6377 6378 6379 6380 6381 6382 6383 6384 6385 6386 6387 6388 6389 6390 6391 6392 6393 6394 6395 6396 6397 6398 6399 6400 6401 6402 6403 6404 6405 6406 6407 6408 6409 6410 6411 6412 6413 6414 6415 6416 6417 6418 6419 6420 6421 6422 6423 6424 6425 6426 6427 6428 6429 6430 6431 6432 6433 6434 6435 6436 6437 6438 6439 6440 6441 6442 6443 6444 6445 6446 6447 6448 6449 6450 6451 6452 6453 6454 6455 6456 6457 6458 6459 6460 6461 6462 6463 6464 6465 6466 6467 6468 6469 6470 6471 6472 6473 6474 6475 6476 6477 6478 6479 6480 6481 6482 6483 6484 6485 6486 6487 6488 6489 6490 6491 6492 6493 6494 6495 6496 6497 6498 6499 6500 6501 6502 6503 6504 6505 6506 6507 6508 6509 6510 6511 6512 6513 6514 6515 6516 6517 6518 6519 6520 6521 6522 6523 6524 6525 6526 6527 6528 6529 6530 6531 6532 6533 6534 6535 6536 6537 6538 6539 6540 6541 6542 6543 6544 6545 6546 6547 6548 6549 6550 6551 6552 6553 6554 6555 6556 6557 6558 6559 6560 6561 6562 6563 6564 6565 6566 6567 6568 6569 6570 6571 6572 6573 6574 6575 6576 6577 6578 6579 6580 6581 6582 6583 6584 6585 6586 6587 6588 6589 6590 6591 6592 6593 6594 6595 6596 6597 6598 6599 6600 6601 6602 6603 6604 6605 6606 6607 6608 6609 6610 6611 6612 6613 6614 6615 6616 6617 6618 6619 6620 6621 6622 6623 6624 6625 6626 6627 6628 6629 6630 6631 6632 6633 6634 6635 6636 6637 6638 6639 6640 6641 6642 6643 6644 6645 6646 6647 6648 6649 6650 6651 6652 6653 6654 6655 6656 6657 6658 6659 6660 6661 6662 6663 6664 6665 6666 6667 6668 6669 6670 6671 6672 6673 6674 6675 6676 6677 6678 6679 6680 6681 6682 6683 6684 6685 6686 6687 6688 6689 6690 6691 6692 6693 6694 6695 6696 6697 6698 6699 6700 6701 6702 6703 6704 6705 6706 6707 6708 6709 6710 6711 6712 6713 6714 6715 6716 6717 6718 6719 6720 6721 6722 6723 6724 6725 6726 6727 6728 6729 6730 6731 6732 6733 6734 6735 6736 6737 6738 6739 6740 6741 6742 6743 6744 6745 6746 6747 6748 6749 6750 6751 6752 6753 6754 6755 6756 6757 6758 6759 6760 6761 6762 6763 6764 6765 6766 6767 6768 6769 6770 6771 6772 6773 6774 6775 6776 6777 6778 6779 6780 6781 6782 6783 6784 6785 6786 6787 6788 6789 6790 6791 6792 6793 6794 6795 6796 6797 6798 6799 6800 6801 6802 6803 6804 6805 6806 6807 6808 6809 6810 6811 6812 6813 6814 6815 6816 6817 6818 6819 6820 6821 6822 6823 6824 6825 6826 6827 6828 6829 6830 6831 6832 6833 6834 6835 6836 6837 6838 6839 6840 6841 6842 6843 6844 6845 6846 6847 6848 6849 6850 6851 6852 6853 6854 6855 6856 6857 6858 6859 6860 6861 6862 6863 6864 6865 6866 6867 6868 6869 6870 6871 6872 6873 6874 6875 6876 6877 6878 6879 6880 6881 6882 6883 6884 6885 6886 6887 6888 6889 6890 6891 6892 6893 6894 6895 6896 6897 6898 6899 6900 6901 6902 6903 6904 6905 6906 6907 6908 6909 6910 6911 6912 6913 6914 6915 6916 6917 6918 6919 6920 6921 6922 6923 6924 6925 6926 6927 6928 6929 6930 6931 6932 6933 6934 6935 6936 6937 6938 6939 6940 6941 6942 6943 6944 6945 6946 6947 6948 6949 6950 6951 6952 6953 6954 6955 6956 6957 6958 6959 6960 6961 6962 6963 6964 6965 6966 6967 6968 6969 6970 6971 6972 6973 6974 6975 6976 6977 6978 6979 6980 6981 6982 6983 6984 6985 6986 6987 6988 6989 6990 6991 6992 6993 6994 6995 6996 6997 6998 6999 7000 7001 7002 7003 7004 7005 7006 7007 7008 7009 7010 7011 7012 7013 7014 7015 7016 7017 7018 7019 7020 7021 7022 7023 7024 7025 7026 7027 7028 7029 7030 7031 7032 7033 7034 7035 7036 7037 7038 7039 7040 7041 7042 7043 7044 7045 7046 7047 7048 7049 7050 7051 7052 7053 7054 7055 7056 7057 7058 7059 7060 7061 7062 7063 7064 7065 7066 7067 7068 7069 7070 7071 7072 7073 7074 7075 7076 7077 7078 7079 7080 7081 7082 7083 7084 7085 7086 7087 7088 7089 7090 7091 7092 7093 7094 7095 7096 7097 7098 7099 7100 7101 7102 7103 7104 7105 7106 7107 7108 7109 7110 7111 7112 7113 7114 7115 7116 7117 7118 7119 7120 7121 7122 7123 7124 7125 7126 7127 7128 7129 7130 7131 7132 7133 7134 7135 7136 7137 7138 7139 7140 7141 7142 7143 7144 7145 7146 7147 7148 7149 7150 7151 7152 7153 7154 7155 7156 7157 7158 7159 7160 7161 7162 7163 7164 7165 7166 7167 7168 7169 7170 7171 7172 7173 7174 7175 7176 7177 7178 7179 7180 7181 7182 7183 7184 7185 7186 7187 7188 7189 7190 7191 7192 7193 7194 7195 7196 7197 7198 7199 7200 7201 7202 7203 7204 7205 7206 7207 7208 7209 7210 7211 7212 7213 7214 7215 7216 7217 7218 7219 7220 7221 7222 7223 7224 7225 7226 7227 7228 7229 7230 7231 7232 7233 7234 7235 7236 7237 7238 7239 7240 7241 7242 7243 7244 7245 7246 7247 7248 7249 7250 7251 7252 7253 7254 7255 7256 7257 7258 7259 7260 7261 7262 7263 7264 7265 7266 7267 7268 7269 7270 7271 7272 7273 7274 7275 7276 7277 7278 7279 7280 7281 7282 7283 7284 7285 7286 7287 7288 7289 7290 7291 7292 7293 7294 7295 7296 7297 7298 7299 7300 7301 7302 7303 7304 7305 7306 7307 7308 7309 7310 7311 7312 7313 7314 7315 7316 7317 7318 7319 7320 7321 7322 7323 7324 7325 7326 7327 7328 7329 7330 7331 7332 7333 7334 7335 7336 7337 7338 7339 7340 7341 7342 7343 7344 7345 7346 7347 7348 7349 7350 7351 7352 7353 7354 7355 7356 7357 7358 7359 7360 7361 7362 7363 7364 7365 7366 7367 7368 7369 7370 7371 7372 7373 7374 7375 7376 7377 7378 7379 7380 7381 7382 7383 7384 7385 7386 7387 7388 7389 7390 7391 7392 7393 7394 7395 7396 7397 7398 7399 7400 7401 7402 7403 7404 7405 7406 7407 7408 7409 7410 7411 7412 7413 7414 7415 7416 7417 7418 7419 7420 7421 7422 7423 7424 7425 7426 7427 7428 7429 7430 7431 7432 7433 7434 7435 7436 7437 7438 7439 7440 7441 7442 7443 7444 7445 7446 7447 7448 7449 7450 7451 7452 7453 7454 7455 7456 7457 7458 7459 7460 7461 7462 7463 7464 7465 7466 7467 7468 7469 7470 7471 7472 7473 7474 7475 7476 7477 7478 7479 7480 7481 7482 7483 7484 7485 7486 7487 7488 7489 7490 7491 7492 7493 7494 7495 7496 7497 7498 7499 7500 7501 7502 7503 7504 7505 7506 7507 7508 7509 7510 7511 7512 7513 7514 7515 7516 7517 7518 7519 7520 7521 7522 7523 7524 7525 7526 7527 7528 7529 7530 7531 7532 7533 7534 7535 7536 7537 7538 7539 7540 7541 7542 7543 7544 7545 7546 7547 7548 7549 7550 7551 7552 7553 7554 7555 7556 7557 7558 7559 7560 7561 7562 7563 7564 7565 7566 7567 7568 7569 7570 7571 7572 7573 7574 7575 7576 7577 7578 7579 7580 7581 7582 7583 7584 7585 7586 7587 7588 7589 7590 7591 7592 7593 7594 7595 7596 7597 7598 7599 7600 7601 7602 7603 7604 7605 7606 7607 7608 7609 7610 7611 7612 7613 7614 7615 7616 7617 7618 7619 7620 7621 7622 7623 7624 7625 7626 7627 7628 7629 7630 7631 7632 7633 7634 7635 7636 7637 7638 7639 7640 7641 7642 7643 7644 7645 7646 7647 7648 7649 7650 7651 7652 7653 7654 7655 7656 7657 7658 7659 7660 7661 7662 7663 7664 7665 7666 7667 7668 7669 7670 7671 7672 7673 7674 7675 7676 7677 7678 7679 7680 7681 7682 7683 7684 7685 7686 7687 7688 7689 7690 7691 7692 7693 7694 7695 7696 7697 7698 7699 7700 7701 7702 7703 7704 7705 7706 7707 7708 7709 7710 7711 7712 7713 7714 7715 7716 7717 7718 7719 7720 7721 7722 7723 7724 7725 7726 7727 7728 7729 7730 7731 7732 7733 7734 7735 7736 7737 7738 7739 7740 7741 7742 7743 7744 7745 7746 7747 7748 7749 7750 7751 7752 7753 7754 7755 7756 7757 7758 7759 7760 7761 7762 7763 7764 7765 7766 7767 7768 7769 7770 7771 7772 7773 7774 7775 7776 7777 7778 7779 7780 7781 7782 7783 7784 7785 7786 7787 7788 7789 7790 7791 7792 7793 7794 7795 7796 7797 7798 7799 7800 7801 7802 7803 7804 7805 7806 7807 7808 7809 7810 7811 7812 7813 7814 7815 7816 7817 7818 7819 7820 7821 7822 7823 7824 7825 7826 7827 7828 7829 7830 7831 7832 7833 7834 7835 7836 7837 7838 7839 7840 7841 7842 7843 7844 7845 7846 7847 7848 7849 7850 7851 7852 7853 7854 7855 7856 7857 7858 7859 7860 7861 7862 7863 7864 7865 7866 7867 7868 7869 7870 7871 7872 7873 7874 7875 7876 7877 7878 7879 7880 7881 7882 7883 7884 7885 7886 7887 7888 7889 7890 7891 7892 7893 7894 7895 7896 7897 7898 7899 7900 7901 7902 7903 7904 7905 7906 7907 7908 7909 7910 7911 7912 7913 7914 7915 7916 7917 7918 7919 7920 7921 7922 7923 7924 7925 7926 7927 7928 7929 7930 7931 7932 7933 7934 7935 7936 7937 7938 7939 7940 7941 7942 7943 7944 7945 7946 7947 7948 7949 7950 7951 7952 7953 7954 7955 7956 7957 7958 7959 7960 7961 7962 7963 7964 7965 7966 7967 7968 7969 7970 7971 7972 7973 7974 7975 7976 7977 7978 7979 7980 7981 7982 7983 7984 7985 7986 7987 7988 7989 7990 7991 7992 7993 7994 7995 7996 7997 7998 7999 8000 8001 8002 8003 8004 8005 8006 8007 8008 8009 8010 8011 8012 8013 8014 8015 8016 8017 8018 8019 8020 8021 8022 8023 8024 8025 8026 8027 8028 8029 8030 8031 8032 8033 8034 8035 8036 8037 8038 8039 8040 8041 8042 8043 8044 8045 8046 8047 8048 8049 8050 8051 8052 8053 8054 8055 8056 8057 8058 8059 8060 8061 8062 8063 8064 8065 8066 8067 8068 8069 8070 8071 8072 8073 8074 8075 8076 8077 8078 8079 8080 8081 8082 8083 8084 8085 8086 8087 8088 8089 8090 8091 8092 8093 8094 8095 8096 8097 8098 8099 8100 8101 8102 8103 8104 8105 8106 8107 8108 8109 8110 8111 8112 8113 8114 8115 8116 8117 8118 8119 8120 8121 8122 8123 8124 8125 8126 8127 8128 8129 8130 8131 8132 8133 8134 8135 8136 8137 8138 8139 8140 8141 8142 8143 8144 8145 8146 8147 8148 8149 8150 8151 8152 8153 8154 8155 8156 8157 8158 8159 8160 8161 8162 8163 8164 8165 8166 8167 8168 8169 8170 8171 8172 8173 8174 8175 8176 8177 8178 8179 8180 8181 8182 8183 8184 8185 8186 8187 8188 8189 8190 8191 8192 8193 8194 8195 8196 8197 8198 8199 8200 8201 8202 8203 8204 8205 8206 8207 8208 8209 8210 8211 8212 8213 8214 8215 8216 8217 8218 8219 8220 8221 8222 8223 8224 8225 8226 8227 8228 8229 8230 8231 8232 8233 8234 8235 8236 8237 8238 8239 8240 8241 8242 8243 8244 8245 8246 8247 8248 8249 8250 8251 8252 8253 8254 8255 8256 8257 8258 8259 8260 8261 8262 8263 8264 8265 8266 8267 8268 8269 8270 8271 8272 8273 8274 8275 8276 8277 8278 8279 8280 8281 8282 8283 8284 8285 8286 8287 8288 8289 8290 8291 8292 8293 8294 8295 8296 8297 8298 8299 8300 8301 8302 8303 8304 8305 8306 8307 8308 8309 8310 8311 8312 8313 8314 8315 8316 8317 8318 8319 8320 8321 8322 8323 8324 8325 8326 8327 8328 8329 8330 8331 8332 8333 8334 8335 8336 8337 8338 8339 8340 8341 8342 8343 8344 8345 8346 8347 8348 8349 8350 8351 8352 8353 8354 8355 8356 8357 8358 8359 8360 8361 8362 8363 8364 8365 8366 8367 8368 8369 8370 8371 8372 8373 8374 8375 8376 8377 8378 8379 8380 8381 8382 8383 8384 8385 8386 8387 8388 8389 8390 8391 8392 8393 8394 8395 8396 8397 8398 8399 8400 |
/*
*
* $Id: basic.c,v 1.144 2023/07/16 14:17:08 stefan Exp stefan $
*
* Stefan's IoT BASIC interpreter
*
* See the licence file on
* https://github.com/slviajero/tinybasic for copyright/left.
* (GNU GENERAL PUBLIC LICENSE, Version 3, 29 June 2007)
*
* Author: Stefan Lenz, [email protected]
*
* The first set of definions define the target.
* - MINGW switches on Windows calls - this is the mingw.org version
* _ MINGW64 like MINGW but with the mingw 64 support
* - MSDOS for MSDOS file access.
* - MAC doesn't need more settings here
* - RASPPI activates wiring code
* - Review hardware-*.h for settings specific Arduino hardware settings
* - HAS* activates or deactives features of the interpreter
* - the extension flags control features and code size
*
* MEMSIZE sets the BASIC main memory to a fixed value,
* if MEMSIZE=0 a heuristic is used based on free heap
* size and architecture parameters
*
* USEMEMINTERFACE controls the way memory is accessed. Don't change
* this here. It is a parameter set by hardware-arduino.h.
* This feature is experimental.
*
*/
#undef MINGW
#undef MSDOS
#undef RASPPI
/*
interpreter feature sets, choose one of the predefines
or undefine all predefines and set the features in custom settings
*/
/*
* BASICFULL: full language set, use this with flash >32kB - ESPs, MKRs, Mega2560, RP2040, UNO R4
* BASICINTEGER: integer BASIC with full language, use this with flash >32kB
* BASICSIMPLE: integer BASIC with reduced language set, 32kB capable - for UNOs with a lot of device drivers
* BASICSIMPLEWITHFLOAT: a small floating point BASIC, 32kB capable, for UNOs - good for UNOs with the need of float
* BASICTINYWITHFLOAT: a floating point tinybasic, if you have 32kB and need complex device drivers
* BASICMINIMAL: minimal language, just Palo Alto plus Arduino I/O, works on 168 with 1kB RAM and 16kB flash
*/
#define BASICFULL
#undef BASICINTEGER
#undef BASICSIMPLE
#undef BASICMINIMAL
#undef BASICSIMPLEWITHFLOAT
#undef BASICTINYWITHFLOAT
/*
* custom settings undef all the the language sets
* when you def here
*/
#define HASAPPLE1
#define HASARDUINOIO
#define HASFILEIO
#define HASTONE
#define HASPULSE
#define HASSTEFANSEXT
#define HASERRORMSG
#define HASVT52
#define HASFLOAT
#define HASGRAPH
#define HASDARTMOUTH
#define HASDARKARTS
#define HASIOT
#define HASMULTIDIM
#define HASSTRINGARRAYS
#define HASTIMER
#define HASEVENTS
#define HASERRORHANDLING
#define HASMSTAB
#define HASARRAYLIMIT
#define HASSTRUCT
/* Palo Alto plus Arduino functions */
#ifdef BASICMINIMAL
#undef HASAPPLE1
#define HASARDUINOIO
#undef HASFILEIO
#undef HASTONE
#undef HASPULSE
#undef HASSTEFANSEXT
#undef HASERRORMSG
#undef HASVT52
#undef HASFLOAT
#undef HASGRAPH
#undef HASDARTMOUTH
#undef HASDARKARTS
#undef HASIOT
#undef HASMULTIDIM
#undef HASSTRINGARRAYS
#undef HASTIMER
#undef HASEVENTS
#undef HASERRORHANDLING
#undef HASMSTAB
#undef HASARRAYLIMIT
#undef HASSTRUCT
#endif
/* all features minus float and tone */
#ifdef BASICINTEGER
#define HASAPPLE1
#define HASARDUINOIO
#define HASFILEIO
#define HASTONE
#define HASPULSE
#define HASSTEFANSEXT
#define HASERRORMSG
#define HASVT52
#undef HASFLOAT
#define HASGRAPH
#define HASDARTMOUTH
#define HASDARKARTS
#define HASIOT
#define HASMULTIDIM
#define HASSTRINGARRAYS
#define HASTIMER
#define HASEVENTS
#define HASERRORHANDLING
#define HASMSTAB
#define HASARRAYLIMIT
#define HASSTRUCT
#endif
/* a simple integer basic for small systems (UNO etc) */
#ifdef BASICSIMPLE
#define HASAPPLE1
#define HASARDUINOIO
#define HASFILEIO
#define HASTONE
#define HASPULSE
#define HASSTEFANSEXT
#define HASERRORMSG
#define HASVT52
#undef HASFLOAT
#undef HASGRAPH
#define HASDARTMOUTH
#undef HASDARKARTS
#define HASIOT
#undef HASMULTIDIM
#undef HASSTRINGARRAYS
#define HASTIMER
#define HASEVENTS
#define HASERRORHANDLING
#undef HASMSTAB
#undef HASARRAYLIMIT
#undef HASSTRUCT
#endif
/* all features activated */
#ifdef BASICFULL
#define HASAPPLE1
#define HASARDUINOIO
#define HASFILEIO
#define HASTONE
#define HASPULSE
#define HASSTEFANSEXT
#define HASERRORMSG
#define HASVT52
#define HASFLOAT
#define HASGRAPH
#define HASDARTMOUTH
#define HASDARKARTS
#define HASIOT
#define HASMULTIDIM
#define HASSTRINGARRAYS
#define HASTIMER
#define HASEVENTS
#define HASERRORHANDLING
#define HASMSTAB
#define HASARRAYLIMIT
#define HASSTRUCT
#endif
/* a simple BASIC with float support */
#ifdef BASICSIMPLEWITHFLOAT
#define HASAPPLE1
#define HASARDUINOIO
#undef HASFILEIO
#undef HASTONE
#undef HASPULSE
#define HASSTEFANSEXT
#define HASERRORMSG
#undef HASVT52
#define HASFLOAT
#undef HASGRAPH
#define HASDARTMOUTH
#undef HASDARKARTS
#undef HASIOT
#undef HASMULTIDIM
#undef HASSTRINGARRAYS
#undef HASTIMER
#undef HASEVENTS
#undef HASERRORHANDLING
#undef HASMSTAB
#undef HASARRAYLIMIT
#undef HASSTRUCT
#endif
/* a Tinybasic with float support */
#ifdef BASICTINYWITHFLOAT
#define HASAPPLE1
#define HASARDUINOIO
#undef HASFILEIO
#undef HASTONE
#undef HASPULSE
#define HASSTEFANSEXT
#define HASERRORMSG
#undef HASVT52
#define HASFLOAT
#undef HASGRAPH
#undef HASDARTMOUTH
#undef HASDARKARTS
#undef HASIOT
#undef HASMULTIDIM
#undef HASSTRINGARRAYS
#undef HASTIMER
#undef HASEVENTS
#undef HASERRORHANDLING
#undef HASMSTAB
#undef HASARRAYLIMIT
#undef HASSTRUCT
#endif
/*
* hardcoded memory size, set 0 for automatic malloc, don't redefine this beyond this point
*/
#define MEMSIZE 0
/* debug mode switch, set to 1 for hard debug mode with many messages */
#define DEBUG 0
/*
* Language feature dependencies
*
* Dartmouth and darkarts needs the heap which is in Apple 1
* IoT needs strings and the heap, also Apple 1
*
* String arrays need multi dimensional capabilities
*
* The structured language set needs ELSE from STEFANSEXT
*
*/
#if defined(HASDARTMOUTH) || defined(HASDARKARTS) || defined(HASIOT)
#define HASAPPLE1
#endif
#if defined(HASSTRINGARRAYS)
#define HASMULTIDIM
#endif
#ifdef HASSTRUCT
#define HASSTEFANSEXT
#endif
/*
* if there are many commands we need the token extension i.e. 2 byte tokens
* #undef HASLONGTOKENS
* this is normally done in basic.h where the tokens are set
*/
/*
* the core basic language headers including some Arduino device stuff
*/
#include "basic.h"
/*
* Hardware dependend definitions code are isolated in hardware-*.h
* Currently there are two versions
* hardware-arduino.h contains all platforms compiled in the Arduino IDE
* (ESP8266, ESP32, AVR, MEGAAVR, SAM*, RP2040)
* hardware-posix.h contains all platforms compiled in gcc with a POSIX OS
* (Mac, Raspberry, Windows/MINGW) plus rudimentary MSDOS with tc2.0. The
* latter will be removed soon.
*/
#ifdef ARDUINO
#include "hardware-arduino.h"
#else
#include "hardware-posix.h"
#endif
/*
*
* BASIC timer stuff, this is a core interpreter function now
*
*/
/*
* the byield function is called after every statement
* it allows four levels of background tasks.
*
* fastticker() is used to trigger all fast timing functions of
* the core interpreter. It can also be used to implement a
* "tone without timer solution"
*
* yieldfunction() triggers a 32ms timer which calls network
* and USB handling functions
*
* longyielfunction() is a 1s timer for long termin maintance
* functions
*
* yieldscheduler() is the hardware scheduler of some platforms
*
*/
void byield() {
/* the fast ticker for all fast timing functions */
fastticker();
/* the loop function for non BASIC stuff */
bloop();
#if defined(BASICBGTASK)
/* yield all 32 milliseconds */
if (millis()-lastyield > YIELDINTERVAL-1) {
yieldfunction();
lastyield=millis();
}
/* yield every second */
if (millis()-lastlongyield > LONGYIELDINTERVAL-1) {
longyieldfunction();
lastlongyield=millis();
}
#endif
/* call the background task scheduler on some platforms implemented in hardware-* */
yieldschedule();
}
/* delay must be implemented to use byield() while waiting */
void bdelay(unsigned long t) {
unsigned long i;
if (t>0) {
i=millis();
while (millis() < i+t) byield();
}
}
/* fastticker is the hook for all timing functions */
void fastticker() {
/* fastticker profiling test code */
#ifdef FASTTICKERPROFILE
fasttickerprofile();
#endif
/* toggle the tone pin */
#ifdef ARDUINOTONEEMULATION
tonetoggle();
#endif
}
/* the millis function for BASIC */
void bmillis() {
number_t m;
/* millis is processed as integer and is cyclic mod maxnumber and not cast to float!! */
m=(number_t) (millis()/(unsigned long)pop() % (unsigned long)maxnum);
push(m);
}
/*
* Determine the possible basic memory size.
* using malloc causes some overhead which can be relevant on the smaller
* boards. set MEMSIZE instead to a static value. In this case ballocmem
* just returns the static MEMSIZE.
*
* if SPIRAMINTERFACE is defined, we use the memory from a serial RAM and dont
* allocate it here at all.
*
*/
#if MEMSIZE == 0 && !(defined(SPIRAMINTERFACE))
address_t ballocmem() {
/* on most platforms we know the free memory for BASIC */
long m=freememorysize();
/* we allocate as much as address_t can handle */
if (m>maxaddr) m=maxaddr;
/* try to allocate the memory */
mem=(mem_t*)malloc(m);
if (mem != 0) return m-1;
/* fallback if allocation failed, 128 bytes */
mem=(mem_t*)malloc(128);
if (mem != 0) return 128; else return 0;
}
#else
address_t ballocmem(){ return MEMSIZE-1; };
#endif
/*
* Layer 0 function - variable handling.
*
* These function access variables and data
*/
/*
* eeprom load / save / autorun functions
* needed for SAVE and LOAD to an EEPROM
* autorun is generic
*/
/* save a file to EEPROM, disabled if we use the EEPROM directly */
void esave() {
#ifndef EEPROMMEMINTERFACE
address_t a=0;
if (top+eheadersize < elength()) {
a=0;
/* EEPROM per default is 255, 0 indicates that there is a program */
eupdate(a++, 0);
/* store the size of the program in byte 1,2,... of the EEPROM*/
z.a=top;
esetnumber(a, addrsize);
a+=addrsize;
while (a < top+eheadersize){
eupdate(a, memread2(a-eheadersize));
a++;
}
eupdate(a++,0);
} else {
error(EOUTOFMEMORY);
er=0;
}
/* needed on I2C EEPROM and other platforms where we buffer */
eflush();
#endif
}
/* load a file from EEPROM, disabled if the use the EEPROM directly */
void eload() {
#ifndef EEPROMMEMINTERFACE
address_t a=0;
if (elength()>0 && (eread(a) == 0 || eread(a) == 1)) {
/* have we stored a program */
a++;
/* how long is it? */
egetnumber(a, addrsize);
top=z.a;
a+=addrsize;
while (a < top+eheadersize){
memwrite2(a-eheadersize, eread(a));
a++;
}
} else {
/* no valid program data is stored */
error(EEEPROM);
}
#endif
}
/* autorun something from EEPROM or a filesystem */
char autorun() {
#if defined(ARDUINOEEPROM) || defined(ARDUINOI2CEEPROM) || ! defined(ARDUINO)
if (eread(0) == 1){ /* autorun from the EEPROM */
egetnumber(1, addrsize);
top=z.a;
st=SERUN;
return 1; /* EEPROM autorun overrules filesystem autorun */
}
#endif
#if defined(FILESYSTEMDRIVER) || !defined(ARDUINO)
/* on a POSIX or DOS platform, we check the command line first and the autoexec */
#ifndef ARDUINO
if (bargc > 0) {
if (ifileopen(bargv[1])) {
xload(bargv[1]);
st=SRUN;
ifileclose();
bnointafterrun=TERMINATEAFTERRUN;
return 1;
}
}
#endif
if (ifileopen("autoexec.bas")) {
xload("autoexec.bas");
st=SRUN;
ifileclose();
return 1;
}
#endif
return 0;
}
#ifdef HASAPPLE1
/*
* bmalloc() allocates a junk of memory for a variable on the
* heap, every objects is identified by name (c,d) and type t
* 3 bytes are used here.
*/
address_t bmalloc(mem_t t, mem_t c, mem_t d, address_t l) {
address_t vsize; /* the length of the header on the heap*/
address_t b;
if (DEBUG) { outsc("** bmalloc with token "); outnumber(t); outcr(); }
/* check if the object already exists */
if (bfind(t, c, d) != 0 ) { error(EVARIABLE); return 0; };
/*
* how much space is needed
* 3 bytes for the token and the 2 name characters
* numsize for every number including array length
* one byte for every string character
*/
switch(t) {
case VARIABLE:
vsize=numsize+3;
break;
#ifndef HASMULTIDIM
case ARRAYVAR:
vsize=numsize*l+addrsize+3;
break;
#else
/* multidim implementation for n=2 */
case ARRAYVAR:
vsize=numsize*l+addrsize*2+3;
break;
#endif
#ifdef HASDARTMOUTH
case TFN:
vsize=addrsize+2+3;
break;
#endif
default:
vsize=l+addrsize+3;
}
/* enough memory ?, on an EEPROM system we limit the heap to the RAM */
#ifndef EEPROMMEMINTERFACE
if ((himem-top) < vsize) { error(EOUTOFMEMORY); return 0;}
#else
if (himem-(elength()-eheadersize) < vsize) { error(EOUTOFMEMORY); return 0;}
#endif
/* store the name of the objects (2 chars) plus the type (1 char) as identifier */
b=himem;
memwrite2(b--, c);
memwrite2(b--, d);
memwrite2(b--, t);
/* for strings, arrays and buffers write the (maximum) length
directly after the header */
if (t == ARRAYVAR || t == STRINGVAR || t == TBUFFER) {
b=b-addrsize+1;
z.a=vsize-(addrsize+3);
setnumber(b, addrsize);
b--;
}
/* remark on multidim, the byte length is after the header and the following
address_t bytes are then reserved for the first dimension */
/* reserve space for the payload */
himem-=vsize;
nvars++;
return himem+1;
}
/*
* bfind() passes back the location of the object as result
* the length of the object is in z.a as a side effect
* rememers the last search
*
*/
address_t bfind(mem_t t, mem_t c, mem_t d) {
address_t b = memsize;
mem_t t1;
mem_t c1, d1;
address_t i=0;
/* the bfind cache, did we ask for that object before? -
needed to make the string code efficient */
if (t == bfindt && c == bfindc && d == bfindd) {
z.a=bfindz;
return bfinda;
}
/* walk through the heap now */
while (i < nvars) {
c1=memread2(b--);
d1=memread2(b--);
t1=memread2(b--);
switch(t1) {
case VARIABLE:
z.a=numsize;
break;
case TFN:
z.a=addrsize+2;
break;
default:
b=b-addrsize+1;
getnumber(b, addrsize);
b--;
}
b-=z.a;
/* once we found we cache and return the location */
if (c1 == c && d1 == d && t1 == t) {
bfindc=c;
bfindd=d;
bfindt=t;
bfindz=z.a;
bfinda=b+1;
return b+1;
}
i++;
}
return 0;
}
/* finds an object and deletes the heap from this object on
including the object itself */
address_t bfree(mem_t t, mem_t c, mem_t d) {
address_t b = memsize;
mem_t t1;
mem_t c1, d1;
address_t i=0;
if (DEBUG) { outsc("*** bfree called for "); outch(c); outch(d); outsc(" on heap with token "); outnumber(t); outcr(); }
/* walk through the heap to find the location */
while (i < nvars) {
c1=memread2(b--);
d1=memread2(b--);
t1=memread2(b--);
/* found it */
if (t == t1 && c == c1 && d == d1) {
/* set the number of variables to the new value */
nvars=i;
if (DEBUG) { outsc("*** bfree setting nvars to "); outnumber(nvars); outcr(); }
/* clean up - this is somehow optional, one could drop this */
if (DEBUG) { outsc("*** bfree clearing "); outnumber(himem); outspc(); outnumber(b+3); outcr(); }
for (i=himem; i<=b+3; i++) memwrite2(i, 0);
/* now set the memory to the right address */
himem=b+3;
/* forget the chache, because heap structure has changed !! */
bfindc=0;
bfindd=0;
bfindt=0;
bfindz=0;
bfinda=0;
return himem;
}
switch(t1) {
case VARIABLE:
z.a=numsize;
break;
#ifdef HASDARTMOUTH
case TFN:
z.a=addrsize+2;
break;
#endif
default:
b=b-addrsize+1;
getnumber(b, addrsize);
b--;
}
b-=z.a;
i++;
}
return 0;
}
/* the length of an object */
address_t blength (mem_t t, mem_t c, mem_t d) {
if (bfind(t, c, d)) return z.a; else return 0;
}
#endif
/* get and create a variable */
number_t getvar(mem_t c, mem_t d){
address_t a;
if (DEBUG) { outsc("* getvar "); outch(c); outch(d); outspc(); outcr(); }
/* the static variable array */
if (c >= 65 && c <= 91 && d == 0) return vars[c-65];
/* the special variables */
if ( c == '@' )
switch (d) {
case 'A':
return availch();
case 'S':
return ert;
case 'I':
return id;
case 'O':
return od;
case 'C':
if (availch()) return inch(); else return 0;
case 'E':
return elength()/numsize;
case 0:
return (himem-top)/numsize;
case 'R':
return rd;
case 'U':
return getusrvar();
#ifdef HASIOT
case 'V':
return vlength;
#endif
#if defined(DISPLAYDRIVER) || defined (GRAPHDISPLAYDRIVER)
case 'X':
return dspgetcursorx();
case 'Y':
return dspgetcursory();
#endif
}
#ifdef HASAPPLE1
/* dynamically allocated vars, create them on the fly if needed */
if (!(a=bfind(VARIABLE, c, d))) a=bmalloc(VARIABLE, c, d, 0);
if (er != 0) return 0;
/* retrieve the value */
getnumber(a, numsize);
return z.i;
#else
/* systems without Apple1 extension i.e. HEAP throw an error */
error(EVARIABLE);
return 0;
#endif
}
/* set and create a variable */
void setvar(mem_t c, mem_t d, number_t v){
address_t a;
if (DEBUG) { outsc("* setvar "); outch(c); outch(d); outspc(); outnumber(v); outcr(); }
/* the static variable array */
if (c >= 65 && c <= 91 && d == 0) {
vars[c-65]=v;
return;
}
/* the special variables */
if ( c == '@' )
switch (d) {
case 'S':
ert=v;
return;
case 'I':
id=v;
return;
case 'O':
od=v;
return;
case 'C':
outch(v);
return;
case 'R':
rd=v;
return;
case 'U':
setusrvar(v);
return;
#ifdef HASIOT
case 'V':
return;
#endif
#if defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
case 'X':
dspsetcursorx((int)v);
/* set the charcount, this is half broken but works */
#ifdef HASMSTAB
if (od > 0 && od <= OPRT) charcount[od-1]=v;
#endif
return;
case 'Y':
dspsetcursory((int)v);
return;
#endif
}
#ifdef HASAPPLE1
/* dynamically allocated vars */
if (!(a=bfind(VARIABLE, c, d))) a=bmalloc(VARIABLE, c, d, 0);
if (er != 0) return;
/* set the value */
z.i=v;
setnumber(a, numsize);
#else
error(EVARIABLE);
#endif
}
/* clr all variables */
void clrvars() {
address_t i;
/* delete all statics */
for (i=0; i<VARSIZE; i++) vars[i]=0;
#ifdef HASAPPLE1
/* clear the heap */
nvars=0;
/* then set the entire mem area to zero */
for (i=himem; i<memsize; i++) memwrite2(i, 0);
/* reset the heap start*/
himem=memsize;
/* and clear the cache */
bfindc=bfindd=bfindt=0;
bfinda=bfindz=0;
#endif
}
/*
* The BASIC memory access function
*
* the functions getnumber(), pgetnumber() and egetnumber()
* retrieve a number from memory. This can be a a byte, an address
* or a real number. setnumber() and esetnumber() store the object.
*
* All operations are always going through the structure z.
*/
void getnumber(address_t m, mem_t n){
mem_t i;
z.i=0;
for (i=0; i<n; i++) z.c[i]=memread2(m++);
}
/* a generic memory reader for numbers - will replace getnumber in future */
number_t getnumber2(address_t m, memreader_t f) {
mem_t i;
accu_t z;
for (i=0; i<numsize; i++) z.c[i]=f(m++);
return z.i;
}
/* same for addresses - will replace getnumber in future */
address_t getaddress(address_t m, memreader_t f) {
mem_t i;
accu_t z;
for (i=0; i<addrsize; i++) z.c[i]=f(m++);
return z.a;
}
/* same for strings - currently identical to address but this will change */
address_t getstringlength(address_t m, memreader_t f) {
mem_t i;
accu_t z;
for (i=0; i<addrsize; i++) z.c[i]=f(m++);
return z.a;
}
/* code only for the USEMEMINTERFACE code, this function goes through the
ro buffer to avoit rw buffer page faults, do not use this unless
you understand the USEMEMINTERFACE mechanism completely */
void pgetnumber(address_t m, mem_t n){
mem_t i;
z.i=0;
for (i=0; i<n; i++) z.c[i]=memread(m++);
}
/* the eeprom memory access */
void egetnumber(address_t m, mem_t n){
mem_t i;
z.i=0;
for (i=0; i<n; i++) z.c[i]=eread(m++);
}
/* set a number at a memory location */
void setnumber(address_t m, mem_t n){
mem_t i;
for (i=0; i<n; i++) memwrite2(m++, z.c[i]);
}
/* set a number at a eepromlocation */
void esetnumber(address_t m, mem_t n){
mem_t i;
for (i=0; i<n; i++) eupdate(m++, z.c[i]);
}
/* create an array */
address_t createarray(mem_t c, mem_t d, address_t i, address_t j) {
address_t a, zat, at;
#ifdef HASAPPLE1
if (DEBUG) { outsc("* create array "); outch(c); outch(d); outspc(); outnumber(i); outcr(); }
#ifndef HASMULTIDIM
if (bfind(ARRAYVAR, c, d)) error(EVARIABLE); else return bmalloc(ARRAYVAR, c, d, i);
#else
if (bfind(ARRAYVAR, c, d))
error(EVARIABLE);
else {
a=bmalloc(ARRAYVAR, c, d, i*j);
zat=z.a; /* preserve z.a because it is needed on autocreate later */
z.a=j;
at=a+i*j*numsize;
memwrite2(at++, z.b.l);
memwrite2(at, z.b.h);
z.a=zat;
return a;
}
#endif
#endif
return 0;
}
/* finds if an array is twodimensional and what the second dimension structure is
test code, should be rewritten to properly use getnumber*/
address_t getarrayseconddim(address_t a, address_t za) {
#ifdef HASMULTIDIM
address_t zat1, zat2;
zat1=z.a;
z.b.l=memread2(a+za-2); /* test code, assuming 16 bit address_t here, should be ported to setnumber */
z.b.h=memread2(a+za-1);
zat2=z.a;
z.a=zat1;
return zat2;
#else
return 1;
#endif
}
/* generic array access function */
void array(mem_t m, mem_t c, mem_t d, address_t i, address_t j, number_t* v) {
address_t a;
address_t h;
mem_t e = 0;
#ifdef HASMULTIDIM
address_t dim=1, zat;
#endif
if (DEBUG) { outsc("* get/set array "); outch(c); outspc(); outnumber(i); outcr(); }
/* special arrays EEPROM, Display and Wang, dimension j is ignored here and not handled */
if (c == '@') {
switch(d) {
case 'E':
h=elength()/numsize;
a=elength()-numsize*i;
e=1;
break;
#if defined(DISPLAYDRIVER) && defined(DISPLAYCANSCROLL)
case 'D':
if (m == 'g') *v=dspget(i-1);
else if (m == 's') dspset(i-1, *v);
return;
#endif
#if defined(HASCLOCK)
case 'T':
if (m == 'g') *v=rtcget(i);
else if (m == 's') rtcset(i, *v);
return;
#endif
#if defined(ARDUINO) && defined(ARDUINOSENSORS)
case 'S':
if (m == 'g') *v=sensorread(i, 0);
return;
#endif
case 'U':
if (m == 'g') *v=getusrarray(i);
else if (m == 's') setusrarray(i, *v);
return;
case 0:
default:
h=(himem-top)/numsize;
a=himem-numsize*(i)+1;
break;
}
} else {
#ifdef HASAPPLE1
/* dynamically allocated arrays autocreated if needed */
if ( !(a=bfind(ARRAYVAR, c, d)) ) a=createarray(c, d, ARRAYSIZEDEF, 1);
if (er != 0) return;
#ifndef HASMULTIDIM
h=z.a/numsize;
#else
h=(z.a - addrsize)/numsize;
#endif
if (DEBUG) { outsc("** in array base address"); outnumber(a); outcr(); }
/* redudant code to getarrayseconddim */
#ifdef HASMULTIDIM
dim=getarrayseconddim(a, z.a);
a=a+((i-arraylimit)*dim+(j-arraylimit))*numsize;
#else
a=a+(i-arraylimit)*numsize;
#endif
#else
error(EVARIABLE);
return;
#endif
}
/* is the index in range */
#ifdef HASMULTIDIM
if (DEBUG) {
outsc("** in array ");
outnumber(i); outspc();
outnumber(j); outspc();
outnumber(dim); outspc();
outnumber(h); outspc();
outnumber(a); outcr();
}
if ( (j < arraylimit) || (j >= dim + arraylimit) || (i < arraylimit) || (i >= h/dim + arraylimit)) { error(EORANGE); return; }
#else
if (DEBUG) { outsc("** in array "); outnumber(i); outspc(); outnumber(a); outcr(); }
if ( (i < arraylimit) || (i >= h + arraylimit) ) { error(EORANGE); return; }
#endif
/* set or get the array */
if (m == 'g') {
if (! e) {
getnumber(a, numsize);
} else {
egetnumber(a, numsize);
}
*v=z.i;
} else if ( m == 's') {
z.i=*v;
if (! e) { setnumber(a, numsize); } else { esetnumber(a, numsize); }
}
}
/* create a string on the heap, i is the length of the string, j the dimension of the array */
address_t createstring(char c, char d, address_t i, address_t j) {
#ifdef HASAPPLE1
address_t a, zt;
if (DEBUG) { outsc("Create string "); outch(c); outch(d); outspc(); outnumber(nvars); outcr(); }
#ifndef HASSTRINGARRAYS
/* if no string arrays are in the code, we reserve the number of bytes i and space for the index */
if (bfind(STRINGVAR, c, d)) error(EVARIABLE); else a=bmalloc(STRINGVAR, c, d, i+strindexsize);
if (er != 0) return 0;
return a;
#else
/* string arrays need the number of array elements which address_ hence addresize bytes and then
the space for j strings */
if (bfind(STRINGVAR, c, d)) error(EVARIABLE); else a=bmalloc(STRINGVAR, c, d, addrsize+j*(i+strindexsize));
if (er != 0) return 0;
/* preserve z.a, this is a side effect of bmalloc and bfind */
zt=z.a;
/* set the dimension of the array */
z.a=j;
setnumber(a+j*(i+strindexsize), addrsize);
z.a=zt;
return a;
#endif
if (er != 0) return 0;
return a;
#else
return 0;
#endif
}
/* get a string at position b, the -1+stringdexsize is needed because a string index starts with 1
* in addition to the memory pointer, return the address in memory.
* We use a pointer to memory here instead of going through the mem interface with an integer variable
* This makes string code lean to compile but is awkward for systems with serial memory
*
* The code may look like doing multiple heap scans for just one string as stringdim and lenstring are
* called here which causes bfind to called multiple time. This is harmless as bfind caches the last
* heap address.
*
* Getstring returns a pointer to the first string element in question.
*
* There are two side effects of getstring
* - ax has the address in memory of the string, if the string is on heap. 0 otherwise.
* - z.a has the number of bytes in the string payload area inculding the string length counter
*/
char* getstring(char c, char d, address_t b, address_t j) {
address_t k, zt, dim, maxlen;
ax=0;
if (DEBUG) { outsc("* get string var "); outch(c); outch(d); outspc(); outnumber(b); outcr(); }
/* direct access to the input buffer - deprectated but still there */
if ( c == '@' && d == 0) {
return ibuffer+b;
}
#ifdef HASAPPLE1
/* special strings */
/* the time string */
#if defined(HASCLOCK)
if ( c == '@' && d == 'T') {
rtcmkstr();
return rtcstring+1+b;
}
#endif
/* a user definable special string in sbuffer, makeusrtring is a
user definable function */
if ( c == '@' && d == 'U' ) {
makeusrstring();
return sbuffer+b;
}
/* the arguments string on POSIX systems */
#ifndef ARDUINO
if ( c == '@' && d == 'A' ) {
if (bargc > 2) return bargv[2]; else return 0;
}
#endif
if ( c == '@') { error(EVARIABLE); return 0;}
/* dynamically allocated strings, create on the fly */
if (!(ax=bfind(STRINGVAR, c, d))) ax=createstring(c, d, STRSIZEDEF, 1);
if (DEBUG) {
outsc("** heap address "); outnumber(ax); outcr();
outsc("** byte length "); outnumber(z.a); outcr();
}
if (er != 0) return 0;
#ifndef HASSTRINGARRAYS
if ((b < 1) || (b > z.a-strindexsize )) {
error(EORANGE); return 0;
}
ax=ax+strindexsize+(b-1);
#else
/* the dimension of the string array */
zt=z.a;
getnumber(ax+z.a-addrsize, addrsize);
dim=z.a;
if ((j < arraylimit) || (j >= dim + arraylimit )) {
error(EORANGE); return 0;
}
if (DEBUG) { outsc("** string dimension "); outnumber(dim); outcr(); }
/* the max length of a string */
maxlen=(zt-addrsize)/dim-strindexsize;
if ((b < 1) || (b > maxlen )) {
error(EORANGE); return 0;
}
if (DEBUG) { outsc("** maximum string length "); outnumber(maxlen); outcr(); }
/* the base address of a string */
ax=ax+(j-arraylimit)*(maxlen + strindexsize);
if (DEBUG) { outsc("** string base address "); outnumber(ax); outcr(); }
/* get the actual length */
/* getnumber(ax, strindexsize); */
/* the address */
ax=ax+b-1+strindexsize;
/* leave the string data record length in z.a */
z.a=maxlen+strindexsize;
#endif
if (DEBUG) { outsc("** payload address address "); outnumber(ax); outcr(); }
/* return value is 0 if we have no direct memory access, the caller needs to handle the string
through the mem address, we return no pointer but provide a copy of the string in the first
string buffer*/
#ifdef USEMEMINTERFACE
for (k=0; k<z.a && k<SPIRAMSBSIZE; k++) spistrbuf1[k]=memread2(ax+k);
return 0;
#else
return (char *)&mem[ax];
#endif
#else
return 0;
#endif
}
#ifdef HASAPPLE1
/* in case of a string array, this function finds the number
of array elements */
address_t strarraydim(char c, char d) {
address_t a, b;
#ifndef HASSTRINGARRAYS
return 1;
#else
if ((a=bfind(STRINGVAR, c, d))) {
b=z.a; /* the byte length of the objects payload */
getnumber(a+b-addrsize, addrsize); /* the dimension of the array is the first number */
return z.a;
} else
return 1;
#endif
}
/* dimension of a string as in DIM a$(100), only needed on assign! */
address_t stringdim(char c, char d) {
/* input buffer, payload size is buffer -1 as the first byte is length */
if (c == '@') return BUFSIZE-1;
/* the user string */
if (c == '@' && d == 'U') return SBUFSIZE-1;
/* the clock string should never be assigned */
if (c == '@' && d == 'T') return 0;
/* length of the payload from the parameters */
#ifndef HASSTRINGARRAYS
else return blength(STRINGVAR, c, d)-strindexsize;
#else
if (bfind(STRINGVAR, c, d)) {
return (z.a-addrsize)/strarraydim(c, d)-strindexsize;
} else
return 0;
#endif
}
/* the length of a string as in LEN(A$) */
address_t lenstring(char c, char d, address_t j){
char* b;
address_t a;
/* the input buffer, length is first byte */
if (c == '@' && d == 0) return ibuffer[0];
/* the time */
#if defined(HASCLOCK)
if (c == '@' && d == 'T') {
rtcmkstr();
return rtcstring[1];
}
#endif
/* a user definable special string in sbuffer
makeusrstring has to be called here because
in the code sometimes getstring is called first
and sometimes lenstring */
if ( c == '@' && d == 'U' ) {
makeusrstring();
return sbuffer[0];
}
/* the arguments string on POSIX systems */
#ifndef ARDUINO
if ( c == '@' && d == 'A' ) {
a=0;
if (bargc > 2) while(a < SBUFSIZE && bargv[2][a] != 0) a++;
return a;
}
#endif
/* locate the string */
a=bfind(STRINGVAR, c, d);
if (er != 0) return 0;
/* string does not yet exist, return length 0 */
if (a == 0) return 0;
/* get the string length from memory */
#ifndef HASSTRINGARRAYS
getnumber(a, strindexsize);
return z.a;
#else
a=a+(stringdim(c, d)+strindexsize)*(j-arraylimit);
getnumber(a, strindexsize);
return z.a;
#endif
}
/* set the length of a string */
void setstringlength(char c, char d, address_t l, address_t j) {
address_t a, zt;
if (DEBUG) {
outsc("** setstringlength ");
outch(c); outch(d);
outspc(); outnumber(l); outspc(); outnumber(j);
outcr();
}
if (c == '@') {
*ibuffer=l;
return;
}
/* find the variable address */
a=bfind(STRINGVAR, c, d);
if (er != 0) return;
if (a == 0) {
error(EVARIABLE);
return;
}
/* multiple calls of bfind here is harmless as bfind caches */
a=a+(stringdim(c, d)+strindexsize)*(j-arraylimit);
if (DEBUG) { outsc("** setstringlength writing to "); outnumber(a); outsc(" value "); outnumber(l); outcr(); }
z.a=l;
setnumber(a, strindexsize);
}
#endif
/* the BASIC string mechanism for real time clocks, create a string with the clock data */
#ifdef HASCLOCK
char* rtcmkstr() {
int cc = 2;
int t;
char ch;
/* hours */
t=rtcget(2);
rtcstring[cc++]=t/10+'0';
rtcstring[cc++]=t%10+'0';
rtcstring[cc++]=':';
/* minutes */
t=rtcget(1);
rtcstring[cc++]=t/10+'0';
rtcstring[cc++]=t%10+'0';
rtcstring[cc++]=':';
/* seconds */
t=rtcget(0);
rtcstring[cc++]=t/10+'0';
rtcstring[cc++]=t%10+'0';
rtcstring[cc++]='-';
/* days */
t=rtcget(4);
if (t/10 > 0) rtcstring[cc++]=t/10+'0';
rtcstring[cc++]=t%10+'0';
rtcstring[cc++]='/';
/* months */
t=rtcget(5);
if (t/10 > 0) rtcstring[cc++]=t/10+'0';
rtcstring[cc++]=t%10+'0';
rtcstring[cc++]='/';
/* years */
t=rtcget(6)%100; /* only 100 years no 19xx epochs */
if (t/10 > 0) rtcstring[cc++]=t/10+'0';
rtcstring[cc++]=t%10+'0';
rtcstring[cc]=0;
/* needed for BASIC strings, reserve the first byte for two byte length handling in the upstream code */
rtcstring[1]=cc-2;
rtcstring[0]=0;
return rtcstring+1;
}
#endif
/*
* Layer 0 Extension: the user defined extension functions, use this function for a
* quick way to extend BASIC.
*
* @U is a single variable that can be set and get. Every access to this variable
* calls getusrvar() or setusrvar().
* @U() is a 1d array every access calls get or setusrarray().
* @U$ is a read only string created by makeusrstring().
* USR(32, V) is a user defined function created by usrfunction().
* CALL 32 is a user defined call
*
*/
/* read or write the variable @U, you can do anything you want here */
number_t getusrvar() { return 0; }
void setusrvar(number_t v) {return; }
/* read or write the array @U(), you can do anything you want here */
number_t getusrarray(address_t i) {return 0;}
void setusrarray(address_t i, number_t v) {return; }
/* make the usr string from @U$, this function can be called multiple times for one operation */
void makeusrstring() {
/*
* sample code could be:
*
* mem_t i;
* const char text[] = "hello world";
* for(i=0; i<SBUFSIZE-1 && text[i]!=0 ; i++) sbuffer[i+1]=text[i];
* sbuffer[0]=i;
*
* Always set sbuffer[0] to the string length, keep in mind that sbuffer
* is 32 bytes long by default
*/
sbuffer[0]=0;
}
/* USR with arguments > 31 calls this */
number_t usrfunction(address_t i, number_t v) { return 0; }
/* CALL with arguments > 31 calls this */
void usrcall(address_t i) { return; }
/*
* Layer 0 - keyword handling - PROGMEM logic goes here
* getkeyword(), getmessage(), and getokenvalue() are
* the only access to the keyword array in the code.
*
* Same for messages and errors
*/
char* getkeyword(unsigned short i) {
if (DEBUG) { outsc("** getkeyword from index "); outnumber(i); outcr(); }
#ifndef ARDUINOPROGMEM
return (char *) keyword[i];
#else
strcpy_P(sbuffer, (char*) pgm_read_ptr(&(keyword[i])));
return sbuffer;
#endif
}
char* getmessage(char i) {
if (i >= sizeof(message) || i < 0) return 0;
#ifndef ARDUINOPROGMEM
return (char *) message[i];
#else
strcpy_P(sbuffer, (char*) pgm_read_ptr(&(message[i])));
return sbuffer;
#endif
}
signed char gettokenvalue(char i) {
if (i >= sizeof(tokens)) return 0;
#ifndef ARDUINOPROGMEM
return tokens[i];
#else
return (signed char) pgm_read_byte(&tokens[i]);
#endif
}
void printmessage(char i){
#ifndef HASERRORMSG
if (i > EGENERAL) return;
#endif
outsc((char *)getmessage(i));
}
/*
* Layer 0 - error handling
*
* The general error handler. The static variable er
* contains the error state.
*
* debugtoken() writes a token for debug
* bdebug() is the general debug message function
*
* Strategy: the error() function writes the message and then
* clears the stack. All calling functions must check er and
* return after funtion calls with no further messages etc.
* reseterror() sets the error state to normal and end the
* run loop.
*/
void error(token_t e){
address_t i;
/* store the error number */
er=e;
/* clear the stacks */
clearst();
clrforstack();
clrgosubstack();
/* switch off all timers and interrupts */
#ifdef HASTIMER
resettimer(&after_timer);
resettimer(&every_timer);
#endif
/* is the error handler active? then silently go if we do GOTO or CONT actions in it */
#ifdef HASERRORHANDLING
if (st != SINT && (berrorh.type == TGOTO || berrorh.type == TCONT)) return;
#endif
/* set input and output device back to default */
iodefaults();
/* find the line number if in RUN modes */
if (st != SINT) {
outnumber(myline(here));
outch(':');
outspc();
}
/* if we have error messages, display them */
#ifdef HASERRORMSG
if (e > 0)
printmessage(e);
else {
for(i=0; gettokenvalue(i)!=0 && gettokenvalue(i)!=e; i++);
outsc(getkeyword(i));
}
outspc();
printmessage(EGENERAL);
#else
printmessage(EGENERAL);
outspc();
outnumber(er);
#endif
if (DEBUG) { outsc("** at "); outnumber(here); }
outcr();
}
void reseterror() {
er=0;
here=0;
st=SINT;
}
void debugtoken(){
outsc("* ");
if (debuglevel>2) { outnumber(here); outsc(" * "); }
if (token == EOL) {
outsc("EOL");
return;
}
switch(token) {
case LINENUMBER:
printmessage(MLINE);
break;
case NUMBER:
printmessage(MNUMBER);
break;
case VARIABLE:
printmessage(MVARIABLE);
break;
case ARRAYVAR:
printmessage(MARRAY);
break;
case STRING:
printmessage(MSTRING);
break;
case STRINGVAR:
printmessage(MSTRINGVAR);
break;
}
outspc();
outputtoken();
}
void bdebug(const char *c){
outch('*');
outspc();
outsc(c);
debugtoken();
outcr();
}
/*
* Arithmetic and runtime operations are mostly done
* on a stack of number_t.
*
* push(), pop(), clearst() handle the stack
*/
void push(number_t t){
if (DEBUG) {outsc("** push sp= "); outnumber(sp); outcr(); }
if (sp == STACKSIZE)
error(ESTACK);
else
stack[sp++]=t;
}
number_t pop(){
if (DEBUG) {outsc("** pop sp= "); outnumber(sp); outcr(); }
if (sp == 0) { error(ESTACK); return 0; }
else
return stack[--sp];
}
/* this one gets a positive integer from the stack and traps the error*/
address_t popaddress(){
number_t tmp = 0;
tmp=pop();
if (tmp < 0) { error(EORANGE); return 0;} else return (address_t) tmp;
}
void clearst(){
sp=0;
}
/*
* clear the cursor for the READ/DATA mechanism
*/
void clrdata() {
#ifdef HASDARTMOUTH
data=0;
#endif
}
/*
* Stack handling for FOR
*/
void pushforstack(){
index_t i, j;
if (DEBUG) { outsc("** forsp and here in pushforstack "); outnumber(forsp); outspc(); outnumber(here); outcr(); }
/* before pushing into the for stack we check is an
old for exists - this is on reentering a for loop
this code removes all loop inside the for loop as well
for loops are identified by the variable name, anywhere
the variable is found again, it cleans the for stack
this makes the code stable against GOTO mess,
WHILE and REPEAT are identified with the here location
reentry cleans the stack */
#ifndef HASSTRUCT
for(i=0; i<forsp; i++) {
if (forstack[i].varx == xc && forstack[i].vary == yc) {
forsp=i;
break;
}
}
#else
if (token == TWHILE || token == TREPEAT)
for(i=0; i<forsp; i++) {
if (forstack[i].here == here) {forsp=i; break;}
}
else
for(i=0; i<forsp; i++) {
if (forstack[i].varx == xc && forstack[i].vary == yc) {
forsp=i;
break;
}
}
#endif
if (forsp < FORDEPTH) {
#ifdef HASSTRUCT
forstack[forsp].type=token;
#endif
forstack[forsp].varx=xc;
forstack[forsp].vary=yc;
forstack[forsp].here=here;
forstack[forsp].to=x;
forstack[forsp].step=y;
forsp++;
return;
} else
error(ELOOP);
}
void popforstack(){
if (forsp>0) {
forsp--;
} else {
error(ELOOP);
return;
}
#ifdef HASSTRUCT
token=forstack[forsp].type;
#endif
xc=forstack[forsp].varx;
yc=forstack[forsp].vary;
here=forstack[forsp].here;
x=forstack[forsp].to;
y=forstack[forsp].step;
}
void dropforstack(){
if (forsp>0) {
forsp--;
} else {
error(ELOOP);
return;
}
}
token_t peekforstack() {
if (forsp>0) {
#ifdef HASSTRUCT
return forstack[forsp-1].type;
#else
return 0;
#endif
} else {
error(ELOOP);
return 0;
}
}
void clrforstack() {
forsp=0;
}
/* GOSUB stack handling */
void pushgosubstack(mem_t a){
if (gosubsp < GOSUBDEPTH) {
gosubstack[gosubsp]=here;
#ifdef HASEVENTS
gosubarg[gosubsp]=a;
#endif
gosubsp++;
} else
error(TGOSUB);
}
void popgosubstack(){
if (gosubsp>0) {
gosubsp--;
} else {
error(TRETURN);
return;
}
here=gosubstack[gosubsp];
}
void dropgosubstack(){
if (gosubsp>0) {
gosubsp--;
} else {
error(TGOSUB);
}
}
void clrgosubstack() {
gosubsp=0;
}
/* two helper commands for structured BASIC, without the GOSUB stack */
void pushlocation() {
if (st == SINT)
slocation=bi-ibuffer;
else
slocation=here;
}
void poplocation() {
if (st == SINT)
bi=ibuffer+slocation;
else
here=slocation;
}
/*
* Input and output functions.
*
* ioinit(): called at setup to initialize what ever io is needed
* outch(): prints one ascii character
* inch(): gets one character (and waits for it)
* checkch(): checks for one character (non blocking)
* ins(): reads an entire line (uses inch except for pioserial)
*
*/
void ioinit() {
/* a standalone system runs from keyboard and display */
#ifdef STANDALONE
idd = IKEYBOARD;
odd = ODSP;
#endif
/* run standalone on second serial, set the right parameters */
#ifdef STANDALONESECONDSERIAL
idd = ISERIAL1;
odd = OPRT;
blockmode = 0;
sendcr = 0;
#endif
/* signal handling - by default SIGINT which is ^C is always caught and
leads to program stop. Side effect: the interpreter cannot be stopped
with ^C, it has to be left with CALL 0, works on Linux, Mac and MINGW
but not on DOSBOX MSDOS as DOSBOS does not handle CTRL BREAK correctly
DOS can be interrupted with the CONIO mechanism using BREAKCHAR.
*/
signalon();
/* this is only for RASPBERRY - wiring has to be started explicitly */
wiringbegin();
/* all serial protocolls, ttl channels, SPI and Wire */
serialbegin();
#ifdef ARDUINOPRT
prtbegin();
#endif
#ifdef ARDUINOSPI
spibegin();
#endif
#ifdef HASWIRE
wirebegin();
#endif
/* filesystems and networks */
fsbegin(1);
#ifdef ARDUINOMQTT
netbegin();
mqttbegin();
#endif
/* the displays */
kbdbegin();
#if defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
dspbegin();
#endif
#if defined(ARDUINOVGA) || defined(POSIXFRAMEBUFFER)
vgabegin(); /* mind this - the fablib code and framebuffer is special here */
#endif
#ifdef ARDUINOSENSORS
sensorbegin();
#endif
#if defined(HASCLOCK)
rtcbegin();
#endif
/* the eeprom dummy */
ebegin();
/* activate the iodefaults */
iodefaults();
}
void iodefaults() {
od=odd;
id=idd;
form=0;
}
/*
* Layer 0 - The generic IO code
*
* inch() reads one character from the stream, mostly blocking
* checkch() reads one character from the stream, unblocking, a peek(),
* inmplemented inconsistently
* availch() checks availablibity in the stream
* inb() a block read function for serial interfacing, developed for
* AT message receiving
*/
/* the generic inch code reading one character from a stream */
char inch() {
switch(id) {
case ISERIAL:
return serialread();
#ifdef FILESYSTEMDRIVER
case IFILE:
return fileread();
#endif
#if (defined(HASWIRE) && defined(HASFILEIO))
case IWIRE:
ins(sbuffer, 1);
if (sbuffer[0]>0) return sbuffer[1]; else return 0;
#endif
#ifdef ARDUINORF24
/* radio is not character oriented, this is only added to make GET work
or single byte payloads, radio, like file is treated nonblocking here */
case IRADIO:
radioins(sbuffer, SBUFSIZE-1);
if (sbuffer[0]>0) return sbuffer[1]; else return 0;
#endif
#ifdef ARDUINOMQTT
case IMQTT:
return mqttinch();
#endif
#ifdef ARDUINOPRT
case ISERIAL1:
return prtread();
#endif
#if defined(HASKEYBOARD) || defined(HASKEYPAD) || defined(HASVT52)
case IKEYBOARD:
#if defined(HASVT52)
if (vt52avail()) return vt52read(); /* if the display has a message, read it */
#endif
#if defined(HASKEYBOARD) || defined(HASKEYPAD)
return kbdread();
#endif
#endif
}
return 0;
}
/* checking on a character in the stream */
char checkch(){
switch (id) {
case ISERIAL:
return serialcheckch();
#ifdef FILESYSTEMDRIVER
case IFILE:
return fileavailable();
#endif
#ifdef ARDUINORF24
case IRADIO:
return radio.available();
#endif
#ifdef ARDUINOMQTT
case IMQTT:
if (mqtt_messagelength>0) return mqtt_buffer[0]; else return 0;
#endif
#if (defined(HASWIRE) && defined(HASFILEIO))
case IWIRE:
return 0;
#endif
#ifdef ARDUINOPRT
case ISERIAL1:
return prtcheckch();
#endif
case IKEYBOARD:
#if defined(HASKEYBOARD) || defined(HASKEYPAD)
return kbdcheckch(); /* here no display read as this is only for break and scroll control */
#endif
break;
}
return 0;
}
/* character availability */
short availch(){
switch (id) {
case ISERIAL:
return serialavailable();
#ifdef FILESYSTEMDRIVER
case IFILE:
return fileavailable();
#endif
#ifdef ARDUINORF24
case IRADIO:
return radioavailable();
#endif
#ifdef ARDUINOMQTT
case IMQTT:
return mqtt_messagelength;
#endif
#if (defined(HASWIRE) && defined(HASFILEIO))
case IWIRE:
return wireavailable();
#endif
#ifdef ARDUINOPRT
case ISERIAL1:
return prtavailable();
#endif
case IKEYBOARD:
#if defined(HASKEYBOARD) || defined(HASKEYPAD) || defined(HASVT52)
#if defined(HASVT52)
if (vt52avail()) return vt52avail(); /* if the display has a message, read it */
#endif
#if defined(HASKEYBOARD) || defined(HASKEYPAD)
return kbdavailable();
#endif
#endif
break;
}
return 0;
}
#ifdef ARDUINOPRT
/*
* the block mode reader for esp and sensor modules
* on a serial interface, it tries to read as many
* characters as possible into a buffer
* blockmode = 1 reads once availch() bytes
* blockmode > 1 implements a timeout mechanism and tries
* to read until blockmode milliseconds have expired
* this is needed for esps and other sensors without
* flow control and volatile timing to receive more
* then 64 bytes
*/
void inb(char *b, index_t nb) {
long m;
index_t i = 0;
if (blockmode == 1 ) {
i=availch();
if (i>nb-1) i=nb-1;
b[0]=(unsigned char)i;
z.a=i;
b[i+1]=0;
b++;
while (i--) {*b++=inch();}
} else if (blockmode > 1) {
m=millis();
while (i < nb-1) {
if (availch()) b[++i]=inch();
if (millis() > m+blockmode) break;
}
b[0]=(unsigned char)i;
z.a=i;
b[i+1]=0;
} else {
b[0]=0;
z.a=0;
b[1]=0;
}
}
#endif
/*
* ins() is the generic reader into a string, by default
* it works in line mode and ends reading after newline
*
* the first element of the buffer is the lower byte of the length
*
* this is corrected later in xinput, z.a has to be set as
* a side effect
*
* for streams providing entire strings as an input the
* respective string method is called
*
* all other streams are read using consins() for character by character
* input until a terminal character is reached
*/
void ins(char *b, address_t nb) {
switch(id) {
#if (defined(HASWIRE) && defined(HASFILEIO))
case IWIRE:
wireins(b, nb);
break;
#endif
#ifdef ARDUINOMQTT
case IMQTT:
mqttins(b, nb);
break;
#endif
#ifdef ARDUINORF24
case IRADIO:
radioins(b, nb);
break;
#endif
default:
#ifdef ARDUINOPRT
/* blockmode only implemented for ISERIAL1 right now */
if (blockmode > 0 && id == ISERIAL1 ) inb(b, nb); else
#endif
consins(b, nb);
}
}
/*
* outch() outputs one character to a stream
* block oriented i/o like in radio not implemented here
*/
void outch(char c) {
/* do we have a MS style tab command, then count characters on stream 1-4 but not in fileio */
/* this does not work for control characters - needs to go to vt52 later */
#ifdef HASMSTAB
if (od > 0 && od <= OPRT) {
if (c > 31) charcount[od-1]+=1;
if (c == 10) charcount[od-1]=0;
}
#endif
switch(od) {
case OSERIAL:
serialwrite(c);
break;
#ifdef FILESYSTEMDRIVER
case OFILE:
filewrite(c);
break;
#endif
#ifdef ARDUINOPRT
case OPRT:
prtwrite(c);
break;
#endif
#ifdef ARDUINOVGA
case ODSP:
vgawrite(c);
break;
#else
#if defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
case ODSP:
dspwrite(c);
break;
#endif
#endif
#ifdef ARDUINOMQTT
case OMQTT:
mqttouts(&c, 1); /* buffering for the PRINT command */
break;
#endif
default:
break;
}
byield(); /* yield after every character for ESP8266 */
}
/* send a newline */
void outcr() {
#ifdef ARDUINOPRT
if (sendcr) outch('\r');
#endif
outch('\n');
}
/* send a space */
void outspc() {
outch(' ');
}
/*
* outs() outputs a string of length x at index ir - basic style
* default is a character by character operation, block
* oriented write needs special functions
*/
void outs(char *ir, address_t l){
address_t i;
switch (od) {
#ifdef ARDUINORF24
case ORADIO:
radioouts(ir, l);
break;
#endif
#if (defined(HASWIRE) && defined(HASFILEIO))
case OWIRE:
wireouts(ir, l);
break;
#endif
#ifdef ARDUINOMQTT
case OMQTT:
mqttouts(ir, l);
break;
#endif
#ifdef GRAPHDISPLAYDRIVER
case ODSP:
dspouts(ir, l);
break;
#endif
default:
for(i=0; i<l; i++) outch(ir[i]);
}
byield(); /* triggers yield after each character output */
}
/* output a zero terminated string at ir - c style */
void outsc(const char *c){
while (*c != 0) outch(*c++);
}
/* output a zero terminated string in a formated box padding spaces
needed for catalog output */
void outscf(const char *c, index_t f){
index_t i = 0;
while (*c != 0) { outch(*c++); i++; }
if (f > i) {
f=f-i;
while (f--) outspc();
}
}
/*
* reading a positive number from a char buffer
* maximum number of digits is adjusted to 16
* ugly here, testcode when introducting
* number_t was only 16 bit before
*/
address_t parsenumber(char *c, number_t *r) {
address_t nd = 0;
*r=0;
while (*c >= '0' && *c <= '9' && *c != 0) {
*r=*r*10+*c++-'0';
nd++;
if (nd == SBUFSIZE) break;
}
return nd;
}
#ifdef HASFLOAT
/* a poor man's atof implementation with character count */
address_t parsenumber2(char *c, number_t *r) {
address_t nd = 0;
index_t i;
number_t fraction = 0;
number_t exponent = 0;
mem_t nexp = 0;
*r=0;
/* integer part */
i=parsenumber(c, r);
c+=i;
nd+=i;
/* the fractional part */
if (*c == '.') {
c++;
nd++;
i=parsenumber(c, &fraction);
c+=i;
nd+=i;
if (i > 0) {
while ((--i)>=0) fraction=fraction/10;
*r+=fraction;
}
}
/* the exponent */
if (*c == 'E' || *c == 'e') {
c++;
nd++;
if (*c == '-') {c++; nd++; nexp=1;};
i=parsenumber(c, &exponent);
nd+=i;
while ((--exponent)>=0) if (nexp) *r=*r/10; else *r=*r*10;
}
return nd;
}
#endif
/*
* convert a number to a string
* the argument type controls the largerst displayable integer
* default is int but it can be increased without any side effects
*/
address_t writenumber(char *c, wnumber_t v){
address_t nd = 0;
index_t i,j;
mem_t s = 1;
char c1;
/* the sign */
if (v<0) s=-1;
/* the digits */
do {
c[nd++]=(v%10)*s+'0';
v=v/10;
} while (v != 0);
/* print the minus */
if (s < 0 ) c[nd]='-'; else nd--;
/* reverse the order of digits */
i=0;
j=nd;
while (j>i) {
c1=c[i];
c[i]=c[j];
c[j]=c1;
i++;
j--;
}
nd++;
c[nd]=0;
return nd;
}
#ifdef HASFLOAT
/*
* this is for floats, handling output without library
* functions as well.
*/
address_t tinydtostrf(number_t v, index_t p, char* c) {
index_t i;
address_t nd = 0;
number_t f;
/* we do the sign here and don't rely on writenumbers sign handling, guess why */
if (v<0) {
v=fabs(v);
c[nd++]='-';
}
/* write the integer part */
nd+=writenumber(c+nd, (int)v);
c[nd++]='.';
/* only the fraction to precision p */
f=fabs(v);
/* get p digits of the fraction */
for (i=p; i>0; i--) {
f=f-floor(f);
f=f*10;
c[nd++]=(int)floor(f)+'0';
}
/* and a terminating 0 */
c[nd]=0;
return nd;
}
address_t writenumber2(char *c, number_t vi) {
index_t i;
index_t nd;
number_t f;
index_t exponent = 0;
mem_t eflag=0;
const int p = 5;
/* pseudo integers are displayed as integer
zero trapped here */
f=floor(vi);
if (f == vi && fabs(vi) < maxnum) return writenumber(c, vi);
/* floats are displayed using the libraries */
#ifndef ARDUINO
return sprintf(c, "%g", vi);
#else
/* on an Arduino we have gcc, we check if we have anything to write */
if (!isfinite(vi)) {
c[0]='*';
c[1]=0;
return 1;
}
/* normalize the number and see which exponent we have to deal with */
f=vi;
while (fabs(f)<1.0) { f=f*10; exponent--; }
while (fabs(f)>=10.0-0.00001) { f=f/10; exponent++; }
/* there are platforms where dtostrf is broken, we do things by hand in a simple way */
if (exponent > -2 && exponent < 7) {
tinydtostrf(vi, 5, c);
} else {
tinydtostrf(f, 5, c);
eflag=1;
}
/* remove trailing zeros */
for (i=0; (i < SBUFSIZE && c[i] !=0 ); i++);
i--;
while (c[i] == '0' && i>1) {i--;}
i++;
/* add the exponent */
if (eflag && exponent != 0) {
c[i++]='E';
i+=writenumber(c+i, exponent);
}
c[i]=0;
return i;
#endif
}
#endif
/*
* innumber() uses sbuffer as a char buffer to get a number input
*/
char innumber(number_t *r) {
index_t i = 1;
index_t s = 1;
again:
*r=0;
sbuffer[1]=0;
ins(sbuffer, SBUFSIZE);
while (i < SBUFSIZE) {
if (sbuffer[i] == ' ' || sbuffer[i] == '\t') i++;
if (sbuffer[i] == BREAKCHAR) return BREAKCHAR;
if (sbuffer[i] == 0) { ert=1; return 1; }
if (sbuffer[i] == '-') {
s=-1;
i++;
}
#ifndef HASFLOAT
if (sbuffer[i] >= '0' && sbuffer[i] <= '9') {
(void) parsenumber(&sbuffer[i], r);
#else
if ((sbuffer[i] >= '0' && sbuffer[i] <= '9') || sbuffer[i] == '.') {
(void) parsenumber2(&sbuffer[i], r);
#endif
*r*=s;
return 0;
} else {
if (id == ISERIAL || id == IKEYBOARD) {
printmessage(ENUMBER);
outspc();
printmessage(EGENERAL);
outcr();
*r=0;
s=1;
i=1;
goto again;
} else {
ert=1;
return 1;
}
}
}
return 0;
}
/* prints a number */
void outnumber(number_t n){
address_t nd, i;
#ifndef HASFLOAT
nd=writenumber(sbuffer, n);
#else
nd=writenumber2(sbuffer, n);
#endif
/* negative number format aligns right */
if (form < 0) { i=nd; while(i < -form) {outspc(); i++;} }
/* the number */
outs(sbuffer, nd);
/* number formats in Palo Alto style, positive nimbers align left */
if (form > 0) { while (nd < form) {outspc(); nd++;} }
}
/*
* Layer 1 functions - providing data into the global variable and
* changing the interpreter state
*/
/*
* Lexical analyser - tokenizes the input line.
*
* nexttoken() increments the input buffer index bi and delivers values in the global
* variable token, with arguments in the accumulator x and the index register ir
* xc is used in the routine.
*
* xc, ir and x change values in nexttoken and deliver the result to the calling
* function.
*
* bi and ibuffer should not be changed or used for any other function in
* interactive node as they contain the state of nexttoken(). In run mode
* bi and ibuffer are not used as the program is fully tokenized in mem.
*/
/* skip whitespaces */
void whitespaces(){
while (*bi == ' ' || *bi == '\t') bi++;
}
/* the token stream */
void nexttoken() {
/* RUN mode vs. INT mode, in RUN mode we read from mem via gettoken() */
if (st == SRUN || st == SERUN) {
/* in the token stream we call the fastticker - all fast timing functions are in stream*/
fastticker();
/* read the token from memory */
gettoken();
/* show what we are doing */
if (debuglevel>1) { debugtoken(); outcr(); }
return;
}
/* after change in buffer logic the first byte is reserved for the length */
if (bi == ibuffer) bi++;
/* literal mode - experimental - only(!) EOL ends literal mode*/
if (lexliteral) {
token=*bi;
if (*bi != '\0') bi++; else lexliteral=0;
return;
}
/* remove whitespaces outside strings */
whitespaces();
/* end of line token */
if (*bi == '\0') {
token=EOL;
if (DEBUG) debugtoken();
return;
}
/* unsigned numbers, value returned in x */
#ifndef HASFLOAT
if (*bi <='9' && *bi >= '0') {
bi+=parsenumber(bi, &x);
#else
if ((*bi <='9' && *bi >= '0') || *bi == '.') {
bi+=parsenumber2(bi, &x);
#endif
token=NUMBER;
if (DEBUG) debugtoken();
return;
}
/* strings between " " or " EOL, value returned in ir */
if (*bi == '"') {
x=0;
bi++;
ir=bi;
while(*bi != '"' && *bi !='\0') {
x++;
bi++;
}
bi++;
token=STRING;
if (DEBUG) debugtoken();
return;
}
/* single character operators are their own tokens */
if (*bi == '+' || *bi == '-' || *bi == '*' || *bi == '/' || *bi == '%' ||
*bi == '\\' || *bi == ':' || *bi == ',' || *bi == '(' || *bi == ')' ) {
token=*bi;
bi++;
if (DEBUG) debugtoken();
return;
}
/*
* relations
* single character relations are their own token
* >=, =<, =<, =>, <> are tokenized
*/
if (*bi == '=') {
bi++;
whitespaces();
if (*bi == '>') {
token=GREATEREQUAL;
bi++;
} else if (*bi == '<') {
token=LESSEREQUAL;
bi++;
} else {
token='=';
}
if (DEBUG) debugtoken();
return;
}
if (*bi == '>'){
bi++;
whitespaces();
if (*bi == '=') {
token=GREATEREQUAL;
bi++;
} else {
token='>';
}
if (DEBUG) debugtoken();
return;
}
if (*bi == '<'){
bi++;
whitespaces();
if (*bi == '=') {
token=LESSEREQUAL;
bi++;
} else if (*bi == '>') {
token=NOTEQUAL;
bi++;
} else {
token='<';
}
if (DEBUG) debugtoken();
return;
}
/*
* keyworks and variables
*
* isolate a word, bi points to the beginning, x is the length of the word
* ir points to the end of the word after isolating.
* @ is a letter here to make the special @ arrays possible
*/
x=0;
ir=bi;
while (-1) {
/* toupper code */
if (*ir >= 'a' && *ir <= 'z') {
*ir-=32;
ir++;
x++;
} else if (*ir >= '@' && *ir <= 'Z') {
ir++;
x++;
} else {
break;
}
}
/*
* ir is reused here to implement string compares
* scanning the keyword array.
* Once a keyword is detected the input buffer is advanced
* by its length, and the token value is returned.
*
* keywords are an array of null terminated strings.
*/
yc=0;
while (gettokenvalue(yc) != 0) {
ir=getkeyword(yc);
xc=0;
while (*(ir+xc) != 0) {
if (*(ir+xc) != *(bi+xc)) {
yc++;
xc=0;
break;
} else
xc++;
}
if (xc == 0) continue;
bi+=xc;
token=gettokenvalue(yc);
if (token == TREM) lexliteral=1;
if (DEBUG) debugtoken();
return;
}
/*
* a variable has length 2 with either two letters or a letter
* and a number. @ can be the first letter of a variable.
* here, no tokens can appear any more as they have been processed
* further up.
*/
if ( x == 1 || x == 2 ) {
token=VARIABLE;
xc=*bi;
yc=0;
bi++;
if ((*bi >= '0' && *bi <= '9') || (*bi >= 'A' && *bi <= 'Z')) {
yc=*bi;
bi++;
}
if (*bi == '$') {
token=STRINGVAR;
bi++;
}
whitespaces();
if (token == VARIABLE && *bi == '(' ) {
token=ARRAYVAR;
}
if (DEBUG) debugtoken();
return;
}
/* other single characters are parsed and stored */
token=*bi;
bi++;
if (DEBUG) debugtoken();
return;
}
/*
* Layer 1 - program editor
*
* Editing the program, the structure of a line is
* LINENUMBER linenumber(2 or more bytes) token(n bytes)
*
* store* stores something to memory
* get* retrieves information
*
* No matter how long number_t is in the C implementation
* we pack into bytes, this is clumsy but portable
* the store and get commands all operate on here
* and advance it
*
* storetoken() operates on the variable top.
* We always append at the end and then sort.
*
* gettoken() operate on the variable here
* which will also be the key variable in run mode.
*
* tokens are stored including their payload.
*
* This group of functions changes global states and
* cannot be called at program runtime with saving
* the relevant global variable to the stack.
*/
/*
* check if we still have memory left, on RAM only systems we make
* sure that we don't hit himem. On systems with EEPROM program storage we make
* sure that we stay within the EEPROM range.
*/
char nomemory(number_t b){
#ifndef EEPROMMEMINTERFACE
if (top >= himem-b) return 1; else return 0;
#else
if (top >= elength()-eheadersize-b) return 1; else return 0;
#endif
}
/* store a token - check free memory before changing anything */
void storetoken() {
index_t i=x;
switch (token) {
case LINENUMBER:
if (nomemory(addrsize+1)) break;
memwrite2(top++, token);
z.a=ax;
setnumber(top, addrsize);
top+=addrsize;
return;
case NUMBER:
if (nomemory(numsize+1)) break;
memwrite2(top++, token);
z.i=x;
setnumber(top, numsize);
top+=numsize;
return;
case ARRAYVAR:
case VARIABLE:
case STRINGVAR:
if (nomemory(3)) break;
memwrite2(top++, token);
memwrite2(top++, xc);
memwrite2(top++, yc);
return;
case STRING:
if (nomemory(x+2)) break;
memwrite2(top++, token);
memwrite2(top++, i);
while (i > 0) {
memwrite2(top++, *ir++);
i--;
}
return;
default:
if (token >= -127) { /* the good old code with just one byte token */
if (nomemory(1)) break;
memwrite2(top++, token);
} else {
#ifdef HASLONGTOKENS
if (nomemory(2)) break; /* this is the two byte token extension */
memwrite2(top++, TEXT1);
memwrite2(top++, token+255);
#endif
}
return;
}
error(EOUTOFMEMORY);
}
/*
* wrappers around mem access in genereal
*
* memread is used only in the token stream, it reads from a stream
* read only. If run is done from eeprom then bytes are taken from this
* stream, this would also be the place to implement direct run from
* another device like a file system or embedded programs on flash.
* Only the token stream uses memread.
*
* memread2 and memwrite2 always go to ram. They are read/write. Variables and
* the program editor uses these functions.
*
* currently only the SPIRAM and the EEPROM direct edit interface is implemented.
* This is handled in hardware-arduino.h.
*
* USEMEMINTERFACE is the macro to control this.
*
* The POSIX code has a test interface for SPIRAM as a dummy.
*
*/
#ifndef USEMEMINTERFACE
mem_t memread(address_t a) {
if (st != SERUN) {
return mem[a];
} else {
return eread(a+eheadersize);
}
}
mem_t memread2(address_t a) { return mem[a]; }
void memwrite2(address_t a, mem_t c) { mem[a]=c; }
#else
#if defined(SPIRAMINTERFACE) || defined(SPIRAMSIMULATOR)
mem_t memread(address_t a) {
if (st != SERUN) {
return spiram_robufferread(a);
} else {
return eread(a+eheadersize);
}
}
mem_t memread2(address_t a) { return spiram_rwbufferread(a); }
void memwrite2(address_t a, mem_t c) { spiram_rwbufferwrite(a, c); }
#else
#ifdef EEPROMMEMINTERFACE
mem_t memread(address_t a) {
if (a < elength()-eheadersize) return eread(a+eheadersize); else return mem[a-(elength()-eheadersize)];
}
mem_t memread2(address_t a) { return memread(a); }
void memwrite2(address_t a, mem_t c) {
if (a < elength()-eheadersize) eupdate(a+eheadersize, c); else mem[a-(elength()-eheadersize)]=c;
}
#endif
#endif
#endif
/* get a token from memory */
void gettoken() {
int i;
/* if we have reached the end of the program, EOL is always returned
we don't rely on mem having a trailing EOL */
if (here >= top) {
token=EOL;
return;
}
/* if we have no data type we are done reading just one byte */
token=memread(here++);
/* if there are multibyte tokens, get the next byte and construct a token value <-127 */
#ifdef HASLONGTOKENS
if (token == TEXT1) {
token=memread(here++)-255;
}
#endif
/* otherwise we check for the argument */
switch (token) {
case LINENUMBER:
#ifdef USEMEMINTERFACE
if (st != SERUN) pgetnumber(here, addrsize); else egetnumber(here+eheadersize, addrsize);
#else
if (st != SERUN) getnumber(here, addrsize); else egetnumber(here+eheadersize, addrsize);
#endif
// x=z.a;
ax=z.a;
here+=addrsize;
break;
case NUMBER:
#ifdef USEMEMINTERFACE
if (st !=SERUN) pgetnumber(here, numsize); else egetnumber(here+eheadersize, numsize);
#else
if (st !=SERUN) getnumber(here, numsize); else egetnumber(here+eheadersize, numsize);
#endif
x=z.i;
here+=numsize;
break;
case ARRAYVAR:
case VARIABLE:
case STRINGVAR:
xc=memread(here++);
yc=memread(here++);
break;
case STRING:
x=(unsigned char)memread(here++);
/* if we run interactive or from mem, pass back the mem location
* of the string constant
* if we run from EEPROM or SPI ram and cannot simply pass a pointer
* we (ab)use the input buffer which is not needed here, this limits
* the string constant length to the length of the input buffer
*/
#if defined(USEMEMINTERFACE)
for(i=0; i<x; i++) spistrbuf1[i]=memread(here+i);
ir=spistrbuf1;
#else
if (st == SERUN) {
for(i=0; i<x; i++) ibuffer[i]=memread(here+i);
ir=ibuffer;
} else {
ir=(char*)&mem[here];
}
#endif
here+=x;
}
}
/* goto the first line of a program */
void firstline() {
if (top == 0) {
ax=0;
return;
}
here=0;
gettoken();
}
/* goto the next line, search forward */
void nextline() {
while (here < top) {
gettoken();
if (token == LINENUMBER) return;
if (here >= top) {
here=top;
ax=0;
return;
}
}
}
/*
* the line cache mechanism, useful for large codes.
* addlinecache does not test if the line already exist because it
* assumes that findline calls it only if a new line is to be stored
* the LINECACHE size depends on the architecture.
*/
#if defined(LINECACHESIZE) && LINECACHESIZE>0
const unsigned char linecachedepth = LINECACHESIZE;
typedef struct {address_t l; address_t h;} linecacheentry;
linecacheentry linecache[LINECACHESIZE];
unsigned char linecachehere = 0;
void clrlinecache() {
unsigned char i;
for(i=0; i<linecachedepth; i++) linecache[i].l=linecache[i].h=0;
linecachehere=0;
}
void addlinecache(address_t l, address_t h) {
linecache[linecachehere].l=l;
linecache[linecachehere].h=h;
linecachehere=(linecachehere+1)%linecachedepth;
}
address_t findinlinecache(address_t l){
unsigned char i;
for(i=0; i<linecachedepth && linecache[i].l != 0; i++) {
if (linecache[i].l == l) return linecache[i].h;
}
return 0;
}
#else
void clrlinecache() {}
void addlinecache(address_t l, address_t h) {}
address_t findinlinecache(address_t l){ return 0; }
#endif
/* find a line, look in cache then search from the beginning
* x is used as the valid line number once a line is found
* hence x must be global
* (this is the logic of the gettoken mechanism)
*/
void findline(address_t l) {
address_t a;
/* we know it already, here to advance */
if ((a=findinlinecache(l))) {
here=a;
token=LINENUMBER;
ax=l;
return;
}
/* we need to search */
here=0;
while (here < top) {
gettoken();
if (token == LINENUMBER && ax == l ) {
/* now that we know we cache */
addlinecache(l, here);
return;
}
}
error(ELINE);
}
/* finds the line of a location */
address_t myline(address_t h) {
address_t l=0;
address_t l1=0;
address_t here2;
here2=here;
here=0;
gettoken();
while (here < top) {
if (token == LINENUMBER) {
l1=l;
l=ax;
}
if (here >= h) break;
gettoken();
}
here=here2;
if (token == LINENUMBER)
return l1;
else
return l;
}
/*
* Move a block of storage beginng at b ending at e
* to destination d. No error handling here!!
*/
void moveblock(address_t b, address_t l, address_t d) {
address_t i;
if (d+l > himem) {
error(EOUTOFMEMORY);
return;
}
if (l<1) return;
if (b < d)
for (i=l; i>0; i--)
memwrite2(d+i-1, memread2(b+i-1));
else
for (i=0; i<l; i++)
memwrite2(d+i, memread2(b+i));
}
/* zero a block of memory */
void zeroblock(address_t b, address_t l){
address_t i;
if (b+l > himem) {
error(EOUTOFMEMORY);
return;
}
if (l<1) return;
for (i=0; i<l+1; i++) memwrite2(b+i, 0);
}
/*
* Line editor:
*
* stage 1: no matter what the line number is - store at the top
* remember the location in here.
* stage 2: see if it is only an empty line - try to delete this line
* stage 3: calculate lengthes and free memory and make room at the
* appropriate place
* stage 4: copy to the right place
*
* Very fragile code, con't change if you don't have to
*
* zeroblock statements commented out after EOL code was fixed
*/
#ifdef DEBUG
/* diagnosis function */
void diag(){
outsc("top, here, y and x\n");
outnumber(top); outspc();
outnumber(here); outspc();
outnumber(y); outspc();
outnumber(x); outspc();
outcr();
}
#endif
void storeline() {
const index_t lnlength=addrsize+1;
index_t linelength;
number_t newline;
address_t here2, here3;
address_t t1, t2;
address_t y;
/* zero is an illegal line number */
if (ax == 0) { error(ELINE); return; }
/* the data pointers becomes invalid once the code has been changed */
clrdata();
/* line cache is invalid on line storage */
clrlinecache();
/*
* stage 1: append the line at the end of the memory,
* remember the line number on the stack and the old top in here
*/
t1=ax;
here=top;
newline=here;
token=LINENUMBER;
do {
storetoken();
if (er != 0 ) {
top=newline;
here=0;
return;
}
nexttoken();
} while (token != EOL);
ax=t1; /* recall the line number */
linelength=top-here; /* calculate the number of stored bytes */
/*
* stage 2: check if only a linenumber stored - then delete this line
*/
if (linelength == (lnlength)) {
top-=(lnlength);
findline(ax);
if (er != 0) return;
y=here-lnlength;
nextline();
here-=lnlength;
if (ax != 0) {
moveblock(here, top-here, y);
top=top-(here-y);
} else {
top=y;
}
return;
}
/*
* stage 3, a nontrivial line with linenumber x is to be stored
* try to find it first by walking through all lines
*/
else {
y=ax;
here2=here;
here=lnlength;
nextline();
/* there is no nextline after the first line, we are done */
if (ax == 0) return;
/* go back to the beginning */
here=0;
here2=0;
while (here < top) {
here3=here2;
here2=here;
nextline();
if (ax > y) break;
}
/*
* at this point y contains the number of the line to be inserted
* x contains the number of the first line with a higher line number
* or 0 if the line is to be inserted at the end
* here points to the following line and here2 points to the previous line
*/
if (ax == 0) {
here=here3-lnlength;
gettoken();
if (token == LINENUMBER && ax == y) { // we have a double line at the end
here2-=lnlength;
here-=lnlength;
moveblock(here2, linelength, here);
top=here+linelength;
}
return;
}
here-=lnlength;
t1=here;
here=here2-lnlength;
t2=here;
gettoken();
if (ax == y) { /* the line already exists and has to be replaced */
here2=t2; /* this is the line we are dealing with */
here=t1; /* this is the next line */
y=here-here2; /* the length of the line as it is */
if (linelength == y) { /* no change in line length */
moveblock(top-linelength, linelength, here2);
top=top-linelength;
} else if (linelength > y) { /* the new line is longer than the old one */
moveblock(here, top-here, here+linelength-y);
here=here+linelength-y;
top=top+linelength-y;
moveblock(top-linelength, linelength, here2);
top=top-linelength;
} else { /* the new line is short than the old one */
moveblock(top-linelength, linelength, here2);
top=top-linelength;
moveblock(here, top-here, here2+linelength);
top=top-y+linelength;
}
} else { /* the line has to be inserted in between */
here=t1;
moveblock(here, top-here, here+linelength);
moveblock(top, linelength, here);
}
}
}
/*
* Layer 1 - the code in this section calculates an expression
* with a recursive descent algorithm
*
* all function use the stack to pass values back. We use the
* Backus-Naur form of basic from here https://rosettacode.org/wiki/BNF_Grammar
* implementing a C style logical expression model
*/
/* the terminal symbol it ends a statement list - ELSE is one too as it ends a statement list */
char termsymbol() {
return (token == LINENUMBER || token == ':' || token == EOL || token == TELSE);
}
/* a little helpers - one token expect */
char expect(token_t t, mem_t e) {
nexttoken();
if (token != t) {error(e); return 0; } else return 1;
}
/* a little helpers - expression expect */
char expectexpr() {
nexttoken();
expression();
if (er != 0) return 0; else return 1;
}
/* parses a list of expression, this may be recursive! */
void parsearguments() {
short argsl;
/* begin counting */
argsl=0;
/* having 0 args at the end of a command is legal */
if (!termsymbol()) {
/* list of expressions separated by commas */
do {
expression();
if (er != 0) break;
argsl++;
if (token != ',') break;
nexttoken();
} while (1);
}
/* because of the recursion ... */
args=argsl;
}
/* expect exactly n arguments */
void parsenarguments(char n) {
parsearguments();
if (args != n) error(EARGS);
}
/* counts and parses the number of arguments given in brakets */
void parsesubscripts() {
args=0;
if (token != '(') return; /* zero arguments is legal here */
nexttoken();
#ifdef HASMULTIDIM
if (token == ')') {
args=-1;
return; /* () is interpreted as no argument at all -> needed for string arrays */
}
#endif
parsearguments();
if (er != 0) return;
if (token != ')') {error(EARGS); return; } /* we return with ) as a last token on success */
}
/* parse a function argument ae is the number of
expected expressions in the argument list */
void parsefunction(void (*f)(), short ae){
nexttoken();
parsesubscripts();
if (er != 0) return;
if (args == ae) f(); else error(EARGS);
}
/* helper function in the recursive decent parser */
void parseoperator(void (*f)()) {
mem_t u=1;
nexttoken();
if (token == '-') {
u=-1;
nexttoken();
}
f();
if (er !=0 ) return;
y=pop();
if (u == -1) y=-y;
x=pop();
}
#ifdef HASAPPLE1
/* substring evaluation, mind the rewinding here - a bit of a hack
* this is one of the few places in the code where the token stream
* cannot be interpreted forward i.e. without looking back. Reason is
* an inconsistency the the way expression() is implemented
*/
void parsesubstring() {
char xc1, yc1;
address_t h1; /* remember the here */
char* bi1; /* or the postion in the input buffer */
mem_t a1; /* some info on args remembered as well for multidim */
address_t j; /* the index of a string array */
/* remember the string name */
xc1=xc;
yc1=yc;
/* Remember the token before the first parsesubscript */
if (st == SINT) bi1=bi; else h1=here;
nexttoken();
parsesubscripts();
if (er != 0) return;
#ifndef HASSTRINGARRAYS
/* the stack has - the first index, the second index */
switch(args) {
case 2:
break;
case 1:
push(lenstring(xc1, yc1, arraylimit));
break;
case 0:
/* rewind the token if there were no braces to be in sync */
if (st == SINT) bi=bi1; else here=h1;
/* no rewind in the () construct */
case -1:
args=0;
push(1);
push(lenstring(xc1, yc1, arraylimit));
break;
}
#else
/* for a string array the situation is more complicated as we
need to parse the argument completely including the possible subscript */
/* how many args has the first parsesubsscript scanned, if none, we are done
rewind and set the parametes*/
/* the stack has - the first string index, the second string index, the array index */
if ( args == 0 ) {
if (st == SINT) bi=bi1; else here=h1;
j=arraylimit;
push(1);
push(lenstring(xc1, yc1, j));
push(j);
/* if more then zero or an empty (), we need a second parsesubscript */
} else {
if (st == SINT) bi1=bi;
else h1=here;
a1=args;
nexttoken();
parsesubscripts();
switch (args) {
case 1:
j=popaddress();
if (er != 0) return;
break;
case 0:
j=arraylimit;
if (st == SINT) bi=bi1; else here=h1;
break;
default:
error(EARGS);
return;
}
/* which part of the string */
switch(a1) {
case 2:
break;
case 1:
push(lenstring(xc1, yc1, j));
break;
case 0:
case -1:
push(1);
push(lenstring(xc1, yc1, j));
break;
}
/* and which index element */
push(j);
}
#endif
}
#endif
/*
* ABS absolute value
*/
void xabs(){
number_t x;
if ((x=pop())<0) { x=-x; }
push(x);
}
/*
* SGN evaluates the sign
*/
void xsgn(){
number_t x;
x=pop();
if (x>0) x=1;
if (x<0) x=-1;
push(x);
}
/*
* PEEK on an arduino, negative values of peek address
* the EEPROM range -1 .. -1024 on an UNO
*/
void xpeek(){
address_t amax;
index_t a;
a=pop();
/* 16 bit numbers can't peek big addresses */
if ((long) memsize > (long) maxnum) amax=(address_t) maxnum; else amax=memsize;
if (a >= 0 && a<amax)
push(memread2(a));
else if (a < 0 && -a <= elength())
push(eread(-a-1));
else {
error(EORANGE);
return;
}
}
/*
* MAP Arduino map function
*/
void xmap() {
long v, in_min, in_max, out_min, out_max;
out_max=pop();
out_min=pop();
in_max=pop();
in_min=pop();
v=pop();
push((v - in_min) * (out_max - out_min) / (in_max - in_min) + out_min);
}
/*
* RND very basic random number generator with constant seed in 16 bit
* for float systems, use glibc parameters https://en.wikipedia.org/wiki/Linear_congruential_generator
*/
void rnd() {
number_t r;
r=pop();
#ifndef HASFLOAT
/* the original 16 bit congruence */
rd = (31421*rd + 6927) % 0x10000;
if (r>=0)
push((long)rd*r/0x10000);
else
push((long)rd*r/0x10000+1);
#else
/* glibc parameters */
rd= (110351245*rd + 12345) % (1 << 31);
if (r>=0)
push(rd*r/(unsigned long)(1 << 31));
else
push(rd*r/(unsigned long)(1 << 31)+1);
#endif
}
#ifndef HASFLOAT
/*
* SQR - a very simple approximate square root formula
* for integers, for floats we use the library
*/
void sqr(){
number_t t,r;
number_t l=0;
r=pop();
t=r;
while (t > 0) {
t>>=1;
l++;
}
l=l/2;
t=1;
t<<=l;
do {
l=t;
t=(t+r/t)/2;
} while (abs(t-l)>1);
push(t);
}
#else
void sqr(){
push(sqrt(pop()));
}
#endif
/*
* POW(X, N) evaluates powers
*/
/* this function is called by POW(a, c) in BASIC */
void xpow(){
number_t n;
number_t a;
n=pop();
a=pop();
push(bpow(a, n));
}
/* while this is needed by ^*/
number_t bpow(number_t x, number_t y) {
#ifdef HASFLOAT
return pow(x, y);
#else
number_t r;
address_t i;
r=1;
if (y>=0) for(i=0; i<y; i++) r*=x;
else r=0;
return r;
#endif
}
/*
* stringvalue() evaluates a string value, 0 if there is no string
* ir2 has the string location, the stack has the length
* ax the memory byte address, x is set to the lower index which is a nasty
* side effect
*/
char stringvalue() {
mem_t xcl, ycl;
address_t k;
if (DEBUG) outsc("** entering stringvalue \n");
if (token == STRING) {
ir2=ir;
push(x);
#ifdef USEMEMINTERFACE
for(k=0; k<x && x<SPIRAMSBSIZE; k++ ) spistrbuf1[k]=ir[k];
ir2=spistrbuf1;
#endif
#ifdef HASAPPLE1
} else if (token == STRINGVAR) {
xcl=xc;
ycl=yc;
parsesubstring();
if (er != 0) return 0;
#ifdef HASSTRINGARRAYS
k=pop();
#else
k=arraylimit;
#endif
#ifdef HASFLOAT
y=floor(pop());
x=floor(pop());
#else
y=pop();
x=pop();
#endif
ir2=getstring(xcl, ycl, x, k);
/* if the memory interface is active spistrbuf1 has the string */
#ifdef USEMEMINTERFACE
if (ir2 == 0) ir2=spistrbuf1;
#endif
if (y-x+1 > 0) push(y-x+1); else push(0);
if (DEBUG) { outsc("** in stringvalue, length "); outnumber(y-x+1); outsc(" from "); outnumber(x); outspc(); outnumber(y); outcr(); }
xc=xcl;
yc=ycl;
} else if (token == TSTR) {
nexttoken();
if ( token != '(') { error(EARGS); return 0; }
nexttoken();
expression();
if (er != 0) return 0;
#ifdef HASFLOAT
push(writenumber2(sbuffer, pop()));
#else
push(writenumber(sbuffer, pop()));
#endif
ir2=sbuffer;
x=1;
if (er != 0) return 0;
if (token != ')') {error(EARGS); return 0; }
#endif
} else {
return 0;
}
return 1;
}
/*
* (numerical) evaluation of a string expression, used for
* comparison and for string rightvalues as numbers
* the token rewind here is needed as streval is called in
* factor - no factor function should nexttoken
*/
void streval(){
char *irl;
address_t xl, x;
token_t t;
address_t h1;
char* b1;
index_t k;
if (!stringvalue()) {
error(EUNKNOWN);
return;
}
if (er != 0) return;
irl=ir2;
xl=popaddress();
if (er != 0) return;
/* with the mem interface -> copy, irl now point to buffer2 */
#ifdef USEMEMINTERFACE
for(k=0; k<SPIRAMSBSIZE && k<xl; k++) spistrbuf2[k]=irl[k];
irl=spistrbuf2;
#endif
/* get ready for rewind. */
/*
if (st != SINT)
h1=here;
else
b1=bi;
*/
pushlocation();
t=token;
nexttoken();
if (token != '=' && token != NOTEQUAL) {
/* rewind one token if not comparison */
/*
if (st != SINT)
here=h1;
else
bi=b1;
*/
poplocation();
token=t;
if (xl == 0) push(0); else push(irl[0]); // a zero string length evaluate to 0
return;
}
/* questionable !! */
t=token;
nexttoken();
if (!stringvalue()){
error(EUNKNOWN);
return;
}
x=popaddress();
if (er != 0) return;
if (x != xl) goto neq;
for (x=0; x < xl; x++) if (irl[x] != ir2[x]) goto neq;
if (t == '=') push(1); else push(0);
return;
neq:
if (t == '=') push(0); else push(1);
return;
}
#ifdef HASFLOAT
/*
* floating point arithmetic
* SIN, COS, TAN, ATAN, LOG, EXP, INT
* INT is always there and is nop in integer BASICs
* no handling of floating point errors yet.
*/
void xsin() { push(sin(pop())); }
void xcos() { push(cos(pop())); }
void xtan() { push(tan(pop())); }
void xatan() { push(atan(pop())); }
void xlog() { push(log(pop())); }
void xexp() { push(exp(pop())); }
void xint() { push(floor(pop())); }
#else
void xint() {}
#endif
/*
* Recursive expression parser functions
*
* factor(); term(); addexpression(); compexpression();
* notexpression(); andexpression(); expression()
*
* doing
*
* functions, numbers; *, /, %; +, -; =, <>, =>, <=;
* NOT; AND; OR
*
*/
/*
* factor() - contrary to all other function
* nothing here should end with a new token - this is handled
* in factors calling function
*
* evaluates constants, variables and all functions
*/
/* helpers of factor - array access */
void factorarray() {
mem_t xcl, ycl;
address_t ix, iy;
number_t v;
/* remember the variable, because parsesubscript changes this */
ycl=yc;
xcl=xc;
nexttoken();
parsesubscripts();
if (er != 0 ) return;
switch(args) {
case 1:
ix=popaddress();
if (er != 0) return;
iy=arraylimit;
break;
#ifdef HASMULTIDIM
case 2:
iy=popaddress();
ix=popaddress();
if (er != 0) return;
break;
#endif
default:
error(EARGS);
return;
}
array('g', xcl, ycl, ix, iy, &v);
push(v);
}
/* helpers of factor - string length */
void factorlen() {
address_t a;
nexttoken();
if ( token != '(') { error(EARGS); return; }
nexttoken();
if (!stringvalue()) {
#ifdef HASDARKARTS
expression();
if (er != 0) return;
a=pop();
push(blength(TBUFFER, a%256, a/256));
return;
#else
error(EUNKNOWN);
return;
#endif
}
if (er != 0) return;
nexttoken();
if (token != ')') { error(EARGS); return; }
}
/* helpers of factor - the VAL command */
void factorval() {
address_t a;
index_t y;
nexttoken();
if (token != '(') { error(EARGS); return; }
nexttoken();
if (!stringvalue()) { error(EUNKNOWN); return; }
if (er != 0) return;
/* not super clean - handling of terminal symbol dirty
stringtobuffer needed !! */
vlength=0;
while(*ir2==' ' || *ir2=='\t') { ir2++; vlength++; }
if(*ir2=='-') { y=-1; ir2++; vlength++; } else y=1;
x=0;
#ifdef HASFLOAT
if ((a=parsenumber2(ir2, &x)) > 0) {vlength+=a; ert=0; } else {vlength=0; ert=1;};
#else
if ((a=parsenumber(ir2, &x)) > 0) {vlength+=a; ert=0; } else {vlength=0; ert=1;};
#endif
(void) pop();
push(x*y);
nexttoken();
if (token != ')') { error(EARGS); return; }
}
/* helpers of factor - the INSTR command */
void factorinstr() {
address_t y;
char ch;
address_t a;
char* ir;
nexttoken();
if (token != '(') { error(EARGS); return; }
nexttoken();
if (!stringvalue()) { error(EUNKNOWN); return; }
y=popaddress();
ir=ir2;
if (er != 0) return;
nexttoken();
if (token != ',') { error(EARGS); return; }
nexttoken();
expression();
if (er != 0) return;
ch=pop();
for (a=1; a<=y; a++) {if (ir[a-1] == ch) break; }
if (a > y ) a=0;
push(a);
if (token != ')') { error(EARGS); return; }
}
/* helpers of factor - the NETSTAT command */
void factornetstat() {
address_t x=0;
if (netconnected()) x=1;
if (mqttstate() == 0) x+=2;
push(x);
}
void factor(){
if (DEBUG) bdebug("factor\n");
switch (token) {
case NUMBER:
push(x);
break;
case VARIABLE:
push(getvar(xc, yc));
break;
case ARRAYVAR:
factorarray();
break;
case '(':
nexttoken();
expression();
if (er != 0 ) return;
if (token != ')') { error(EARGS); return; }
break;
/* Palo Alto BASIC functions */
case TABS:
parsefunction(xabs, 1);
break;
case TRND:
parsefunction(rnd, 1);
break;
case TSIZE:
push(himem-top);
break;
/* Apple 1 BASIC functions */
#ifdef HASAPPLE1
case TSGN:
parsefunction(xsgn, 1);
break;
case TPEEK:
parsefunction(xpeek, 1);
break;
case TLEN:
factorlen();
break;
#ifdef HASIOT
case TAVAIL:
parsefunction(xavail, 1);
break;
case TOPEN:
parsefunction(xfopen, 1);
break;
case TSENSOR:
parsefunction(xfsensor, 2);
break;
case TVAL:
factorval();
break;
case TINSTR:
factorinstr();
break;
case TWIRE:
parsefunction(xfwire, 1);
break;
#endif
#ifdef HASERRORHANDLING
case TERROR:
push(erh);
break;
#endif
case THIMEM:
push(himem);
break;
/* Apple 1 string compare code */
case STRING:
case STRINGVAR:
streval();
if (er != 0 ) return;
break;
#endif
/* Stefan's tinybasic additions */
#ifdef HASSTEFANSEXT
case TSQR:
parsefunction(sqr, 1);
break;
case TMAP:
parsefunction(xmap, 5);
break;
case TUSR:
parsefunction(xusr, 2);
break;
case TPOW:
parsefunction(xpow, 2);
break;
#endif
/* Arduino I/O */
#ifdef HASARDUINOIO
case TAREAD:
parsefunction(aread, 1);
break;
case TDREAD:
parsefunction(dread, 1);
break;
case TMILLIS:
parsefunction(bmillis, 1);
break;
#ifdef HASPULSE
case TPULSE:
parsefunction(bpulsein, 3);
break;
#endif
case TAZERO:
#if defined(ARDUINO) && defined(A0)
push(A0);
#else
push(0);
#endif
break;
case TLED:
#ifdef LED_BUILTIN
push(LED_BUILTIN);
#else
push(0);
#endif
break;
#endif
/* mathematical functions in case we have float */
#ifdef HASFLOAT
case TSIN:
parsefunction(xsin, 1);
break;
case TCOS:
parsefunction(xcos, 1);
break;
case TTAN:
parsefunction(xtan, 1);
break;
case TATAN:
parsefunction(xatan, 1);
break;
case TLOG:
parsefunction(xlog, 1);
break;
case TEXP:
parsefunction(xexp, 1);
break;
#endif
/* int is always present to make programs compatible */
case TINT:
parsefunction(xint, 1);
break;
#ifdef HASDARTMOUTH
case TFN:
xfn();
break;
/* an arcane feature, DATA evaluates to the data record number */
case TDATA:
push(datarc);
break;
#endif
#ifdef HASDARKARTS
case TMALLOC:
parsefunction(xmalloc, 2);
break;
case TFIND:
xfind();
break;
#endif
#ifdef HASIOT
case TNETSTAT:
factornetstat();
break;
#endif
/* unknown function */
default:
error(EUNKNOWN);
return;
}
}
#ifdef POWERRIGHTTOLEFT
/* the recursive version */
void power() {
if (DEBUG) bdebug("power\n");
factor();
if (er != 0) return;
nexttoken();
if (DEBUG) bdebug("in power\n");
if (token == '^'){
parseoperator(power);
if (er != 0) return;
push(bpow(x,y));
}
if (DEBUG) bdebug("leaving power\n");
}
#else
/* the left associative version */
void power() {
if (DEBUG) bdebug("power\n");
factor();
if (er != 0) return;
nextpower:
nexttoken();
if (DEBUG) bdebug("in power\n");
if (token == '^'){
nexttoken();
factor();
if (er != 0) return;
y=pop();
x=pop();
push(bpow(x,y));
goto nextpower;
}
if (DEBUG) bdebug("leaving power\n");
}
#endif
/*
* term() evaluates multiplication, division and mod
*/
void term(){
if (DEBUG) bdebug("term\n");
power();
if (er != 0) return;
nextfactor:
// nexttoken();
if (DEBUG) bdebug("in term\n");
if (token == '*'){
parseoperator(power);
if (er != 0) return;
push(x*y);
goto nextfactor;
} else if (token == '/'){
parseoperator(power);
if (er != 0) return;
if (y != 0)
push(x/y);
else {
error(EDIVIDE);
return;
}
goto nextfactor;
} else if (token == '%') {
parseoperator(power);
if (er != 0) return;
if (y != 0)
#ifndef HASFLOAT
push(x%y);
#else
push((int)x%(int)y);
#endif
else {
error(EDIVIDE);
return;
}
goto nextfactor;
}
if (DEBUG) bdebug("leaving term\n");
}
/* add and subtract */
void addexpression(){
if (DEBUG) bdebug("addexp\n");
if (token != '+' && token != '-') {
term();
if (er != 0) return;
} else {
push(0);
}
nextterm:
if (token == '+' ) {
parseoperator(term);
if (er != 0) return;
push(x+y);
goto nextterm;
} else if (token == '-'){
parseoperator(term);
if (er != 0) return;
push(x-y);
goto nextterm;
}
}
/* comparisions */
void compexpression() {
if (DEBUG) bdebug("compexp\n");
addexpression();
if (er != 0) return;
switch (token){
case '=':
parseoperator(compexpression);
if (er != 0) return;
push(x == y ? -1 : 0);
break;
case NOTEQUAL:
parseoperator(compexpression);
if (er != 0) return;
push(x != y ? -1 : 0);
break;
case '>':
parseoperator(compexpression);
if (er != 0) return;
push(x > y ? -1 : 0);
break;
case '<':
parseoperator(compexpression);
if (er != 0) return;
push(x < y ? -1 : 0);
break;
case LESSEREQUAL:
parseoperator(compexpression);
if (er != 0) return;
push(x <= y ? -1 : 0);
break;
case GREATEREQUAL:
parseoperator(compexpression);
if (er != 0) return;
push(x >= y ? -1 : 0);
break;
}
}
#ifdef HASAPPLE1
/* boolean NOT */
void notexpression() {
if (DEBUG) bdebug("notexp\n");
if (token == TNOT) {
nexttoken();
expression();
if (er != 0) return;
push(~(int)pop());
} else
compexpression();
}
/* boolean AND and at the same time bitwise */
void andexpression() {
if (DEBUG) bdebug("andexp\n");
notexpression();
if (er != 0) return;
if (token == TAND) {
parseoperator(expression);
if (er != 0) return;
/* push(x && y); */
push((int)x & (int)y);
}
}
/* expression function and boolean OR at the same time bitwise !*/
void expression(){
if (DEBUG) bdebug("exp\n");
andexpression();
if (er != 0) return;
if (token == TOR) {
parseoperator(expression);
if (er != 0) return;
/* push(x || y); */
push((int)x | (int)y);
}
}
#else
/* expression function simplified */
void expression(){
if (DEBUG) bdebug("exp\n");
compexpression();
if (er != 0) return;
if (token == TOR) {
parseoperator(expression);
if (er != 0) return;
/* push(x || y); */
push((int)x | (int)y);
}
}
#endif
/*
* Layer 2 - The commands and their helpers
*
* Palo Alto BASIC languge set - PRINT, LET, INPUT, GOTO, GOSUB, RETURN,
* IF, FOR, TO, NEXT, STEP, BREAK, STOP, END, LIST, NEW, RUN, REM
* BREAK is not Palo ALto but fits here, eEND is identical to STOP.
*/
/*
* PRINT command
*/
void xprint(){
char semicolon = 0;
char oldod;
char modifier = 0;
form=0;
oldod=od;
nexttoken();
processsymbol:
/* at the end of a print statement, do we need a newline, restore the defaults */
if (termsymbol()) {
if (!semicolon) outcr();
od=oldod;
form=0;
return;
}
semicolon=0;
/* output a string if we found it */
if (stringvalue()) {
if (er != 0) return;
outs(ir2, pop());
nexttoken();
goto separators;
}
/* modifiers of the print statement */
if (token == '#' || token == '&') {
modifier=token;
nexttoken();
expression();
if (er != 0) return;
switch(modifier) {
case '#':
form=pop();
break;
case '&':
od=pop();
break;
}
goto separators;
}
if (token != ',' && token != ';') {
expression();
if (er != 0) return;
outnumber(pop());
}
separators:
if (termsymbol()) goto processsymbol;
switch (token) {
case ',':
if (!modifier) outspc();
case ';':
semicolon=1;
nexttoken();
break;
default:
error(EUNKNOWN);
return;
}
modifier=0;
goto processsymbol;
}
/*
* LET assigment code for various lefthand and righthand side.
*
*
* lefthandside is a helper function for reuse in other
* commands. It determines the address the value is to be
* assigned to and whether the assignment target is a
* "pure" i.e. subscriptless string expression
*
* assignnumber assigns a number to a given lefthandside
*
* in lefthandside the type of the object is determined and
* possible subscripts are parsed
*
* Variables have no subscripts. The arguments are unchanged.
* Arrays may have two subscript which will go to i, j
* Strings may have a string subscript, going to i and an array subscript
* going to j
* Strings without a subscript i.e. pure strings, set the ps flag
*
*/
void lefthandside(address_t* i, address_t* i2, address_t* j, mem_t* ps) {
number_t tmp;
switch (token) {
case VARIABLE:
nexttoken();
break;
case ARRAYVAR:
nexttoken();
parsesubscripts();
nexttoken();
if (er != 0) return;
switch(args) {
case 1:
*i=popaddress();
if (er != 0) return;
*j=arraylimit;
break;
case 2:
*j=popaddress();
if (er != 0) return;
*i=popaddress();
if (er != 0) return;
break;
default:
error(EARGS);
return;
}
break;
#ifdef HASAPPLE1
case STRINGVAR:
#ifndef HASSTRINGARRAYS
*j=arraylimit;
nexttoken();
parsesubscripts();
if (er != 0) return;
switch(args) {
case 0:
*i=1;
*ps=1;
break;
case 1:
*ps=0;
nexttoken();
*i=popaddress();
if (er != 0) return;
break;
case 2:
*ps=0;
nexttoken();
*i2=popaddress();
if (er != 0) return;
*i=popaddress();
if (er != 0) return;
break;
default:
error(EARGS);
return;
}
#else
*j=arraylimit;
nexttoken();
parsesubscripts();
if (er != 0) return;
switch(args) {
case -1:
nexttoken();
case 0:
*i=1;
*ps=1;
break;
case 1:
*ps=0;
nexttoken();
*i=popaddress();
if (er != 0) return;
break;
case 2:
*ps=0;
nexttoken();
*i2=popaddress();
if (er != 0) return;
*i=popaddress();
if (er != 0) return;
break;
default:
error(EARGS);
return;
}
/* we deal with a string array */
if (token == '(') {
parsesubscripts();
if (er != 0) return;
switch(args) {
case 1:
*j=popaddress();
if (er != 0) return;
nexttoken();
break;
default:
error(EARGS);
return;
}
}
#endif
break;
#endif
default:
error(EUNKNOWN);
return;
}
}
void assignnumber(signed char t, char xcl, char ycl, address_t i, address_t j, char ps) {
switch (t) {
case VARIABLE:
x=pop();
setvar(xcl, ycl, x);
break;
case ARRAYVAR:
x=pop();
array('s', xcl, ycl, i, j, &x);
break;
#ifdef HASAPPLE1
case STRINGVAR:
ir=getstring(xcl, ycl, i, j);
if (er != 0) return;
#ifndef USEMEMINTERFACE
ir[0]=pop();
#else
if (ir == 0) memwrite2(ax, pop());
#endif
if (ps)
setstringlength(xcl, ycl, 1, j);
else
if (lenstring(xcl, ycl, j) < i && i <= stringdim(xcl, ycl)) setstringlength(xcl, ycl, i, j);
break;
#endif
}
}
/*
* LET - the core assigment function, this is different from other BASICs
*/
void assignment() {
token_t t; /* remember the left hand side token until the end of the statement, type of the lhs */
mem_t ps=1; /* also remember if the left hand side is a pure string of something with an index */
mem_t xcl, ycl; /* to preserve the left hand side variable names */
address_t i=1; /* and the beginning of the destination string */
address_t i2=0; /* and the end of the destination string */
address_t j=arraylimit; /* the second dimension of the array */
address_t lensource, lendest, newlength, strdim, copybytes;
mem_t s;
index_t k;
/* this code evaluates the left hand side */
ycl=yc;
xcl=xc;
t=token;
lefthandside(&i, &i2, &j, &ps);
if (er != 0) return;
if (DEBUG) {
outsc("** in assignment lefthandside with ");
outnumber(i); outspc();
outnumber(j); outspc();
outnumber(ps); outcr();
}
/* the assignment part */
if (token != '=') {
error(EUNKNOWN);
return;
}
nexttoken();
/* here comes the code for the right hand side */
switch (t) {
/* the lefthandside is a scalar, evaluate the righthandside as a number */
case VARIABLE:
case ARRAYVAR:
expression();
if (er != 0) return;
assignnumber(t, xcl, ycl, i, j, ps);
break;
#ifdef HASAPPLE1
/* the lefthandside is a string, try evaluate the righthandside as a stringvalue */
case STRINGVAR:
s=stringvalue();
if (er != 0) return;
/* and then as an expression */
if (!s) {
expression();
if (er != 0) return;
assignnumber(t, xcl, ycl, i, j, ps);
break;
}
/* this is the string righthandside code - how long is the rightandside */
lensource=pop();
/* the destination address of the lefthandside, on an SPI RAM system, we
save the source in the second string buffer and let ir2 point to it
this is needed to avoid the overwrite from the second getstring
then reuse much of the old code */
#ifdef USEMEMINTERFACE
for(k=0; k<SPIRAMSBSIZE; k++) spistrbuf2[k]=ir2[k];
ir2=spistrbuf2;
#endif
ir=getstring(xcl, ycl, i, j);
if (er != 0) return;
/* the length of the original string */
lendest=lenstring(xcl, ycl, j);
/* the dimension i.e. the maximum length of the string */
strdim=stringdim(xcl, ycl);
if (DEBUG) {
outsc("* assigment stringcode "); outch(xcl); outch(ycl); outcr();
outsc("** assignment source string length "); outnumber(lensource); outcr();
outsc("** assignment dest string length "); outnumber(lendest); outcr();
outsc("** assignment old string length "); outnumber(lenstring(xcl, ycl, 1)); outcr();
outsc("** assignment dest string dimension "); outnumber(stringdim(xcl, ycl)); outcr();
};
/* does the source string fit into the destination if we have no destination second index*/
if ((i2 == 0) && ((i+lensource-1) > strdim)) { error(EORANGE); return; };
/* if we have a second index, is it in range */
if((i2 !=0) && i2>strdim) { error(EORANGE); return; };
/* caculate the number of bytes we truely want to copy */
if (i2 > 0) copybytes=((i2-i+1) > lensource) ? lensource : (i2-i+1); else copybytes=lensource;
/* this code is needed to make sure we can copy one string to the same string
without overwriting stuff, we go either left to right or backwards */
#ifndef USEMEMINTERFACE
if (x > i)
for (k=0; k<copybytes; k++) ir[k]=ir2[k];
else
for (k=copybytes-1; k>=0; k--) ir[k]=ir2[k];
#else
/* on an SPIRAM system we need to go through the mem interface
for write, if ir is zero i.e. is not a valid memory location */
if (ir != 0) {
if (x > i)
for (k=0; k<copybytes; k++) ir[k]=ir2[k];
else
for (k=copybytes-1; k>=0; k--) ir[k]=ir2[k];
} else {
for (k=0; k<copybytes; k++) memwrite2(ax+k, ir2[k]);
}
#endif
/*
* classical Apple 1 behaviour is string truncation in substring logic, with
* two index destination string we follow another route. We extend the string
* for the number of copied bytes
*/
if (i2 == 0) {
newlength = i+lensource-1;
} else {
if (i+copybytes > lendest) newlength=i+copybytes-1; else newlength=lendest;
}
setstringlength(xcl, ycl, newlength, j);
nexttoken();
break;
#endif
}
}
/*
* INPUT ["string",] variable [,["string",] variable]*
*/
void showprompt() {
outsc("? ");
}
void xinput(){
mem_t oldid = id;
mem_t prompt = 1;
address_t l;
number_t xv;
mem_t xcl, ycl;
address_t k;
nexttoken();
/* modifiers of the input statement (stream) */
if (token == '&') {
if(!expectexpr()) return;
oldid=id;
id=pop();
if (id != ISERIAL || id !=IKEYBOARD) prompt=0;
if (token != ',') {
error(EUNKNOWN);
return;
} else
nexttoken();
}
/* unlink print, form can appear only once in input after the
stream, it controls character counts in wire */
#if (defined(HASWIRE) && defined(HASFILEIO))
if (token == '#') {
if(!expectexpr()) return;
form=pop();
if (token != ',') {
error(EUNKNOWN);
return;
} else
nexttoken();
}
#endif
nextstring:
if (token == STRING && id != IFILE) {
prompt=0;
outs(ir, x);
nexttoken();
if (token != ',' && token != ';') {
error(EUNKNOWN);
return;
} else
nexttoken();
}
nextvariable:
if (token == VARIABLE) {
if (prompt) showprompt();
if (innumber(&xv) == BREAKCHAR) {
st=SINT;
token=EOL;
goto resetinput;
} else {
setvar(xc, yc, xv);
}
}
/* we don't use the lefthandside call here because the input loop token handling
is different */
#ifndef HASMULTIDIM
if (token == ARRAYVAR) {
xcl=xc;
ycl=yc;
nexttoken();
parsesubscripts();
if (er != 0 ) return;
if (args != 1) {
error(EARGS);
return;
}
if (prompt) showprompt();
if (innumber(&xv) == BREAKCHAR) {
st=SINT;
token=EOL;
goto resetinput;
} else {
array('s', xcl, ycl, pop(), arraylimit, &xv);
}
}
#else
if (token == ARRAYVAR) {
xcl=xc;
ycl=yc;
nexttoken();
parsesubscripts();
if (er != 0 ) return;
switch(args) {
case 1:
x=pop();
y=arraylimit;
break;
case 2:
y=pop();
x=pop();
break;
default:
error(EARGS);
return;
}
if (prompt) showprompt();
if (innumber(&xv) == BREAKCHAR) {
st=SINT;
token=EOL;
goto resetinput;
} else {
array('s', xcl, ycl, x, y, &xv);
}
}
#endif
#ifdef HASAPPLE1
/* strings are not passed through the input buffer but inputed directly
in the string memory location, ir after getstring points to the first data byte */
if (token == STRINGVAR) {
ir=getstring(xc, yc, 1, arraylimit);
if (prompt) showprompt();
l=stringdim(xc, yc);
/* the form parameter in WIRE can be used to set the expected number of bytes */
if (id == IWIRE && form != 0 && form < l) l=form;
#ifndef USEMEMINTERFACE
ins(ir-1, l);
/* this is the length information correction for large strings, ins
stored the string length in z.a as a side effect */
if (xc != '@' && strindexsize == 2) {
*(ir-2)=z.b.l;
*(ir-1)=z.b.h;
}
#else
if (ir == 0) {
ins(spistrbuf1, l);
for(int k=0; k<SPIRAMSBSIZE && k<l; k++) memwrite2(ax+k, spistrbuf1[k+1]);
memwrite2(ax-2, z.b.l);
memwrite2(ax-1, z.b.h);
} else {
ins(ir-1, l);
/* this is the length information correction for large strings, ins
stored the string length in z.a as a side effect */
if (xc != '@' && strindexsize == 2) {
*(ir-2)=z.b.l;
*(ir-1)=z.b.h;
}
}
#endif
}
#endif
nexttoken();
if (token == ',' || token == ';') {
nexttoken();
goto nextstring;
}
if (!termsymbol()) {
error(EUNKNOWN);
}
resetinput:
id=oldid;
form=0;
}
/*
* GOTO, GOSUB, RETURN and their helpers
*
* GOTO and GOSUB function for a simple one statement goto
*/
void xgoto() {
token_t t=token;
number_t x;
if (!expectexpr()) return;
if (t == TGOSUB) pushgosubstack(0);
if (er != 0) return;
x=pop();
if (DEBUG) { outsc("** goto/gosub evaluated line number "); outnumber(x); outcr(); }
findline((address_t) x);
if (er != 0) return;
if (DEBUG) { outsc("** goto/gosub branches to "); outnumber(here); outcr(); }
/* goto in interactive mode switched to RUN mode
no clearing of variables and stacks */
if (st == SINT) st=SRUN;
/* this was always there but is not needed, we let statement() do this now */
/* nexttoken(); */
}
/*
* RETURN retrieves here from the gosub stack
*/
void xreturn(){
popgosubstack();
if (DEBUG) { outsc("** restored location "); outnumber(here); outcr(); }
if (er != 0) return;
nexttoken();
#ifdef HASEVENTS
/* we return from an interrupt and reenable them */
if (gosubarg[gosubsp] == TEVENT) events_enabled=1;
#endif
}
/*
* IF statement together with THEN
*/
void xif() {
mem_t nl=0;
if (!expectexpr()) return;
x=pop();
if (DEBUG) { outnumber(x); outcr(); }
/* if can have a new line after the expression in this BASIC */
if (token == LINENUMBER) nexttoken();
if (!x) {
#ifndef HASSTRUCT
/* on condition false skip the entire line and all : until a potential ELSE */
while(token != LINENUMBER && token != EOL && token != TELSE) nexttoken();
#else
/* in the structured language set, we need to look for a DO close to the IF and skip it*/
/* a THEN or not and then a line number expects a block */
if (token == TTHEN) nexttoken();
if (token == LINENUMBER) { nexttoken(); nl=1; }
/* skip the block */
if (token == TDO) {
nexttoken();
findbraket(TDO, TDEND);
nexttoken();
goto processelse;
}
/* skip the line */
if (!nl) while(token != LINENUMBER && token != EOL && token != TELSE) nexttoken();
processelse:
#endif
/* if we have ELSE at this point we want to execute this part of the line as the condition
was false, isolated ELSE is GOTO, otherwise just execute the code */
#ifdef HASSTEFANSEXT
/* look if ELSE is at the next line */
if (token == LINENUMBER) nexttoken();
/* now process ELSE */
if (token == TELSE) {
nexttoken();
if (token == NUMBER) {
findline((address_t) x);
return;
}
}
#endif
}
/* a THEN is interpreted as simple one statement goto if it is followed by a line number*/
#ifdef HASAPPLE1
/* then can be on a new line */
if (token == TTHEN) {
nexttoken();
if (token == NUMBER) {
findline((address_t) x);
}
}
#endif
}
/* if else is encountered in the statement line, the rest of the code is skipped
as else code execution is triggered in the xif function */
#ifdef HASSTEFANSEXT
void xelse() {
mem_t nl=0;
#ifndef HASSTRUCT
/* skip the entire line */
while(token != LINENUMBER && token != EOL) nexttoken();
#else
nexttoken();
/* else in a single line */
if (token == LINENUMBER) {
nexttoken();
nl=1;
}
/* the block after the else on a new line or the current line */
if (token == TDO) {
nexttoken();
findbraket(TDO, TDEND);
}
/* single line else, skip the line */
if (!nl) while(token != LINENUMBER && token != EOL) nexttoken();
#endif
}
#endif
/*
* FOR, NEXT and the apocryphal BREAK
*
* find the NEXT token or the end of the program
*/
/* the generic block scanner - a better version of findnextcmd, used for structured code*/
void findbraket(token_t bra, token_t ket){
address_t fnc = 0;
while (1) {
if (token == ket) {
if (fnc == 0) {
return;
} else fnc--;
}
if (token == bra) fnc++;
/* no NEXT found - different for interactive and program mode, should never happen */
if (token == EOL) {
error(bra);
return;
}
nexttoken();
/* yap yap yap */
if (DEBUG) {
outsc("** skpping braket ");
outputtoken(); outspc();
outnumber(here); outspc();
outnumber(fnc); outcr();
}
}
}
/*
* FOR variable [= expression [to expression]] [STEP expression]
* for stores the variable, the increment and the boudary on the
* for stack. Changing steps and boundaries during the execution
* of a loop has no effect.
*
* This is different from many other BASICS as FOR can be used
* as an open loop with no boundary
*/
void xfor(){
mem_t xcl, ycl;
number_t b=1;
number_t e=maxnum;
number_t s=1;
/* there has to be a variable */
if (!expect(VARIABLE, EUNKNOWN)) return;
xcl=xc;
ycl=yc;
/* this is not standard BASIC all combinations of
FOR TO STEP are allowed */
nexttoken();
if (token == '=') {
if (!expectexpr()) return;
b=pop();
setvar(xcl, ycl, b); /* to have it here makes FOR use the variable value as start */
}
if (token == TTO) {
if (!expectexpr()) return;
e=pop();
}
if (token == TSTEP) {
if (!expectexpr()) return;
s=pop();
}
if (!termsymbol()) {
error(EUNKNOWN);
return;
}
if (st == SINT)
here=bi-ibuffer;
/* here we know everything to set up the loop */
/* setvar(xcl, ycl, b); to have it hear makes FOR use 1 as start */
if (DEBUG) {
outsc("** for loop with parameters var begin end step : ");
outch(xcl); outch(ycl); outspc(); outnumber(b); outspc(); outnumber(e); outspc(); outnumber(s); outcr();
}
xc=xcl;
yc=ycl;
x=e;
y=s;
if (DEBUG) { outsc("** for loop target location"); outnumber(here); outcr(); }
pushforstack();
if (er != 0) return;
/*
* this tests the condition and stops if it is fulfilled already from start
* there is an apocryphal feature here: STEP 0 is legal triggers an infinite loop
*/
if ((y > 0 && getvar(xc, yc) > x) || (y < 0 && getvar(xc, yc) < x )) {
dropforstack();
findbraket(TFOR, TNEXT);
nexttoken();
if (token == VARIABLE) nexttoken(); /* more evil - this should really check */
}
}
/*
* BREAK - an apocryphal feature here is the BREAK command ending a loop
*/
#ifdef HASSTRUCT
void xbreak(){
token_t t;
t=peekforstack();
if (er != 0) return;
dropforstack();
switch (t) {
case TWHILE:
findbraket(TWHILE, TWEND);
nexttoken();
break;
case TREPEAT:
findbraket(TREPEAT, TUNTIL);
while (!termsymbol()) nexttoken();
break;
default: /* a FOR loop is the default */
findbraket(TFOR, TNEXT);
nexttoken();
if (token == VARIABLE) nexttoken(); /* more evil - this should really check */
break;
}
}
#else
void xbreak(){
dropforstack();
if (er != 0) return;
findbraket(TFOR, TNEXT);
nexttoken();
if (token == VARIABLE) nexttoken(); /* more evil - this should really check */
}
#endif
/*
* CONT as a loop control statement, as apocryphal as BREAK, simply
* advance to next and the continue to process
*/
#ifdef HASSTRUCT
void xcont() {
token_t t;
t=peekforstack();
if (er != 0) return;
switch (t) {
case TWHILE:
findbraket(TWHILE, TWEND);
break;
case TREPEAT:
findbraket(TREPEAT, TUNTIL);
break;
default: /* a FOR loop is the default */
findbraket(TFOR, TNEXT);
break;
}
}
#else
void xcont() {
findbraket(TFOR, TNEXT);
}
#endif
/*
* NEXT variable statement
*/
void xnext(){
mem_t xcl=0;
mem_t ycl;
address_t h;
number_t t;
nexttoken();
/* one variable is accepted as an argument, no list */
if (token == VARIABLE) {
if (DEBUG) { outsc("** variable argument "); outch(xc); outch(yc); outcr(); }
xcl=xc;
ycl=yc;
nexttoken();
if (!termsymbol()) {
error(EUNKNOWN);
return;
}
}
/* remember the current position */
h=here;
popforstack();
if (er != 0) return;
/* check if this is really a FOR loop */
#ifdef HASSTRUCT
if (token == TWHILE || token == TREPEAT) {
error(ELOOP);
return;
}
#endif
/* a variable argument in next clears the for stack
down as BASIC programs can and do jump out to an outer next */
if (xcl) {
while (xcl != xc || ycl != yc ) {
popforstack();
if (er != 0) return;
}
}
/* y=0 an infinite loop with step 0 */
t=getvar(xc, yc)+y;
setvar(xc, yc, t);
/* do we need another iteration, STEP 0 always triggers an infinite loop */
if ((y == 0) || (y > 0 && t <= x) || (y < 0 && t >= x)) {
/* push the loop with the new values back to the for stack */
pushforstack();
if (st == SINT) bi=ibuffer+here;
} else {
/* last iteration completed we stay here after the next */
here=h;
}
nexttoken();
if (DEBUG) { outsc("** after next found token "); debugtoken(); }
}
/*
* TOKEN output - this is also used in save, list does a minimal formatting with a simple heuristic
*/
void outputtoken() {
address_t i;
if (token == LINENUMBER) outliteral=0;
if (token == TREM) outliteral=1;
if (spaceafterkeyword) {
if (token != '(' && token != LINENUMBER && token !=':' ) outspc();
spaceafterkeyword=0;
}
switch (token) {
case NUMBER:
outnumber(x);
break;
case LINENUMBER:
outnumber(ax);
outspc();
break;
case ARRAYVAR:
case STRINGVAR:
case VARIABLE:
if (lastouttoken == NUMBER) outspc();
outch(xc);
if (yc != 0) outch(yc);
if (token == STRINGVAR) outch('$');
break;
case STRING:
outch('"');
outs(ir, x);
outch('"');
break;
default:
if ( (token < -3 && token >= BASEKEYWORD) || token < -127) {
if ((token == TTHEN ||
token == TELSE ||
token == TTO ||
token == TSTEP ||
token == TGOTO ||
token == TGOSUB ||
token == TOR ||
token == TAND ) && lastouttoken != LINENUMBER) outspc();
else
if (lastouttoken == NUMBER || lastouttoken == VARIABLE) outspc();
for(i=0; gettokenvalue(i)!=0 && gettokenvalue(i)!=token; i++);
outsc(getkeyword(i));
if (token != GREATEREQUAL && token != NOTEQUAL && token != LESSEREQUAL && token != TREM) spaceafterkeyword=1;
break;
}
if (token >= 32) {
outch(token);
if (token == ':' && !outliteral) outspc();
break;
}
outch(token); outspc(); outnumber(token);
}
lastouttoken=token;
}
/*
* LIST programs to an output device
*/
void xlist(){
number_t b, e;
mem_t oflag = 0;
lastouttoken=0;
spaceafterkeyword=0;
nexttoken();
parsearguments();
if (er != 0) return;
switch (args) {
case 0:
b=0;
e=32767;
break;
case 1:
b=pop();
e=b;
break;
case 2:
e=pop();
b=pop();
break;
default:
error(EARGS);
return;
}
if ( top == 0 ) { nexttoken(); return; }
here=0;
gettoken();
while (here < top) {
if (token == LINENUMBER && ax >= b) oflag=1;
if (token == LINENUMBER && ax > e) oflag=0;
if (oflag) outputtoken();
gettoken();
if (token == LINENUMBER && oflag) {
outcr();
/* wait after every line on small displays
removed if ( dspactive() && (dsp_rows < 10) ){ if ( inch() == 27 ) break;} */
if (dspactive())
if ( dspwaitonscroll() == 27 ) break;
}
}
if (here == top && oflag) outputtoken();
if (e == 32767 || b != e) outcr(); /* supress newlines in "list 50" - a little hack */
nexttoken();
}
/*
* RUN and CONTINUE are the same function
*/
void xrun(){
if (token == TCONT) {
st=SRUN;
nexttoken();
} else {
nexttoken();
parsearguments();
if (er != 0 ) return;
if (args > 1) { error(EARGS); return; }
if (args == 0) {
here=0;
} else {
findline(pop());
}
if (er != 0) return;
if (st == SINT) st=SRUN;
clrvars();
clrgosubstack();
clrforstack();
clrdata();
clrlinecache();
ert=0;
#ifdef HASEVENTS
events_enabled=1;
#endif
nexttoken();
}
/* once statement is called it stays into a loop until the token stream
is exhausted. Then we return to interactive mode. */
statement();
st=SINT;
/* flush the EEPROM when changing to interactive mode */
eflush();
/* if called from command line with file arg - exit after run */
#ifndef ARDUINO
if (bnointafterrun) restartsystem();
#endif
}
/*
* NEW the general cleanup function - new deletes everything
*
* restbasicstate() is a helper, it keeps the memory intact
* this is needed for EEPROM direct memory
*/
void resetbasicstate() {
/* all stacks are purged */
clearst();
clrgosubstack();
clrforstack();
clrdata();
clrvars();
clrlinecache();
/* error status reset */
reseterror();
/* let here point to the beginning of the program */
here=0;
/* interactive mode */
st=SINT;
/* switch off timers and interrupts */
#ifdef HASTIMER
resettimer(&after_timer);
resettimer(&every_timer);
#endif
}
void xnew(){
/* reset the state of the interpreter */
resetbasicstate();
/* program memory back to zero and variable heap cleared */
himem=memsize;
zeroblock(0, memsize);
top=0;
/* on EEPROM systems also clear the stored state and top */
#ifdef EEPROMMEMINTERFACE
eupdate(0, 0);
z.a=top;
esetnumber(1, addrsize);
#endif
}
/*
* REM - skip everything
*/
void xrem() {
if (debuglevel == -1) outsc("REM: ");
while (token != LINENUMBER && token != EOL && here <= top)
{
nexttoken();
if (debuglevel == -1) {
if (token != LINENUMBER) outputtoken(); else outcr();
}
}
}
/*
* The Apple 1 BASIC additions
* CLR, DIM, POKE, TAB
*/
/*
* CLR - clearing variable space
*/
void xclr() {
#ifdef HASDARKARTS
mem_t xcl, ycl, t;
nexttoken();
if (termsymbol()) {
clrvars();
clrgosubstack();
clrforstack();
clrdata();
clrlinecache();
ert=0;
} else {
xcl=xc;
ycl=yc;
t=token;
switch (t) {
case VARIABLE:
if (xcl == '@' || ycl == 0) { error(EVARIABLE); return; }
break;
case ARRAYVAR:
nexttoken();
if (token != '(') { error(EVARIABLE); return; }
nexttoken();
if (token != ')') { error(EVARIABLE); return; }
break;
case STRINGVAR:
if (xcl == '@') { error(EVARIABLE); return; }
break;
default:
expression();
if (er != 0) return;
ax=pop();
xcl=ax%256;
ycl=ax/256;
t=TBUFFER;
}
ax=bfree(t, xcl, ycl);
if (ax == 0) {
if (t != TBUFFER) { error(EVARIABLE); return; }
else ert=1;
}
}
#else
clrvars();
clrgosubstack();
clrforstack();
clrdata();
clrlinecache();
ert=0;
#endif
nexttoken();
}
#ifdef HASAPPLE1
/*
* DIM - the dimensioning of arrays and strings from Apple 1 BASIC
*/
void xdim(){
mem_t xcl, ycl;
token_t t;
number_t x, y;
nexttoken();
nextvariable:
if (token == ARRAYVAR || token == STRINGVAR ){
t=token;
xcl=xc;
ycl=yc;
nexttoken();
parsesubscripts();
if (er != 0) return;
#ifndef HASMULTIDIM
if (args != 1) {error(EARGS); return; }
x=pop();
if (x<=0) {error(EORANGE); return; }
if (t == STRINGVAR) {
if ( (x>255) && (strindexsize==1) ) {error(EORANGE); return; }
(void) createstring(xcl, ycl, x, 1);
} else {
(void) createarray(xcl, ycl, x, 1);
}
#else
if (args != 1 && args != 2) {error(EARGS); return; }
x=pop();
if (args == 2) {y=x; x=pop(); } else { y=1; }
if (x <= 0 || y<=0) {error(EORANGE); return; }
if (t == STRINGVAR) {
if ( (x>255) && (strindexsize==1) ) {error(EORANGE); return; }
/* running from an SPI RAM means that we need to go through buffers in real memory which
limits string sizes, this should ne be here but encapsulated, todo after multidim string
implementation is complete */
#ifdef SPIRAMSBSIZE
if (x>SPIRAMSBSIZE-1) {error(EORANGE); return; }
#endif
(void) createstring(xcl, ycl, x, y);
} else {
(void) createarray(xcl, ycl, x, y);
}
#endif
} else {
error(EUNKNOWN);
return;
}
nexttoken();
if (token == ',') {
nexttoken();
goto nextvariable;
}
nexttoken();
}
/*
* POKE - low level poke to the basic memory, works only up to 32767
* variables changed to local
*/
void xpoke(){
address_t amax;
index_t a, v; /* both can be signed ! */
/* 16 bit numbers can't poke big addresses */
if ( (long) memsize > (long) maxnum) amax=(address_t) maxnum; else amax=memsize;
nexttoken();
parsenarguments(2);
if (er != 0) return;
v=pop(); /* the value */
a=pop(); /* the address */
if (a >= 0 && a<amax)
memwrite2(a, v);
else if (a < 0 && a >= -elength())
eupdate(-a-1, v);
else {
error(EORANGE);
}
}
/*
* TAB - spaces command of Apple 1 BASIC
* charcount mechanism for relative tab if HASMSTAB is set
*/
void xtab(){
address_t tx;
nexttoken();
parsenarguments(1);
if (er != 0) return;
tx=popaddress();
if (er != 0) return;
#ifdef HASMSTAB
if (reltab && od <= OPRT && od > 0) {
if (charcount[od-1] >= tx) tx=0; else tx=tx-charcount[od-1]-1;
}
#endif
while (tx-- > 0) outspc();
}
#endif
/*
* locate the curor on the screen
*/
void xlocate() {
address_t cx, cy;
nexttoken();
parsenarguments(2);
if (er != 0) return;
cy=popaddress();
cx=popaddress();
if (er != 0) return;
/* for locate we go through the VT52 interface for cursor positioning*/
if (cx > 0 && cy > 0 && cx < 224 && cy < 224) {
outch(27); outch('Y');
outch(31+(unsigned int) cy);
outch(31+(unsigned int) cx);
}
/* set the charcount, this is half broken on escape sequences */
#ifdef HASMSTAB
if (od > 0 && od <= OPRT) charcount[od-1]=cx;
#endif
}
/*
* Stefan's additions to Palo Alto BASIC
* DUMP, SAVE, LOAD, GET, PUT, SET
*
*/
/*
* DUMP - memory dump program
*/
void xdump() {
address_t a, x;
char eflag = 0;
nexttoken();
if (token == '!') { eflag=1; nexttoken(); }
parsearguments();
if (er != 0) return;
switch (args) {
case 0:
x=0;
a=memsize;
break;
case 1:
x=pop();
a=memsize;
break;
case 2:
a=pop();
x=pop();
break;
default:
error(EARGS);
return;
}
form=6;
if (a>x) dumpmem((a-x)/8+1, x, eflag);
form=0;
}
/*
* helper of DUMP, wrote the memory out
*/
void dumpmem(address_t r, address_t b, char eflag) {
address_t j, i;
address_t k;
mem_t c;
address_t end;
k=b;
i=r;
if (eflag) end=elength(); else end=memsize;
while (i>0) {
outnumber(k); outspc();
for (j=0; j<8; j++) {
if (eflag) c=eread(k); else c=memread(k);
k++;
outnumber(c); outspc();
if (k > end) break;
}
outcr();
i--;
if (k > end) break;
}
if (eflag) {
outsc("elength: "); outnumber(elength()); outcr();
} else {
outsc("top: "); outnumber(top); outcr();
outsc("himem: "); outnumber(himem); outcr();
}
}
/*
* creates a C string from a BASIC string
* after reading a BASIC string ir2 contains a pointer
* to the data and x the string length
*/
void stringtobuffer(char *buffer) {
index_t i;
i=x;
if (i >= SBUFSIZE) i=SBUFSIZE-1;
buffer[i--]=0;
while (i >= 0) { buffer[i]=ir2[i]; i--; }
}
/* get a file argument */
void getfilename(char *buffer, char d) {
index_t s;
char *sbuffer;
s=stringvalue();
if (er != 0) return;
if (DEBUG) {outsc("** in getfilename2 stringvalue delivered "); outnumber(s); outcr(); }
if (s) {
x=pop();
if (DEBUG) {outsc("** in getfilename2 copying string of length "); outnumber(x); outcr(); }
stringtobuffer(buffer);
if (DEBUG) {outsc("** in getfilename2 stringvalue string "); outsc(buffer); outcr(); }
nexttoken();
} else if (termsymbol()) {
if (d) {
sbuffer=getmessage(MFILE);
s=0;
while ((sbuffer[s] != 0) && (s < SBUFSIZE-1)) { buffer[s]=sbuffer[s]; s++; }
buffer[s]=0;
x=s;
} else {
buffer[0]=0;
x=0;
}
nexttoken();
} else {
expression();
if (er != 0) return;
buffer[0]=pop();
buffer[1]=0;
}
}
#if defined(FILESYSTEMDRIVER)
/*
* SAVE a file either to disk or to EEPROM
*/
void xsave() {
char filename[SBUFSIZE];
address_t here2;
token_t t;
nexttoken();
getfilename(filename, 1);
if (er != 0) return;
t=token;
if (filename[0] == '!') {
esave();
} else {
if (DEBUG) { outsc("** Opening the file "); outsc(filename); outcr(); };
if (!ofileopen(filename, "w")) {
error(EFILE);
return;
}
/* save the output mode and then save */
push(od);
od=OFILE;
/* the core save - xlist() not used any more */
ert=0; /* reset error to trap file problems */
here2=here;
here=0;
gettoken();
while (here < top) {
outputtoken();
if (ert) break;
gettoken();
if (token == LINENUMBER) outcr();
}
if (here == top) outputtoken();
outcr();
/* back to where we were */
here=here2;
/* restore the output mode */
od=pop();
/* clean up */
ofileclose();
/* did an accident happen */
if (ert) { printmessage(EGENERAL); outcr(); ert=0; }
}
/* and continue remembering, where we were */
token=t;
}
/*
* LOAD a file
*/
void xload(const char* f) {
char filename[SBUFSIZE];
char ch;
address_t here2;
mem_t chain = 0;
if (f == 0) {
nexttoken();
getfilename(filename, 1);
if (er != 0) return;
} else {
for(ch=0; ch<SBUFSIZE && f[ch]!=0; ch++) filename[ch]=f[ch];
}
if (filename[0] == '!') {
eload();
} else {
/* if load is called during runtime it chains
* load the program as new but perserve the variables
* gosub and for stacks are cleared
*/
if (st == SRUN) {
chain=1;
st=SINT;
top=0;
clrgosubstack();
clrforstack();
clrdata();
}
if (!f)
if (!ifileopen(filename)) {
error(EFILE);
return;
}
bi=ibuffer+1;
while (fileavailable()) {
ch=fileread();
if (ch == '\n' || ch == '\r' || cheof(ch)) {
*bi=0;
bi=ibuffer+1;
nexttoken();
if (token == NUMBER) {
ax=x;
storeline();
}
if (er != 0 ) break;
bi=ibuffer+1;
} else {
*bi++=ch;
}
if ((bi-ibuffer) > BUFSIZE) {
error(EOUTOFMEMORY);
break;
}
}
ifileclose();
/* after a successful load we save top to the EEPROM header */
#ifdef EEPROMMEMINTERFACE
z.a=top;
esetnumber(1, addrsize);
#endif
/* go back to run mode and start from the first line */
if (chain) {
st=SRUN;
here=0;
nexttoken();
}
}
}
#else
/*
* SAVE a file to EEPROM - minimal version for small Arduinos
*/
void xsave() {
esave();
nexttoken();
}
/*
* LOAD a file from EEPROM - minimal version for small Arduinos
*/
void xload(const char* f) {
eload();
nexttoken();
}
#endif
/*
* GET just one character from input
*/
void xget(){
token_t t; /* remember the left hand side token until the end of the statement, type of the lhs */
mem_t ps=1; /* also remember if the left hand side is a pure string or something with an index */
mem_t xcl, ycl; /* to preserve the left hand side variable names */
address_t i=1; /* and the beginning of the destination string */
address_t i2=1; /* and the end of the destination string */
address_t j=1; /* the second dimension of the array if needed */
mem_t oid=id; /* remember the input stream */
char ch;
nexttoken();
/* modifiers of the get statement */
if (token == '&') {
if (!expectexpr()) return;
id=pop();
if (token != ',') {
error(EUNKNOWN);
return;
}
nexttoken();
}
/* this code evaluates the left hand side - remember type and name */
ycl=yc;
xcl=xc;
t=token;
/* find the indices */
lefthandside(&i, &i2, &j, &ps);
if (er != 0) return;
/* get the data, non blocking on Arduino */
if (availch()) ch=inch(); else ch=0;
/* store the data element as a number expect for */
push(ch);
assignnumber(t, xcl, ycl, i, j, ps);
/* but then, strings where we deliver a string with length 0 if there is no data */
#ifdef HASAPPLE1
if (t == STRINGVAR && ch == 0 && ps) setstringlength(xcl, ycl, 0, arraylimit);
#endif
/* restore the output device */
id=oid;
}
/*
* PUT writes one character to an output stream
*/
void xput(){
mem_t ood=od;
index_t i;
nexttoken();
/* modifiers of the put statement */
if (token == '&') {
if(!expectexpr()) return;
od=pop();
if (token != ',') {
error(EUNKNOWN);
return;
}
nexttoken();
}
parsearguments();
if (er != 0) return;
for (i=args-1; i>=0; i--) sbuffer[i]=pop();
outs(sbuffer, args);
od=ood;
}
/*
* SET - the command itself is also apocryphal it is a low level
* control command setting certain properties
* syntax, currently it is only SET expression, expression
*/
void xset(){
address_t fn;
index_t args;
nexttoken();
parsenarguments(2);
if (er != 0) return;
args=pop();
fn=pop();
switch (fn) {
/* runtime debug level */
case 0:
debuglevel=args;
break;
/* autorun/run flag of the EEPROM 255 for clear, 0 for prog, 1 for autorun */
case 1:
eupdate(0, args);
break;
/* change the output device */
case 2:
switch (args) {
case 0:
od=OSERIAL;
break;
case 1:
od=ODSP;
break;
}
break;
/* change the default output device */
case 3:
switch (args) {
case 0:
od=(odd=OSERIAL);
break;
case 1:
od=(odd=ODSP);
break;
}
break;
/* change the input device */
case 4:
switch (args) {
case 0:
id=ISERIAL;
break;
case 1:
id=IKEYBOARD;
break;
}
break;
/* change the default input device */
case 5:
switch (args) {
case 0:
idd=(id=ISERIAL);
break;
case 1:
idd=(id=IKEYBOARD);
break;
}
break;
#ifdef ARDUINOPRT
/* set the cr behaviour */
case 6:
sendcr=(char)args;
break;
/* set the blockmode behaviour */
case 7:
blockmode=args;
break;
/* set the second serial ports baudrate */
case 8:
prtset(args);
break;
#endif
/* set the power amplifier level of the radio module */
#ifdef ARDUINORF24
case 9:
radioset(args);
break;
#endif
/* display update control for paged displays */
case 10:
dspsetupdatemode(args);
break;
/* change the output device to a true TAB */
#ifdef HASMSTAB
case 11:
reltab=args;
break;
#endif
/* change the lower array limit */
#ifdef HASARRAYLIMIT
case 12:
arraylimit=args;
break;
#endif
#ifdef HASKEYPAD
case 13:
kbdrepeat=args;
break;
#endif
#ifdef HASPULSE
case 14:
bpulseunit=args;
break;
#endif
#ifdef POSIXVT52TOANSI
case 15:
vt52active=args;
break;
#endif
}
}
/*
* NETSTAT - network status command, rudimentary
*/
void xnetstat(){
#if defined(ARDUINOMQTT)
nexttoken();
parsearguments();
if (er != 0) return;
switch (args) {
case 0:
if (netconnected()) outsc("Network connected \n"); else outsc("Network not connected \n");
outsc("MQTT state "); outnumber(mqttstate()); outcr();
outsc("MQTT out topic "); outsc(mqtt_otopic); outcr();
outsc("MQTT inp topic "); outsc(mqtt_itopic); outcr();
outsc("MQTT name "); outsc(mqttname); outcr();
break;
case 1:
ax=pop();
switch (ax) {
case 0:
netstop();
break;
case 1:
netbegin();
break;
case 2:
if (!mqttreconnect()) ert=1;
break;
default:
error(EARGS);
return;
}
break;
default:
error(EARGS);
return;
}
#endif
nexttoken();
}
/*
* The arduino io functions.
*
* DWRITE - digital write
*/
void xdwrite(){
address_t x,y;
nexttoken();
parsenarguments(2);
if (er != 0) return;
x=pop();
y=pop();
if (er !=0) return;
dwrite(y, x);
}
/*
* AWRITE - analog write
*/
void xawrite(){
address_t x,y;
nexttoken();
parsenarguments(2);
if (er != 0) return;
x=popaddress();
y=popaddress();
if (er != 0) return;
awrite(y, x);
}
/*
* PINM - pin mode
*/
void xpinm(){
address_t x,y;
nexttoken();
parsenarguments(2);
if (er != 0) return;
x=popaddress();
y=popaddress();
if (er != 0) return;
pinm(y, x);
}
/*
* DELAY in milliseconds
*
* this must call bdelay() and not delay() as bdelay()
* handles all the yielding and timing functions
*
*/
void xdelay(){
nexttoken();
parsenarguments(1);
if (er != 0) return;
bdelay(pop());
}
/* tone if the platform has it -> BASIC command PLAY */
#ifdef HASTONE
void xtone(){
nexttoken();
parsearguments();
if (er != 0) return;
if (args>4 || args<2) {
error(EARGS);
return;
}
btone(args);
}
#endif
/* pulse output - pin, duration, [value], [repetitions, delay] */
#ifdef HASPULSE
void xpulse(){
nexttoken();
parsearguments();
if (er != 0) return;
if (args>5 || args<2) {
error(EARGS);
return;
}
bpulseout(args);
}
#endif
#ifdef HASGRAPH
/*
* COLOR setting, accepting one or 3 arguments
*/
void xcolor() {
short r, g, b;
nexttoken();
parsearguments();
if (er != 0) return;
switch(args) {
case 1:
vgacolor(pop());
break;
case 3:
b=pop();
g=pop();
r=pop();
rgbcolor(r, g, b);
break;
default:
error(EARGS);
break;
}
}
/*
* PLOT a pixel on the screen
*/
void xplot() {
short x0, y0;
nexttoken();
parsenarguments(2);
if (er != 0) return;
y0=pop();
x0=pop();
plot(x0, y0);
}
/*
* LINE draws a line
*/
void xline() {
short x0, y0, x1, y1;
nexttoken();
parsenarguments(4);
if (er != 0) return;
y1=pop();
x1=pop();
y0=pop();
x0=pop();
line(x0, y0, x1, y1);
}
void xrect() {
short x0, y0, x1, y1;
nexttoken();
parsenarguments(4);
if (er != 0) return;
y1=pop();
x1=pop();
y0=pop();
x0=pop();
rect(x0, y0, x1, y1);
}
void xcircle() {
short x0, y0, r;
nexttoken();
parsenarguments(3);
if (er != 0) return;
r=pop();
y0=pop();
x0=pop();
circle(x0, y0, r);
}
void xfrect() {
short x0, y0, x1, y1;
nexttoken();
parsenarguments(4);
if (er != 0) return;
y1=pop();
x1=pop();
y0=pop();
x0=pop();
frect(x0, y0, x1, y1);
}
void xfcircle() {
short x0, y0, r;
nexttoken();
parsenarguments(3);
if (er != 0) return;
r=pop();
y0=pop();
x0=pop();
fcircle(x0, y0, r);
}
#endif
#ifdef HASDARKARTS
/*
* MALLOC allocates a chunk of memory
*/
void xmalloc() {
address_t s;
address_t a;
s=popaddress();
a=popaddress();
if (er != 0) return;
push(bmalloc(TBUFFER, a%256, a/256, s));
}
/*
* FIND an object on the heap
* xfind can find things in the variable name space and the buffer space
*/
void xfind() {
address_t a;
address_t n;
/* is there a ( */
if (!expect('(', EUNKNOWN)) return;
/* after that, try to find the object on the heap */
nexttoken();
a=bfind(token, xc, yc);
/* depending on the object, interpret the result */
switch (token) {
case ARRAYVAR:
if (!expect('(', EUNKNOWN)) return;
if (!expect(')', EUNKNOWN)) return;
case VARIABLE:
case STRINGVAR:
nexttoken();
break;
default:
expression(); /* do not use expectexpr here because of the token sequence */
if (er != 0) return;
n=popaddress();
if (er != 0) return;
a=bfind(TBUFFER, n%256, n/256);
}
/* closing braket, dont use expect here because of the token sequence */
if (token != ')') { error(EUNKNOWN); return; }
push(a);
}
/*
* EVAL can modify a program, there are serious side effects
* which are not caught (and cannot be). All FOR loops and RETURN
* vectors break if EVAL inserts in their range
*/
void xeval(){
address_t i, l;
address_t mline, line;
/* get the line number to store */
if (!expectexpr()) return;
line=popaddress();
if (er != 0) return;
if (token != ',') {
error(EUNKNOWN);
return;
}
/* the line to be stored */
nexttoken();
if (!stringvalue()) {
error(EARGS); return;
}
/* here we have the string to evaluate in ir2 and copy it to the ibuffer
only one line allowed, BUFSIZE is the limit */
l=popaddress();
if (er != 0) return;
if (l>BUFSIZE-1) {error(EORANGE); return; }
for (i=0; i<l; i++) ibuffer[i+1]=ir2[i];
ibuffer[l+1]=0;
if (DEBUG) {outsc("** Preparing to store line "); outnumber(line); outspc(); outsc(ibuffer+1); outcr(); }
/* we find the line we are currently at */
if (st != SINT) {
mline=myline(here);
if (DEBUG) {outsc("** myline is "); outnumber(mline); outcr(); }
}
/* go to interactive mode and try to store the line */
ax=line; // the linennumber
push(st); st=SINT; // go to (fake) interactive mode
bi=ibuffer; // go to the beginning of the line
storeline(); // try to store it
st=pop(); // go back to run mode
/* find my line - side effects not checked here */
if (st != SINT) {
findline(mline);
nextline();
}
}
#endif
#ifdef HASIOT
/*
* AVAIL of a stream - are there characters in the stream
*/
void xavail() {
mem_t oid=id;
id=popaddress();
if (er != 0) return;
push(availch());
id=oid;
}
/*
* IoT functions - sensor reader, experimentral
*/
void xfsensor() {
short s, a;
a=pop();
s=pop();
push(sensorread(s, a));
}
/*
* Going to sleep for battery saving - implemented for ESP8266 and ESP32
* in hardware-*.h
*/
void xsleep() {
nexttoken();
parsenarguments(1);
if (er != 0) return;
activatesleep(pop());
}
/*
* single byte wire access - keep it simple
*/
void xwire() {
short port, data1, data2;
nexttoken();
#ifdef HASWIRE
parsearguments();
if (er != 0) return;
if (args == 3) {
data2=pop();
data1=pop();
port=pop();
wirewriteword(port, data1, data2);
} else if (args == 2) {
data1=pop();
port=pop();
wirewritebyte(port, data1);
} else {
error(EARGS);
return;
}
#endif
}
void xfwire() {
#ifdef HASWIRE
push(wirereadbyte(pop()));
#else
#endif
}
#endif
/*
* Error handling function, should not be in IOT but currently is
*/
#ifdef HASERRORHANDLING
void xerror() {
berrorh.type=0;
erh=0;
nexttoken();
switch (token) {
case TGOTO:
if (!expectexpr()) return;
berrorh.type=TGOTO;
berrorh.linenumber=pop();
break;
case TCONT:
berrorh.type=TCONT;
case TSTOP:
nexttoken();
break;
default:
error(EARGS);
return;
}
}
#endif
/*
* After and every trigger timing GOSUBS and GOTOS
*/
#ifdef HASTIMER
void resettimer(btimer_t* t) {
t->enabled=0;
t->interval=0;
t->last=0;
t->type=0;
t->linenumber=0;
}
void xtimer() {
token_t t;
btimer_t* timer;
/* do we deal with every or after */
if (token == TEVERY) timer=&every_timer; else timer=&after_timer;
/* one argument expected, the time intervall */
if (!expectexpr()) return;
/* after that, a command GOTO or GOSUB with a line number
more commands thinkable */
switch(token) {
case TGOSUB:
case TGOTO:
t=token;
if (!expectexpr()) return;
timer->last=millis();
timer->type=t;
timer->linenumber=pop();
timer->interval=pop();
timer->enabled=1;
break;
default:
if (termsymbol()) {
x=pop();
if (x == 0)
timer->enabled=0;
else {
if (timer->linenumber) {
timer->enabled=1;
timer->interval=x;
timer->last=millis();
} else
error(EARGS);
}
} else
error(EUNKNOWN);
return;
}
}
#endif
#ifdef HASEVENTS
/* the event BASIC commands */
void initevents() {
int i;
for(i=0; i<EVENTLISTSIZE; i++) eventlist[i].pin=-1;
}
void xevent() {
mem_t pin, mode;
mem_t type=0;
address_t line=0;
/* in this version two arguments are neded, one is the pin, the second the mode */
nexttoken();
/* debug code, display the event list */
if (termsymbol()) {
for (ax=0; ax<EVENTLISTSIZE; ax++) {
if (eventlist[ax].pin >= 0) {
outnumber(eventlist[ax].pin); outspc();
outnumber(eventlist[ax].mode); outspc();
outnumber(eventlist[ax].type); outspc();
outnumber(eventlist[ax].linenumber); outspc();
outcr();
}
}
outnumber(nevents); outcr();
nexttoken();
return;
}
/* control of events */
if (token == TSTOP) {
events_enabled=0;
nexttoken();
return;
}
if (token == TCONT) {
events_enabled=1;
nexttoken();
return;
}
/* argument parsing */
parsearguments();
if (er != 0) return;
switch(args) {
case 2:
mode=pop();
if (mode > 3) {
error(EARGS);
return;
}
case 1:
pin=pop();
break;
default:
error(EARGS);
}
/* followed by termsymbol, GOTO or GOSUB */
if (token == TGOTO || token == TGOSUB) {
type=token;
/* which line to go to */
if (!expectexpr()) return;
line=pop();
}
/* all done either set the interrupt up or delete it*/
if (type) {
if (!addevent(pin, mode, type, line)) {
error(EARGS);
return;
}
} else {
disableevent(pin);
deleteevent(pin);
return;
}
/* enable the interrupt */
if (!enableevent(pin)) {
deleteevent(pin);
error(EARGS);
return;
}
}
/* handling the event list */
mem_t addevent(mem_t pin, mem_t mode, mem_t type, address_t linenumber) {
int i;
/* is the event already there */
for (i=0; i<EVENTLISTSIZE; i++)
if (pin == eventlist[i].pin) goto slotfound;
/* if not, look for a free slot */
if (nevents >= EVENTLISTSIZE) return 0;
for (i=0; i<EVENTLISTSIZE; i++)
if (eventlist[i].pin == -1) goto slotfound;
/* no free event slot */
return 0;
/* we have a slot */
slotfound:
eventlist[i].enabled=0;
eventlist[i].pin=pin;
eventlist[i].mode=mode;
eventlist[i].type=type;
eventlist[i].linenumber=linenumber;
eventlist[i].active=0;
nevents++;
return 1;
}
void deleteevent(mem_t pin) {
int i;
/* do we have the event? */
i=eventindex(pin);
if (i>=0){
eventlist[i].enabled=0;
eventlist[i].pin=-1;
eventlist[i].mode=0;
eventlist[i].type=0;
eventlist[i].linenumber=0;
eventlist[i].active=0;
nevents--;
}
}
mem_t eventindex(mem_t pin) {
int i;
for(i=0; i<EVENTLISTSIZE; i++ ) if (eventlist[i].pin == pin) return i;
return -1;
}
#endif
/*
* BASIC DOS - disk access programs, to control mass storage from BASIC
*/
// string match helper in catalog
char streq(const char *s, char *m){
short i=0;
while (m[i]!=0 && s[i]!=0 && i < SBUFSIZE){
if (s[i] != m[i]) return 0;
i++;
}
return 1;
}
/*
* CATALOG - basic directory function
*/
void xcatalog() {
#if defined(FILESYSTEMDRIVER)
char filename[SBUFSIZE];
const char *name;
nexttoken();
getfilename(filename, 0);
if (er != 0) return;
rootopen();
while (rootnextfile()) {
if (rootisfile()) {
name=rootfilename();
if (*name != '_' && *name !='.' && streq(name, filename)){
outscf(name, 14); outspc();
if (rootfilesize()>0) outnumber(rootfilesize());
outcr();
if ( dspwaitonscroll() == 27 ) break;
}
}
rootfileclose();
}
rootclose();
#else
nexttoken();
#endif
}
/*
* DELETE a file
*/
void xdelete() {
#if defined(FILESYSTEMDRIVER)
char filename[SBUFSIZE];
nexttoken();
getfilename(filename, 0);
if (er != 0) return;
removefile(filename);
#else
nexttoken();
#endif
}
/*
* OPEN a file or I/O stream - very raw mix of different functions
*/
void xopen() {
#if defined(FILESYSTEMDRIVER) || defined(ARDUINORF24) || defined(ARDUINOMQTT) || (defined(HASWIRE) && defined(HASFILEIO))
char stream = IFILE; // default is file operation
char filename[SBUFSIZE];
int mode;
/* which stream do we open? default is FILE */
nexttoken();
if (token == '&') {
if (!expectexpr()) return;
stream=pop();
if (token != ',') {error(EUNKNOWN); return; }
nexttoken();
}
/* the filename and its length */
getfilename(filename, 0);
if (er != 0) return;
/* and the arguments */
args=0;
if (token == ',') {
nexttoken();
parsearguments();
}
/* getting an argument, no argument is read, i.e. mode 0 */
if (args == 0 ) {
mode=0;
} else if (args == 1) {
mode=pop();
} else {
error(EARGS);
return;
}
switch(stream) {
#ifdef ARDUINOPRT
case ISERIAL1:
prtclose();
if (mode == 0) mode=9600;
if (prtopen(filename, mode)) ert=0; else ert=1;
break;
#endif
#ifdef FILESYSTEMDRIVER
case IFILE:
switch (mode) {
case 1:
ofileclose();
if (ofileopen(filename, "w")) ert=0; else ert=1;
break;
case 2:
ofileclose();
if (ofileopen(filename, "a")) ert=0; else ert=1;
break;
default:
case 0:
ifileclose();
if (ifileopen(filename)) ert=0; else ert=1;
break;
}
break;
#endif
#ifdef ARDUINORF24
case IRADIO:
if (mode == 0) {
iradioopen(filename);
} else if (mode == 1) {
oradioopen(filename);
}
break;
#endif
#if (defined(HASWIRE) && defined(HASFILEIO))
case IWIRE:
wireopen(filename[0], mode);
break;
#endif
#ifdef ARDUINOMQTT
case IMQTT:
if (mode == 0) {
mqttsubscribe(filename);
} else if (mode == 1) {
mqttsettopic(filename);
}
break;
#endif
default:
error(EORANGE);
return;
}
#endif
nexttoken();
}
/*
* OPEN as a function, currently only implemented for MQTT
*/
void xfopen() {
short chan = pop();
if (chan == 9) push(mqttstate()); else push(0);
}
/*
* CLOSE a file or stream
*/
void xclose() {
#if defined(FILESYSTEMDRIVER) || defined(ARDUINORF24) || defined(ARDUINOMQTT) || (defined(HASWIRE) && defined(HASFILEIO))
char stream = IFILE;
char mode;
nexttoken();
if (token == '&') {
if (!expectexpr()) return;
stream=pop();
if (token != ',' && ! termsymbol()) {error(EUNKNOWN); return; }
nexttoken();
}
parsearguments();
if (args == 0) {
mode=0;
} else if (args == 1) {
mode=pop();
} else {
error(EARGS);
return;
}
switch(stream) {
case IFILE:
if (mode == 1 || mode == 2) ofileclose(); else if (mode == 0) ifileclose();
break;
}
#endif
nexttoken();
}
/*
* FDISK - format internal disk storages of RP2040, ESP and the like
*/
void xfdisk() {
#if defined(FILESYSTEMDRIVER)
nexttoken();
parsearguments();
if (er != 0) return;
if (args > 1) error(EORANGE);
if (args == 0) push(0);
outsc("Format disk (y/N)?");
consins(sbuffer, SBUFSIZE);
if (sbuffer[1] == 'y') formatdisk(pop());
#endif
nexttoken();
}
#ifdef HASSTEFANSEXT
/*
* USR low level function access of the interpreter
* for each group of functions there is a call vector
* and and argument.
*
* USR arguments from 0 to 31 are reserved for the
* interpreter status and the input output stream
* mechanisms. All other values are free and can be used
* for individual functions - see case 32 for an example.
*/
void xusr() {
address_t fn;
number_t v;
int arg;
address_t a;
v=pop();
arg=(int)v; /* a bit paranoid here */
fn=pop();
switch(fn) {
/* USR(0,y) delivers all the internal constants and variables or the interpreter */
case 0:
switch(arg) {
case 0: push(bsystype); break;
case 1: /* language set identifier, odd because USR is part of STEFANSEXT*/
a=0;
#ifdef HASAPPLE1
a|=1;
#endif
#ifdef HASARDUINOIO
a|=2;
#endif
#ifdef HASFILEIO
a|=4;
#endif
#ifdef HASDARTMOUTH
a|=8;
#endif
#ifdef HASGRAPH
a|=16;
#endif
#ifdef HASDARKARTS
a|=32;
#endif
#ifdef HASIOT
a|=64;
#endif
push(a);
break;
case 2: push(0); break; /* reserved for system speed identifier */
#ifdef HASFLOAT
case 3: push(-1); break;
#else
case 3: push(0); break;
#endif
case 4: push(numsize); break;
case 5: push(maxnum); break;
case 6: push(addrsize); break;
case 7: push(maxaddr); break;
case 8: push(strindexsize); break;
case 9: push(memsize+1); break;
case 10: push(elength()); break;
case 11: push(GOSUBDEPTH); break;
case 12: push(FORDEPTH); break;
case 13: push(STACKSIZE); break;
case 14: push(BUFSIZE); break;
case 15: push(SBUFSIZE); break;
case 16: push(ARRAYSIZEDEF); break;
case 17: push(STRSIZEDEF); break;
/* - 24 reserved, don't use */
case 24: push(top); break;
case 25: push(here); break;
case 26: push(himem); break;
case 27: push(nvars); break;
case 28: push(freeRam()); break;
case 29: push(gosubsp); break;
case 30: push(forsp); break;
case 31: push(0); break; /* fnc removed as interpreter variable */
case 32: push(sp); break;
#ifdef HASDARTMOUTH
case 33: push(data); break;
#else
case 33: push(0); break;
#endif
case 34: push(0); break;
/* - 48 reserved, don't use */
case 48: push(id); break;
case 49: push(idd); break;
case 50: push(od); break;
case 51: push(odd); break;
default: push(0);
}
break;
/* access to properties of stream 1 - serial */
case 1:
push(serialstat(arg));
break;
/* access to properties of stream 2 - display and keyboard */
case 2:
#if defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
push(dspstat(arg));
#elif defined(ARDUINOVGA)
push(vgastat(arg));
#else
push(0);
#endif
break;
/* access to properties of stream 4 - printer */
#ifdef ARDUINOPRT
case 4:
push(prtstat(arg));
break;
#endif
/* access to properties of stream 7 - wire */
#if (defined(HASWIRE) && defined(HASFILEIO))
case 7:
push(wirestat(arg));
break;
#endif
/* access to properties of stream 8 - radio */
#ifdef ARDUINORF24
case 8:
push(radiostat(arg));
break;
#endif
/* access to properties of stream 9 - mqtt */
#ifdef ARDUINOMQTT
case 9:
push(mqttstat(arg));
break;
#endif
/* access to properties of stream 16 - file */
#ifdef FILESYSTEMDRIVER
case 16:
push(fsstat(arg));
break;
#endif
case 32:
/* user function 32 and beyond can be used freely */
/* all USR values not assigned return 0 */
default:
if (fn>31) push(usrfunction(fn, v)); else push(0);
}
}
#endif
/*
* CALL currently only to exit the interpreter
*/
void xcall() {
int r;
if (!expectexpr()) return;
r=pop();
switch(r) {
case 0:
/* flush the EEPROM dummy and the output file and then exit */
eflush();
ofileclose();
#if defined(POSIXFRAMEBUFFER)
vgaend(); /* clean up if you have played with the framebuffer */
#endif
restartsystem();
break;
/* restart the filesystem - only test code */
case 1:
fsbegin(1);
break;
/* call values to 31 reserved! */
default:
/* your custom code into usrcall() */
if (r > 31) usrcall(r); else { error(EORANGE); return; }
nexttoken();
return;
}
}
/* the dartmouth stuff */
#ifdef HASDARTMOUTH
/*
* DATA is simply skipped when encountered as a command
*/
void xdata() {
while (!termsymbol()) nexttoken();
}
/*
* for READ find the next data record, helper of READ
*/
#define DEBUG 0
void nextdatarecord() {
address_t h;
mem_t s=1;
/* save the location of the interpreter */
h=here;
/* data at zero means we need to init it, by searching the first data record */
if (data == 0) {
here=0;
while (here<top && token!=TDATA) gettoken();
data=here;
datarc=1;
}
processdata:
/*
* data at top means we have exhausted all data,
* nothing more to be done here, however we simulate
* a number value of 0 here and don't throw an error
* this is not Dartmouth style, more consistent with
* iterables
*/
if (data == top) {
token=NUMBER;
x=0;
ert=1;
here=h;
return;
}
/* we process the data record by setting the here pointer to data and search with gettoken */
here=data;
gettoken();
if (token == '-') {s=-1; gettoken();}
if (token == NUMBER || token == STRING) goto enddatarecord;
if (token == ',') {
gettoken();
if (token == '-') {s=-1; gettoken();}
if (token != NUMBER && token != STRING) {
error(EUNKNOWN);
here=h;
return;
}
goto enddatarecord;
}
if (termsymbol()) {
while (here<top && token!=TDATA) gettoken();
data=here;
goto processdata;
}
if (DEBUG) { outsc("** error in nextdata after termsymbol "); outnumber(data); outcr(); }
error(EUNKNOWN);
enddatarecord:
if (token == NUMBER && s == -1) { x=-x; s=1; }
data=here;
datarc++;
here=h;
if (DEBUG) {
outsc("** leaving nextdata with data and here ");
outnumber(data); outspc();
outnumber(here); outcr();
}
}
#define DEBUG 0
/*
* READ - find data records and insert them to variables
*/
void xread(){
token_t t, t0; /* remember the left hand side token until the end of the statement, type of the lhs */
mem_t ps=1; /* also remember if the left hand side is a pure string of something with an index */
mem_t xcl, ycl; /* to preserve the left hand side variable names */
address_t i=1; /* and the beginning of the destination string */
address_t i2=0; /* and the end of the destination string */
address_t j=arraylimit; /* the second dimension of the array if needed */
mem_t datat; /* the type of the data element */
address_t lendest, lensource, newlength;
int k;
nextdata:
/* look for the variable */
nexttoken();
/* this code evaluates the left hand side - remember type and name */
ycl=yc;
xcl=xc;
t=token;
if (DEBUG) {outsc("assigning to variable "); outch(xcl); outch(ycl); outsc(" type "); outnumber(t); outcr();}
/* find the indices and draw the next token of read */
lefthandside(&i, &i2, &j, &ps);
if (er != 0) return;
/* if the token after lhs is not a termsymbol or a comma, something is wrong */
if (!termsymbol() && token != ',') { error(EUNKNOWN); return; }
/* remember the token we have draw from the stream */
t0=token;
/* find the data and assign */
nextdatarecord();
if (er != 0) return;
/* assign the value to the lhs - redundant code to assignment */
switch (token) {
case NUMBER:
/* a number is stored on the stack */
push(x);
assignnumber(t, xcl, ycl, i, j, ps);
break;
case STRING:
if (t != STRINGVAR) {
/* we read a string into a numerical variable */
push(*ir);
assignnumber(t, xcl, ycl, i, j, ps);
} else {
/* a string is stored in ir2 */
ir2=ir;
lensource=x;
/* if we use the memory interface we have to save the source */
#ifdef USEMEMINTERFACE
for(k=0; k<SPIRAMSBSIZE; k++) spistrbuf2[k]=ir2[k];
ir2=spistrbuf2;
#endif
/* the destination address of the lefthandside, on the fly create included */
ir=getstring(xcl, ycl, i, j);
if (er != 0) return;
/* the length of the lefthandside string */
lendest=lenstring(xcl, ycl, j);
if (DEBUG) {
outsc("* read stringcode "); outch(xcl); outch(ycl); outcr();
outsc("** read source string length "); outnumber(lensource); outcr();
outsc("** read dest string length "); outnumber(lendest); outcr();
outsc("** read dest string dimension "); outnumber(stringdim(xcl, ycl)); outcr();
}
/* does the source string fit into the destination */
if ((i+lensource-1) > stringdim(xcl, ycl)) { error(EORANGE); return; }
/* this code is needed to make sure we can copy one string to the same string
without overwriting stuff, we go either left to right or backwards */
#ifndef USEMEMINTERFACE
if (x > i)
for (k=0; k<lensource; k++) { ir[k]=ir2[k];}
else
for (k=lensource-1; k>=0; k--) ir[k]=ir2[k];
#else
/* on an SPIRAM system we need to go through the mem interface
for write */
if (ir != 0) {
if (x > i)
for (k=0; k<lensource; k++) ir[k]=ir2[k];
else
for (k=lensource-1; k>=0; k--) ir[k]=ir2[k];
} else
for (k=0; k<lensource; k++) memwrite2(ax+k, ir2[k]);
#endif
/* classical Apple 1 behaviour is string truncation in substring logic */
newlength = i+lensource-1;
setstringlength(xcl, ycl, newlength, j);
}
break;
default:
error(EUNKNOWN);
return;
}
/* next list item */
if (t0 == ',') goto nextdata;
/* no nexttoken here as we have already a termsymbol */
if (DEBUG) {
outsc("** leaving xread with "); outnumber(token); outcr();
outsc("** at here "); outnumber(here); outcr();
outsc("** and data pointer "); outnumber(data); outcr();
}
/* restore the token for further processing */
token=t0;
}
/*
* RESTORE sets the data pointer to zero right now
*/
void xrestore(){
short rec;
nexttoken();
/* a plain restore */
if (termsymbol()) {
data=0;
datarc=1;
return;
}
/* something with an argument */
expression();
if (er != 0) return;
/* we search a record */
rec=pop();
/* if we need to search backward, back to the beginning */
if (rec < datarc) {
data=0;
datarc=1;
}
/* advance to the record or top */
while (datarc < rec && data < top) nextdatarecord();
/* token is poisoned after nextdatarecord, need to cure this here */
nexttoken();
}
/*
* DEF a function, functions are tokenized as FN Arrayvar
*/
void xdef(){
mem_t xcl1, ycl1, xcl2, ycl2;
address_t a;
/* do we define a function */
if (!expect(TFN, EUNKNOWN)) return;
/* the name of the function, it is tokenized as an array */
if (!expect(ARRAYVAR, EUNKNOWN)) return;
xcl1=xc;
ycl1=yc;
/* the argument variable */
if (!expect('(', EUNKNOWN)) return;
if (!expect(VARIABLE, EUNKNOWN)) return;
xcl2=xc;
ycl2=yc;
if (!expect(')', EUNKNOWN)) return;
/* the assignment */
if (!expect('=', EUNKNOWN)) return;
/* ready to store the function */
if (DEBUG) {
outsc("** DEF FN with function ");
outch(xcl1); outch(ycl1);
outsc(" and argument ");
outch(xcl2); outch(ycl2);
outsc(" at here ");
outnumber(here);
outcr();
}
/* find the function */
if ((a=bfind(TFN, xcl1, ycl1))==0) a=bmalloc(TFN, xcl1, ycl1, 0);
if (DEBUG) {outsc("** found function structure at "); outnumber(a); outcr(); }
/* store the payload - the here address - and the name of the variable */
z.a=here;
setnumber(a, addrsize);
memwrite2(a+addrsize, xcl2);
memwrite2(a+addrsize+1, ycl2);
/* skip whatever comes next */
while (!termsymbol()) nexttoken();
}
/*
* FN function evaluation
*/
void xfn() {
char fxc, fyc;
char vxc, vyc;
address_t a;
address_t h1, h2;
number_t xt;
/* the name of the function */
if (!expect(ARRAYVAR, EUNKNOWN)) return;
fxc=xc;
fyc=yc;
/* and the argument */
nexttoken();
if (token != '(') {error(EUNKNOWN); return; }
nexttoken();
expression();
if (er != 0) return;
if (token != ')') {error(EUNKNOWN); return; }
/* find the function structure and retrieve the payload */
if ((a=bfind(TFN, fxc, fyc))==0) {error(EUNKNOWN); return; }
getnumber(a, addrsize);
h1=z.a;
vxc=memread2(a+addrsize);
vyc=memread2(a+addrsize+1);
/* remember the original value of the variable and set it */
xt=getvar(vxc, vyc);
if (DEBUG) {outsc("** saving the original running var "); outch(vxc); outch(vyc); outspc(); outnumber(xt); outcr();}
setvar(vxc, vyc, pop());
/* store here and then evaluate the function */
h2=here;
here=h1;
if (DEBUG) {outsc("** evaluating expressing at "); outnumber(here); outcr(); }
if (!expectexpr()) return;
/* restore everything */
here=h2;
setvar(vxc, vyc, xt);
/* no nexttoken as this is called in factor during expectexpr() !! */
}
/*
* ON is a bit like IF
*/
void xon(){
number_t cr, tmp;
int ci;
token_t t;
int line = 0;
if(!expectexpr()) return;
/* the result of the condition, can be any number
even large */
cr=pop();
if (DEBUG) { outsc("** in on condition found "); outnumber(cr); outcr(); }
/* is there a goto or gosub */
if (token != TGOSUB && token != TGOTO) {
error(EUNKNOWN);
return;
}
/* remember if we do gosub or goto */
t=token;
/* how many arguments have we got here */
nexttoken();
parsearguments();
if (er != 0) return;
if (args == 0) { error(EARGS); return; }
/* do we have more arguments then the condition? */
if (cr > args && cr <= 0) ci=0; else ci=(int)cr;
/* now find the line to jump to and clean the stack, reuse cr
* we need to clean the stack here completely, therefore complete the loop
* ERROR handling is needed for the trapping mechanism. No using popaddress()
* here, because of the needed stack cleanup. Unclear is this precaution is
* really needed.
*/
while (args) {
tmp=pop();
if (args == ci) {
if (tmp < 0) er=ELINE;
line=tmp;
}
args--;
}
if (er) return;
if (DEBUG) { outsc("** in on found line as target "); outnumber(line); outcr(); }
/* no line found to jump to */
if (line == 0) {
nexttoken();
return;
}
/* prepare for the jump */
if (t == TGOSUB) pushgosubstack(0);
if (er != 0) return;
findline(line);
if (er != 0) return;
/* goto in interactive mode switched to RUN mode
no clearing of variables and stacks */
if (st == SINT) st=SRUN;
/* removed to avoid blocking in AFTER, EVERY and EVENT infinite loops */
/* nexttoken(); */
}
#endif
/* the structured BASIC extensions, WHILE, UNTIL, and SWITCH */
#ifdef HASSTRUCT
void xwhile() {
/* what? */
if (DEBUG) { outsc("** in while "); outnumber(here); outspc(); outnumber(token); outcr(); }
/* interactively we need to save the buffer location */
if (st == SINT) here=bi-ibuffer;
/* save the current location and token type, here points to the condition */
pushforstack();
/* is there a valid condition */
if (!expectexpr()) return;
/* if false, seek WEND and clear the stack*/
if (!pop()) {
popforstack();
if (st == SINT) bi=ibuffer+here;
findbraket(TWHILE, TWEND);
nexttoken();
}
}
void xwend() {
/* remember where we are */
pushlocation();
/* back to the condition */
popforstack();
if (er != 0) return;
/* interactive run */
if (st == SINT) bi=ibuffer+here;
/* is this a while loop */
if (token != TWHILE ) {
error(TWEND);
return;
}
/* run the loop again - same code as xwhile */
if (st == SINT) here=bi-ibuffer;
pushforstack();
/* is there a valid condition */
if (!expectexpr()) return;
/* if false, seek WEND */
if (!pop()) {
popforstack();
poplocation();
nexttoken();
}
}
void xrepeat() {
/* what? */
if (DEBUG) { outsc("** in repeat "); outnumber(here); outspc(); outnumber(token); outcr(); }
/* interactively we need to save the buffer location */
if (st == SINT) here=bi-ibuffer;
/* save the current location and token type, here points statement after repeat */
pushforstack();
/* we are done here */
nexttoken();
}
void xuntil() {
/* is there a valid condition */
if (!expectexpr()) return;
/* remember the location */
pushlocation();
/* look on the stack */
popforstack();
if (er != 0) return;
/* if false, go back to the repeat */
if (!pop()) {
/* the right loop type ? */
if (token != TREPEAT) {
error(TUNTIL);
return;
}
/* correct for interactive */
if (st == SINT) bi=ibuffer+here;
/* write the stack back if we continue looping */
pushforstack();
} else {
/* back to where we were */
poplocation();
}
nexttoken(); /* a bit of evil here, hobling over termsymbols */
}
void xswitch() {
number_t r;
mem_t match = 0;
mem_t swcount = 0;
/* lets look at the condition */
if (!expectexpr()) return;
r=pop();
/* remember where we are */
pushlocation();
/* seek the first case to match the condition */
while (token != EOL) {
if (token == TSWEND) break;
/* nested SWITCH - skip them all*/
if (token == TSWITCH) {
if (DEBUG) { outsc("** in SWITCH - nesting found "); outcr(); }
nexttoken();
findbraket(TSWITCH, TSWEND);
if (DEBUG) { outsc("** in SWITCH SWEND found at "); outnumber(here); outcr(); }
if (er != 0) return;
}
/* a true case */
if (token == TCASE) {
/* more sophisticated, case can have an argument list */
nexttoken();
parsearguments();
if (DEBUG) { outsc("** in CASE found "); outnumber(args); outsc(" arguments"); outcr(); }
if (er != 0) return;
if (args == 0) {
error(TCASE);
return;
}
while (args > 0) {
if (pop() == r) match=1;
args--;
}
if (match) {
return;
}
}
nexttoken();
}
/* return to the original location and continue if no case is found */
poplocation();
}
/* a nacked case statement always seeks the end of the switch */
void xcase() {
while (token != EOL) {
nexttoken();
if (token == TSWEND) break;
/* broken if switch is nested deeper then once, need the braket mechanism here */
/*
if (token == TSWITCH) {
nexttoken();
findbraket(TSWITCH, TSWEND);
}
*/
}
}
#endif
/*
* statement processes an entire basic statement until the end
* of the line.
*
* The statement loop is a bit odd and requires some explanation.
* A statement function called in the central switch here must either
* call nexttoken as its last action to feed the loop with a new token
* and then break or it must return which means that the rest of the
* line is ignored. A function that doesn't call nexttoken and just
* breaks causes an infinite loop.
*
* statement is called once in interactive mode and terminates
* at end of a line.
*/
void statement(){
if (DEBUG) bdebug("statement \n");
while (token != EOL) {
#ifdef HASSTEFANSEXT
/* debug level 1 happens only in the statement loop */
if (debuglevel == 1) { debugtoken(); outcr(); }
#endif
switch(token){
case ':':
case LINENUMBER:
nexttoken();
break;
/* Palo Alto BASIC language set + BREAK */
case TPRINT:
xprint();
break;
case TLET:
nexttoken();
if ((token != ARRAYVAR) && (token != STRINGVAR) && (token != VARIABLE)) {
error(EUNKNOWN);
break;
}
case STRINGVAR:
case ARRAYVAR:
case VARIABLE:
assignment();
break;
case TINPUT:
xinput();
break;
case TRETURN:
xreturn();
break;
case TGOSUB:
case TGOTO:
xgoto();
break;
case TIF:
xif();
break;
case TFOR:
xfor();
break;
case TNEXT:
xnext();
break;
case TBREAK:
xbreak();
break;
case TSTOP:
case TEND: /* return here because new input is needed, end as a block end is handles elsewhere */
*ibuffer=0; /* clear ibuffer - this is a hack */
st=SINT; /* switch to interactive mode */
eflush(); /* if there is an EEPROM dummy, flush it here (protects flash storage!) */
ofileclose();
return;
case TLIST:
xlist();
break;
case TNEW: /* return here because new input is needed */
xnew();
return;
case TCONT: /* cont behaves differently in interactive and in run mode */
if (st==SRUN || st==SERUN) {
xcont();
break;
} /* no break here, because interactively CONT=RUN minus CLR */
case TRUN:
xrun();
return;
case TREM:
xrem();
break;
/* Apple 1 language set */
#ifdef HASAPPLE1
case TDIM:
xdim();
break;
case TCLR:
xclr();
break;
case TTAB:
xtab();
break;
case TPOKE:
xpoke();
break;
#endif
/* Stefan's tinybasic additions */
case TSAVE:
xsave();
break;
case TLOAD:
xload(0);
if (st == SINT) return; /* interactive load doesn't like break as the ibuffer is messed up; */
else break;
#ifdef HASSTEFANSEXT
case TDUMP:
xdump();
break;
case TGET:
xget();
break;
case TPUT:
xput();
break;
case TSET:
xset();
break;
case TNETSTAT:
xnetstat();
break;
case TCLS:
xc=od;
/* if we have a display it is the default for CLS */
#if defined(DISPLAYDRIVER) || defined(GRAPHDISPLAYDRIVER)
od=ODSP;
#endif
outch(12);
od=xc;
nexttoken();
break;
case TLOCATE:
xlocate();
break;
/* low level functions as part of Stefan's extension */
case TCALL:
xcall();
break;
#endif
/* Arduino IO */
#ifdef HASARDUINOIO
case TDWRITE:
xdwrite();
break;
case TAWRITE:
xawrite();
break;
case TPINM:
xpinm();
break;
case TDELAY:
xdelay();
break;
#ifdef HASTONE
case TTONE:
xtone();
break;
#endif
#ifdef HASPULSE
case TPULSE:
xpulse();
break;
#endif
#endif
/* BASIC DOS function */
#ifdef HASFILEIO
case TCATALOG:
xcatalog();
break;
case TDELETE:
xdelete();
break;
case TOPEN:
xopen();
break;
case TCLOSE:
xclose();
break;
case TFDISK:
xfdisk();
break;
#endif
/* graphics */
#ifdef HASGRAPH
case TCOLOR:
xcolor();
break;
case TPLOT:
xplot();
break;
case TLINE:
xline();
break;
case TRECT:
xrect();
break;
case TCIRCLE:
xcircle();
break;
case TFRECT:
xfrect();
break;
case TFCIRCLE:
xfcircle();
break;
#endif
#ifdef HASDARTMOUTH
case TDATA:
xdata();
break;
case TREAD:
xread();
break;
case TRESTORE:
xrestore();
break;
case TDEF:
xdef();
break;
case TON:
xon();
break;
#endif
#ifdef HASSTEFANSEXT
case TELSE:
xelse();
break;
#endif
#ifdef HASDARKARTS
case TEVAL:
xeval();
break;
#endif
#ifdef HASERRORHANDLING
case TERROR:
xerror();
break;
#endif
#ifdef HASIOT
case TSLEEP:
xsleep();
break;
case TWIRE:
xwire();
break;
#endif
#ifdef HASTIMER
case TAFTER:
case TEVERY:
xtimer();
break;
#endif
#ifdef HASEVENTS
case TEVENT:
xevent();
break;
#endif
#ifdef HASSTRUCT
case TWHILE:
xwhile();
break;
case TWEND:
xwend();
break;
case TREPEAT:
xrepeat();
break;
case TUNTIL:
xuntil();
break;
case TSWITCH:
xswitch();
break;
case TCASE:
xcase();
break;
case TSWEND:
case TDO:
case TDEND:
nexttoken();
break;
#endif
default:
/* strict syntax checking */
error(EUNKNOWN);
return;
}
/*
* after each statement we check on a break character
* on an Arduino entering "#" at runtime stops the program
* for POSIXNONBLOCKING we do this in the background loop
* to avoid slowing down
*/
#if defined(BREAKCHAR)
#ifndef POSIXNONBLOCKING
if (checkch() == BREAKCHAR) {
st=SINT;
if (od == 1) serialflush(); else xc=inch();
return;
}
#else
if (breakcondition) {
breakcondition=0;
st=SINT;
if (od == 1) serialflush(); else xc=inch();
return;
}
#endif
#endif
/* and after each statement, check the break pin */
#if defined(BREAKPIN) && ( defined(ARDUINO) || defined(RASPPI) )
if (digitalRead(BREAKPIN) == 0) {
st=SINT;
return;
};
#endif
/* and then there is also signal handling on some platforms */
#if defined(POSIXSIGNALS)
if (breaksignal) {
st=SINT;
breaksignal=0;
serialflush();
outcr();
return;
}
#endif
/* yield after each statement which is a 10-100 microsecond cycle
on Arduinos and the like, all background tasks are handled in byield */
byield();
/* if error handling is compiled into the code, errors can be trapped here */
#ifdef HASERRORHANDLING
if (er) {
if (st != SINT) {
erh=er;
er=0;
switch(berrorh.type) {
case TCONT:
while(!termsymbol()) nexttoken();
break;
case TGOTO:
findline(berrorh.linenumber);
berrorh.type=0;
berrorh.linenumber=0;
if (er) return;
break;
case 0:
return;
default:
nexttoken();
}
} else
return;
}
#else
/* when an error is encountered the statement loop is ended */
if (er) return;
#endif
/*
* if we run error free, interrupts and times can be processed
*
* We can savely interrupt and return only if here points either to
* a termsymbol : or LINENUMBER. NEXT is a special case. We need to
* catch this here because empty FOR loops never even have a termsymbol
* a : is swallowed after FOR.
*
*/
#ifdef HASTIMER
if ((token == LINENUMBER || token == ':' || token == TNEXT) && (st == SERUN || st == SRUN)) {
/* after is always processed before every */
if (after_timer.enabled) {
if (millis() > after_timer.last + after_timer.interval) {
after_timer.enabled=0;
if (after_timer.type == TGOSUB) {
if (token == TNEXT || token == ':') here--;
if (token == LINENUMBER) here-=(1+sizeof(address_t));
pushgosubstack(0);
}
findline(after_timer.linenumber);
if (er) return;
}
}
/* periodic events */
if (every_timer.enabled ) {
if (millis() > every_timer.last + every_timer.interval) {
every_timer.last=millis();
if (every_timer.type == TGOSUB) {
if (token == TNEXT || token == ':') here--;
if (token == LINENUMBER) here-=(1+sizeof(address_t));
pushgosubstack(0);
if (er != 0) return;
}
findline(every_timer.linenumber);
if (er != 0) return;
}
}
}
#endif
/* the branch code for interrupts, we round robin through the event list */
#ifdef HASEVENTS
if ((token == LINENUMBER || token == ':' || token == TNEXT) && (st == SERUN || st == SRUN)) {
/* interrupts */
if (events_enabled) {
for (ax=0; ax<EVENTLISTSIZE; ax++) {
if (eventlist[ievent].pin && eventlist[ievent].enabled && eventlist[ievent].active) {
if (eventlist[ievent].type == TGOSUB) {
if (token == TNEXT || token == ':') here--;
if (token == LINENUMBER) here-=(1+sizeof(address_t));
pushgosubstack(TEVENT);
if (er != 0) return;
}
findline(eventlist[ievent].linenumber);
if (er != 0) return;
eventlist[ievent].active=0;
enableevent(eventlist[ievent].pin); /* events are disabled in the interrupt function, here they are activated again */
events_enabled=0; /* once we have jumped, we keep the events in BASIC off until reenabled by the program*/
break;
}
ievent=(ievent+1)%EVENTLISTSIZE;
}
}
}
#endif
}
}
/*
* the setup routine - Arduino style
*/
void setup() {
/* start measureing time */
timeinit();
/* initialize the event system */
#ifdef HASEVENTS
initevents();
#endif
/* init all io functions */
ioinit();
/* setup for all non BASIC stuff */
bsetup();
/* get the BASIC memory, either as memory array with
ballocmem() or as an SPI serical memory */
#if (defined(SPIRAMINTERFACE) || defined(SPIRAMSIMULATOR)) && MEMSIZE == 0
himem=memsize=spirambegin();
#else
#if defined(EEPROMMEMINTERFACE)
/*
* for an EEPROMMEM system, the memory consists of the
* EEPROM from 0 to elength()-eheadersize and then the RAM.
*/
himem=memsize=ballocmem()+(elength()-eheadersize);
#else
himem=memsize=ballocmem();
#endif
#endif
#ifndef EEPROMMEMINTERFACE
/* be ready for a new program if we run on RAM*/
xnew();
#else
/* if we run on an EEPROM system, more work is needed */
if (eread(0) == 0 || eread(0) == 1) { /* have we stored a program and don't do new */
egetnumber(1, addrsize);
top=z.a;
resetbasicstate(); /* the little brother of new, reset the state but let the program memory be */
for (address_t a=elength(); a<memsize; a++) memwrite2(a, 0); /* clear the heap i.e. the basic RAM*/
} else {
eupdate(0, 0); /* now we have stored a program of length 0 */
z.a=0;
esetnumber(1, addrsize);
xnew();
}
#endif
/* check if there is something to autorun and prepare
the interpreter to got into autorun once loop is reached */
if (!autorun()) {
printmessage(MGREET); outspc();
printmessage(EOUTOFMEMORY); outspc();
outnumber(memsize+1); outspc();
outnumber(elength()); outcr();
}
/* activate the BREAKPIN */
#if defined(BREAKPIN) && ( defined(ARDUINO) || defined(RASPPI) )
pinMode(BREAKPIN, INPUT_PULLUP);
#endif
}
/*
* the loop routine for interactive input
*/
void loop() {
/*
* autorun state was found in setup, autorun now but only once
* autorun BASIC programs return to interactive after completion
* autorun code always must loop in itself
*/
if (st == SERUN) {
xrun();
/* on an EEPROM system we don't set top to 0 here */
#ifndef EEPROMMEMINTERFACE
top=0;
#endif
st=SINT;
} else if (st == SRUN) {
here=0;
xrun();
st=SINT;
}
/* always return to default io channels once interactive mode is reached */
iodefaults();
/* the prompt and the input request */
printmessage(MPROMPT);
ins(ibuffer, BUFSIZE-2);
/* tokenize first token from the input buffer */
bi=ibuffer;
nexttoken();
/* a number triggers the line storage, anything else is executed */
if (token == NUMBER) {
ax=x;
storeline();
/* on an EEPROM system we store top after each succesful line insert */
#ifdef EEPROMMEMINTERFACE
z.a=top;
esetnumber(1, addrsize);
#endif
} else {
/* st=SINT; */
statement();
st=SINT;
}
/* here, at last, all errors need to be catched and back to interactive input*/
if (er) reseterror();
}
/* if we are not on an Arduino */
#ifndef ARDUINO
int main(int argc, char* argv[]){
/* save the arguments if there are any */
bargc=argc;
bargv=argv;
/* do what an Arduino would do, this loops for every interactive input */
setup();
while (1)
loop();
}
#endif
/*
* Arduino style function for non BASIC code to run on the MCU.
* All code that needs to run on the MCU independently can be put here.
* It works more or less just like the normal loop() and setup().
*
* This is meant for robotics and other device control type of stuff
* on the Arduino platform.
*
* On POSIX systems I/O is blocking and therefore bloop() is not called
* consistently.
*
* Rules of the game:
* - bsetup() is called once during interpreter startup after all
* IO subsystems are started and before the BASIC main memory is
* allocated. Allocate memory here. Do not allocate a lot of memory
* in bloop().
* - Never start or restart I/O functions of BASIC in bsetup(),
* no Wire.begin(), Serial.begin() etc. If BASIC also uses this
* BASIC handles the I/O startup. Things that BASIC does not use
* can be started here.
* - bloop() is called after every token, during I/O polling and in
* DELAY functions.
* - The typical call frequency of bloop() is 20 microseconds or faster.
* This is fairly constant and reliable.
* - The interpreter is robust against code in bloop() that needs a lot
* of CPU time. It will simply slow down but it will not break,
* unless(!) other I/O systems like network also need background CPU time
* and you block bloop for a long time. As a rule of thumb, on network systems
* bloop() should return after 1 ms. After bloop() has returned, the interpreter
* tries to handle network and USB update stuff.
* - Never use delay() in bloop(). Set a counter. Look at the tone
* emulation code for examples.
* - Never ever call BASIC functions from bloop(). BASIC function will
* eventually call byield() which calls bloop() and so forth.
* If you need to communicate data into BASIC, use the BASIC main
* memory, variables or the USR function mechanism.
* - Avoid allocating a lot of memory in bloop().
*/
void bsetup() {
/* put your setup code here, to run once: */
}
void bloop() {
/* put your main code here, to run repeatedly: */
}
|