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
|
/*******************************************************************************
* express.cpp
*
* This module implements an expression parser for the floats, vectors and
* colours in scene description files.
*
* ---------------------------------------------------------------------------
* Persistence of Vision Ray Tracer ('POV-Ray') version 3.7.
* Copyright 1991-2013 Persistence of Vision Raytracer Pty. Ltd.
*
* POV-Ray is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* POV-Ray is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
* ---------------------------------------------------------------------------
* POV-Ray is based on the popular DKB raytracer version 2.12.
* DKBTrace was originally written by David K. Buck.
* DKBTrace Ver 2.0-2.12 were written by David K. Buck & Aaron A. Collins.
* ---------------------------------------------------------------------------
* $File: //depot/public/povray/3.x/source/backend/parser/express.cpp $
* $Revision: #1 $
* $Change: 6069 $
* $DateTime: 2013/11/06 11:59:40 $
* $Author: chrisc $
*******************************************************************************/
#include <cstdlib>
#include <ctype.h>
#include <boost/date_time/posix_time/posix_time.hpp>
// frame.h must always be the first POV file included (pulls in platform config)
#include "backend/frame.h"
#include "backend/parser/parse.h"
#include "backend/math/vector.h"
#include "backend/colour/colour.h"
#include "backend/math/splines.h"
#include "backend/math/matrices.h"
#include "backend/pattern/pattern.h"
#include "backend/texture/pigment.h"
#include "backend/texture/normal.h"
#include "backend/texture/texture.h"
#include "backend/shape/hfield.h"
#include "backend/scene/objects.h"
#include "backend/vm/fncode.h"
#include "backend/vm/fnpovfpu.h"
#include "backend/math/mathutil.h"
#include "backend/support/fileutil.h"
#include "backend/support/imageutil.h"
#include "base/fileinputoutput.h"
#include <algorithm>
// this must be the last file included
#include "base/povdebug.h"
namespace pov
{
using namespace pov_base;
/*****************************************************************************
* Local preprocessor defines
******************************************************************************/
#define ftrue(f) ((int)(fabs(f)>EPSILON))
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
DBL Parser::Parse_Float_Param()
{
DBL Local;
EXPRESS Express;
int Terms = 1;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
GET(LEFT_PAREN_TOKEN);
Parse_Express(Express,&Terms);
if (Terms>1)
{
Error ("Float expected but vector or color expression found.");
}
Local = Express[0];
GET(RIGHT_PAREN_TOKEN);
Allow_Identifier_In_Call = old_allow_id;
return (Local);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Float_Param2(DBL *Val1,DBL *Val2)
{
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
GET (LEFT_PAREN_TOKEN);
*Val1 = Parse_Float();
Parse_Comma();
*Val2 = Parse_Float();
GET (RIGHT_PAREN_TOKEN);
Allow_Identifier_In_Call = old_allow_id;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Vector_Param(VECTOR Vector)
{
GET(LEFT_PAREN_TOKEN);
Parse_Vector(Vector);
GET(RIGHT_PAREN_TOKEN);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Vector_Param2(VECTOR Val1,VECTOR Val2)
{
GET (LEFT_PAREN_TOKEN);
Parse_Vector(Val1);
Parse_Comma();
Parse_Vector(Val2);
GET (RIGHT_PAREN_TOKEN);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Trace(VECTOR Res)
{
ObjectPtr Object;
Intersection intersect;
Ray ray;
VECTOR Local_Normal;
GET (LEFT_PAREN_TOKEN);
EXPECT
CASE (OBJECT_ID_TOKEN)
Object = (ObjectPtr )Token.Data;
EXIT
END_CASE
OTHERWISE
Object = NULL;
UNGET
EXIT
END_CASE
END_EXPECT
if (Object == NULL)
Error ("Object identifier expected.");
Parse_Comma();
Parse_Vector(ray.Origin);
Parse_Comma();
Parse_Vector(ray.Direction);
VNormalizeEq( ray.Direction );
Parse_Comma();
if ( Find_Intersection( &intersect, Object, ray, GetParserDataPtr()) )
{
Assign_Vector( Res, intersect.IPoint );
intersect.Object->Normal( Local_Normal, &intersect, GetParserDataPtr());
if (Test_Flag(intersect.Object,INVERTED_FLAG))
{
Local_Normal[X] = -Local_Normal[X];
Local_Normal[Y] = -Local_Normal[Y];
Local_Normal[Z] = -Local_Normal[Z];
}
}
else
{
Res[X]=Res[Y]=Res[Z]=0;
Local_Normal[X] = Local_Normal[Y] = Local_Normal[Z] = 0;
}
EXPECT
CASE (VECTOR_FUNCT_TOKEN)
/* All of these functions return a VECTOR result */
if(Token.Function_Id == VECTOR_ID_TOKEN)
{
Assign_Vector((DBL *)Token.Data, Local_Normal);
}
else
{
UNGET
}
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
GET (RIGHT_PAREN_TOKEN);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
int Parser::Parse_Inside()
{
ObjectPtr Object;
VECTOR Local_Vector;
int Result = 0;
GET (LEFT_PAREN_TOKEN);
EXPECT
CASE (OBJECT_ID_TOKEN)
Object = (ObjectPtr )Token.Data;
EXIT
END_CASE
OTHERWISE
Object = NULL;
UNGET
EXIT
END_CASE
END_EXPECT
if (Object == NULL)
Error ("Object identifier expected.");
if((Object->Type & PATCH_OBJECT) == PATCH_OBJECT)
Error ("Solid object identifier expected.");
Parse_Comma();
Parse_Vector(Local_Vector);
if (Inside_Object(Local_Vector, Object, GetParserDataPtr()))
Result = 1;
else
Result = 0;
GET (RIGHT_PAREN_TOKEN);
return Result;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* Thorsten Froehlich
*
* DESCRIPTION
*
* Utility function that determines if this is a call or access of an
* identifier and stores the result in a global variable. If an identifier
* is allowed is determined by another global variable.
*
* CHANGES
*
******************************************************************************/
bool Parser::Parse_Call()
{
if(Allow_Identifier_In_Call)
{
EXPECT_ONE
CASE(LEFT_PAREN_TOKEN)
Identifier_In_Call = false;
return true;
END_CASE
END_EXPECT
UNGET
Identifier_In_Call = true;
return false;
}
else
{
GET(LEFT_PAREN_TOKEN)
}
return true;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* NOTE: Function Parse_RValue in parse.cpp depends on this function to be
* able to only use Token.Data of the current token in order to have a kind
* of two token look-ahead in Parse_RValue! [trf]
*
* CHANGES
*
******************************************************************************/
DBL Parser::Parse_Function_Call()
{
FUNCTION_PTR fp = (FUNCTION_PTR )Token.Data;
if (fp == NULL)
// may happen if a #declare or #local inside a function declaration references the function
Error("Illegal attempt to evaluate a function being currently declared; did you miss a closing brace?");
// NB while parsing the call parameters, the parser may drop out of the current scope (macro or include file) before we get a chance to invoke the function,
// in which case *fp will be destroyed, and an attempt made to drop the function. Therefore we copy *fp, and claim dibs on the function.
// TODO - use smart pointers for this
FUNCTION fn = *fp;
FunctionCode *f = sceneData->functionVM->GetFunctionAndReference(fn);
unsigned int pmax = f->parameter_cnt - 1;
unsigned int param = 0;
DBL params[MAX_PARAMETER_LIST];
if(Parse_Call() == false)
{
// we claimed dibs on the function, so before we exit we must release it
sceneData->functionVM->RemoveFunction(fn);
return 0.0;
}
// first store results in local array so recursive calls to
// this function do not overwrite the global function stack
// accessed by POVFPU_SetLocal [trf]
for(param = 0; param < pmax; param++)
{
params[param] = Parse_Float();
Parse_Comma();
}
params[param] = Parse_Float();
GET (RIGHT_PAREN_TOKEN);
for(param = 0; param < f->parameter_cnt; param++)
fnVMContext->SetLocal(param, params[param]);
DBL result = POVFPU_Run(fnVMContext, fn);
// we claimed dibs on the function, so now that we're done with it we must say so
sceneData->functionVM->RemoveFunction(fn);
return result;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* NOTE: Function Parse_RValue in parse.cpp depends on this function to be
* able to only use Token.Data of the current token in order to have a kind
* of two token look-ahead in Parse_RValue! [trf]
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Vector_Function_Call(EXPRESS Express, int *Terms)
{
FUNCTION_PTR fp = (FUNCTION_PTR )Token.Data;
if (fp == NULL)
// may happen if a #declare or #local inside a function declaration references the function
Error("Illegal attempt to evaluate a function being currently declared; did you miss a closing brace?");
// NB while parsing the call parameters, the parser may drop out of the current scope (macro or include file) before we get a chance to invoke the function,
// in which case *fp will be destroyed, and an attempt made to drop the function. Therefore we copy *fp, and claim dibs on the function.
// TODO - use smart pointers for this
FUNCTION fn = *fp;
FunctionCode *f = sceneData->functionVM->GetFunctionAndReference(fn);
unsigned int pmax = f->parameter_cnt - 1;
unsigned int param = 0;
DBL params[MAX_PARAMETER_LIST];
if(Parse_Call() == false)
{
// we claimed dibs on the function, so before we exit we must release it
sceneData->functionVM->RemoveFunction(fn);
return;
}
// first store results in local array so recursive calls to
// this function do not overwrite the global function stack
// accessed by POVFPU_SetLocal [trf]
for(param = 0; param < pmax; param++)
{
params[param] = Parse_Float();
Parse_Comma();
}
params[param] = Parse_Float();
GET (RIGHT_PAREN_TOKEN);
for(param = 0; param < f->parameter_cnt; param++)
fnVMContext->SetLocal(param + f->return_size, params[param]);
(void)POVFPU_Run(fnVMContext, fn);
// we claimed dibs on the function, so now that we're done with it we must say so
sceneData->functionVM->RemoveFunction(fn);
for(param = 0; param < f->return_size; param++)
Express[param] = fnVMContext->GetLocal(param);
*Terms = f->return_size;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* NOTE: Function Parse_RValue in parse.cpp depends on this function to be
* able to only use Token.Data of the current token in order to have a kind
* of two token look-ahead in Parse_RValue! [trf]
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Spline_Call(EXPRESS Express, int *Terms)
{
SPLINE *spline = (SPLINE*)(Token.Data);
DBL Val;
// NB while parsing the call parameters, the parser may drop out of the current scope (macro or include file)
// before we get a chance to evaluate the spline, so we claim dibs on it.
// TODO - use smart pointers for this
Acquire_Spline_Reference(spline);
if(Parse_Call() == false)
{
Release_Spline_Reference(spline);
return;
}
Val=Parse_Float();
Get_Token();
if(Token.Token_Id == COMMA_TOKEN)
{
/*If there is a second parameter, make a copy of the spline
with a new type and evaluate that.*/
// we claimed dibs on the original spline, but since we've chosen to use a copy instead, we'll release the original
Release_Spline_Reference(spline);
spline = Copy_Spline(spline);
Get_Token();
switch(Token.Token_Id)
{
case LINEAR_SPLINE_TOKEN:
spline->Type = LINEAR_SPLINE;
break;
case QUADRATIC_SPLINE_TOKEN:
spline->Type = QUADRATIC_SPLINE;
break;
case CUBIC_SPLINE_TOKEN:
spline->Type = CATMULL_ROM_SPLINE;
break;
case NATURAL_SPLINE_TOKEN:
spline->Type = NATURAL_SPLINE;
break;
default:
Error("linear_spline, quadratic_spline, natural_spline, or cubic_spline expected.");
break;
}
GET(RIGHT_PAREN_TOKEN);
Get_Spline_Val(spline, Val, Express, Terms);
Destroy_Spline(spline);
spline = NULL;
}
else
{
UNGET
GET(RIGHT_PAREN_TOKEN);
Get_Spline_Val(spline, Val, Express, Terms);
// we claimed dibs on the spline, so now that we're done with it we must say so
Release_Spline_Reference(spline);
}
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Num_Factor (EXPRESS Express,int *Terms)
{
int i = 0;
int l1,l2;
DBL Val,Val2;
VECTOR Vect,Vect2,Vect3;
ObjectPtr Object;
TRANSFORM Trans;
TURB Turb;
UCS2 *Local_String, *Local_String2;
char *Local_C_String;
UCS2String ign;
IStream *f;
POV_ARRAY *a;
int Old_Ok=Ok_To_Declare;
DBL greater_val, less_val, equal_val ;
PIGMENT* Pigment; // JN2007: Image map dimensions
Ok_To_Declare=true;
EXPECT
CASE (FLOAT_FUNCT_TOKEN)
/* All of these functions return a DBL result */
switch(Token.Function_Id)
{
case ABS_TOKEN:
Val = Parse_Float_Param();
Val = fabs(Val);
break;
case ACOS_TOKEN:
Val = Parse_Float_Param();
if ( Val > 1.0 )
{
Warning(0,"Domain error in acos.");
Val = 1.0;
}
else if (Val < -1.0)
{
Warning(0,"Domain error in acos.");
Val = -1.0;
}
Val = acos(Val);
break;
case VAL_TOKEN:
GET (LEFT_PAREN_TOKEN);
Local_C_String=Parse_C_String();
Val = std::atof(Local_C_String);
POV_FREE(Local_C_String);
GET (RIGHT_PAREN_TOKEN);
break;
case ASC_TOKEN:
GET (LEFT_PAREN_TOKEN);
Local_String=Parse_String();
Val = (DBL)Local_String[0];
POV_FREE(Local_String);
GET (RIGHT_PAREN_TOKEN);
break;
case ASIN_TOKEN:
Val = Parse_Float_Param();
if ( Val > 1.0 )
{
Warning(0,"Domain error in asin.");
Val = 1.0;
}
else if (Val < -1.0)
{
Warning(0,"Domain error in asin.");
Val = -1.0;
}
Val = asin(Val);
break;
case ATAN_TOKEN:
Val = atan(Parse_Float_Param());
break;
case ATAN2_TOKEN:
Parse_Float_Param2(&Val,&Val2);
if (ftrue(Val) || ftrue(Val2))
Val = atan2(Val,Val2);
else
Error("Domain error in atan2!");
break;
case COSH_TOKEN:
Val = cosh(Parse_Float_Param());
break;
case SINH_TOKEN:
Val = sinh(Parse_Float_Param());
break;
case TANH_TOKEN:
Val = tanh(Parse_Float_Param());
break;
case ACOSH_TOKEN:
Val = acosh(Parse_Float_Param());
break;
case ASINH_TOKEN:
Val = asinh(Parse_Float_Param());
break;
case ATANH_TOKEN:
Val = atanh(Parse_Float_Param());
break;
case CEIL_TOKEN:
Val = ceil(Parse_Float_Param());
break;
case CLOCK_TOKEN:
Val = clockValue;
break;
case CLOCK_ON_TOKEN:
Val=(DBL) (useClock);
break;
case COS_TOKEN:
Val = cos(Parse_Float_Param());
break;
case DEFINED_TOKEN:
Val = Parse_Ifdef_Param();
break;
case DEGREES_TOKEN:
Val = Parse_Float_Param()/M_PI_180;
break;
case DIV_TOKEN:
Parse_Float_Param2(&Val,&Val2);
Val=(DBL) ( (int)(Val/Val2) );
break;
case EXP_TOKEN:
Val = exp(Parse_Float_Param());
break;
case FILE_EXISTS_TOKEN:
GET (LEFT_PAREN_TOKEN);
Local_C_String=Parse_C_String();
Val = ((f=Locate_File(this, sceneData, UCS2String(ASCIItoUCS2String(Local_C_String)),POV_File_Text_User,ign,false))==NULL) ? 0.0 : 1.0;
if (f != NULL)
delete f;
POV_FREE(Local_C_String);
GET (RIGHT_PAREN_TOKEN);
break;
case FLOAT_ID_TOKEN:
Val = *((DBL *) Token.Data);
break;
case FLOAT_TOKEN:
Val = Token.Token_Float;
break;
case FLOOR_TOKEN:
Val = floor(Parse_Float_Param());
break;
case INT_TOKEN:
Val = (DBL) ((int) Parse_Float_Param());
break;
case INSIDE_TOKEN:
Val = (DBL) Parse_Inside();
break;
case LN_TOKEN:
Val = Parse_Float_Param();
if (Val<=0.0)
Error("ln of negative number %lf",Val);
else
Val = log(Val);
break;
case LOG_TOKEN:
Val = Parse_Float_Param();
if (Val<=0.0)
Error("log of negative number %lf",Val);
else
Val = log10(Val);
break;
case BITWISE_AND_TOKEN:
GET (LEFT_PAREN_TOKEN);
l1 = (int)Parse_Float();
EXPECT
CASE(COMMA_TOKEN)
l2 = (int)Parse_Float();
l1 &= l2;
END_CASE
OTHERWISE
UNGET
GET (RIGHT_PAREN_TOKEN);
EXIT
END_CASE
END_EXPECT
Val = (DBL)l1;
break;
case BITWISE_XOR_TOKEN:
GET (LEFT_PAREN_TOKEN);
l1 = (int)Parse_Float();
EXPECT
CASE(COMMA_TOKEN)
l2 = (int)Parse_Float();
l1 ^= l2;
END_CASE
OTHERWISE
UNGET
GET (RIGHT_PAREN_TOKEN);
EXIT
END_CASE
END_EXPECT
Val = (DBL)l1;
break;
case BITWISE_OR_TOKEN:
GET (LEFT_PAREN_TOKEN);
l1 = (int)Parse_Float();
EXPECT
CASE(COMMA_TOKEN)
l2 = (int)Parse_Float();
l1 |= l2;
END_CASE
OTHERWISE
UNGET
GET (RIGHT_PAREN_TOKEN);
EXIT
END_CASE
END_EXPECT
Val = (DBL)l1;
break;
case MAX_TOKEN:
GET (LEFT_PAREN_TOKEN);
Val = Parse_Float();
EXPECT
CASE(COMMA_TOKEN)
Val2 = Parse_Float();
Val = max(Val,Val2);
END_CASE
OTHERWISE
UNGET
GET (RIGHT_PAREN_TOKEN);
EXIT
END_CASE
END_EXPECT
break;
case MIN_TOKEN:
GET (LEFT_PAREN_TOKEN);
Val = Parse_Float();
EXPECT
CASE(COMMA_TOKEN)
Val2 = Parse_Float();
Val = min(Val,Val2);
END_CASE
OTHERWISE
UNGET
GET (RIGHT_PAREN_TOKEN);
EXIT
END_CASE
END_EXPECT
break;
case SELECT_TOKEN:
GET (LEFT_PAREN_TOKEN);
Val = Parse_Float();
Parse_Comma();
less_val = Parse_Float();
Parse_Comma();
equal_val = Parse_Float();
EXPECT
CASE(COMMA_TOKEN)
greater_val = Parse_Float();
GET (RIGHT_PAREN_TOKEN);
if(Val < 0.0)
Val = less_val;
else if(Val == 0.0)
Val = equal_val;
else
Val = greater_val;
EXIT
END_CASE
OTHERWISE
UNGET
GET (RIGHT_PAREN_TOKEN);
if(Val < 0.0)
Val = less_val;
else
Val = equal_val;
EXIT
END_CASE
END_EXPECT
break;
case MOD_TOKEN:
Parse_Float_Param2(&Val,&Val2);
Val = fmod(Val,Val2);
break;
case PI_TOKEN:
Val = M_PI;
break;
case SQR_TOKEN:
Val = Parse_Float_Param();
Val = (Val*Val);
break;
case POW_TOKEN:
Parse_Float_Param2(&Val,&Val2);
if((Val == 0.0) && (Val2 == 0.0))
Error("Domain error.");
Val=pow(Val,Val2);
break;
case RADIANS_TOKEN:
Val = Parse_Float_Param()*M_PI_180;
break;
case SIN_TOKEN:
Val = sin(Parse_Float_Param());
break;
case SQRT_TOKEN:
Val = Parse_Float_Param();
if (Val<0.0)
Error("sqrt of negative number %lf",Val);
else
Val = sqrt(Val);
break;
case STRCMP_TOKEN:
GET (LEFT_PAREN_TOKEN);
Local_String=Parse_String();
Parse_Comma();
Local_String2=Parse_String();
Val = (DBL)UCS2_strcmp(Local_String, Local_String2);
POV_FREE(Local_String);
POV_FREE(Local_String2);
GET (RIGHT_PAREN_TOKEN);
break;
case STRLEN_TOKEN:
GET (LEFT_PAREN_TOKEN);
Local_String=Parse_String();
Val = (DBL)UCS2_strlen(Local_String);
POV_FREE(Local_String);
GET (RIGHT_PAREN_TOKEN);
break;
case TAN_TOKEN:
Val = tan(Parse_Float_Param());
break;
case VDOT_TOKEN:
Parse_Vector_Param2(Vect,Vect2);
VDot(Val,Vect,Vect2);
break;
case VLENGTH_TOKEN:
Parse_Vector_Param(Vect);
VLength(Val,Vect);
break;
case VERSION_TOKEN:
Val = sceneData->languageVersion / 100.0;
break;
case TRUE_TOKEN:
case YES_TOKEN:
case ON_TOKEN:
Val = 1.0;
break;
case FALSE_TOKEN:
case NO_TOKEN:
case OFF_TOKEN:
Val = 0.0;
break;
case SEED_TOKEN:
Val = stream_seed((int)Parse_Float_Param());
break;
case RAND_TOKEN:
i = (int)Parse_Float_Param();
if ((i < 0) || (i >= Number_Of_Random_Generators))
Error("Illegal random number generator.");
Val = stream_rand(i);
break;
case DIMENSIONS_TOKEN:
GET(LEFT_PAREN_TOKEN)
GET(ARRAY_ID_TOKEN)
a = (POV_ARRAY *)(*(Token.DataPtr));
Val = a->Dims+1;
GET(RIGHT_PAREN_TOKEN)
break;
case DIMENSION_SIZE_TOKEN:
GET(LEFT_PAREN_TOKEN)
GET(ARRAY_ID_TOKEN)
Parse_Comma();
a = (POV_ARRAY *)(*(Token.DataPtr));
i = (int)Parse_Float()-1.0;
if ((i < 0) || (i > a->Dims))
Val = 0.0;
else
Val = a->Sizes[i];
GET(RIGHT_PAREN_TOKEN)
break;
case NOW_TOKEN:
{
static boost::posix_time::ptime y2k(boost::gregorian::date(2000,1,1));
boost::posix_time::ptime now(boost::posix_time::microsec_clock::universal_time());
Val = (now-y2k).total_microseconds() * (1.0e-6) / (24*60*60);
}
break;
}
for (i=0; i < *Terms; i++)
Express[i]=Val;
EXIT
END_CASE
CASE (VECTOR_FUNCT_TOKEN)
/* All of these functions return a VECTOR result */
switch(Token.Function_Id)
{
case VAXIS_ROTATE_TOKEN:
GET (LEFT_PAREN_TOKEN);
Parse_Vector(Vect2);
Parse_Comma();
Parse_Vector(Vect3);
Parse_Comma();
Val=Parse_Float()*M_PI_180;
GET (RIGHT_PAREN_TOKEN);
Compute_Axis_Rotation_Transform(&Trans,Vect3,Val);
MTransPoint(Vect, Vect2, &Trans);
break;
case VCROSS_TOKEN:
Parse_Vector_Param2(Vect2,Vect3);
VCross(Vect,Vect2,Vect3);
break;
case VECTOR_ID_TOKEN:
Assign_Vector(Vect, (DBL *)Token.Data);
break;
case VNORMALIZE_TOKEN:
Parse_Vector_Param(Vect2);
if((Vect2[X] == 0.0) && (Vect2[Y] == 0.0) && (Vect2[Z] == 0.0))
{
if (sceneData->languageVersion >= 350)
PossibleError("Normalizing zero-length vector.");
Vect[X] = Vect[Y] = Vect[Z] = 0.0 ;
}
else
VNormalize(Vect,Vect2);
break;
case VROTATE_TOKEN:
Parse_Vector_Param2(Vect2,Vect3);
Compute_Rotation_Transform (&Trans, Vect3);
MTransPoint(Vect, Vect2, &Trans);
break;
case VTURBULENCE_TOKEN:
GET (LEFT_PAREN_TOKEN);
Turb.Lambda = Parse_Float();
Parse_Comma();
Turb.Omega = Parse_Float();
Parse_Comma();
Turb.Octaves = (int)Parse_Float();
if(Turb.Octaves < 1)
Turb.Octaves = 1;
if(Turb.Octaves > 10) // avoid domain errors
Turb.Octaves = 10;
Parse_Comma();
Parse_Vector(Vect2); // input vector
Parse_Comma();
GET (RIGHT_PAREN_TOKEN);
DTurbulence(Vect, Vect2, &Turb);
break;
case X_TOKEN:
Make_Vector(Vect,1.0,0.0,0.0);
break;
case Y_TOKEN:
Make_Vector(Vect,0.0,1.0,0.0);
break;
case Z_TOKEN:
Make_Vector(Vect,0.0,0.0,1.0);
break;
case TRACE_TOKEN:
Parse_Trace( Vect );
break;
case MIN_EXTENT_TOKEN:
GET (LEFT_PAREN_TOKEN);
EXPECT
CASE (OBJECT_ID_TOKEN)
Object = (ObjectPtr )Token.Data;
if ( Object )
{
Vect[X]=Object->BBox.Lower_Left[X];
Vect[Y]=Object->BBox.Lower_Left[Y];
Vect[Z]=Object->BBox.Lower_Left[Z];
}
EXIT
END_CASE
OTHERWISE
Object = NULL;
Make_Vector(Vect,0.0,0.0,0.0);
UNGET
EXIT
END_CASE
END_EXPECT
GET (RIGHT_PAREN_TOKEN);
break;
case MAX_EXTENT_TOKEN:
GET (LEFT_PAREN_TOKEN);
EXPECT
CASE (OBJECT_ID_TOKEN)
Object = (ObjectPtr )Token.Data;
if ( Object )
{
Vect[X]=Object->BBox.Lower_Left[X]+Object->BBox.Lengths[X];
Vect[Y]=Object->BBox.Lower_Left[Y]+Object->BBox.Lengths[Y];
Vect[Z]=Object->BBox.Lower_Left[Z]+Object->BBox.Lengths[Z];
}
EXIT
END_CASE
// JN2007: Image map dimensions:
CASE (PIGMENT_ID_TOKEN)
Pigment = (PIGMENT*)Token.Data;
if(Pigment->Type != BITMAP_PATTERN)
{
Error("The parameter to max_extent must be an image map pigment identifier");
}
else
{
Vect[X] = Pigment->Vals.image->iwidth;
Vect[Y] = Pigment->Vals.image->iheight;
Vect[Z] = 0;
}
EXIT
END_CASE
OTHERWISE
Object = NULL;
Make_Vector(Vect,0.0,0.0,0.0);
UNGET
EXIT
END_CASE
END_EXPECT
GET (RIGHT_PAREN_TOKEN);
break;
}
/* If it was expecting a DBL, promote it to a VECTOR.
I haven't yet figured out what to do if it was expecting
a COLOUR value with Terms>3
*/
if(*Terms < 3)
*Terms = 3;
for(i = 0; i < 3; i++)
Express[i] = Vect[i];
EXIT
END_CASE
CASE (FUNCT_ID_TOKEN)
Val = Parse_Function_Call();
for(i = 0; i < *Terms; i++)
Express[i] = Val;
EXIT
END_CASE
CASE (VECTFUNCT_ID_TOKEN)
*Terms = 5; // will be adjusted by Parse_Vector_Function_Call
for(i = 0; i < *Terms; i++)
Express[i] = 0.0;
Parse_Vector_Function_Call(Express, Terms);
EXIT
END_CASE
CASE (SPLINE_ID_TOKEN)
*Terms = 5; // will be adjusted by Parse_Spline_Call
for(i = 0; i < *Terms; i++)
Express[i] = 0.0;
Parse_Spline_Call(Express, Terms);
EXIT
END_CASE
CASE (COLOUR_ID_TOKEN)
*Terms=5;
for (i=0; i<5; i++)
Express[i]=(DBL)( ((COLC *)(Token.Data))[i] );
EXIT
END_CASE
CASE (UV_ID_TOKEN)
*Terms=2;
for (i=0; i<2; i++)
Express[i]=(DBL)( ((DBL *)(Token.Data))[i] );
EXIT
END_CASE
CASE (VECTOR_4D_ID_TOKEN)
*Terms=4;
for (i=0; i<4; i++)
Express[i]=(DBL)( ((DBL *)(Token.Data))[i] );
EXIT
END_CASE
CASE (T_TOKEN)
*Terms=4;
Express[0]=0.0;
Express[1]=0.0;
Express[2]=0.0;
Express[3]=1.0;
EXIT
END_CASE
CASE (U_TOKEN)
*Terms=2;
Express[0]=1.0;
Express[1]=0.0;
EXIT
END_CASE
CASE (V_TOKEN)
*Terms=2;
Express[0]=0.0;
Express[1]=1.0;
EXIT
END_CASE
CASE (PLUS_TOKEN)
END_CASE
CASE (DASH_TOKEN)
Ok_To_Declare=Old_Ok;
Parse_Num_Factor(Express,Terms);
Old_Ok=Ok_To_Declare;
Ok_To_Declare=true;
for (i=0; i<*Terms; i++)
Express[i]=-Express[i];
EXIT
END_CASE
CASE (EXCLAMATION_TOKEN)
Ok_To_Declare=Old_Ok;
Parse_Num_Factor(Express,Terms);
Old_Ok=Ok_To_Declare;
Ok_To_Declare=true;
for (i=0; i<*Terms; i++)
Express[i] = ftrue(Express[i])?0.0:1.0;
EXIT
END_CASE
CASE (LEFT_PAREN_TOKEN)
Parse_Express(Express,Terms);
GET(RIGHT_PAREN_TOKEN);
EXIT
END_CASE
/* This case parses a 2, 3, 4, or 5 term vector. First parse 2 terms.
Note Parse_Comma won't crash if it doesn't find one.
*/
CASE (LEFT_ANGLE_TOKEN)
Express[X] = Parse_Float(); Parse_Comma();
Express[Y] = Parse_Float(); Parse_Comma();
*Terms=2;
EXPECT
CASE_EXPRESS
/* If a 3th float is found, parse it. */
Express[2] = Parse_Float(); Parse_Comma();
*Terms=3;
EXPECT
CASE_EXPRESS
/* If a 4th float is found, parse it. */
Express[3] = Parse_Float(); Parse_Comma();
*Terms=4;
EXPECT
CASE_EXPRESS
/* If a 5th float is found, parse it. */
Express[4] = Parse_Float();
*Terms=5;
END_CASE
OTHERWISE
/* Only 4 found. */
UNGET
GET (RIGHT_ANGLE_TOKEN)
EXIT
END_CASE
END_EXPECT
EXIT
END_CASE
OTHERWISE
/* Only 3 found. */
UNGET
GET (RIGHT_ANGLE_TOKEN)
EXIT
END_CASE
END_EXPECT
EXIT
END_CASE
OTHERWISE
/* Only 2 found. */
UNGET
GET (RIGHT_ANGLE_TOKEN)
EXIT
END_CASE
END_EXPECT
EXIT
END_CASE
OTHERWISE
Expectation_Error ("numeric expression");
END_CASE
END_EXPECT
Ok_To_Declare=Old_Ok;
/* Parse VECTOR.x or COLOR.red type things */
EXPECT
CASE(PERIOD_TOKEN)
EXPECT
CASE (VECTOR_FUNCT_TOKEN)
switch(Token.Function_Id)
{
case X_TOKEN:
i=X;
break;
case Y_TOKEN:
i=Y;
break;
case Z_TOKEN:
i=Z;
break;
default:
Expectation_Error ("x, y, or z");
}
EXIT
END_CASE
CASE (COLOUR_KEY_TOKEN)
switch(Token.Function_Id)
{
case RED_TOKEN:
i=pRED;
break;
case GREEN_TOKEN:
i=pGREEN;
break;
case BLUE_TOKEN:
i=pBLUE;
break;
case FILTER_TOKEN:
i=pFILTER;
break;
case TRANSMIT_TOKEN:
i=pTRANSM;
break;
case GRAY_TOKEN:
*Terms=1;
Express[0]=GREY_SCALE(Express);
return;
default:
Expectation_Error ("red, green, blue, filter, or transmit");
}
EXIT
END_CASE
CASE(U_TOKEN)
i=U;
EXIT
END_CASE
CASE(V_TOKEN)
i=V;
EXIT
END_CASE
CASE(T_TOKEN)
i=T;
EXIT
END_CASE
OTHERWISE
Expectation_Error ("x, y, z or color component");
END_CASE
END_EXPECT
if (i>=*Terms)
Error("Bad operands for period operator.");
*Terms=1;
Express[0]=Express[i];
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
/* If first operand of a 2-operand function had more terms than the second,
then the parsing of the 2nd operand would have automatically promoted it.
But if 2nd operand has more terms then we must go back promote the 1st
operand before combining them Promote_Express does it. If Old_Terms=1
then set all terms to Express[0]. Otherwise pad extra terms with 0.0.
*/
void Parser::Promote_Express(EXPRESS Express,int *Old_Terms,int New_Terms)
{
int i;
if (*Old_Terms >= New_Terms)
return;
if (*Old_Terms==1)
{
for(i=1;i<New_Terms;i++)
{
Express[i]=Express[0];
}
}
else
{
for(i=(*Old_Terms);i<New_Terms;i++)
{
Express[i]=0.0;
}
}
*Old_Terms=New_Terms;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
* 2000 : NK promotion bugfix
*
******************************************************************************/
void Parser::Parse_Num_Term (EXPRESS Express,int *Terms)
{
int i;
EXPRESS Local_Express;
int Local_Terms;
Parse_Num_Factor(Express,Terms);
Local_Terms=*Terms;
EXPECT
CASE (STAR_TOKEN)
Parse_Num_Factor(Local_Express,&Local_Terms);
if (Local_Terms>*Terms)
Promote_Express(Express,Terms,Local_Terms);
else
Promote_Express(Local_Express,&Local_Terms,*Terms);
for(i=0;i<*Terms;i++)
Express[i] *= Local_Express[i];
END_CASE
CASE (SLASH_TOKEN)
Parse_Num_Factor(Local_Express,&Local_Terms);
if (Local_Terms>*Terms)
Promote_Express(Express,Terms,Local_Terms);
else
Promote_Express(Local_Express,&Local_Terms,*Terms);
for(i=0;i<*Terms;i++)
{
if (Local_Express[i]==0.0) /* must be 0.0, not EPSILON */
{
Express[i]=HUGE_VAL;
Warning(0,"Divide by zero.");
}
else
{
Express[i] /= Local_Express[i];
}
}
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
* 2000 : NK promotion bugfix
*
******************************************************************************/
void Parser::Parse_Rel_Factor (EXPRESS Express,int *Terms)
{
int i;
EXPRESS Local_Express;
int Local_Terms;
Parse_Num_Term(Express,Terms);
Local_Terms=*Terms;
EXPECT
CASE (PLUS_TOKEN)
Parse_Num_Term(Local_Express,&Local_Terms);
if (Local_Terms>*Terms)
{
Promote_Express(Express,Terms,Local_Terms);
}
else
{
Promote_Express(Local_Express,&Local_Terms,*Terms);
}
for(i=0;i<*Terms;i++)
Express[i] += Local_Express[i];
END_CASE
CASE (DASH_TOKEN)
Parse_Num_Term(Local_Express,&Local_Terms);
if (Local_Terms>*Terms)
{
Promote_Express(Express,Terms,Local_Terms);
}
else
{
Promote_Express(Local_Express,&Local_Terms,*Terms);
}
for(i=0;i<*Terms;i++)
Express[i] -= Local_Express[i];
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Rel_String_Term (const UCS2* lhs, EXPRESS Express, int Terms)
{
int Val, i;
UCS2* rhs = NULL;
EXPECT_ONE
CASE (LEFT_ANGLE_TOKEN)
rhs = Parse_String();
Val = UCS2_strcmp(lhs, rhs);
POV_FREE(rhs);
for(i=0;i<Terms;i++)
Express[i] = (DBL)(Val < 0);
END_CASE
CASE (REL_LE_TOKEN)
rhs = Parse_String();
Val = UCS2_strcmp(lhs, rhs);
POV_FREE(rhs);
for(i=0;i<Terms;i++)
Express[i] = (DBL)(Val <= 0);
END_CASE
CASE (EQUALS_TOKEN)
rhs = Parse_String();
Val = UCS2_strcmp(lhs, rhs);
POV_FREE(rhs);
for(i=0;i<Terms;i++)
Express[i] = (DBL)(Val == 0);
END_CASE
CASE (REL_NE_TOKEN)
rhs = Parse_String();
Val = UCS2_strcmp(lhs, rhs);
POV_FREE(rhs);
for(i=0;i<Terms;i++)
Express[i] = (DBL)(Val != 0);
END_CASE
CASE (REL_GE_TOKEN)
rhs = Parse_String();
Val = UCS2_strcmp(lhs, rhs);
POV_FREE(rhs);
for(i=0;i<Terms;i++)
Express[i] = (DBL)(Val >= 0);
END_CASE
CASE (RIGHT_ANGLE_TOKEN)
rhs = Parse_String();
Val = UCS2_strcmp(lhs, rhs);
POV_FREE(rhs);
for(i=0;i<Terms;i++)
Express[i] = (DBL)(Val > 0);
END_CASE
OTHERWISE
Expectation_Error("string comparison operator");
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Rel_Term (EXPRESS Express,int *Terms)
{
int i;
EXPRESS Local_Express;
int Local_Terms;
bool old_Ok_To_Declare = Ok_To_Declare;
Ok_To_Declare=true;
UCS2* Local_String = Parse_String(false, false);
if(Local_String != NULL)
{
Parse_Rel_String_Term(Local_String, Express, *Terms);
POV_FREE(Local_String);
Ok_To_Declare = old_Ok_To_Declare;
return;
}
Ok_To_Declare = old_Ok_To_Declare;
Parse_Rel_Factor(Express,Terms);
Local_Terms=*Terms;
EXPECT
CASE (LEFT_ANGLE_TOKEN)
Parse_Rel_Factor(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)(Express[i] < Local_Express[i]);
END_CASE
CASE (REL_LE_TOKEN)
Parse_Rel_Factor(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)((Express[i] <= Local_Express[i]) || (!ftrue(Express[i]-Local_Express[i])));
END_CASE
CASE (EQUALS_TOKEN)
Parse_Rel_Factor(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)(!ftrue(Express[i]-Local_Express[i]));
END_CASE
CASE (REL_NE_TOKEN)
Parse_Rel_Factor(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)ftrue(Express[i]-Local_Express[i]);
END_CASE
CASE (REL_GE_TOKEN)
Parse_Rel_Factor(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)((Express[i] >= Local_Express[i]) || (!ftrue(Express[i]-Local_Express[i])));
END_CASE
CASE (RIGHT_ANGLE_TOKEN)
Parse_Rel_Factor(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)(Express[i] > Local_Express[i]);
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Logical (EXPRESS Express,int *Terms)
{
int i;
EXPRESS Local_Express;
int Local_Terms;
Parse_Rel_Term(Express,Terms);
Local_Terms=*Terms;
EXPECT
CASE (AMPERSAND_TOKEN)
Parse_Rel_Term(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)(ftrue(Express[i]) && ftrue(Local_Express[i]));
END_CASE
CASE (BAR_TOKEN)
Parse_Rel_Term(Local_Express,&Local_Terms);
Promote_Express(Express,Terms,Local_Terms);
for(i=0;i<*Terms;i++)
Express[i] = (DBL)(ftrue(Express[i]) || ftrue(Local_Express[i]));
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Express (EXPRESS Express,int *Terms)
{
EXPRESS Local_Express1, Local_Express2;
EXPRESS *Chosen;
int Local_Terms1, Local_Terms2;
Local_Terms1 = 1;
Parse_Logical(Express,&Local_Terms1);
EXPECT
CASE (QUESTION_TOKEN)
if (Local_Terms1 != 1)
Error("Conditional must evaluate to a float.");
Local_Terms1 = Local_Terms2 = *Terms;
Parse_Express(Local_Express1,&Local_Terms1);
GET(COLON_TOKEN);
Parse_Express(Local_Express2,&Local_Terms2);
if (ftrue(Express[0]))
{
Chosen = (EXPRESS *)&Local_Express1;
*Terms = Local_Terms1;
}
else
{
Chosen = (EXPRESS *)&Local_Express2;
*Terms = Local_Terms2;
}
POV_MEMCPY(Express,Chosen,sizeof(EXPRESS));
EXIT
END_CASE
OTHERWISE
/* Not a (c)?a:b expression. Since Express was parsed with
Local_Terms1=1 then we may have to promote this. Suppose
Terms=3 but Local_Terms1=1. If this had been a (c)?a:b
then a float is ok but since it is not a condition then
it must be promoted to Terms=3. Note that the parameters
below look wrong but they are not.
*/
Promote_Express (Express,&Local_Terms1,*Terms);
/* On the other hand, Local_Terms1 may be bigger than Terms.
If so, Express already is promoted and Terms must reflect that.
*/
*Terms=Local_Terms1;
UNGET
EXIT
END_CASE
END_EXPECT
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
DBL Parser::Parse_Float ()
{
EXPRESS Express;
int Terms;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
Terms=1;
if (sceneData->languageVersion < 150)
Parse_Num_Factor(Express,&Terms);
else
Parse_Rel_Factor(Express,&Terms);
if (Terms>1)
Error ("Float expected but vector or color expression found.");
Allow_Identifier_In_Call = old_allow_id;
return (Express[0]);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
DBL Parser::Allow_Float (DBL defval)
{
DBL retval;
EXPECT
CASE_EXPRESS
retval = Parse_Float();
EXIT
END_CASE
OTHERWISE
UNGET
retval = defval;
EXIT
END_CASE
END_EXPECT
return (retval);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
int Parser::Allow_Vector (VECTOR Vect)
{
int retval;
EXPECT
CASE_EXPRESS
Parse_Vector(Vect);
retval = true;
EXIT
END_CASE
OTHERWISE
UNGET
retval = false;
EXIT
END_CASE
END_EXPECT
return (retval);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Vector (VECTOR Vector)
{
EXPRESS Express;
int Terms;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
/* Initialize expression. [DB 12/94] */
for (Terms = 0; Terms < 5; Terms++)
{
Express[Terms] = 0.0;
}
Terms=3;
if (sceneData->languageVersion < 150)
Parse_Num_Factor(Express,&Terms);
else
Parse_Rel_Factor(Express,&Terms);
if (Terms>3)
Error ("Vector expected but color expression found.");
for(Terms=0;Terms<3;Terms++)
Vector[Terms]=Express[Terms];
Allow_Identifier_In_Call = old_allow_id;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Vector4D (VECTOR Vector)
{
EXPRESS Express;
int Terms;
int Dim = 4;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
/* Initialize expression. [DB 12/94] */
for (Terms = 0; Terms < 5; Terms++)
{
Express[Terms] = 0.0;
}
Terms=Dim;
if (sceneData->languageVersion < 150)
Parse_Num_Factor(Express,&Terms);
else
Parse_Rel_Factor(Express,&Terms);
if (Terms>Dim)
Error ("Vector expected but color expression found.");
for(Terms=0;Terms<Dim;Terms++)
Vector[Terms]=Express[Terms];
Allow_Identifier_In_Call = old_allow_id;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_UV_Vect (UV_VECT UV_Vect)
{
EXPRESS Express;
int Terms;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
/* Initialize expression. [DB 12/94] */
for (Terms = 0; Terms < 5; Terms++)
{
Express[Terms] = 0.0;
}
Terms=2;
if (sceneData->languageVersion < 150)
Parse_Num_Factor(Express,&Terms);
else
Parse_Rel_Factor(Express,&Terms);
if (Terms>2)
Error ("UV_Vector expected but vector or color expression found.");
for(Terms=0;Terms<2;Terms++)
UV_Vect[Terms]=Express[Terms];
Allow_Identifier_In_Call = old_allow_id;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
int Parser::Parse_Unknown_Vector(EXPRESS Express, bool allow_identifier, bool *had_identifier)
{
int Terms;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = allow_identifier;
Identifier_In_Call = false;
/* Initialize expression. [DB 12/94] */
for (Terms = 0; Terms < 5; Terms++)
{
Express[Terms] = 0.0;
}
Terms=1;
if (sceneData->languageVersion < 150)
Parse_Num_Factor(Express,&Terms);
else
Parse_Rel_Factor(Express,&Terms);
if(had_identifier != NULL)
*had_identifier = Identifier_In_Call;
Allow_Identifier_In_Call = old_allow_id;
return(Terms);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Scale_Vector (VECTOR Vector)
{
Parse_Vector(Vector);
if (Vector[X] == 0.0)
{
Vector[X] = 1.0;
Warning(0, "Illegal Value: Scale X by 0.0. Changed to 1.0.");
}
if (Vector[Y] == 0.0)
{
Vector[Y] = 1.0;
Warning(0, "Illegal Value: Scale Y by 0.0. Changed to 1.0.");
}
if (Vector[Z] == 0.0)
{
Vector[Z] = 1.0;
Warning(0, "Illegal Value: Scale Z by 0.0. Changed to 1.0.");
}
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::Parse_Colour (COLOUR colour, bool expectFT)
{
EXPRESS Express;
int Terms;
int i;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
/* Initialize expression. [DB 12/94] */
for (Terms = 0; Terms < 5; Terms++)
{
Express[Terms] = 0.0;
}
Make_ColourA (colour, 0.0, 0.0, 0.0, 0.0, 0.0);
bool startedParsing = false;
ALLOW(COLOUR_TOKEN)
EXPECT
CASE (COLOUR_KEY_TOKEN)
switch(Token.Function_Id)
{
case ALPHA_TOKEN:
Warning(155, "Keyword ALPHA discontinued. Use FILTER instead.");
/* missing break deliberate */
case FILTER_TOKEN:
colour[pFILTER] = (COLC)Parse_Float();
if (!expectFT && (colour[pFILTER] != 0))
Warning(0, "Expected pure RGB color expression, unexpected filter component will have no effect.");
break;
case BLUE_TOKEN:
colour[pBLUE] = (COLC)Parse_Float();
break;
case GREEN_TOKEN:
colour[pGREEN] = (COLC)Parse_Float();
break;
case RED_TOKEN:
colour[pRED] = (COLC)Parse_Float();
break;
case TRANSMIT_TOKEN:
colour[pTRANSM] = (COLC)Parse_Float();
if (!expectFT && (colour[pTRANSM] != 0))
Warning(0, "Expected pure RGB color expression, unexpected transmit component will have no effect.");
break;
case RGB_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
Terms=3;
Parse_Express(Express,&Terms);
if (Terms != 3)
Warning(0, "Suspicious expression after rgb.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
}
break;
case RGBF_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
Terms=4;
Parse_Express(Express,&Terms);
if (Terms != 4)
Warning(0, "Suspicious expression after rgbf.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
if (!expectFT && (colour[pFILTER] != 0))
Warning(0, "Expected pure RGB color expression, unexpected filter component will have no effect.");
}
break;
case RGBT_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
Terms=4;
Parse_Express(Express,&Terms);
if (Terms != 4)
Warning(0, "Suspicious expression after rgbt.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
colour[pTRANSM]=colour[pFILTER];
colour[pFILTER]=0.0;
if (!expectFT && (colour[pTRANSM] != 0))
Warning(0, "Expected pure RGB color expression, unexpected transmit component will have no effect.");
}
break;
case RGBFT_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
Terms=5;
Parse_Express(Express,&Terms);
if (Terms != 5)
Warning(0, "Suspicious expression after rgbft.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
if (!expectFT && ((colour[pFILTER] != 0) || (colour[pTRANSM] != 0)))
Warning(0, "Expected pure RGB color expression, unexpected filter and transmit components will have no effect.");
}
break;
#if 0 // sred, sgreen and sblue tokens not enabled at present
case SBLUE_TOKEN:
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
colour[pBLUE] = sceneData->workingGammaToSRGB->Decode((COLC)Parse_Float());
break;
case SGREEN_TOKEN:
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
colour[pGREEN] = sceneData->workingGammaToSRGB->Decode((COLC)Parse_Float());
break;
case SRED_TOKEN:
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
colour[pRED] = sceneData->workingGammaToSRGB->Decode((COLC)Parse_Float());
break;
#endif
case SRGB_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
Terms=3;
Parse_Express(Express,&Terms);
if (Terms != 3)
Warning(0, "Suspicious expression after srgb.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
for (i=0;i<3;i++)
colour[i]=sceneData->workingGammaToSRGB->Decode(colour[i]);
}
break;
case SRGBF_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
Terms=4;
Parse_Express(Express,&Terms);
if (Terms != 4)
Warning(0, "Suspicious expression after srgbf.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
for (i=0;i<3;i++)
colour[i]=sceneData->workingGammaToSRGB->Decode(colour[i]);
if (!expectFT && (colour[pFILTER] != 0))
Warning(0, "Expected pure RGB color expression, unexpected filter component will have no effect.");
}
break;
case SRGBT_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
Terms=4;
Parse_Express(Express,&Terms);
if (Terms != 4)
Warning(0, "Suspicious expression after srgbt.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
colour[pTRANSM]=colour[pFILTER];
colour[pFILTER]=0.0;
for (i=0;i<3;i++)
colour[i]=sceneData->workingGammaToSRGB->Decode(colour[i]);
if (!expectFT && (colour[pTRANSM] != 0))
Warning(0, "Expected pure RGB color expression, unexpected transmit component will have no effect.");
}
break;
case SRGBFT_TOKEN:
if(startedParsing)
{
UNGET
EXIT
}
else
{
if (!sceneData->workingGammaToSRGB)
Error("Cannot parse sRGB colors before assumed_gamma has been set.");
Terms=5;
Parse_Express(Express,&Terms);
if (Terms != 5)
Warning(0, "Suspicious expression after srgbft.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
for (i=0;i<3;i++)
colour[i]=sceneData->workingGammaToSRGB->Decode(colour[i]);
if (!expectFT && ((colour[pFILTER] != 0) || (colour[pTRANSM] != 0)))
Warning(0, "Expected pure RGB color expression, unexpected filter and transmit components will have no effect.");
}
break;
}
startedParsing = true;
END_CASE
CASE (COLOUR_ID_TOKEN)
UNGET
if (startedParsing)
{
EXIT
}
else
{
if (expectFT)
Terms = 5;
else
Terms = 3;
Parse_Express(Express,&Terms);
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
if (!expectFT && ((colour[pFILTER] != 0) || (colour[pTRANSM] != 0)))
Warning(0, "Expected pure RGB color expression, unexpected filter and transmit components will have no effect.");
startedParsing = true;
}
END_CASE
CASE_VECTOR
UNGET
if (startedParsing)
{
EXIT
}
else
{
if (expectFT)
Terms = 5;
else
Terms = 3;
Parse_Express(Express,&Terms);
if (expectFT && (Terms != 5))
Error("Color expression expected but float or vector expression found.");
else if (!expectFT && ((Terms < 3) || Terms > 5))
Error("RGB color expression expected but float or vector expression found.");
for (i=0;i<Terms;i++)
colour[i]=(COLC)Express[i];
if (!expectFT && ((colour[pFILTER] != 0) || (colour[pTRANSM] != 0)))
Warning(0, "Expected pure RGB color expression, unexpected filter and transmit components will have no effect.");
startedParsing = true;
}
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
Allow_Identifier_In_Call = old_allow_id;
}
void Parser::Parse_Colour (Colour& colour)
{
Parse_Colour (*colour, true);
}
void Parser::Parse_Colour (RGBColour& colour)
{
Colour tempColour;
Parse_Colour (*tempColour, false);
colour = RGBColour(tempColour);
}
/*****************************************************************************
*
* FUNCTION
*
* Parse_Blend_Map
*
* INPUT
*
* Type of map to parse: pigment_map, normal_map etc
*
* OUTPUT
*
* RETURNS
*
* Pointer to created blend map
*
* AUTHOR
*
* Chris Young 11/94
*
* DESCRIPTION :
*
* CHANGES
*
******************************************************************************/
BLEND_MAP *Parser::Parse_Blend_Map (int Blend_Type,int Pat_Type)
{
BLEND_MAP *New = NULL;
BLEND_MAP_ENTRY *Temp_Ent;
int i;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
Parse_Begin ();
EXPECT
CASE2 (COLOUR_MAP_ID_TOKEN, PIGMENT_MAP_ID_TOKEN)
CASE3 (NORMAL_MAP_ID_TOKEN, TEXTURE_MAP_ID_TOKEN, SLOPE_MAP_ID_TOKEN)
New = Copy_Blend_Map ((BLEND_MAP *) Token.Data);
if (Blend_Type != New->Type)
{
Error("Wrong identifier type");
}
EXIT
END_CASE
OTHERWISE
UNGET
Temp_Ent = Create_BMap_Entries(MAX_BLEND_MAP_ENTRIES);
i = 0;
EXPECT
CASE (LEFT_SQUARE_TOKEN)
if (i >= MAX_BLEND_MAP_ENTRIES)
Error ("Too many entries in map. The maximum is %d entries per map.", MAX_BLEND_MAP_ENTRIES);
switch (Pat_Type)
{
case AVERAGE_PATTERN:
Temp_Ent[i].value = Allow_Float(1.0);
Parse_Comma();
break;
default:
Temp_Ent[i].value = Parse_Float();
Parse_Comma();
break;
}
switch (Blend_Type)
{
case PIGMENT_TYPE:
Temp_Ent[i].Vals.Pigment=Copy_Pigment(Default_Texture->Pigment);
Parse_Pigment(&(Temp_Ent[i].Vals.Pigment));
break;
case NORMAL_TYPE:
Temp_Ent[i].Vals.Tnormal=Copy_Tnormal(Default_Texture->Tnormal);
Parse_Tnormal(&(Temp_Ent[i].Vals.Tnormal));
break;
case SLOPE_TYPE:
Parse_UV_Vect(Temp_Ent[i].Vals.Point_Slope);
break;
case TEXTURE_TYPE:
Temp_Ent[i].Vals.Texture=Parse_Texture();
break;
case DENSITY_TYPE:
Temp_Ent[i].Vals.Pigment=NULL;
Parse_Media_Density_Pattern (&(Temp_Ent[i].Vals.Pigment));
break;
default:
Error("Type not implemented yet.");
}
i++;
GET (RIGHT_SQUARE_TOKEN);
END_CASE
OTHERWISE
UNGET
if (i < 1)
Error ("Must have at least one entry in map.");
New = Create_Blend_Map ();
New->Number_Of_Entries = i;
New->Type=Blend_Type;
New->Transparency_Flag=true; /*Temp fix. Really set in Post_???*/
New->Blend_Map_Entries = (BLEND_MAP_ENTRY *)POV_REALLOC(Temp_Ent,sizeof(BLEND_MAP_ENTRY)*i,"blend map entries");
EXIT
END_CASE
END_EXPECT
EXIT
END_CASE
END_EXPECT
Parse_End ();
Allow_Identifier_In_Call = old_allow_id;
return (New);
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
BLEND_MAP *Parser::Parse_Blend_List (int Count,const BLEND_MAP *Def_Map,int Blend_Type)
{
BLEND_MAP *New;
BLEND_MAP_ENTRY *Temp_Ent;
int Type, i;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
i = 0;
if(Blend_Type == PIGMENT_TYPE)
{
EXPECT
CASE(PIGMENT_TOKEN)
UNGET
Type=PIGMENT_TYPE;
EXIT
END_CASE
OTHERWISE
UNGET
Type=COLOUR_TYPE;
EXIT
END_CASE
END_EXPECT
}
else
{
Type=Blend_Type;
}
Temp_Ent = Create_BMap_Entries(Count);
switch(Type)
{
case COLOUR_TYPE:
EXPECT
CASE_EXPRESS
Parse_Colour (Temp_Ent[i].Vals.colour);
Parse_Comma ();
Temp_Ent[i].value = (SNGL)i;
if (++i >= Count)
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
break;
case PIGMENT_TYPE:
EXPECT
CASE(PIGMENT_TOKEN)
Parse_Begin ();
Temp_Ent[i].Vals.Pigment=Copy_Pigment(Default_Texture->Pigment);
Parse_Pigment(&(Temp_Ent[i].Vals.Pigment));
Parse_End ();
Parse_Comma ();
Temp_Ent[i].value = (SNGL)i;
if (++i >= Count)
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
break;
case NORMAL_TYPE:
EXPECT
CASE(TNORMAL_TOKEN)
Parse_Begin ();
Temp_Ent[i].Vals.Tnormal=Copy_Tnormal(Default_Texture->Tnormal);
Parse_Tnormal(&(Temp_Ent[i].Vals.Tnormal));
Parse_End ();
Parse_Comma ();
Temp_Ent[i].value = (SNGL)i;
if (++i >= Count)
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
break;
case TEXTURE_TYPE:
EXPECT
CASE(TEXTURE_TOKEN)
Parse_Begin ();
Temp_Ent[i].Vals.Texture=Parse_Texture();
Parse_End ();
Parse_Comma ();
Temp_Ent[i].value = (SNGL)i;
if (++i >= Count)
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
break;
case DENSITY_TYPE:
EXPECT
CASE(DENSITY_TOKEN)
Parse_Begin ();
Temp_Ent[i].Vals.Pigment=NULL;
Parse_Media_Density_Pattern (&(Temp_Ent[i].Vals.Pigment));
Parse_End ();
Parse_Comma ();
Temp_Ent[i].value = (SNGL)i;
if (++i >= Count)
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
break;
}
if ((Type==NORMAL_TYPE) && (i==0))
{
POV_FREE(Temp_Ent);
return (NULL);
}
while (i < Count)
{
switch (Type)
{
case COLOUR_TYPE:
Assign_Colour(Temp_Ent[i].Vals.colour, Def_Map->Blend_Map_Entries[i].Vals.colour);
break;
case PIGMENT_TYPE:
Temp_Ent[i].Vals.Pigment=Copy_Pigment(Default_Texture->Pigment);
break;
case NORMAL_TYPE:
Temp_Ent[i].Vals.Tnormal=Copy_Tnormal(Default_Texture->Tnormal);
break;
case TEXTURE_TYPE:
Temp_Ent[i].Vals.Texture=Copy_Textures(Default_Texture);
break;
case DENSITY_TYPE:
Temp_Ent[i].Vals.Pigment=NULL;
break;
}
Temp_Ent[i].value = (SNGL)i;
i++;
}
New = Create_Blend_Map ();
New->Number_Of_Entries = Count;
New->Type=Type;
New->Transparency_Flag=true; /*Temp fix. Really set in Post_???*/
New->Blend_Map_Entries = Temp_Ent;
Allow_Identifier_In_Call = old_allow_id;
return (New);
}
/*****************************************************************************
*
* FUNCTION Parse_Item_Into_Blend_List
*
* INPUT Blend_Type
*
* OUTPUT
*
* RETURNS BLEND_MAP
*
* AUTHOR Nathan Kopp and others - copied & modified from Parse_Blend_List
*
* DESCRIPTION
*
* This performs a similar funciton to Parse_Blend_List. It was created
* specifically for uv mapping. It is different from Parse_Blend_List in
* the following ways:
* It will parse exactly one item (normal,pigment, or texture).
* It will NOT parse any wrapping tokens, such as "texture{...}"
* (It is looking only for the body of the item, not the entire item.)
* Because it always parses exactly one item, no default blend list is
* needed.
*
* CHANGES
*
******************************************************************************/
BLEND_MAP *Parser::Parse_Item_Into_Blend_List (int Blend_Type)
{
BLEND_MAP *New;
BLEND_MAP_ENTRY *Temp_Ent;
int Type;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
Type=Blend_Type;
Temp_Ent = Create_BMap_Entries(1);
Temp_Ent[0].value = 0.0f;
switch(Type)
{
case COLOUR_TYPE:
Parse_Colour (Temp_Ent[0].Vals.colour);
break;
case PIGMENT_TYPE:
Temp_Ent[0].Vals.Pigment=Copy_Pigment(Default_Texture->Pigment);
Parse_Pigment(&(Temp_Ent[0].Vals.Pigment));
break;
case NORMAL_TYPE:
Temp_Ent[0].Vals.Tnormal=Copy_Tnormal(Default_Texture->Tnormal);
Parse_Tnormal(&(Temp_Ent[0].Vals.Tnormal));
break;
case TEXTURE_TYPE:
Temp_Ent[0].Vals.Texture=Parse_Texture();
break;
case DENSITY_TYPE:
Temp_Ent[0].Vals.Pigment=NULL;
Parse_Media_Density_Pattern (&(Temp_Ent[0].Vals.Pigment));
break;
}
New = Create_Blend_Map ();
New->Number_Of_Entries = 1;
New->Type=Type;
New->Transparency_Flag=true; /*Temp fix. Really set in Post_???*/
New->Blend_Map_Entries = Temp_Ent;
Allow_Identifier_In_Call = old_allow_id;
return (New);
}
/*****************************************************************************
*
* FUNCTION
*
* Parse_Colour_Map
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* Pointer to newly created BLEND_MAP that has colors as all
* its entries.
*
* AUTHOR
*
* POV-Ray Team
*
* DESCRIPTION : This seperate routine parses color_maps only. It
* cannot be used for pigment_maps because it accomidates
* the old double entry color maps from vers 1.0
*
* CHANGES
*
******************************************************************************/
BLEND_MAP *Parser::Parse_Colour_Map ()
{
BLEND_MAP *New = NULL;
int i,j,c,p,ii;
EXPRESS Express;
int Terms;
BLEND_MAP_ENTRY *Temp_Ent;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
Parse_Begin ();
EXPECT
CASE (COLOUR_MAP_ID_TOKEN)
New = Copy_Blend_Map ((BLEND_MAP *) Token.Data);
EXIT
END_CASE
OTHERWISE
UNGET
Temp_Ent = Create_BMap_Entries(MAX_BLEND_MAP_ENTRIES);
i = 0;
j = 1;
EXPECT
CASE (LEFT_SQUARE_TOKEN)
if (i >= MAX_BLEND_MAP_ENTRIES)
Error ("Blend_Map too long.");
Temp_Ent[i].value = Parse_Float(); Parse_Comma();
EXPECT
/* After [ must be a float. If 2nd thing found is another
float then this is an old style color_map.
*/
CASE_FLOAT
Terms=1;
Parse_Express(Express,&Terms);
if (Terms==1)
{
if (j >= MAX_BLEND_MAP_ENTRIES)
Error ("Blend_Map too long.");
Temp_Ent[j].value = Express[0];
Parse_Colour (Temp_Ent[i].Vals.colour);
GET (COLOUR_TOKEN);
Parse_Colour (Temp_Ent[j].Vals.colour);
i += 2;
j += 2;
}
else
if (Terms==5)
{
for (ii=0;ii<5;ii++)
Temp_Ent[i].Vals.colour[ii]=(COLC)Express[ii];
i++;
j++;
}
else
Error("Illegal expression syntax in color_map.");
EXIT
END_CASE
CASE_COLOUR
Parse_Colour (Temp_Ent[i].Vals.colour);
i++;
j++;
EXIT
END_CASE
OTHERWISE
Expectation_Error("color");
UNGET
EXIT
END_CASE
END_EXPECT
GET (RIGHT_SQUARE_TOKEN);
END_CASE
OTHERWISE
UNGET
if (i < 1)
Error ("Must have at least one color in color map.");
/* Eliminate duplicates */
for (c = 1, p = 0; c<i; c++)
{
if (memcmp(&(Temp_Ent[p]),
&(Temp_Ent[c]),sizeof(BLEND_MAP_ENTRY)) == 0)
p--;
Temp_Ent[++p] = Temp_Ent[c];
}
p++;
New = Create_Blend_Map ();
New->Number_Of_Entries = p;
New->Type=COLOUR_TYPE;
New->Transparency_Flag=true; /*Temp fix. Really set in Post_???*/
New->Blend_Map_Entries = (BLEND_MAP_ENTRY *)POV_REALLOC(Temp_Ent,sizeof(BLEND_MAP_ENTRY)*p,"blend map entries");
EXIT
END_CASE
END_EXPECT
EXIT
END_CASE
END_EXPECT
Parse_End ();
Allow_Identifier_In_Call = old_allow_id;
return (New);
}
/*****************************************************************************
*
* FUNCTION
*
* Parse_Spline
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* Pointer to newly created SPLINE
*
* AUTHOR
*
* Wolfgang Ortmann
*
* DESCRIPTION : This seperate routine parses pure splines only. Splines in
* lathe objects and SOR are similar but not identical
*
* CHANGES
* Chris Huff Nov 2000 : Added the ability to use one spline as the basis for
* another
* Mark Wagner Nov 2000 : Modified to work with the dynamic-allocation version
* of splines.c
*
******************************************************************************/
SPLINE *Parser::Parse_Spline()
{
SPLINE * New = NULL;
int i = 0;
int Type = LINEAR_SPLINE;
EXPRESS Express;
int Terms, MaxTerms;
DBL par;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
MaxTerms = 2;
/*Check for spline identifier*/
EXPECT
CASE(SPLINE_ID_TOKEN)
New = Copy_Spline((SPLINE *)Token.Data);
i = New->Number_Of_Entries;
MaxTerms = New->Terms;
Type = New->Type;
EXIT
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
/* Determine kind of spline */
EXPECT
CASE(LINEAR_SPLINE_TOKEN)
Type = LINEAR_SPLINE;
END_CASE
CASE(QUADRATIC_SPLINE_TOKEN)
Type = QUADRATIC_SPLINE;
END_CASE
CASE(CUBIC_SPLINE_TOKEN)
Type = CATMULL_ROM_SPLINE;
END_CASE
CASE(NATURAL_SPLINE_TOKEN)
Type = NATURAL_SPLINE;
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
if(New == NULL)
New = Create_Spline(Type);
else
New->Type = Type;
EXPECT
CASE_FLOAT
/* Entry has the form float,vector */
par = Parse_Float();
Parse_Comma();
Terms = 2;
Parse_Express(Express, &Terms);
if(Terms > 5)
Error("Too many components in vector!\n");
MaxTerms = max(MaxTerms, Terms);
Parse_Comma();
/* MWW 2000 -- Changed call for dynamic allocation version */
Insert_Spline_Entry(New, par, Express);
i++;
END_CASE
OTHERWISE
UNGET
EXIT
END_CASE
END_EXPECT
if(i < 1)
Error("Spline must have at least one entry.");
New->Terms = MaxTerms; // keep number of supplied terms
Allow_Identifier_In_Call = old_allow_id;
return New;
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::POV_strupr(char *s)
{
int i,len;
for (i = 0,len = (int)strlen(s); i < len; i++)
{
s[i] = (char)toupper((int)s[i]);
}
}
/*****************************************************************************
*
* FUNCTION
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* DESCRIPTION
*
* CHANGES
*
******************************************************************************/
void Parser::POV_strlwr(char *s)
{
int i,len;
for (i = 0,len = (int)strlen(s); i < len; i++)
{
s[i] = (char)tolower((int)s[i]);
}
}
/*****************************************************************************
*
* FUNCTION
*
* stream_rand
*
* INPUT
*
* stream - number of random stream
*
* OUTPUT
*
* RETURNS
*
* DBL - random value
*
* AUTHOR
*
* Dieter Bayer
*
* DESCRIPTION
*
* Standard pseudo-random function.
*
* CHANGES
*
* Feb 1996 : Creation.
* Mar 1996 : Return 2^32 random values instead of 2^16 [AED]
*
******************************************************************************/
DBL Parser::stream_rand(int stream)
{
return POV_rand(next_rand[stream]);
}
/*****************************************************************************
*
* FUNCTION
*
* stream_seed
*
* INPUT
*
* seed - Pseudo-random generator start value
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* Dieter Bayer
*
* DESCRIPTION
*
* Set start value for pseudo-random generator.
*
* CHANGES
*
* Feb 1996 : Creation.
*
******************************************************************************/
int Parser::stream_seed(int seed)
{
next_rand = (unsigned int *)POV_REALLOC(next_rand, (Number_Of_Random_Generators+1)*sizeof(unsigned int), "random number generator");
next_rand[Number_Of_Random_Generators] = (unsigned int)seed;
Number_Of_Random_Generators++;
return (Number_Of_Random_Generators-1);
}
/*****************************************************************************
*
* FUNCTION
*
* Init_Random_Generators
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* Dieter Bayer
*
* DESCRIPTION
*
* CHANGES
*
* Feb 1996 : Creation.
*
******************************************************************************/
void Parser::Init_Random_Generators()
{
Number_Of_Random_Generators = 0;
next_rand = NULL;
}
/*****************************************************************************
*
* FUNCTION
*
* Destroy_Random_Generators
*
* INPUT
*
* OUTPUT
*
* RETURNS
*
* AUTHOR
*
* Dieter Bayer
*
* DESCRIPTION
*
* CHANGES
*
* Feb 1996 : Creation.
*
******************************************************************************/
void Parser::Destroy_Random_Generators()
{
if (next_rand != NULL)
{
POV_FREE(next_rand);
}
next_rand = NULL;
Number_Of_Random_Generators = 0;
}
DBL Parser::Parse_Signed_Float(void)
{
DBL Sign=1.0;
DBL Val=0.0;
bool old_allow_id = Allow_Identifier_In_Call;
Allow_Identifier_In_Call = false;
EXPECT
CASE (PLUS_TOKEN)
END_CASE
CASE (DASH_TOKEN)
Sign=-1.0;
Get_Token();
/* Deliberate fall through with no END_CASE */
CASE (FLOAT_FUNCT_TOKEN)
if (Token.Function_Id==FLOAT_TOKEN)
{
Val = Sign * Token.Token_Float;
EXIT
}
else
{
Parse_Error(FLOAT_TOKEN);
}
END_CASE
OTHERWISE
Parse_Error(FLOAT_TOKEN);
END_CASE
END_EXPECT
Allow_Identifier_In_Call = old_allow_id;
return(Val);
}
}
|