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
|
/***************************************************************
bwb_inp.c Input Routines
for Bywater BASIC Interpreter
Commands: DATA
READ
RESTORE
INPUT
LINE INPUT
Copyright (c) 1993, Ted A. Campbell
Bywater Software
email: tcamp@delphi.com
Copyright and Permissions Information:
All U.S. and international rights are claimed by the author,
Ted A. Campbell.
This software is released under the terms of the GNU General
Public License (GPL), which is distributed with this software
in the file "COPYING". The GPL specifies the terms under
which users may copy and use the software in this distribution.
A separate license is available for commercial distribution,
for information on which you should contact the author.
***************************************************************/
/*---------------------------------------------------------------*/
/* NOTE: Modifications marked "JBV" were made by Jon B. Volkoff, */
/* 11/1995 (eidetics@cerf.net). */
/*---------------------------------------------------------------*/
#include <stdio.h>
#include <ctype.h>
#include <math.h>
#include "bwbasic.h"
#include "bwb_mes.h"
/* Declarations of functions visible to this file only */
#if ANSI_C
static struct bwb_line *bwb_xinp( struct bwb_line *l, FILE *f );
static struct bwb_line *inp_str( struct bwb_line *l, char *buffer,
char *var_list, int *position );
static int inp_const( char *m_buffer, char *s_buffer, int *position );
static int inp_assign( char *b, struct bwb_variable *v );
static int inp_advws( FILE *f );
static int inp_xgetc( FILE *f, int is_string );
static int inp_eatcomma( FILE *f );
static bnumber inp_numconst( char *expression ); /* JBV */
#else
static struct bwb_line *bwb_xinp();
static struct bwb_line *inp_str();
static int inp_const();
static int inp_assign();
static int inp_advws();
static int inp_xgetc();
static int inp_eatcomma();
static bnumber inp_numconst(); /* JBV */
#endif
static char_saved = FALSE;
static cs;
static int last_inp_adv_rval = FALSE; /* JBV */
/***************************************************************
FUNCTION: bwb_read()
DESCRIPTION: This function implements the BASIC READ
statement.
SYNTAX: READ variable[, variable...]
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_read( struct bwb_line *l )
#else
struct bwb_line *
bwb_read( l )
struct bwb_line *l;
#endif
{
int pos;
register int n;
int main_loop, adv_loop;
struct bwb_variable *v;
int n_params; /* number of parameters */
int *pp; /* pointer to parameter values */
char tbuf[ MAXSTRINGSIZE + 1 ];
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): buffer <%s>",
&( l->buffer[ l->position ]));
bwb_debug( bwb_ebuf );
#endif
/* Process each variable read from the READ statement */
main_loop = TRUE;
while ( main_loop == TRUE )
{
/* first check position in l->buffer and advance beyond whitespace */
adv_loop = TRUE;
while( adv_loop == TRUE )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read() adv_loop char <%d> = <%c>",
l->buffer[ l->position ], l->buffer[ l->position ] );
bwb_debug( bwb_ebuf );
#endif
switch ( l->buffer[ l->position ] )
{
case ',': /* comma delimiter */
case ' ': /* whitespace */
case '\t':
++l->position;
break;
case ':': /* end of line segment */
case '\n': /* end of line */
case '\r':
case '\0':
adv_loop = FALSE; /* break out of advance loop */
main_loop = FALSE; /* break out of main loop */
break;
default: /* anything else */
adv_loop = FALSE; /* break out of advance loop */
break;
}
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): end of adv_loop <%d> main_loop <%d>",
adv_loop, main_loop );
bwb_debug( bwb_ebuf );
#endif
/* be sure main_loop id still valid after checking the line */
if ( main_loop == TRUE )
{
/* Read a variable name */
bwb_getvarname( l->buffer, tbuf, &( l->position ) );
inp_adv( l->buffer, &( l->position ) );
v = var_find( tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): line <%d> variable <%s>",
l->number, v->name );
bwb_debug( bwb_ebuf );
sprintf( bwb_ebuf, "in bwb_read(): remaining line <%s>",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
#endif
/* advance beyond whitespace or comma in data buffer */
inp_adv( CURTASK data_line->buffer, &CURTASK data_pos );
/* Advance to next line if end of buffer */
switch( CURTASK data_line->buffer[ CURTASK data_pos ] )
{
case '\0': /* end of buffer */
case '\n':
case '\r':
CURTASK data_line = CURTASK data_line->next;
/* advance farther to line with DATA statement if necessary */
pos = 0;
line_start( CURTASK data_line->buffer, &pos,
&( CURTASK data_line->lnpos ),
&( CURTASK data_line->lnum ),
&( CURTASK data_line->cmdpos ),
&( CURTASK data_line->cmdnum ),
&( CURTASK data_line->startpos ) );
CURTASK data_pos = CURTASK data_line->startpos;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): current data line: <%s>",
CURTASK data_line->buffer );
bwb_debug( bwb_ebuf );
#endif
break;
}
while ( bwb_cmdtable[ CURTASK data_line->cmdnum ].vector != bwb_data )
{
if ( CURTASK data_line == &CURTASK bwb_end )
{
CURTASK data_line = CURTASK bwb_start.next;
}
else
{
CURTASK data_line = CURTASK data_line->next;
}
pos = 0;
line_start( CURTASK data_line->buffer, &pos,
&( CURTASK data_line->lnpos ),
&( CURTASK data_line->lnum ),
&( CURTASK data_line->cmdpos ),
&( CURTASK data_line->cmdnum ),
&( CURTASK data_line->startpos ) );
CURTASK data_pos = CURTASK data_line->startpos;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): advance to data line: <%s>",
CURTASK data_line->buffer );
bwb_debug( bwb_ebuf );
#endif
}
/* advance beyond whitespace in data buffer */
adv_loop = TRUE;
while ( adv_loop == TRUE )
{
switch( CURTASK data_line->buffer[ CURTASK data_pos ] )
{
case '\0': /* end of buffer */
case '\n':
case '\r':
bwb_error( err_od );
return bwb_zline( l );
case ' ': /* whitespace */
case '\t':
++CURTASK data_pos;
break;
default:
adv_loop = FALSE; /* carry on */
break;
}
}
/* now at last we have a variable in v that needs to be
assigned data from the data_buffer at position CURTASK data_pos.
What remains to be done is to get one single bit of data,
a string constant or numerical constant, into the small
buffer */
inp_const( CURTASK data_line->buffer, tbuf, &CURTASK data_pos );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): data constant is <%s>", tbuf );
bwb_debug( bwb_ebuf );
#endif
/* get parameters if the variable is dimensioned */
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == '(' )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): variable <%s> is dimensioned",
v->name );
bwb_debug( bwb_ebuf );
#endif
dim_getparams( l->buffer, &( l->position ), &n_params, &pp );
for ( n = 0; n < v->dimensions; ++n )
{
v->array_pos[ n ] = pp[ n ];
}
}
#if INTENSIVE_DEBUG
else
{
sprintf( bwb_ebuf, "in bwb_read(): variable <%s> is NOT dimensioned",
v->name );
bwb_debug( bwb_ebuf );
sprintf( bwb_ebuf, "in bwb_read(): remaining line <%s>",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
}
#endif
/* finally assign the data to the variable */
inp_assign( tbuf, v );
} /* end of remainder of main loop */
} /* end of main_loop */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_read(): exiting function, line <%s> ",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
#endif
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_data()
DESCRIPTION: This function implements the BASIC DATA
statement, although at the point at which
DATA statements are encountered, no
processing is done. All actual processing
of DATA statements is accomplished by READ
(bwb_read()).
SYNTAX: DATA constant[, constant]...
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_data( struct bwb_line *l )
#else
struct bwb_line *
bwb_data( l )
struct bwb_line *l;
#endif
{
#if MULTISEG_LINES
adv_eos( l->buffer, &( l->position ));
#endif
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_restore()
DESCRIPTION: This function implements the BASIC RESTORE
statement.
SYNTAX: RESTORE [line number]
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_restore( struct bwb_line *l )
#else
struct bwb_line *
bwb_restore( l )
struct bwb_line *l;
#endif
{
struct bwb_line *r;
struct bwb_line *r_line;
int n;
int pos;
char tbuf[ MAXSTRINGSIZE + 1 ];
/* get the first element beyond the starting position */
adv_element( l->buffer, &( l->position ), tbuf );
/* if the line is not a numerical constant, then there is no
argument; set the current line to the first in the program */
if ( is_numconst( tbuf ) != TRUE )
{
CURTASK data_line = &CURTASK bwb_start;
CURTASK data_pos = 0;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_restore(): RESTORE w/ no argument " );
bwb_debug( bwb_ebuf );
#endif
return bwb_zline( l );
}
/* find the line */
n = atoi( tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_restore(): line for restore is <%d>", n );
bwb_debug( bwb_ebuf );
#endif
r_line = NULL;
for ( r = CURTASK bwb_start.next; r != &CURTASK bwb_end; r = r->next )
{
if ( r->number == n )
{
r_line = r;
}
}
if ( r_line == NULL )
{
#if PROG_ERRORS
sprintf( bwb_ebuf, "at line %d: Can't find line number for RESTORE.",
l->number );
bwb_error( bwb_ebuf );
#else
sprintf( bwb_ebuf, err_lnnotfound, n );
bwb_error( bwb_ebuf );
#endif
return bwb_zline( l );
}
/* initialize variables for the line */
pos = 0;
line_start( r_line->buffer, &pos,
&( r_line->lnpos ),
&( r_line->lnum ),
&( r_line->cmdpos ),
&( r_line->cmdnum ),
&( r_line->startpos ) );
/* verify that line is a data statement */
if ( bwb_cmdtable[ r_line->cmdnum ].vector != bwb_data )
{
#if PROG_ERRORS
sprintf( bwb_ebuf, "at line %d: Line %d is not a DATA statement.",
l->number, r_line->number );
bwb_error( bwb_ebuf );
#else
bwb_error( err_syntax );
#endif
return bwb_zline( l );
}
/* reassign CURTASK data_line */
CURTASK data_line = r_line;
CURTASK data_pos = CURTASK data_line->startpos;
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_input()
DESCRIPTION: This function implements the BASIC INPUT
statement.
SYNTAX: INPUT [;][prompt$;]variable[$,variable]...
INPUT#n variable[$,variable]...
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_input( struct bwb_line *l )
#else
struct bwb_line *
bwb_input( l )
struct bwb_line *l;
#endif
{
FILE *fp;
int pos;
int req_devnumber;
struct exp_ese *v;
int is_prompt;
int suppress_qm;
static char tbuf[ MAXSTRINGSIZE + 1 ];
static char pstring[ MAXSTRINGSIZE + 1 ];
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_input(): enter function" );
bwb_debug( bwb_ebuf );
#endif
pstring[ 0 ] = '\0';
#if COMMON_CMDS
/* advance beyond whitespace and check for the '#' sign */
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == '#' )
{
++( l->position );
adv_element( l->buffer, &( l->position ), tbuf );
pos = 0;
v = bwb_exp( tbuf, FALSE, &pos );
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == ',' )
{
++( l->position );
}
else
{
#if PROG_ERRORS
bwb_error( "in bwb_input(): no comma after#n" );
#else
bwb_error( err_syntax );
#endif
return bwb_zline( l );
}
req_devnumber = (int) exp_getnval( v );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_input(): requested device number <%d>",
req_devnumber );
bwb_debug( bwb_ebuf );
#endif
/* check the requested device number */
if ( ( req_devnumber < 0 ) || ( req_devnumber >= DEF_DEVICES ))
{
#if PROG_ERRORS
bwb_error( "in bwb_input(): Requested device number is out if range." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
if ( ( dev_table[ req_devnumber ].mode == DEVMODE_CLOSED ) ||
( dev_table[ req_devnumber ].mode == DEVMODE_AVAILABLE ) )
{
#if PROG_ERRORS
bwb_error( "in bwb_input(): Requested device number is not open." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
if ( dev_table[ req_devnumber ].mode != DEVMODE_INPUT )
{
#if PROG_ERRORS
bwb_error( "in bwb_input(): Requested device is not open for INPUT." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
/* look up the requested device in the device table */
fp = dev_table[ req_devnumber ].cfp;
}
else
{
fp = stdin;
}
#else
fp = stdin;
#endif /* COMMON_CMDS */
/* if input is not from stdin, then branch to bwb_xinp() */
if ( fp != stdin )
{
return bwb_xinp( l, fp );
}
/* from this point we presume that input is from stdin */
/* check for a semicolon or a quotation mark, not in
first position: this should indicate a prompt string */
suppress_qm = is_prompt = FALSE;
adv_ws( l->buffer, &( l->position ) );
switch( l->buffer[ l->position ] )
{
case '\"':
is_prompt = TRUE;
break;
case ';':
/* AGENDA: add code to suppress newline if a
semicolon is used here; this may not be possible
using ANSI C alone, since it has not functions for
unechoed console input. */
is_prompt = TRUE;
++l->position;
break;
case ',':
/* QUERY: why is this code here? the question mark should
be suppressed if a comma <follows> the prompt string. */
#if INTENSIVE_DEBUG
bwb_debug( "in bwb_input(): found initial comma" );
#endif
suppress_qm = TRUE;
++l->position;
break;
}
/* get prompt string and print it */
if ( is_prompt == TRUE )
{
/* get string element */
inp_const( l->buffer, tbuf, &( l->position ) );
/* advance past semicolon to beginning of variable */
/*--------------------------------------------------------*/
/* Since inp_const was just called and inp_adv is called */
/* within that, it will have already noted and passed the */
/* comma by the time it gets here. Therefore one must */
/* refer instead to the last returned value for inp_adv! */
/* (JBV, 10/95) */
/*--------------------------------------------------------*/
/* suppress_qm = inp_adv( l->buffer, &( l->position ) ); */
suppress_qm = last_inp_adv_rval;
/* print the prompt string */
strncpy( pstring, tbuf, MAXSTRINGSIZE );
} /* end condition: prompt string */
/* print out the question mark delimiter unless it has been
suppressed */
if ( suppress_qm != TRUE )
{
strncat( pstring, "? ", MAXSTRINGSIZE );
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_input(): ready to get input line" );
bwb_debug( bwb_ebuf );
#endif
/* read a line into the input buffer */
bwx_input( pstring, tbuf );
bwb_stripcr( tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_input(): received line <%s>", tbuf );
bwb_debug( bwb_ebuf );
bwb_debug( "Press RETURN: " );
getchar();
#endif
/* reset print column to account for LF at end of fgets() */
* prn_getcol( stdout ) = 1;
return inp_str( l, tbuf, l->buffer, &( l->position ) );
}
/***************************************************************
FUNCTION: bwb_xinp()
DESCRIPTION: This function does the bulk of processing
for INPUT#, and so is file independent.
***************************************************************/
#if ANSI_C
static struct bwb_line *
bwb_xinp( struct bwb_line *l, FILE *f )
#else
static struct bwb_line *
bwb_xinp( l, f )
struct bwb_line *l;
FILE *f;
#endif
{
int loop;
struct bwb_variable *v;
char c;
register int n;
int *pp;
int n_params;
char tbuf[ MAXSTRINGSIZE + 1 ];
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xinp(): buffer <%s>",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
#endif
/* loop through elements required */
loop = TRUE;
while ( loop == TRUE )
{
/* read a variable from the list */
bwb_getvarname( l->buffer, tbuf, &( l->position ) );
v = var_find( tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xinp(): found variable name <%s>",
v->name );
bwb_debug( bwb_ebuf );
#endif
/* read subscripts */
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == '(' )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xinp(): variable <%s> has dimensions",
v->name );
bwb_debug( bwb_ebuf );
#endif
dim_getparams( l->buffer, &( l->position ), &n_params, &pp );
for ( n = 0; n < v->dimensions; ++n )
{
v->array_pos[ n ] = pp[ n ];
}
}
inp_advws( f );
/* perform type-specific input */
switch( v->type )
{
case STRING:
if ( inp_xgetc( f, TRUE ) != '\"' )
{
#if PROG_ERRORS
sprintf( bwb_ebuf, "in bwb_xinp(): expected quotation mark" );
bwb_error( bwb_ebuf );
#else
bwb_error( err_mismatch );
#endif
}
n = 0;
while ( ( c = (char) inp_xgetc( f, TRUE )) != '\"' )
{
tbuf[ n ] = c;
++n;
tbuf[ n ] = '\0';
}
str_ctob( var_findsval( v, v->array_pos ), tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xinp(): read STRING <%s>",
tbuf );
bwb_debug( bwb_ebuf );
#endif
inp_eatcomma( f );
break;
default:
n = 0;
while ( ( c = (char) inp_xgetc( f, FALSE )) != ',' )
{
tbuf[ n ] = c;
++n;
tbuf[ n ] = '\0';
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xinp(): read NUMBER <%s>",
tbuf );
bwb_debug( bwb_ebuf );
#endif
/*------------------------------------------------------------*/
/* atof call replaced by inp_numconst, gets all input formats */
/* (JBV, 10/95) */
/*------------------------------------------------------------*/
/* * var_findnval( v, v->array_pos ) = (bnumber) atof( tbuf ); */
* var_findnval( v, v->array_pos ) = inp_numconst( tbuf );
break;
} /* end of switch for type-specific input */
/* check for comma */
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == ',' )
{
++( l->position );
}
else
{
loop = FALSE;
}
}
/* return */
return bwb_zline( l );
}
/***************************************************************
FUNCTION: inp_advws()
DESCRIPTION: This C function advances past whitespace
input from a particular file or device.
***************************************************************/
#if ANSI_C
static int
inp_advws( FILE *f )
#else
static int
inp_advws( f )
FILE *f;
#endif
{
register int c;
int loop;
loop = TRUE;
while ( loop == TRUE )
{
c = (char) inp_xgetc( f, TRUE );
switch( c )
{
case '\n':
case '\r':
case ' ':
case '\t':
break;
default:
char_saved = TRUE;
cs = c;
loop = FALSE;
break;
}
}
return TRUE;
}
/***************************************************************
FUNCTION: inp_xgetc()
DESCRIPTION: This C function reads in a character from
a specified file or device.
***************************************************************/
#if ANSI_C
static int
inp_xgetc( FILE *f, int is_string )
#else
static int
inp_xgetc( f, is_string )
FILE *f;
int is_string;
#endif
{
register int c;
static int prev_eof = FALSE;
if ( char_saved == TRUE )
{
char_saved = FALSE;
return cs;
}
if ( feof( f ) != 0 )
{
if ( prev_eof == TRUE )
{
bwb_error( err_od );
}
else
{
prev_eof = TRUE;
return (int) ',';
}
}
prev_eof = FALSE;
c = fgetc( f );
if ( is_string == TRUE )
{
return c;
}
switch( c )
{
case ' ':
case '\n':
case ',':
case '\r':
return ',';
}
return c;
}
/***************************************************************
FUNCTION: inp_eatcomma()
DESCRIPTION: This C function advances beyond a comma
input from a specified file or device.
***************************************************************/
#if ANSI_C
static int
inp_eatcomma( FILE *f )
#else
static int
inp_eatcomma( f )
FILE *f;
#endif
{
char c;
while ( ( c = (char) inp_xgetc( f, TRUE ) ) == ',' )
{
}
char_saved = TRUE;
cs = c;
return TRUE;
}
/***************************************************************
FUNCTION: inp_str()
DESCRIPTION: This function does INPUT processing
from a determined string of input
data and a determined variable list
(both in memory). This presupposes
that input has been taken from stdin,
not from a disk file or device.
***************************************************************/
#if ANSI_C
static struct bwb_line *
inp_str( struct bwb_line *l, char *input_buffer, char *var_list, int *vl_position )
#else
static struct bwb_line *
inp_str( l, input_buffer, var_list, vl_position )
struct bwb_line *l;
char *input_buffer;
char *var_list;
int *vl_position;
#endif
{
int i;
register int n;
struct bwb_variable *v;
int loop;
int *pp;
int n_params;
char ttbuf[ MAXSTRINGSIZE + 1 ]; /* build element */
char varname[ MAXSTRINGSIZE + 1 ]; /* build element */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_str(): received line <%s>",
l->buffer );
bwb_debug( bwb_ebuf );
sprintf( bwb_ebuf, "in inp_str(): received variable list <%s>.",
&( var_list[ *vl_position ] ) );
bwb_debug( bwb_ebuf );
sprintf( bwb_ebuf, "in inp_str(): received input buffer <%s>.",
input_buffer );
bwb_debug( bwb_ebuf );
#endif
/* Read elements, and assign them to variables */
i = 0;
loop = TRUE;
while ( loop == TRUE )
{
/* get a variable name from the list */
bwb_getvarname( var_list, varname, vl_position ); /* get name */
v = var_find( varname );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_str(): found variable buffer <%s> name <%s>",
varname, v->name );
bwb_debug( bwb_ebuf );
#endif
/* read subscripts if appropriate */
adv_ws( var_list, vl_position );
if ( var_list[ *vl_position ] == '(' )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_str(): variable <%s> has dimensions",
v->name );
bwb_debug( bwb_ebuf );
#endif
dim_getparams( var_list, vl_position, &n_params, &pp );
for ( n = 0; n < v->dimensions; ++n )
{
v->array_pos[ n ] = pp[ n ];
}
}
/* build string from input buffer in ttbuf */
n = 0;
ttbuf[ 0 ] = '\0';
while ( ( input_buffer[ i ] != ',' )
&& ( input_buffer[ i ] != '\0' ))
{
ttbuf[ n ] = input_buffer[ i ];
++n;
++i;
ttbuf[ n ] = '\0';
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_str(): string for input <%s>",
ttbuf );
bwb_debug( bwb_ebuf );
#endif
/* perform type-specific input */
inp_assign( ttbuf, v );
/* check for commas in variable list and input list and advance */
adv_ws( var_list, vl_position );
switch( var_list[ *vl_position ] )
{
case '\n':
case '\r':
case '\0':
case ':':
loop = FALSE;
break;
case ',':
++( *vl_position );
break;
}
adv_ws( var_list, vl_position );
adv_ws( input_buffer, &i );
switch ( input_buffer[ i ] )
{
case '\n':
case '\r':
case '\0':
case ':':
loop = FALSE;
break;
case ',':
++i;
break;
}
adv_ws( input_buffer, &i );
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_str(): exit, line buffer <%s>",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
#endif
/* return */
return bwb_zline( l );
}
/***************************************************************
FUNCTION: inp_assign()
DESCRIPTION: This function assigns the value of a
numerical or string constant to a
variable.
***************************************************************/
#if ANSI_C
static int
inp_assign( char *b, struct bwb_variable *v )
#else
static int
inp_assign( b, v )
char *b;
struct bwb_variable *v;
#endif
{
switch( v->type )
{
case STRING:
str_ctob( var_findsval( v, v->array_pos ), b );
break;
case NUMBER:
if ( strlen( b ) == 0 )
{
*( var_findnval( v, v->array_pos )) = (bnumber) 0.0;
}
else
{
/*------------------------------------------------------------*/
/* atof call replaced by inp_numconst, gets all input formats */
/* (JBV, 10/95) */
/*------------------------------------------------------------*/
/* *( var_findnval( v, v->array_pos )) = (bnumber) atof( b ); */
*( var_findnval( v, v->array_pos )) = inp_numconst( b );
}
break;
default:
#if PROG_ERRORS
sprintf( bwb_ebuf, "in inp_assign(): variable <%s> of unknown type",
v->name );
bwb_error( bwb_ebuf );
#else
bwb_error( err_mismatch );
#endif
return FALSE;
}
return FALSE;
}
/***************************************************************
FUNCTION: inp_adv()
DESCRIPTION: This function advances the string pointer
past whitespace and the item delimiter
(comma).
***************************************************************/
#if ANSI_C
int
inp_adv( char *b, int *c )
#else
int
inp_adv( b, c )
char *b;
int *c;
#endif
{
int rval;
rval = FALSE;
while( TRUE )
{
switch( b[ *c ] )
{
case ' ': /* whitespace */
case '\t':
case ';': /* semicolon, end of prompt string */
++*c;
break;
case ',': /* comma, variable delimiter */
rval = TRUE;
++*c;
break;
case '\0': /* end of line */
case ':': /* end of line segment */
rval = TRUE;
last_inp_adv_rval = rval; /* JBV */
return rval;
default:
last_inp_adv_rval = rval; /* JBV */
return rval;
}
}
}
/***************************************************************
FUNCTION: inp_const()
DESCRIPTION: This function reads a numerical or string
constant from <m_buffer> into <s_buffer>,
incrementing <position> appropriately.
***************************************************************/
#if ANSI_C
static int
inp_const( char *m_buffer, char *s_buffer, int *position )
#else
static int
inp_const( m_buffer, s_buffer, position )
char *m_buffer;
char *s_buffer;
int *position;
#endif
{
int string;
int s_pos;
int loop;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_const(): received argument <%s>.",
&( m_buffer[ *position ] ) );
bwb_debug( bwb_ebuf );
#endif
string = FALSE;
/* first detect string constant */
if ( m_buffer[ *position ] == '\"' )
{
string = TRUE;
++( *position );
}
else
{
string = FALSE;
}
/* build the constant string */
s_buffer[ 0 ] = '\0';
s_pos = 0;
loop = TRUE;
while ( loop == TRUE )
{
switch ( m_buffer[ *position ] )
{
case '\0': /* end of string */
case '\n':
case '\r':
return TRUE;
case ' ': /* whitespace */
case '\t':
case ',': /* or end of argument */
if ( string == FALSE )
{
return TRUE;
}
else
{
s_buffer[ s_pos ] = m_buffer[ *position ];
++( *position );
++s_buffer;
s_buffer[ s_pos ] = '\0';
}
break;
case '\"':
if ( string == TRUE )
{
++( *position ); /* advance beyond quotation mark */
inp_adv( m_buffer, position );
return TRUE;
}
else
{
#if PROG_ERRORS
sprintf( bwb_ebuf, "Unexpected character in numerical constant." );
bwb_error( bwb_ebuf );
#else
bwb_error( err_syntax );
#endif
return FALSE;
}
default:
s_buffer[ s_pos ] = m_buffer[ *position ];
++( *position );
++s_buffer;
s_buffer[ s_pos ] = '\0';
break;
}
}
return FALSE;
}
#if COMMON_CMDS
/***************************************************************
FUNCTION: bwb_line()
DESCRIPTION: This function implements the BASIC LINE
INPUT statement.
SYNTAX: LINE INPUT [[#] device-number,]["prompt string";] string-variable$
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_line( struct bwb_line *l )
#else
struct bwb_line *
bwb_line( l )
struct bwb_line *l;
#endif
{
int dev_no;
struct bwb_variable *v;
FILE *inp_device;
char tbuf[ MAXSTRINGSIZE + 1 ];
char pstring[ MAXSTRINGSIZE + 1 ];
struct exp_ese *e; /* JBV */
int pos; /* JBV */
/* assign default values */
inp_device = stdin;
pstring[ 0 ] = '\0';
/* advance to first element (INPUT statement) */
adv_element( l->buffer, &( l->position ), tbuf );
bwb_strtoupper( tbuf );
if ( strcmp( tbuf, "INPUT" ) != 0 )
{
bwb_error( err_syntax );
return bwb_zline( l );
}
adv_ws( l->buffer, &( l->position ) );
/* check for semicolon in first position */
if ( l->buffer[ l->position ] == ';' )
{
++l->position;
adv_ws( l->buffer, &( l->position ) );
}
/* else check for# for file number in first position */
else if ( l->buffer[ l->position ] == '#' )
{
++l->position;
adv_element( l->buffer, &( l->position ), tbuf );
adv_ws( l->buffer, &( l->position ));
/* dev_no = atoi( tbuf ); */ /* We really need more, added next (JBV) */
pos = 0;
e = bwb_exp( tbuf, FALSE, &pos );
dev_no = (int) exp_getnval( e );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_line(): file number requested <%d>", dev_no );
bwb_debug( bwb_ebuf );
#endif
if ( dev_table[ dev_no ].cfp == NULL )
{
bwb_error( err_dev );
return bwb_zline( l );
}
else
{
inp_device = dev_table[ dev_no ].cfp;
}
}
/* check for comma */
if ( l->buffer[ l->position ] == ',' )
{
++( l->position );
adv_ws( l->buffer, &( l->position ));
}
/* check for quotation mark indicating prompt */
if ( l->buffer[ l->position ] == '\"' )
{
inp_const( l->buffer, pstring, &( l->position ) );
}
/* read the variable for assignment */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_line(): tbuf <%s>",
tbuf );
bwb_debug( bwb_ebuf );
sprintf( bwb_ebuf, "in bwb_line(): line buffer <%s>",
&( l->buffer[ l->position ] ) );
bwb_debug( bwb_ebuf );
#endif
adv_element( l->buffer, &( l->position ), tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_line(): variable buffer <%s>", tbuf );
bwb_debug( bwb_ebuf );
#endif
v = var_find( tbuf );
if ( v->type != STRING )
{
#if PROG_ERRORS
bwb_error( "in bwb_line(): String variable required" );
#else
bwb_error( err_syntax );
#endif
return bwb_zline( l );
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_line(): variable for assignment <%s>", v->name );
bwb_debug( bwb_ebuf );
#endif
/* read a line of text into the bufffer */
if ( inp_device == stdin )
{
bwx_input( pstring, tbuf );
}
else
{
/* Was MAXSTRINGSIZE (JBV 9/8/97) */
fgets( tbuf, MAXSTRINGSIZE + 2, inp_device );
}
bwb_stripcr( tbuf );
str_ctob( var_findsval( v, v->array_pos ), tbuf );
/* end: return next line */
return bwb_zline( l );
}
#endif /* COMMON_CMDS */
/***************************************************************
FUNCTION: inp_numconst()
DESCRIPTION: This function interprets a numerical
constant. Added by JBV 10/95
***************************************************************/
#if ANSI_C
bnumber
inp_numconst( char *expression )
#else
bnumber
inp_numconst( expression )
char *expression;
#endif
{
int base; /* numerical base for the constant */
static struct bwb_variable mantissa; /* mantissa of floating-point number */
static int init = FALSE; /* is mantissa variable initialized? */
int exponent; /* exponent for floating point number */
int man_start; /* starting point of mantissa */
int s_pos; /* position in build string */
int build_loop;
int need_pm;
int i;
bnumber d;
/* Expression stack stuff */
char type;
bnumber nval;
char string[ MAXSTRINGSIZE + 1 ];
int pos_adv;
/* initialize the variable if necessary */
#if INTENSIVE_DEBUG
strcpy( mantissa.name, "(mantissa)" );
#endif
if ( init == FALSE )
{
init = TRUE;
var_make( &mantissa, NUMBER );
}
/* be sure that the array_pos[ 0 ] for mantissa is set to dim_base;
this is necessary because mantissa might be used before dim_base
is set */
mantissa.array_pos[ 0 ] = dim_base;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_numconst(): received <%s>, eval <%c>",
expression, expression[ 0 ] );
bwb_debug( bwb_ebuf );
#endif
need_pm = FALSE;
nval = (bnumber) 0;
/* check the first character(s) to determine numerical base
and starting point of the mantissa */
switch( expression[ 0 ] )
{
case '-':
case '+':
case '0':
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case '.':
base = 10; /* decimal constant */
man_start = 0; /* starts at position 0 */
need_pm = FALSE;
break;
case '&': /* hex or octal constant */
if ( ( expression[ 1 ] == 'H' ) || ( expression[ 1 ] == 'h' ))
{
base = 16; /* hexadecimal constant */
man_start = 2; /* starts at position 2 */
}
else
{
base = 8; /* octal constant */
if ( ( expression[ 1 ] == 'O' ) || ( expression[ 1 ] == 'o' ))
{
man_start = 2; /* starts at position 2 */
}
else
{
man_start = 1; /* starts at position 1 */
}
}
break;
default:
#if PROG_ERRORS
sprintf( bwb_ebuf, "expression <%s> is not a numerical constant.",
expression );
bwb_error( bwb_ebuf );
#else
bwb_error( err_syntax );
#endif
return (bnumber) 0;
}
/* now build the mantissa according to the numerical base */
switch( base )
{
case 10: /* decimal constant */
/* initialize counters */
pos_adv = man_start;
type = NUMBER;
string[ 0 ] = '\0';
s_pos = 0;
exponent = 0;
build_loop = TRUE;
/* loop to build the string */
while ( build_loop == TRUE )
{
switch( expression[ pos_adv ] )
{
case '-': /* prefixed plus or minus */
case '+':
/* in the first position, a plus or minus sign can
be added to the beginning of the string to be
scanned */
if ( pos_adv == man_start )
{
string[ s_pos ] = expression[ pos_adv ];
++pos_adv; /* advance to next character */
++s_pos;
string[ s_pos ] = '\0';
}
/* but in any other position, the plus or minus sign
must be taken as an operator and thus as terminating
the string to be scanned */
else
{
build_loop = FALSE;
}
break;
case '.': /* note at least single precision */
case '0': /* or ordinary digit */
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
string[ s_pos ] = expression[ pos_adv ];
++pos_adv; /* advance to next character */
++s_pos;
string[ s_pos ] = '\0';
break;
case '#': /* Microsoft-type precision indicator; ignored but terminates */
case '!': /* Microsoft-type precision indicator; ignored but terminates */
++pos_adv; /* advance to next character */
type = NUMBER;
exponent = FALSE;
build_loop = FALSE;
break;
case 'E': /* exponential, single precision */
case 'e':
++pos_adv; /* advance to next character */
type = NUMBER;
exponent = TRUE;
build_loop = FALSE;
break;
case 'D': /* exponential, double precision */
case 'd':
++pos_adv; /* advance to next character */
type = NUMBER;
exponent = TRUE;
build_loop = FALSE;
break;
default: /* anything else, terminate */
build_loop = FALSE;
break;
}
}
/* assign the value to the mantissa variable */
#if NUMBER_DOUBLE
sscanf( string, "%lf", var_findnval( &mantissa, mantissa.array_pos ));
#else
sscanf( string, "%f", var_findnval( &mantissa, mantissa.array_pos ));
#endif
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_numconst(): read mantissa, string <%s> val <%lf>",
string, var_getnval( &mantissa ) );
bwb_debug( bwb_ebuf );
#endif
/* test if integer bounds have been exceeded */
if ( type == NUMBER )
{
i = (int) var_getnval( &mantissa );
d = (bnumber) i;
if ( d != var_getnval( &mantissa ))
{
type = NUMBER;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_numconst(): integer bounds violated, promote to NUMBER" );
bwb_debug( bwb_ebuf );
#endif
}
}
/* read the exponent if there is one */
if ( exponent == TRUE )
{
/* allow a plus or minus once at the beginning */
need_pm = TRUE;
/* initialize counters */
string[ 0 ] = '\0';
s_pos = 0;
build_loop = TRUE;
/* loop to build the string */
while ( build_loop == TRUE )
{
switch( expression[ pos_adv ] )
{
case '-': /* prefixed plus or minus */
case '+':
if ( need_pm == TRUE ) /* only allow once */
{
string[ s_pos ] = expression[ pos_adv ];
++pos_adv; /* advance to next character */
++s_pos;
string[ s_pos ] = '\0';
}
else
{
build_loop = FALSE;
}
break;
case '0': /* or ordinary digit */
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
string[ s_pos ] = expression[ pos_adv ];
++pos_adv; /* advance to next character */
++s_pos;
string[ s_pos ] = '\0';
need_pm = FALSE;
break;
default: /* anything else, terminate */
build_loop = FALSE;
break;
}
} /* end of build loop for exponent */
/* assign the value to the user variable */
#if NUMBER_DOUBLE
sscanf( string, "%lf", &nval );
#else
sscanf( string, "%f", &nval );
#endif
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_numconst(): exponent is <%d>",
(int) nval );
bwb_debug( bwb_ebuf );
#endif
} /* end of exponent search */
if ( nval == (bnumber) 0 )
{
nval = var_getnval( &mantissa );
}
else
{
nval = var_getnval( &mantissa )
* pow( (bnumber) 10.0, (bnumber) nval );
}
break;
case 8: /* octal constant */
/* initialize counters */
pos_adv = man_start;
type = NUMBER;
string[ 0 ] = '\0';
s_pos = 0;
exponent = 0;
build_loop = TRUE;
/* loop to build the string */
while ( build_loop == TRUE )
{
switch( expression[ pos_adv ] )
{
case '0': /* or ordinary digit */
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
string[ s_pos ] = expression[ pos_adv ];
++pos_adv; /* advance to next character */
++s_pos;
string[ s_pos ] = '\0';
break;
default: /* anything else, terminate */
build_loop = FALSE;
break;
}
}
/* now scan the string to determine the number */
sscanf( string, "%o", &i );
nval = (bnumber) i;
break;
case 16: /* hexadecimal constant */
/* initialize counters */
pos_adv = man_start;
type = NUMBER;
string[ 0 ] = '\0';
s_pos = 0;
exponent = 0;
build_loop = TRUE;
/* loop to build the string */
while ( build_loop == TRUE )
{
switch( expression[ pos_adv ] )
{
case '0': /* or ordinary digit */
case '1':
case '2':
case '3':
case '4':
case '5':
case '6':
case '7':
case '8':
case '9':
case 'A':
case 'a':
case 'B':
case 'b':
case 'C':
case 'c':
case 'D':
case 'd':
case 'E':
case 'e':
case 'F': /* Don't forget these! (JBV) */
case 'f':
string[ s_pos ] = expression[ pos_adv ];
++pos_adv; /* advance to next character */
++s_pos;
string[ s_pos ] = '\0';
break;
default: /* anything else, terminate */
build_loop = FALSE;
break;
}
}
/* now scan the string to determine the number */
sscanf( string, "%x", &i );
nval = (bnumber) i;
break;
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in inp_numconst(): precision <%c> value <%lf>",
type, nval );
bwb_debug( bwb_ebuf );
#endif
return nval;
}
|