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
|
/***************************************************************
bwb_prn.c Print and Error-Handling Commands
for Bywater BASIC Interpreter
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"
/* Prototypes for functions visible only to this file */
int prn_col = 1;
static int prn_width = 80; /* default width for stdout */
struct prn_fmt
{
int type; /* STRING, NUMBER, SINGLE, or NUMBER */
int exponential; /* TRUE = use exponential notation */
int right_justified; /* TRUE = right justified else left justified */
int width; /* width of main section */
int precision; /* width after decimal point */
int commas; /* use commas every three steps */
int sign; /* prefix sign to number */
int money; /* prefix money sign to number */
int fill; /* ASCII value for fill character, normally ' ' */
int minus; /* postfix minus sign to number */
};
#if ANSI_C
static int prn_cr( char *buffer, FILE *f );
static struct prn_fmt *get_prnfmt( char *buffer, int *position, FILE *f );
static int bwb_xerror( char *message );
static int xxputc( FILE *f, char c );
static int xxxputc( FILE *f, char c );
static struct bwb_variable * bwb_esetovar( struct exp_ese *e );
#else
static int prn_cr();
static struct prn_fmt *get_prnfmt();
static int bwb_xerror();
static int xxputc();
static int xxxputc();
static struct bwb_variable * bwb_esetovar();
#endif
/***************************************************************
FUNCTION: bwb_print()
DESCRIPTION: This function implements the BASIC PRINT
command.
SYNTAX: PRINT [# device-number,][USING format-string$;] expressions...
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_print( struct bwb_line *l )
#else
struct bwb_line *
bwb_print( l )
struct bwb_line *l;
#endif
{
FILE *fp;
static int pos;
int req_devnumber;
struct exp_ese *v;
static char *s_buffer; /* small, temporary buffer */
static int init = FALSE;
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_print(): enter function" );
bwb_debug( bwb_ebuf );
#endif
/* initialize buffers if necessary */
if ( init == FALSE )
{
init = TRUE;
/* Revised to CALLOC pass-thru call by JBV */
if ( ( s_buffer = CALLOC( MAXSTRINGSIZE + 1, sizeof(char), "bwb_print") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_print(): failed to get memory for s_buffer" );
#else
bwb_error( err_getmem );
#endif
}
}
/* advance beyond whitespace and check for the '#' sign */
adv_ws( l->buffer, &( l->position ) );
#if COMMON_CMDS
if ( l->buffer[ l->position ] == '#' )
{
++( l->position );
adv_element( l->buffer, &( l->position ), s_buffer );
pos = 0;
v = bwb_exp( s_buffer, FALSE, &pos );
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == ',' )
{
++( l->position );
}
else
{
#if PROG_ERRORS
bwb_error( "in bwb_print(): no comma after #n" );
#else
bwb_error( err_syntax );
#endif
return bwb_zline( l );
}
req_devnumber = (int) exp_getnval( v );
/* 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 of 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_OUTPUT )
{
#if PROG_ERRORS
bwb_error( "in bwb_print(): Requested device is not open for OUTPUT." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_print(): device number is <%d>",
req_devnumber );
bwb_debug( bwb_ebuf );
#endif
/* look up the requested device in the device table */
fp = dev_table[ req_devnumber ].cfp;
}
else
{
fp = stdout;
}
#else
fp = stdout;
#endif /* COMMON_CMDS */
bwb_xprint( l, fp );
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_xprint()
DESCRIPTION: This function implements the BASIC PRINT
command, utilizing a specified file our
output device.
***************************************************************/
#if ANSI_C
int
bwb_xprint( struct bwb_line *l, FILE *f )
#else
int
bwb_xprint( l, f )
struct bwb_line *l;
FILE *f;
#endif
{
struct exp_ese *e;
int loop;
static int p;
static int fs_pos;
struct prn_fmt *format;
static char *format_string;
static char *output_string;
static char *element;
static char *prnbuf;
static int init = FALSE;
register int i, j; /* JBV */
int dig_pos, dec_pos; /* JBV */
char tbuf[ MAXSTRINGSIZE + 1 ]; /* JBV */
#if INTENSIVE_DEBUG || TEST_BSTRING
bstring *b;
#endif
/* initialize buffers if necessary */
if ( init == FALSE )
{
init = TRUE;
/* Revised to CALLOC pass-thru call by JBV */
if ( ( format_string = CALLOC( MAXSTRINGSIZE + 1, sizeof(char), "bwb_xprint") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_xprint(): failed to get memory for format_string" );
#else
bwb_error( err_getmem );
#endif
}
/* Revised to CALLOC pass-thru call by JBV */
if ( ( output_string = CALLOC( MAXSTRINGSIZE + 1, sizeof(char), "bwb_xprint") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_xprint(): failed to get memory for output_string" );
#else
bwb_error( err_getmem );
#endif
}
/* Revised to CALLOC pass-thru call by JBV */
if ( ( element = CALLOC( MAXSTRINGSIZE + 1, sizeof(char), "bwb_xprint") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_xprint(): failed to get memory for element buffer" );
#else
bwb_error( err_getmem );
#endif
}
/* Revised to CALLOC pass-thru call by JBV */
if ( ( prnbuf = CALLOC( MAXSTRINGSIZE + 1, sizeof(char), "bwb_xprint") ) == NULL )
{
#if PROG_ERRORS
bwb_error( "in bwb_xprint(): failed to get memory for prnbuf" );
#else
bwb_error( err_getmem );
#endif
}
}
/* Detect USING Here */
fs_pos = -1;
/* get "USING" in format_string */
p = l->position;
adv_element( l->buffer, &p, format_string );
bwb_strtoupper( format_string );
#if COMMON_CMDS
/* check to be sure */
if ( strcmp( format_string, CMD_XUSING ) == 0 )
{
l->position = p;
adv_ws( l->buffer, &( l->position ) );
/* now get the format string in format_string */
e = bwb_exp( l->buffer, FALSE, &( l->position ) );
if ( e->type == STRING )
{
/* copy the format string to buffer */
str_btoc( format_string, exp_getsval( e ) );
/* look for ';' after format string */
fs_pos = 0;
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == ';' )
{
++l->position;
adv_ws( l->buffer, &( l->position ) );
}
else
{
#if PROG_ERRORS
bwb_error( "Failed to find \";\" after format string in PRINT USING" );
#else
bwb_error( err_syntax );
#endif
return FALSE;
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xprint(): Found USING, format string <%s>",
format_string );
bwb_debug( bwb_ebuf );
#endif
}
else
{
#if PROG_ERRORS
bwb_error( "Failed to find format string after PRINT USING" );
#else
bwb_error( err_syntax );
#endif
return FALSE;
}
}
#endif /* COMMON_CMDS */
/* if no arguments, simply print CR and return */
adv_ws( l->buffer, &( l->position ) );
switch( l->buffer[ l->position ] )
{
case '\0':
case '\n':
case '\r':
case ':':
prn_xprintf( f, "\n" );
return TRUE;
default:
break;
}
/* LOOP THROUGH PRINT ELEMENTS */
loop = TRUE;
while( loop == TRUE )
{
/* resolve the string */
e = bwb_exp( l->buffer, FALSE, &( l->position ) );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xprint(): op <%d> type <%d>",
e->operation, e->type );
bwb_debug( bwb_ebuf );
#endif
/* an OP_NULL probably indicates a terminating ';', but this
will be detected later, so we can ignore it for now */
if ( e->operation != OP_NULL )
{
#if TEST_BSTRING
b = exp_getsval( e );
sprintf( bwb_ebuf, "in bwb_xprint(): bstring name is <%s>",
b->name );
bwb_debug( bwb_ebuf );
#endif
str_btoc( element, exp_getsval( e ) );
}
else
{
element[ 0 ] = '\0';
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xprint(): element <%s>",
element );
bwb_debug( bwb_ebuf );
#endif
/* print with format if there is one */
if (( fs_pos > -1 ) && ( strlen( element ) > 0 ))
{
#if COMMON_CMDS
format = get_prnfmt( format_string, &fs_pos, f );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xprint(): format type <%d> width <%d>",
format->type, format->width );
bwb_debug( bwb_ebuf );
#endif
switch( format->type )
{
case STRING:
if ( e->type != STRING )
{
#if PROG_ERRORS
bwb_error( "Type mismatch in PRINT USING" );
#else
bwb_error( err_mismatch );
#endif
}
if ( format->width == -1 ) /* JBV */
sprintf( output_string, "%s", element );
else sprintf( output_string, "%.*s", format->width, element );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xprint(): output string <%s>",
output_string );
bwb_debug( bwb_ebuf );
#endif
prn_xxprintf( f, output_string ); /* Was prn_xprintf (JBV) */
break;
case NUMBER:
if ( e->type == STRING )
{
#if PROG_ERRORS
bwb_error( "Type mismatch in PRINT USING" );
#else
bwb_error( err_mismatch );
#endif
}
if ( format->exponential == TRUE )
{
/*------------------------------------------------------*/
/* NOTE: Width and fill have no effect on C exponential */
/* format (JBV) */
/*------------------------------------------------------*/
if ( format->sign == TRUE ) /* Added by JBV */
sprintf( output_string, "%+e", exp_getnval( e ) );
else
sprintf( output_string, "%e", exp_getnval( e ) );
}
else
{
/*---------------------------------------------------*/
/* NOTE: Minus, commas, and money are only valid for */
/* floating point format (JBV) */
/*---------------------------------------------------*/
if ( format->sign == TRUE ) /* Added by JBV */
sprintf( output_string, "%+*.*f",
format->width, format->precision, exp_getnval( e ) );
else if ( format->minus == TRUE ) /* Added by JBV */
{
sprintf( output_string, "%*.*f",
format->width, format->precision, exp_getnval( e ) );
for (i = 0; i < strlen( output_string ); ++i )
{
if ( output_string[ i ] != ' ' )
{
if ( output_string[ i ] == '-' )
{
output_string[ i ] = ' ';
strcat( output_string, "-" );
}
else strcat( output_string, " " );
break;
}
}
}
else
sprintf( output_string, "%*.*f",
format->width, format->precision, exp_getnval( e ) );
if ( format->commas == TRUE ) /* Added by JBV */
{
dig_pos = -1;
dec_pos = -1;
for ( i = 0; i < strlen( output_string ); ++i )
{
if ( ( isdigit( output_string[ i ] ) != 0 )
&& ( dig_pos == -1 ) )
dig_pos = i;
if ( ( output_string[ i ] == '.' )
&& ( dec_pos == -1 ) )
dec_pos = i;
if ( ( dig_pos != -1 ) && ( dec_pos != -1 ) ) break;
}
if ( dec_pos == -1 ) dec_pos = strlen( output_string );
j = 0;
for ( i = 0; i < strlen( output_string ); ++i )
{
if ( ( ( dec_pos - i ) % 3 == 0 )
&& ( i > dig_pos ) && ( i < dec_pos ) )
{
tbuf[ j ] = ',';
++j;
tbuf[ j ] = '\0';
}
tbuf[ j ] = output_string[ i ];
++j;
tbuf[ j ] = '\0';
}
strcpy( output_string,
&tbuf[ strlen( tbuf ) - strlen( output_string ) ] );
}
if ( format->money == TRUE ) /* Added by JBV */
{
for ( i = 0; i < strlen( output_string ); ++i )
{
if ( output_string[ i ] != ' ' )
{
if ( i > 0 )
{
if ( isdigit( output_string[ i ] ) == 0 )
{
output_string[ i - 1 ]
= output_string[ i ];
output_string[ i ] = '$';
}
else output_string[ i - 1 ] = '$';
}
break;
}
}
}
}
if ( format->fill == '*' ) /* Added by JBV */
for ( i = 0; i < strlen( output_string ); ++i )
{
if ( output_string[ i ] != ' ' ) break;
output_string[ i ] = '*';
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_xprint(): output number <%f> string <%s>",
exp_getnval( e ), output_string );
bwb_debug( bwb_ebuf );
#endif
prn_xxprintf( f, output_string ); /* Was prn_xprintf (JBV) */
break;
default:
#if PROG_ERRORS
sprintf( bwb_ebuf, "in bwb_xprint(): get_prnfmt() returns unknown type <%c>",
format->type );
bwb_error( bwb_ebuf );
#else
bwb_error( err_mismatch );
#endif
break;
}
#endif /* COMMON_CMDS */
}
/* not a format string: use defaults */
else if ( strlen( element ) > 0 )
{
switch( e->type )
{
case STRING:
prn_xprintf( f, element );
break;
default:
#if NUMBER_DOUBLE
sprintf( prnbuf, " %.*lf", prn_precision( bwb_esetovar( e )),
exp_getnval( e ) );
#else
sprintf( prnbuf, " %.*f", prn_precision( bwb_esetovar( e )),
exp_getnval( e ) );
#endif
prn_xprintf( f, prnbuf );
break;
}
}
/* check the position to see if the loop should continue */
adv_ws( l->buffer, &( l->position ) );
switch( l->buffer[ l->position ] )
{
#if OLDSTUFF
case ':': /* end of line segment */
loop = FALSE;
break;
case '\0': /* end of buffer */
case '\n':
case '\r':
loop = FALSE;
break;
#endif
case ',': /* tab over */
/* Tab only if there's no format specification! (JBV) */
if (( fs_pos == -1 ) || ( strlen( element ) == 0 ))
xputc( f, '\t' );
++l->position;
adv_ws( l->buffer, &( l->position ) );
break;
case ';': /* concatenate strings */
++l->position;
adv_ws( l->buffer, &( l->position ) );
break;
default:
loop = FALSE;
break;
}
} /* end of loop through print elements */
if (( fs_pos > -1 ) && ( strlen( element ) > 0 ))
format = get_prnfmt( format_string, &fs_pos, f ); /* Finish up (JBV) */
/* call prn_cr() to print a CR if it is not overridden by a
concluding ';' mark */
prn_cr( l->buffer, f );
return TRUE;
} /* end of function bwb_xprint() */
#if COMMON_CMDS
/***************************************************************
FUNCTION: get_prnfmt()
DESCRIPTION: This function gets the PRINT USING
format string, returning a structure
to the format.
***************************************************************/
#if ANSI_C
static struct prn_fmt *
get_prnfmt( char *buffer, int *position, FILE *f )
#else
static struct prn_fmt *
get_prnfmt( buffer, position, f )
char *buffer;
int *position;
FILE *f;
#endif
{
static struct prn_fmt retstruct;
int loop;
/* set some defaults */
retstruct.precision = 0;
retstruct.type = FALSE;
retstruct.exponential = FALSE;
retstruct.right_justified = FALSE;
retstruct.commas = FALSE;
retstruct.sign = FALSE;
retstruct.money = FALSE;
retstruct.fill = ' ';
retstruct.minus = FALSE;
retstruct.width = 0;
/* check for negative position */
if ( *position < 0 )
{
return &retstruct;
}
/* advance past whitespace */
/* adv_ws( buffer, position ); */ /* Don't think we want this (JBV) */
/* check first character: a lost can be decided right here */
loop = TRUE;
while( loop == TRUE )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in get_prnfmt(): loop, buffer <%s>",
&( buffer[ *position ] ) );
bwb_debug( bwb_ebuf );
#endif
switch( buffer[ *position ] )
{
case ' ': /* end of this format segment */
xxputc( f, buffer[ *position ] ); /* Gotta output it (JBV) */
++( *position ); /* JBV */
if (retstruct.type != FALSE) loop = FALSE; /* JBV */
break;
case '\0': /* end of format string */
case '\n':
case '\r':
*position = -1;
return &retstruct;
case '_': /* print next character as literal */
++( *position );
xxputc( f, buffer[ *position ] ); /* Not xputc, no tabs (JBV) */
++( *position );
break;
case '!':
retstruct.type = STRING;
retstruct.width = 1;
++( *position ); /* JBV */
return &retstruct;
case '&': /* JBV */
retstruct.type = STRING;
retstruct.width = -1;
++( *position );
return &retstruct;
case '\\':
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in get_prnfmt(): found \\" );
bwb_debug( bwb_ebuf );
#endif
retstruct.type = STRING;
++retstruct.width;
++( *position );
for ( ; buffer[ *position ] == ' '; ++( *position ) )
{
++retstruct.width;
}
if ( buffer[ *position ] == '\\' )
{
++retstruct.width;
++( *position );
}
return &retstruct;
case '$':
++retstruct.width; /* JBV */
++( *position );
retstruct.money = TRUE;
if ( buffer[ *position ] == '$' )
{
++retstruct.width; /* JBV */
++( *position );
}
break;
case '*':
++retstruct.width; /* JBV */
++( *position );
retstruct.fill = '*';
if ( buffer[ *position ] == '*' )
{
++retstruct.width; /* JBV */
++( *position );
}
break;
case '+':
++( *position );
retstruct.sign = TRUE;
break;
case '#':
retstruct.type = NUMBER; /* for now */
/* ++( *position ); */ /* Removed by JBV */
/* The initial condition shouldn't be retstruct.width = 1 (JBV) */
for ( ; buffer[ *position ] == '#'; ++( *position ) )
{
++retstruct.width;
}
if ( buffer[ *position ] == ',' )
{
retstruct.commas = TRUE;
++retstruct.width; /* JBV */
++( *position ); /* JBV */
}
if ( buffer[ *position ] == '.' )
{
retstruct.type = NUMBER;
++retstruct.width;
++( *position );
for ( retstruct.precision = 0; buffer[ *position ] == '#'; ++( *position ) )
{
++retstruct.precision;
++retstruct.width;
}
}
if ( buffer[ *position ] == '-' )
{
retstruct.minus = TRUE;
++( *position );
}
return &retstruct;
case '^':
retstruct.type = NUMBER;
retstruct.exponential = TRUE;
for ( retstruct.width = 1; buffer[ *position ] == '^'; ++( *position ) )
{
++retstruct.width;
}
return &retstruct;
default: /* JBV */
xxputc( f, buffer[ *position ] ); /* Gotta output it (JBV) */
++( *position );
break;
}
} /* end of loop */
return &retstruct;
}
#endif
/***************************************************************
FUNCTION: prn_cr()
DESCRIPTION: This function outputs a carriage-return
to a specified file or output device.
***************************************************************/
#if ANSI_C
static int
prn_cr( char *buffer, FILE *f )
#else
static int
prn_cr( buffer, f )
char *buffer;
FILE *f;
#endif
{
register int c;
int loop;
/* find the end of the buffer */
for ( c = 0; buffer[ c ] != '\0'; ++c )
{
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in prn_cr(): initial c is <%d>", c );
bwb_debug( bwb_ebuf );
#endif
/* back up through any whitespace */
loop = TRUE;
while ( loop == TRUE )
{
switch( buffer[ c ] )
{
case ' ': /* if whitespace */
case '\t':
case 0:
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in prn_cr(): backup: c is <%d>, char <%c>[0x%x]",
c, buffer[ c ], buffer[ c ] );
bwb_debug( bwb_ebuf );
#endif
--c; /* back up */
if ( c < 0 ) /* check position */
{
loop = FALSE;
}
break;
default: /* else break out */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in prn_cr(): breakout: c is <%d>, char <%c>[0x%x]",
c, buffer[ c ], buffer[ c ] );
bwb_debug( bwb_ebuf );
#endif
loop = FALSE;
break;
}
}
if ( buffer[ c ] == ';' )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in prn_cr(): concluding <;> detected." );
bwb_debug( bwb_ebuf );
#endif
return FALSE;
}
else
{
prn_xprintf( f, "\n" );
return TRUE;
}
}
/***************************************************************
FUNCTION: prn_xprintf()
DESCRIPTION: This function outputs a null-terminated
string to a specified file or output
device.
***************************************************************/
#if ANSI_C
int
prn_xprintf( FILE *f, char *buffer )
#else
int
prn_xprintf( f, buffer )
FILE *f;
char *buffer;
#endif
{
char *p;
/* DO NOT try anything so stupid as to run bwb_debug() from
here, because it will create an endless loop. And don't
ask how I know. */
for ( p = buffer; *p != '\0'; ++p )
{
xputc( f, *p );
}
return TRUE;
}
/***************************************************************
FUNCTION: prn_xxprintf()
DESCRIPTION: This function outputs a null-terminated
string to a specified file or output
device without expanding tabs.
Added by JBV 10/95
***************************************************************/
#if ANSI_C
int
prn_xxprintf( FILE *f, char *buffer )
#else
int
prn_xxprintf( f, buffer )
FILE *f;
char *buffer;
#endif
{
char *p;
/* DO NOT try anything so stupid as to run bwb_debug() from
here, because it will create an endless loop. And don't
ask how I know. */
for ( p = buffer; *p != '\0'; ++p )
{
xxputc( f, *p );
}
return TRUE;
}
/***************************************************************
FUNCTION: xputc()
DESCRIPTION: This function outputs a character to a
specified file or output device, expanding
TABbed output approriately.
***************************************************************/
#if ANSI_C
int
xputc( FILE *f, char c )
#else
int
xputc( f, c )
FILE *f;
char c;
#endif
{
static int tab_pending = FALSE;
/*--------------------------------------------------------------------*/
/* Don't expand tabs if not printing to stdout or stderr (JBV 9/4/97) */
/*--------------------------------------------------------------------*/
if (( f != stdout ) && ( f != stderr ))
{
xxputc( f, c );
return TRUE;
}
/* check for pending TAB */
if ( tab_pending == TRUE )
{
if ( (int) c < ( * prn_getcol( f ) ) )
{
xxputc( f, '\n' );
}
while( ( * prn_getcol( f )) < (int) c )
{
xxputc( f, ' ' );
}
tab_pending = FALSE;
return TRUE;
}
/* check c for specific output options */
switch( c )
{
case PRN_TAB:
tab_pending = TRUE;
break;
case '\t':
while( ( (* prn_getcol( f )) % 14 ) != 0 )
{
xxputc( f, ' ' );
}
break;
default:
xxputc( f, c );
break;
}
return TRUE;
}
/***************************************************************
FUNCTION: xxputc()
DESCRIPTION: This function outputs a character to a
specified file or output device, checking
to be sure the PRINT width is within
the bounds specified for that device.
***************************************************************/
#if ANSI_C
static int
xxputc( FILE *f, char c )
#else
static int
xxputc( f, c )
FILE *f;
char c;
#endif
{
/*--------------------------------------------------------------------*/
/* Don't check width if not printing to stdout or stderr (JBV 9/4/97) */
/*--------------------------------------------------------------------*/
if (( f != stdout ) && ( f != stderr ))
{
return xxxputc( f, c );
}
/* check to see if width has been exceeded */
if ( * prn_getcol( f ) >= prn_getwidth( f ))
{
xxxputc( f, '\n' ); /* output LF */
* prn_getcol( f ) = 1; /* and reset */
}
/* adjust the column counter */
if ( c == '\n' )
{
* prn_getcol( f ) = 1;
}
else
{
++( * prn_getcol( f ));
}
/* now output the character */
return xxxputc( f, c );
}
/***************************************************************
FUNCTION: xxxputc()
DESCRIPTION: This function sends a character to a
specified file or output device.
***************************************************************/
#if ANSI_C
static int
xxxputc( FILE *f, char c )
#else
static int
xxxputc( f, c )
FILE *f;
char c;
#endif
{
if (( f == stdout ) || ( f == stderr ))
{
return bwx_putc( c );
}
else
{
return fputc( c, f );
}
}
/***************************************************************
FUNCTION: prn_getcol()
DESCRIPTION: This function returns a pointer to an
integer containing the current PRINT
column for a specified file or device.
***************************************************************/
#if ANSI_C
int *
prn_getcol( FILE *f )
#else
int *
prn_getcol( f )
FILE *f;
#endif
{
register int n;
static int dummy_pos;
if (( f == stdout ) || ( f == stderr ))
{
return &prn_col;
}
#if COMMON_CMDS
for ( n = 0; n < DEF_DEVICES; ++n )
{
if ( dev_table[ n ].cfp == f )
{
return &( dev_table[ n ].col );
}
}
#endif
/* search failed */
#if PROG_ERRORS
bwb_error( "in prn_getcol(): failed to find file pointer" );
#else
bwb_error( err_devnum );
#endif
return &dummy_pos;
}
/***************************************************************
FUNCTION: prn_getwidth()
DESCRIPTION: This function returns the PRINT width for
a specified file or output device.
***************************************************************/
#if ANSI_C
int
prn_getwidth( FILE *f )
#else
int
prn_getwidth( f )
FILE *f;
#endif
{
register int n;
if (( f == stdout ) || ( f == stderr ))
{
return prn_width;
}
#if COMMON_CMDS
for ( n = 0; n < DEF_DEVICES; ++n )
{
if ( dev_table[ n ].cfp == f )
{
return dev_table[ n ].width;
}
}
#endif
/* search failed */
#if PROG_ERRORS
bwb_error( "in prn_getwidth(): failed to find file pointer" );
#else
bwb_error( err_devnum );
#endif
return 1;
}
/***************************************************************
FUNCTION: prn_precision()
DESCRIPTION: This function returns the level of precision
required for a specified numerical value.
***************************************************************/
#if ANSI_C
int
prn_precision( struct bwb_variable *v )
#else
int
prn_precision( v )
struct bwb_variable *v;
#endif
{
int max_precision = 6;
bnumber nval, d;
int r;
/* check for double value */
if ( v->type == NUMBER )
{
max_precision = 12;
}
/* get the value in nval */
nval = (bnumber) fabs( (double) var_getnval( v ) );
/* cycle through until precision is found */
d = (bnumber) 1;
for ( r = 0; r < max_precision; ++r )
{
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in prn_precision(): fmod( %f, %f ) = %.12f",
nval, d, fmod( (double) nval, (double) d ) );
bwb_debug( bwb_ebuf );
#endif
if ( fmod( (double) nval, (double) d ) < 0.0000001 ) /* JBV */
{
return r;
}
d /= 10;
}
/* return */
return r;
}
/***************************************************************
FUNCTION: bwb_debug()
DESCRIPTION: This function is called to display
debugging messages in Bywater BASIC.
It does not break out at the current
point (as bwb_error() does).
***************************************************************/
#if PERMANENT_DEBUG
#if ANSI_C
int
bwb_debug( char *message )
#else
int
bwb_debug( message )
char *message;
#endif
{
char tbuf[ MAXSTRINGSIZE + 1 ];
fflush( stdout );
fflush( errfdevice );
if ( prn_col != 1 )
{
prn_xprintf( errfdevice, "\n" );
}
sprintf( tbuf, "DEBUG %s\n", message );
prn_xprintf( errfdevice, tbuf );
return TRUE;
}
#endif
#if COMMON_CMDS
/***************************************************************
FUNCTION: bwb_lerror()
DESCRIPTION: This function implements the BASIC ERROR
command.
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_lerror( struct bwb_line *l )
#else
struct bwb_line *
bwb_lerror( l )
struct bwb_line *l;
#endif
{
char tbuf[ MAXSTRINGSIZE + 1 ];
int n;
struct exp_ese *e; /* JBV */
int pos; /* JBV */
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_lerror(): entered function " );
bwb_debug( bwb_ebuf );
#endif
/* Check for argument */
adv_ws( l->buffer, &( l->position ) );
switch( l->buffer[ l->position ] )
{
case '\0':
case '\n':
case '\r':
case ':':
bwb_error( err_incomplete );
return bwb_zline( l );
default:
break;
}
/* get the variable name or numerical constant */
adv_element( l->buffer, &( l->position ), tbuf );
/* n = atoi( tbuf ); */ /* Removed by JBV */
/* Added by JBV */
pos = 0;
e = bwb_exp( tbuf, FALSE, &pos );
n = (int) exp_getnval( e );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_lerror(): error number is <%d> ", n );
bwb_debug( bwb_ebuf );
#endif
/* check the line number value */
if ( ( n < 0 ) || ( n >= N_ERRORS ))
{
sprintf( bwb_ebuf, "Error number %d is out of range", n );
bwb_xerror( bwb_ebuf );
return bwb_zline( l );
}
bwb_xerror( err_table[ n ] );
return bwb_zline( l );
}
/***************************************************************
FUNCTION: bwb_width()
DESCRIPTION: This C function implements the BASIC WIDTH
command, setting the maximum output width
for a specified file or output device.
SYNTAX: WIDTH [# device-number,] number
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_width( struct bwb_line *l )
#else
struct bwb_line *
bwb_width( l )
struct bwb_line *l;
#endif
{
int req_devnumber;
int req_width;
struct exp_ese *e;
char tbuf[ MAXSTRINGSIZE + 1 ];
int pos;
/* detect device number if present */
req_devnumber = -1;
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == '#' )
{
++( l->position );
adv_element( l->buffer, &( l->position ), tbuf );
pos = 0;
e = 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_width(): no comma after#n" );
#else
bwb_error( err_syntax );
#endif
return bwb_zline( l );
}
req_devnumber = (int) exp_getnval( e );
/* check the requested device number */
if ( ( req_devnumber < 0 ) || ( req_devnumber >= DEF_DEVICES ))
{
#if PROG_ERRORS
bwb_error( "in bwb_width(): Requested device number is out of range." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_width(): device number is <%d>",
req_devnumber );
bwb_debug( bwb_ebuf );
#endif
}
/* read the width requested */
e = bwb_exp( l->buffer, FALSE, &( l->position ));
req_width = (int) exp_getnval( e );
/* check the width */
if ( ( req_width < 1 ) || ( req_width > 255 ))
{
#if PROG_ERRORS
bwb_error( "in bwb_width(): Requested width is out of range (1-255)" );
#else
bwb_error( err_valoorange );
#endif
}
/* assign the width */
if ( req_devnumber == -1 )
{
prn_width = req_width;
}
else
{
dev_table[ req_devnumber ].width = req_width;
}
/* return */
return bwb_zline( l );
}
#endif /* COMMON_CMDS */
/***************************************************************
FUNCTION: bwb_error()
DESCRIPTION: This function is called to handle errors
in Bywater BASIC. It displays the error
message, then calls the break_handler()
routine.
***************************************************************/
#if ANSI_C
int
bwb_error( char *message )
#else
int
bwb_error( message )
char *message;
#endif
{
register int e;
static char tbuf[ MAXSTRINGSIZE + 1 ]; /* must be permanent */
static struct bwb_line eline;
int save_elevel;
struct bwb_line *cur_l;
int cur_mode;
/* try to find the error message to identify the error number */
err_number = -1; /* just for now */
err_line = CURTASK number; /* set error line number */
for ( e = 0; e < N_ERRORS; ++e )
{
if ( message == err_table[ e ] ) /* set error number */
{
err_number = e;
e = N_ERRORS; /* break out of loop quickly */
}
}
/* set the position in the current line to the end */
while( is_eol( bwb_l->buffer, &( bwb_l->position ) ) != TRUE )
{
++( bwb_l->position );
}
/* if err_gosubl is not set, then use xerror routine */
if ( strlen( err_gosubl ) == 0 )
{
return bwb_xerror( message );
}
#if INTENSIVE_DEBUG
fprintf( stderr, "!!!!! USER_CALLED ERROR HANDLER\n" );
#endif
/* save line and mode */
cur_l = bwb_l;
cur_mode = CURTASK excs[ CURTASK exsc ].code;
/* err_gosubl is set; call user-defined error subroutine */
sprintf( tbuf, "%s %s", CMD_GOSUB, err_gosubl );
eline.next = &CURTASK bwb_end;
eline.position = 0;
eline.marked = FALSE;
eline.buffer = tbuf;
bwb_setexec( &eline, 0, EXEC_NORM );
/* must be executed now */
save_elevel = CURTASK exsc;
bwb_execline(); /* This is a call to GOSUB and will increment
the exsc counter above save_elevel */
while ( CURTASK exsc != save_elevel ) /* loop until return from GOSUB loop */
{
bwb_execline();
}
cur_l->next->position = 0;
bwb_setexec( cur_l->next, 0, cur_mode );
return TRUE;
}
/***************************************************************
FUNCTION: bwb_xerror()
DESCRIPTION: This function is called by bwb_error()
in Bywater BASIC. It displays the error
message, then calls the break_handler()
routine.
***************************************************************/
#if ANSI_C
static int
bwb_xerror( char *message )
#else
static int
bwb_xerror( message )
char *message;
#endif
{
bwx_errmes( message );
break_handler();
return FALSE;
}
/***************************************************************
FUNCTION: bwb_esetovar()
DESCRIPTION: This function converts the value in expression
stack 'e' to a bwBASIC variable structure.
***************************************************************/
#if ANSI_C
static struct bwb_variable *
bwb_esetovar( struct exp_ese *e )
#else
static struct bwb_variable *
bwb_esetovar( e )
struct exp_ese *e;
#endif
{
static struct bwb_variable b;
var_make( &b, e->type );
switch( e->type )
{
case STRING:
str_btob( var_findsval( &b, b.array_pos ), exp_getsval( e ) );
break;
default:
* var_findnval( &b, b.array_pos ) = e->nval;
break;
}
return &b;
}
#if COMMON_CMDS
/***************************************************************
FUNCTION: bwb_write()
DESCRIPTION: This C function implements the BASIC WRITE
command.
SYNTAX: WRITE [# device-number,] element [, element ]....
***************************************************************/
#if ANSI_C
struct bwb_line *
bwb_write( struct bwb_line *l )
#else
struct bwb_line *
bwb_write( l )
struct bwb_line *l;
#endif
{
struct exp_ese *e;
int req_devnumber;
int pos;
FILE *fp;
char tbuf[ MAXSTRINGSIZE + 1 ];
int loop;
static struct bwb_variable nvar;
static int init = FALSE;
/* initialize variable if necessary */
if ( init == FALSE )
{
init = TRUE;
var_make( &nvar, NUMBER );
}
/* detect device number if present */
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == '#' )
{
++( l->position );
adv_element( l->buffer, &( l->position ), tbuf );
pos = 0;
e = 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_write(): no comma after#n" );
#else
bwb_error( err_syntax );
#endif
return bwb_zline( l );
}
req_devnumber = (int) exp_getnval( e );
/* check the requested device number */
if ( ( req_devnumber < 0 ) || ( req_devnumber >= DEF_DEVICES ))
{
#if PROG_ERRORS
bwb_error( "in bwb_write(): Requested device number is out of 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_write(): Requested device number is not open." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
if ( dev_table[ req_devnumber ].mode != DEVMODE_OUTPUT )
{
#if PROG_ERRORS
bwb_error( "in bwb_write(): Requested device is not open for OUTPUT." );
#else
bwb_error( err_devnum );
#endif
return bwb_zline( l );
}
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_write(): device number is <%d>",
req_devnumber );
bwb_debug( bwb_ebuf );
#endif
/* look up the requested device in the device table */
fp = dev_table[ req_devnumber ].cfp;
}
else
{
fp = stdout;
}
/* be sure there is an element to print */
adv_ws( l->buffer, &( l->position ) );
loop = TRUE;
switch( l->buffer[ l->position ] )
{
case '\n':
case '\r':
case '\0':
case ':':
loop = FALSE;
break;
}
/* loop through elements */
while ( loop == TRUE )
{
/* get the next element */
e = bwb_exp( l->buffer, FALSE, &( l->position ));
/* perform type-specific output */
switch( e->type )
{
case STRING:
xputc( fp, '\"' );
str_btoc( tbuf, exp_getsval( e ) );
prn_xprintf( fp, tbuf );
xputc( fp, '\"' );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_write(): output string element <\"%s\">",
tbuf );
bwb_debug( bwb_ebuf );
#endif
break;
default:
* var_findnval( &nvar, nvar.array_pos ) =
exp_getnval( e );
#if NUMBER_DOUBLE
sprintf( tbuf, " %.*lf", prn_precision( &nvar ),
var_getnval( &nvar ) );
#else
sprintf( tbuf, " %.*f", prn_precision( &nvar ),
var_getnval( &nvar ) );
#endif
prn_xprintf( fp, tbuf );
#if INTENSIVE_DEBUG
sprintf( bwb_ebuf, "in bwb_write(): output numerical element <%s>",
tbuf );
bwb_debug( bwb_ebuf );
#endif
break;
} /* end of case for type-specific output */
/* seek a comma at end of element */
adv_ws( l->buffer, &( l->position ) );
if ( l->buffer[ l->position ] == ',' )
{
xputc( fp, ',' );
++( l->position );
}
/* no comma: end the loop */
else
{
loop = FALSE;
}
} /* end of loop through elements */
/* print LF */
xputc( fp, '\n' );
/* return */
return bwb_zline( l );
}
#endif
|