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
|
/* Hey Emacs this is -*- C -*- */
/* GNUPLOT - cgm.trm */
/*[
* Copyright 1998, 2004
*
* Permission to use, copy, and distribute this software and its
* documentation for any purpose with or without fee is hereby granted,
* provided that the above copyright notice appear in all copies and
* that both that copyright notice and this permission notice appear
* in supporting documentation.
*
* Permission to modify the software is granted, but not the right to
* distribute the complete modified source code. Modifications are to
* be distributed as patches to the released version. Permission to
* distribute binaries produced by compiling modified sources is granted,
* provided you
* 1. distribute the corresponding source modifications from the
* released version in the form of a patch file along with the binaries,
* 2. add special version identification to distinguish your version
* in addition to the base release version number,
* 3. provide your name and address as the primary contact for the
* support of your modified version, and
* 4. retain our contact information in regard to use of the base
* software.
* Permission to distribute the released version of the source code along
* with corresponding source modifications in the form of a patch file is
* granted with same provisions 2 through 4 for binary distributions.
*
* This software is provided "as is" without express or implied warranty
* to the extent permitted by applicable law.
]*/
/*
* This file is included by ../term.c and ../docs/termdoc.c.
*
* This terminal driver supports:
* Computer Graphics Metafile
*
* TODO
* better control over plot size (never cutting off labels, correct font
* sizes)
* REFERENCES
*
* ISO 8632-1:1992 Computer Graphics Metafile (CGM), Part 1,
* Functional Specification.
*
* ISO 8632-1:1992 Computer Graphics Metafile (CGM), Part 3,
* Binary Encoding.
*
* FIPS PUB 128 - Computer Graphics Metafile (CGM).
*
* MIL-STD-2301A Computer Graphics Metafile (CGM) Implementation
* Standard for the National Imagery Transmission Format Standard, 5
* June 1998, http://164.214.2.51/ntb/baseline/docs/2301a/. Only a
* subset of CGM version 1, but does include the binary format for
* that subset.
*
* MIL-D-28003A "Digital Representation for Communication of
* Illustration Data: CGM Application Profile", 15 November 1991,
* http://www-cals.itsi.disa.mil/core/standards/28003aa1.pdf.
*
* "The computer graphics metafile", Lofton R. Henderson and Anne
* M. Mumford, Butterworths, London, 1990, ISBN 0-408-02680-4.
*
* AUTHOR
* Jim Van Zandt <jrvz@comcast.net>
*
* send your comments or suggestions to the author or
* gnuplot-info@lists.sourceforge.net.
*/
#include "driver.h"
#ifdef TERM_REGISTER
register_term(cgm)
#endif
#ifdef TERM_PROTO
TERM_PUBLIC void CGM_options(void);
TERM_PUBLIC void CGM_init(void);
TERM_PUBLIC void CGM_reset(void);
TERM_PUBLIC void CGM_text(void);
TERM_PUBLIC void CGM_graphics(void);
TERM_PUBLIC void CGM_move(unsigned int x, unsigned int y);
TERM_PUBLIC void CGM_dashed_vector(unsigned int ux, unsigned int uy);
TERM_PUBLIC void CGM_solid_vector(unsigned int ux, unsigned int uy);
TERM_PUBLIC void CGM_linetype(int linetype);
TERM_PUBLIC void CGM_linecolor(int color);
TERM_PUBLIC void CGM_dashtype(int dashtype);
TERM_PUBLIC void CGM_linewidth(double width);
TERM_PUBLIC void CGM_put_text(unsigned int x, unsigned int y, const char *str);
TERM_PUBLIC int CGM_text_angle(float ang);
TERM_PUBLIC int CGM_justify_text(enum JUSTIFY mode);
TERM_PUBLIC int CGM_set_font(const char *font);
TERM_PUBLIC void CGM_point(unsigned int x, unsigned int y, int number);
TERM_PUBLIC void CGM_fillbox(int style, unsigned int x1, unsigned int y1,
unsigned int width, unsigned int height);
TERM_PUBLIC int CGM_make_palette(t_sm_palette *palette);
TERM_PUBLIC void CGM_set_color(t_colorspec *);
TERM_PUBLIC void CGM_filled_polygon(int points, gpiPoint *corner);
TERM_PUBLIC void CGM_set_pointsize(double size);
#define FATAL(msg) { fprintf(stderr, "%s\nFile %s line %d\n", msg, __FILE__, __LINE__); exit(EXIT_FAILURE); }
#define CGM_LARGE 32767
#define CGM_SMALL 32767/18*13 /* aspect ratio 1:.7222 */
#define CGM_MARGIN (CGM_LARGE/180)
/* convert from plot units to pt */
#define CGM_PT ((term->xmax + CGM_MARGIN)/cgm_plotwidth)
#define CGM_LINE_TYPES 9 /* number of line types we support */
#define CGM_COLORS 96 /* must not exceed size of pm3d_color_names_tbl[] */
#define CGM_POINTS 13 /* number of markers we support */
#define CGM_MAX_SEGMENTS 16382 /* maximum # polyline coordinates */
#define CGM_VCHAR (CGM_SMALL/360*12)
#define CGM_HCHAR (CGM_SMALL/360*12*5/9)
#define CGM_VTIC (CGM_LARGE/80)
#define CGM_HTIC (CGM_LARGE/80)
#endif
#ifndef TERM_PROTO_ONLY
#ifdef TERM_BODY
static int CGM_find_font(const char *name, int len, double *relwidth);
static int CGM_find_nearest_color(t_colorspec *colorspec);
#include <ctype.h> /* for isspace() */
/* uncomment the following to enable assertions for this module only,
regardless of compiler switches
#ifdef NDEBUG
#define DEFEAT_ASSERTIONS
#endif
#undef NDEBUG
#include <assert.h>
*/
#define CGM_ADJ (sizeof(int)/sizeof(short))
static TBOOLEAN cgm_initialized = FALSE;
static unsigned int cgm_posx;
static unsigned int cgm_posy;
static unsigned int cgm_linetype = 1;
static unsigned int cgm_linetypes = CGM_LINE_TYPES + 3;
static unsigned int cgm_dashtype = 0;
static unsigned int cgm_color = 0;
static unsigned int cgm_background = 0xffffff;
static int *cgm_polyline; /* stored polyline coordinates */
static int cgm_coords = 0; /* # polyline coordinates saved */
static int cgm_doing_polygon = 0; /* nonzero if creating polygon, else
* creating polyline */
/* static enum JUSTIFY cgm_justify = LEFT; */ /* unused */
static int cgm_step_sizes[8]; /* array of currently used dash
lengths in plot units */
static int cgm_step_index = 0; /* index into cgm_step_sizes[] */
static int cgm_step = 0; /* amount of current dash not yet
drawn, in plot units */
static int cgm_tic, cgm_tic707, cgm_tic866, cgm_tic500, cgm_tic1241, cgm_tic1077, cgm_tic621; /* marker dimensions */
struct cgm_properties {
double angle; /* angle of text baseline (radians
counter-clockwise from horizontal) */
int font_index; /* font index */
int char_height; /* character height in picture units */
enum JUSTIFY justify_mode; /* how text is justified */
int edge_visibility; /* nonzero if edge is visible */
int edge_color;
int fill_color;
int interior_style;
int hatch_index;
};
static struct cgm_properties
cgm_current={-1,-1,-1,(enum JUSTIFY)-1,-1,-1,-1,-1,-1}, /* written to file */
cgm_next={0,-2,-2,LEFT,-2,-2,-2,-1,-1}, /* needed for next text string/marker */
cgm_reset={-1,-1,-1,(enum JUSTIFY)-1,-1,-1,-1,-1,-1}; /* invalid entries */
static int cgm_user_color_count = 0;
static int cgm_user_color_max = 0;
static int cgm_smooth_colors = 0;
static int *cgm_user_color_table = (int *)0;
static int cgm_maximum_color_index = 255; /* Size of color table we will write */
struct fontdata {
char *name; /* the name of the font */
double width; /* the width of the font, relative to
Times Bold Italic. The width
adjustment can only be approximate.
Of the standard fonts, only the
four versions of "Courier" are
monospaced. Also, metrics of the
same font from different foundries
are sometimes different. */
};
static struct fontdata cgm_basic_font_data[]={
/* these are WebCGM recommended fonts */
{"Helvetica",1.039},
{"Helvetica Oblique",1.099},
{"Helvetica Bold",1.083},
{"Helvetica Bold Oblique",1.011},
{"Times Roman",.981},
{"Times Bold",.985},
{"Times Italic",.959},
{"Times Bold Italic",1.0},
{"Courier",1.327},
{"Courier Bold",1.327},
{"Courier Oblique",1.218},
{"Courier Bold Oblique",1.341},
{"Symbol",.897},
/* These are basic public domain fonts required by MIL-D-28003A */
{"Hershey/Cartographic_Roman",1.2404},
{"Hershey/Cartographic_Greek",.9094},
{"Hershey/Simplex_Roman",1.2369},
{"Hershey/Simplex_Greek",.9129},
{"Hershey/Simplex_Script",1.4181},
{"Hershey/Complex_Roman",1.1150},
{"Hershey/Complex_Greek",.9059},
{"Hershey/Complex_Script",1.3868},
{"Hershey/Complex_Italic",1.4146},
{"Hershey/Complex_Cyrillic",1.2056},
{"Hershey/Duplex_Roman",1.1707},
{"Hershey/Triplex_Roman",1.3240},
{"Hershey/Triplex_Italic",1.3310},
{"Hershey/Gothic_German",1.2056},
{"Hershey/Gothic_English",1.2021},
{"Hershey/Gothic_Italian",1.2021},
{"Hershey/Symbol_Set_1",.9059},
{"Hershey/Symbol_Set_2",.9059},
{"Hershey/Symbol_Math",.9059},
/* These are available in the Microsoft Office import filter. By
default, the script font can apparently be accessed only via
the name "15". */
{"ZapfDingbats",1.583},
{"Script",1.139},
{"15",1.139},
/* in the Microsoft Office and Corel Draw import filters, these
are pseudonyms for some of the above */
{"Helvetica Italic",1.099},
{"Helvetica Bold Italic",1.011},
{"Courier Italic",1.218},
{"Courier Bold Italic",1.341},
{"Times Oblique",.959},
{"Times Bold Oblique",1.0},
{0,0}
};
static struct fontdata *cgm_font_data = cgm_basic_font_data;
#define DEFAULT_CGMFONT "Helvetica Bold"
static char CGM_default_font[MAX_ID_LEN+1] = {'\0'};
/* variables to record the options */
static char cgm_font[32] = DEFAULT_CGMFONT;
static unsigned int cgm_fontsize = 12;
static unsigned cgm_linewidth; /* line width in plot units */
static unsigned cgm_linewidth_pt = 1; /* line width in pt */
static TBOOLEAN cgm_monochrome = FALSE; /* colors enabled? */
static int cgm_plotwidth = 432; /* assumed width of plot in pt. */
static TBOOLEAN cgm_portrait = FALSE; /* portrait orientation? */
static TBOOLEAN cgm_rotate = TRUE; /* text rotation enabled? */
static TBOOLEAN cgm_dashed = TRUE; /* dashed linestyles enabled? */
static TBOOLEAN cgm_nofontlist_mode = FALSE; /* omit font list? */
/* prototypes for static functions */
static void CGM_local_reset(void);
static void CGM_flush_polyline(void);
static void CGM_flush_polygon(void);
static void CGM_write_char_record(int class, int cgm_id, int length, char *data);
static void CGM_write_code(int class, int cgm_id, int length);
static void CGM_write_int(int value);
static void CGM_write_int_record(int class, int cgm_id, int length, int *data);
static void CGM_write_mixed_record(int class, int cgm_id,
int numint, int *int_data,
int numchar, const char *char_data);
static void CGM_write_byte_record(int class, int cgm_id, int length, char *data);
enum CGM_id {
/* cgm mode */
CGM_PORTRAIT, CGM_LANDSCAPE, CGM_DEFAULT,
/* color */
CGM_MONOCHROME, CGM_COLOR,
/* rotation */
CGM_ROTATE, CGM_NOROTATE,
CGM_DASHED, CGM_SOLID,
CGM_LINEWIDTH, CGM_WIDTH, CGM_NOFONTLIST, CGM_BACKGROUND,
CGM_OTHER
};
static struct gen_table CGM_opts[] =
{
{ "p$ortrait", CGM_PORTRAIT },
{ "la$ndscape", CGM_LANDSCAPE },
{ "de$fault", CGM_DEFAULT },
{ "nof$ontlist", CGM_NOFONTLIST },
{ "win$word6", CGM_NOFONTLIST }, /* deprecated */
{ "m$onochrome", CGM_MONOCHROME },
{ "c$olor", CGM_COLOR },
{ "c$olour", CGM_COLOR },
{ "r$otate", CGM_ROTATE },
{ "nor$otate", CGM_NOROTATE },
{ "da$shed", CGM_DASHED },
{ "s$olid", CGM_SOLID },
{ "li$newidth", CGM_LINEWIDTH },
{ "lw", CGM_LINEWIDTH },
{ "wid$th", CGM_WIDTH },
{ "backg$round", CGM_BACKGROUND },
{ NULL, CGM_OTHER }
};
TERM_PUBLIC void
CGM_options()
{
char *string;
/* Annoying hack to handle the case of 'set termoption' after */
/* we have already initialized the terminal. */
if (!almost_equals(c_token-1, "termopt$ion"))
CGM_local_reset();
while (!END_OF_COMMAND) {
switch(lookup_table(&CGM_opts[0],c_token)) {
case CGM_PORTRAIT:
cgm_portrait = TRUE;
c_token++;
break;
case CGM_LANDSCAPE:
cgm_portrait = FALSE;
c_token++;
break;
case CGM_DEFAULT:
CGM_local_reset();
c_token++;
break;
case CGM_NOFONTLIST:
cgm_nofontlist_mode = TRUE;
c_token++;
break;
case CGM_MONOCHROME:
cgm_monochrome = TRUE;
term->flags |= TERM_MONOCHROME;
c_token++;
break;
case CGM_COLOR:
cgm_monochrome = FALSE;
term->flags &= ~TERM_MONOCHROME;
c_token++;
break;
case CGM_ROTATE:
cgm_rotate = TRUE;
c_token++;
break;
case CGM_NOROTATE:
cgm_rotate = FALSE;
c_token++;
break;
case CGM_DASHED:
cgm_dashed = TRUE;
c_token++;
break;
case CGM_SOLID:
cgm_dashed = FALSE;
c_token++;
break;
case CGM_LINEWIDTH:
c_token++;
if (!END_OF_COMMAND) {
cgm_linewidth_pt = int_expression();
if (cgm_linewidth_pt == 0 || cgm_linewidth_pt > 10000) {
int_warn(c_token,"linewidth out of range");
cgm_linewidth_pt = 1;
}
}
break;
case CGM_WIDTH:
c_token++;
if (!END_OF_COMMAND) {
cgm_plotwidth = int_expression();
if (cgm_plotwidth < 0 || cgm_plotwidth > 10000) {
int_warn(c_token,"width out of range");
cgm_plotwidth = 6 * 72;
}
}
break;
case CGM_BACKGROUND:
c_token++;
cgm_background = parse_color_name();
if (cgm_user_color_count == 0) {
cgm_user_color_count = 1;
cgm_user_color_table = gp_alloc(4 * sizeof(int), "CGM color table");
cgm_user_color_table[0] = 0;
}
cgm_user_color_table[1] = cgm_background>>16 & 0xff;
cgm_user_color_table[2] = cgm_background>>8 & 0xff;
cgm_user_color_table[3] = cgm_background & 0xff;
break;
case CGM_OTHER:
default:
string = gp_input_line + token[c_token].start_index;
/* Silently ignore these, as they are not yet implemented */
if (equals(c_token, "dl") || almost_equals(c_token, "dashl$ength")) {
c_token++;
(void) real_expression();
break;
}
if (string[0] == 'x') { /* set color */
unsigned short red, green, blue;
if (sscanf(string, "x%2hx%2hx%2hx", &red, &green, &blue ) != 3)
int_error(c_token, "invalid color spec, must be xRRGGBB");
if (cgm_user_color_count >= cgm_user_color_max) {
cgm_user_color_max = cgm_user_color_max*2 + 4;
cgm_user_color_table =
gp_realloc(cgm_user_color_table,
(cgm_user_color_max*3+1)*sizeof(int),
"CGM color table");
/* 1st table entry is the minimum color index value */
cgm_user_color_table[0] = 0;
}
cgm_user_color_table[1 + 3*cgm_user_color_count] = red;
cgm_user_color_table[2 + 3*cgm_user_color_count] = green;
cgm_user_color_table[3 + 3*cgm_user_color_count] = blue;
cgm_user_color_count++;
++c_token;
} else {
char *s = NULL;
if (equals(c_token, "font"))
c_token++;
if (isstringvalue(c_token) && (s = try_to_get_string())) {
double relwidth;
int font_index;
char *comma = strchr(s,',');
if (comma && (1 == sscanf(comma + 1, "%d", &cgm_fontsize)))
*comma = '\0';
if (*s)
font_index = CGM_find_font(s, strlen(s), &relwidth);
else
font_index = CGM_find_font(cgm_font, strlen(cgm_font), &relwidth);
if (font_index == 0) {
/* insert the font in the font table */
struct fontdata *new_font_data;
int i, n;
for (n=0; cgm_font_data[n].name; n++)
;
new_font_data = gp_alloc((n + 2)*sizeof(struct fontdata), "CGM font list");
new_font_data->name = s;
/* punt, since we don't know the real font width */
new_font_data->width = 1.0;
for (i = 0; i <= n; i++)
new_font_data[i+1] = cgm_font_data[i];
cgm_font_data = new_font_data;
font_index = 1;
} else
free(s);
safe_strncpy(cgm_font, cgm_font_data[font_index-1].name, sizeof(cgm_font));
} else {
/* the user is specifying the font size */
cgm_fontsize = int_expression();
}
break;
}
}
}
if (cgm_portrait) {
term->xmax = CGM_SMALL - CGM_MARGIN;
term->ymax = CGM_LARGE - CGM_MARGIN;
} else {
term->xmax = CGM_LARGE - CGM_MARGIN;
term->ymax = CGM_SMALL - CGM_MARGIN;
}
{ /* cgm_font, cgm_fontsize, and/or term->v_char may have changed */
double w;
CGM_find_font(cgm_font, strlen(cgm_font), &w);
term->v_char = (unsigned int) (cgm_fontsize*CGM_PT);
term->h_char = (unsigned int) (cgm_fontsize*CGM_PT*.527*w);
}
sprintf(CGM_default_font, "%s,%d", cgm_font, cgm_fontsize);
/* CGM_default_font holds the font and size set at 'set term' */
sprintf(term_options, "%s %s %s %s %s width %d linewidth %d font \"%s, %d\"",
cgm_portrait ? "portrait" : "landscape",
cgm_monochrome ? "monochrome" : "color",
cgm_rotate ? "rotate" : "norotate",
cgm_dashed ? "dashed" : "solid",
cgm_nofontlist_mode ? "nofontlist" : "",
cgm_plotwidth,
cgm_linewidth_pt,
cgm_font, cgm_fontsize);
if (cgm_user_color_count) {
int i, red, green, blue;
for (i = 0; i < cgm_user_color_count &&
(strlen(term_options) + 9 < MAX_LINE_LEN); i++) {
red = cgm_user_color_table[1 + 3*i];
green = cgm_user_color_table[2 + 3*i];
blue = cgm_user_color_table[3 + 3*i];
sprintf(term_options + strlen(term_options),
" x%02x%02x%02x", red, green, blue);
}
}
if (cgm_user_color_count < CGM_COLORS) {
int i, j;
/* fill in colors not set by the user with the default colors */
/* 1st table entry is the minimum color index value */
cgm_user_color_table = gp_realloc(cgm_user_color_table,
(CGM_COLORS * 3 + 1) * sizeof (int), "CGM color table");
cgm_user_color_table[0] = 0;
for (i = cgm_user_color_count, j = cgm_user_color_count * 3;
i < CGM_COLORS; i++, j+=3) {
cgm_user_color_table[j+1] = (pm3d_color_names_tbl[i].value >> 16) & 0xff;
cgm_user_color_table[j+2] = (pm3d_color_names_tbl[i].value >> 8) & 0xff;
cgm_user_color_table[j+3] = (pm3d_color_names_tbl[i].value ) & 0xff;
}
cgm_user_color_count = CGM_COLORS;
}
/* not set if there is an error exit before we reach here */
cgm_initialized = TRUE;
}
static void
CGM_local_reset()
{
double w;
strcpy(cgm_font, DEFAULT_CGMFONT);
CGM_find_font(cgm_font, strlen(cgm_font), &w);
cgm_fontsize = 12;
term->v_char = (unsigned int) (cgm_fontsize * CGM_PT);
term->h_char = (unsigned int) (cgm_fontsize * CGM_PT * .527 * w);
cgm_linewidth_pt = 1;
cgm_monochrome = FALSE;
cgm_plotwidth = 6 * 72;
cgm_portrait = FALSE;
cgm_rotate = TRUE;
cgm_dashed = TRUE;
cgm_nofontlist_mode = FALSE;
cgm_current = cgm_reset;
cgm_user_color_count = 0;
}
TERM_PUBLIC void
CGM_init()
{
cgm_posx = cgm_posy = 0;
cgm_linetype = 0;
cgm_next.angle = 0;
cgm_next.interior_style = 1;
cgm_next.hatch_index = 1;
cgm_polyline = gp_alloc(CGM_MAX_SEGMENTS*sizeof(int),"cgm polylines");
}
TERM_PUBLIC void
CGM_graphics()
{
register struct termentry *t = term;
static int version_data[] = { 1 };
static int vdc_type_data[] = { 0 };
static int integer_precision_data[] = { 16 };
static int real_precision_data[] = { 1, 16, 16 };
static int index_precision_data[] = { 16 };
static int color_precision_data[] = { 16 };
static int color_index_precision_data[] = { 16 };
static int scaling_mode_data[] = { 0, 0, 0 };
static int color_value_extent_data[] = { 0, 0, 0, 255, 255, 255 };
static int color_selection_mode_data[] = { 0 };
static int linewidth_specification_mode_data[] = { 0 };
static int edge_width_specification_mode_data[] = { 0 };
static int marker_size_specification_mode_data[] = { 0 };
static int vdc_extent_data[] = { 0, 0, 0, 0 };
static int line_type_data[] = { 1 };
static int interior_style_data[] = { 1 }; /* 0=hollow 1=filled
* 2=pattern 3=hatch
* 4=empty */
static int hatch_index_data[] = { 1 }; /* 1=horizontal 2=vertical
* 3=positive slope
* 4=negative slope
* 5=horizontal/vertical
* crosshatch
* 6=positive/negative
* slope crosshatch */
static int elements_list_data[] =
{
0, /* will be set to # elements in this list */
0, 1, /* Begin Metafile */
0, 2, /* End Metafile */
0, 3, /* Begin Picture */
0, 4, /* Begin Picture Body */
0, 5, /* End Picture */
1, 1, /* Metafile Version */
1, 2, /* Metafile Description */
1, 3, /* VDC Type */
1, 4, /* Integer Precision */
1, 5, /* Real Precision */
1, 6, /* Index Precision */
1, 7, /* Color Precision */
1, 8, /* Color Index Precision */
1, 9, /* Maximum Color Index */
1, 10, /* Color Value Extent */
1, 13, /* Font List */
2, 1, /* Scaling Mode */
2, 2, /* Color Selection Mode */
2, 3, /* Line Width Specification Mode */
2, 4, /* Marker Size Specification Mode */
2, 5, /* Edge Width Specification Mode */
2, 6, /* VDC Extent */
#ifdef NEVER
/* disabled due to complaints from CGM import filters */
3, 1, /* VDC Integer Precision */
3, 4, /* Transparency */
3, 6, /* Clip Indicator */
#endif
4, 1, /* Polyline */
4, 3, /* Polymarker */
4, 4, /* Text */
4, 7, /* Polygon */
4, 11, /* Rectangle */
4, 12, /* Circle */
4, 15, /* Circular Arc Center */
4, 16, /* Circular Arc Center Close */
4, 17, /* Ellipse */
4, 18, /* Elliptical Arc */
4, 19, /* Elliptical Arc Close */
5, 2, /* Line Type */
5, 3, /* Line Width */
5, 4, /* Line Color */
5, 6, /* Marker Type */
5, 7, /* Marker Size */
5, 8, /* Marker Color */
5, 10, /* Text Font Index */
5, 14, /* Text Color */
5, 15, /* Character Height */
5, 16, /* Character Orientation */
5, 18, /* Text Alignment */
5, 22, /* Interior Style */
5, 23, /* Fill Color */
5, 24, /* Hatch Index */
5, 27, /* Edge Type */
5, 28, /* Edge Width */
5, 29, /* Edge Color */
5, 30, /* Edge Visibility */
5, 34, /* Color Table */
6, 1, /* Escape */
7, 2 /* Application Data */
};
if (!cgm_initialized)
int_error(NO_CARET, "cgm terminal initialization failed");
/* metafile description (class 1), including filename if available */
if (!outstr)
CGM_write_char_record(0, 1, 1, outstr);
else
CGM_write_char_record(0, 1, strlen(outstr) + 1, outstr);
CGM_write_int_record(1, 1, 2, version_data);
{
char description_data[256];
sprintf(description_data, "\
Gnuplot version %s patchlevel %s,\
Computer Graphics Metafile version 1 per MIL-D-28003A/BASIC-1.%d",
gnuplot_version, gnuplot_patchlevel, cgm_monochrome?0:2);
CGM_write_char_record(1, 2, strlen(description_data),
description_data);
}
elements_list_data[0] = (sizeof(elements_list_data) / CGM_ADJ - 2) / 4;
CGM_write_int_record(1, 11, sizeof(elements_list_data) / CGM_ADJ,
elements_list_data);
CGM_write_int_record(1, 3, 2, vdc_type_data);
CGM_write_int_record(1, 4, 2, integer_precision_data);
CGM_write_int_record(1, 5, 6, real_precision_data);
CGM_write_int_record(1, 6, 2, index_precision_data);
CGM_write_int_record(1, 7, 2, color_precision_data);
CGM_write_int_record(1, 8, 2, color_index_precision_data);
CGM_write_int_record(1, 9, 2, &cgm_maximum_color_index);
CGM_write_int_record(1, 10, sizeof(color_value_extent_data) / CGM_ADJ,
color_value_extent_data);
if (cgm_nofontlist_mode == FALSE)
{
char *buf, *s;
int i, lgh = 0;
for (i = 0; cgm_font_data[i].name; i++)
lgh += strlen(cgm_font_data[i].name) + 1;
buf = gp_alloc(lgh + 1, "CGM font list");
for (s = buf, i = 0; cgm_font_data[i].name; i++)
{
int lgh = strlen(cgm_font_data[i].name);
*s++ = (char)lgh;
strcpy(s, cgm_font_data[i].name);
s += lgh;
}
CGM_write_byte_record(1, 13, lgh, buf);
free(buf);
}
/* picture description (classes 2 and 3) */
CGM_write_char_record(0, 3, 8, "PICTURE1");
CGM_write_int_record(2, 1, 6, scaling_mode_data);
CGM_write_int_record(2, 2, 2, color_selection_mode_data);
CGM_write_int_record(2, 3, 2, linewidth_specification_mode_data);
CGM_write_int_record(2, 4, 2, marker_size_specification_mode_data);
CGM_write_int_record(2, 5, 2, edge_width_specification_mode_data);
vdc_extent_data[2] = t->xmax + CGM_MARGIN;
vdc_extent_data[3] = t->ymax + CGM_MARGIN;
CGM_write_int_record(2, 6, 8, vdc_extent_data);
/* picture body (classes 4 and 5) */
CGM_write_int_record(0, 4, 0, NULL);
#ifdef NEVER /* no need for these, since we accept the defaults */
{
static int vdc_integer_precision_data[] = { 16 };
CGM_write_int_record(3, 1, 2, vdc_integer_precision_data);
}
{
static int transparency_data[] = { 1 }; /* text background:
0=auxiliary color
1=transparent */
CGM_write_int_record(3, 4, sizeof(transparency_data) / CGM_ADJ,
transparency_data);
}
{
static int clip_indicator_data[] = { 0 };
CGM_write_int_record(3, 6, sizeof(clip_indicator_data) / CGM_ADJ,
clip_indicator_data);
}
#endif
if (!cgm_monochrome)
CGM_write_int_record(5, 34, (cgm_user_color_count*3+1)*
sizeof(cgm_user_color_table[0])/CGM_ADJ,
cgm_user_color_table);
CGM_write_int_record(5, 2, sizeof(line_type_data) / CGM_ADJ,
line_type_data); /* line type 1=SOLID */
cgm_linewidth = cgm_linewidth_pt * CGM_PT;
CGM_write_int_record(5, 3, sizeof(cgm_linewidth) / CGM_ADJ,
(int *) &cgm_linewidth); /* line width */
CGM_write_int_record(5, 28, sizeof(cgm_linewidth) / CGM_ADJ,
(int *) &cgm_linewidth); /* edge width */
CGM_write_int_record(5, 27, sizeof(line_type_data) / CGM_ADJ,
line_type_data); /* edge type 1=SOLID */
CGM_linecolor(0);
cgm_current = cgm_reset;
cgm_next.char_height = t->v_char;
CGM_write_int_record(5, 22, 2, interior_style_data);
CGM_write_int_record(5, 24, 2, hatch_index_data);
{
char buf[45];
sprintf(buf, "%.31s,%d", cgm_font, cgm_fontsize);
CGM_set_font(buf);
}
CGM_set_pointsize(pointsize);
/* Fill with background color if user has specified one */
if (!cgm_monochrome && cgm_user_color_count > 0) {
CGM_linecolor(LT_BACKGROUND);
CGM_fillbox(FS_SOLID, 0, 0, t->xmax, t->ymax);
}
}
/* Return the index for the font with the name `name'. The index for
the first font is 1. Set relwidth to the width of the font,
relative to Times Bold Italic. If the font is not in the table,
set *relwidth to 1.0 and return 0. */
static int
CGM_find_font(const char *name, int numchar, double *relwidth)
{
int i;
*relwidth = 1.;
for (i=0; cgm_font_data[i].name; i++)
/* strncasecmp is not standard, but defined by stdfn.c if not available */
if (strlen(cgm_font_data[i].name) == numchar &&
strncasecmp(name, cgm_font_data[i].name, numchar) == 0)
{
*relwidth = cgm_font_data[i].width;
return i+1;
}
return 0;
}
TERM_PUBLIC int
CGM_set_font(const char *font)
{
register struct termentry *t = term;
int size, font_index;
char *comma = strchr(font, ',');
int len;
double width;
/* Allow null string to indicaute default font */
if (!font || !(*font))
font = CGM_default_font;
/* find font in font table, or use 1st font */
if (comma)
len = comma - font;
else
len = strlen(font);
font_index = CGM_find_font(font, len, &width);
if (font_index == 0)
font_index = 1;
cgm_next.font_index = font_index;
{
char *s = cgm_font_data[font_index-1].name;
safe_strncpy(cgm_font, s, sizeof(cgm_font));
}
/* set font size */
size = cgm_fontsize;
if (comma)
sscanf(comma + 1, "%d", &size);
if (size > 0) {
t->v_char = size * CGM_PT;
t->h_char = size * CGM_PT * .527 * width;
}
cgm_next.char_height = t->v_char;
return TRUE;
}
TERM_PUBLIC void
CGM_text()
{
CGM_flush_polyline();
CGM_write_int_record(0, 5, 0, NULL); /* end picture */
CGM_write_int_record(0, 2, 0, NULL); /* end metafile */
}
TERM_PUBLIC void
CGM_linetype(int linetype)
{
if (linetype < LT_NODRAW)
linetype = LT_NODRAW;
if (linetype == cgm_linetype)
return;
cgm_linetype = linetype;
CGM_linecolor(linetype);
if (cgm_dashed) {
CGM_dashtype(linetype); /* DBT 10-8-98 use dashes */
} else {
/* dashes for gridlines, solid for everything else */
CGM_dashtype(linetype == -1 ? 2 : 0);
}
}
TERM_PUBLIC void
CGM_linecolor(int linecolor)
{
if (linecolor >= 0) {
/* subtract 2 due to linetypes -2 / -1 */
if (cgm_linetypes > 3)
linecolor %= (cgm_linetypes - 3);
else
linecolor = 0;
} else if (linecolor == LT_BACKGROUND && !cgm_monochrome) {
linecolor = -3;
} else if (linecolor <= LT_NODRAW)
return;
linecolor += 3;
if (cgm_monochrome)
cgm_color = linecolor = 1;
if (linecolor == cgm_color)
return;
cgm_color = linecolor;
cgm_next.fill_color = linecolor;
CGM_flush_polyline();
CGM_write_int_record(5, 4, 2, (int *) &cgm_color); /* line color */
CGM_write_int_record(5, 14, 2, (int *) &cgm_color); /* text color */
}
TERM_PUBLIC void
CGM_fillbox(
int style,
unsigned int x1, unsigned int y1,
unsigned int width, unsigned int height)
{
gpiPoint corner[5];
corner[0].x = x1; corner[0].y = y1;
corner[1].x = x1+width; corner[1].y = y1;
corner[2].x = x1+width; corner[2].y = y1+height;
corner[3].x = x1; corner[3].y = y1+height;
corner[4].x = x1; corner[4].y = y1;
corner->style = style;
CGM_filled_polygon(5, corner);
}
TERM_PUBLIC void
CGM_linewidth(double width)
{
int new_linewidth;
if (width <= 0)
width = 0.5;
new_linewidth = width * cgm_linewidth_pt * CGM_PT;
if (new_linewidth == cgm_linewidth)
return;
CGM_flush_polyline();
cgm_linewidth = new_linewidth;
CGM_write_int_record(5, 3, sizeof(cgm_linewidth) / CGM_ADJ,
(int *) &cgm_linewidth);
CGM_dashtype(cgm_dashtype); /* have dash lengths recalculated */
}
TERM_PUBLIC void
CGM_dashtype(int dashtype)
{
int i, j;
/* Each group of 8 entries in dot_length[] defines a dash
pattern. Entries in each group are alternately length of
whitespace and length of line, in units of 2/3 of the
linewidth. */
static int dot_length[CGM_LINE_TYPES * 8] =
{ /* 0 - solid */
5, 8, 5, 8, 5, 8, 5, 8, /* 1 - dashes */
5, 3, 5, 3, 5, 3, 5, 3, /* 2 - short dashes */
4, 1, 4, 1, 4, 1, 4, 1, /* 3 - dotted */
4, 8, 4, 1, 4, 8, 4, 1, /* 4 - dash-dot */
4, 9, 4, 1, 4, 1, 0, 0, /* 5 - dash-dot-dot */
4, 10, 4, 1, 4, 1, 4, 1, /* 6 - dash-dot-dot-dot */
4, 10, 4, 10, 4, 1, 0, 0, /* 7 - dash-dash-dot */
4, 10, 4, 10, 4, 1, 4, 1}; /* 8 - dash-dash-dot-dot */
if (dashtype == cgm_dashtype)
return;
cgm_dashtype = dashtype;
CGM_flush_polyline();
if (dashtype >= CGM_LINE_TYPES)
dashtype = dashtype % CGM_LINE_TYPES;
if (dashtype < 1) {
term->vector = CGM_solid_vector;
return;
}
term->vector = CGM_dashed_vector;
/* set up dash dimensions */
j = (dashtype - 1) * 8;
for (i = 0; i < 8; i++, j++) {
if (dot_length[j])
cgm_step_sizes[i] = (dot_length[j] * cgm_linewidth) * 2 / 3;
else
cgm_step_sizes[i] = 0;
}
/* first thing drawn will be a line */
cgm_step = cgm_step_sizes[1];
cgm_step_index = 1;
}
TERM_PUBLIC void
CGM_move(unsigned int x, unsigned int y)
{
if (x >= term->xmax)
x = term->xmax;
if (y >= term->ymax)
y = term->ymax;
if (x == cgm_posx && y == cgm_posy)
return;
CGM_flush_polyline();
cgm_posx = x;
cgm_posy = y;
}
TERM_PUBLIC int
CGM_make_palette(t_sm_palette *palette)
{
if (palette) {
int i, k;
cgm_smooth_colors = palette->colors;
if (TRUE || CGM_COLORS + cgm_smooth_colors > cgm_user_color_max) {
cgm_user_color_max = CGM_COLORS + cgm_smooth_colors;
cgm_user_color_table =
gp_realloc(cgm_user_color_table,
(cgm_user_color_max*3+1)*sizeof(int),
"CGM color table");
}
k = 1 + (CGM_COLORS)*3;
for (i = 0; i < cgm_smooth_colors; i++) {
cgm_user_color_table[k++] = palette->color[i].r*255.9;
cgm_user_color_table[k++] = palette->color[i].g*255.9;
cgm_user_color_table[k++] = palette->color[i].b*255.9;
}
cgm_user_color_count = CGM_COLORS + cgm_smooth_colors;
CGM_write_int_record(5, 34, (cgm_user_color_count*3+1)*
sizeof(cgm_user_color_table[0])/CGM_ADJ,
cgm_user_color_table);
return 0;
} else {
return (cgm_maximum_color_index - CGM_COLORS);
}
}
TERM_PUBLIC void
CGM_set_color(t_colorspec *colorspec)
{
if (colorspec->type == TC_LT) {
CGM_linecolor(colorspec->lt);
cgm_linetype = colorspec->lt;
return;
} else if (colorspec->type == TC_FRAC) {
double gray = colorspec->value;
if (CHECK_SMPAL_IS_DISCRETE_GRADIENT) {
cgm_next.fill_color = index_from_gray(gray);
} else {
/* map [0...1] to interval [0...cgm_smooth_colors-1], then add
offset to get past the default colors */
cgm_next.fill_color = (gray <= 0) ? 0 : (int)(gray * cgm_smooth_colors);
if (cgm_next.fill_color >= cgm_smooth_colors)
cgm_next.fill_color = cgm_smooth_colors - 1;
}
cgm_next.fill_color += CGM_COLORS;
} else if (colorspec->type == TC_RGB) {
/* To truly support RGB we would have to write a new color table to the */
/* output file every time the RGB matched no previous color. That seems */
/* prohibitive, so instead we just look for the closest match. */
cgm_next.fill_color = CGM_find_nearest_color(colorspec);
} else
/* Should not happen! */
return;
/* EAM - force color immediately so that lines and text can use it */
if (cgm_color != cgm_next.fill_color) {
cgm_color = cgm_next.fill_color;
cgm_linetype = cgm_color;
CGM_flush_polyline();
CGM_write_int_record(5, 4, 2, (int *) &cgm_color); /* line color */
CGM_write_int_record(5, 14, 2, (int *) &cgm_color); /* text color */
}
}
TERM_PUBLIC void
CGM_filled_polygon(int points, gpiPoint *corner)
{
/* Note: This implementation cannot handle polygons with more than
* about 8190 edges. The best fix is to implement continuation
* blocks. If the high order bit of the "length" field of a block
* is set, then it is followed by another block with more data.
* This allows an arbitrary amount of data in a record. However,
* we implement a big enough block that problems should be rare.
*/
/* We will use solid fill for patterns 0 and 3 */
int hatch_index[]={0, 6, 5, 0, 4, 3};
int style = corner->style;
int pattern = (style >> 4) % 6;
int i;
switch( style & 0xf ) {
case FS_SOLID:
case FS_TRANSPARENT_SOLID:
cgm_next.interior_style = 1;
break;
case FS_PATTERN:
case FS_TRANSPARENT_PATTERN:
if (pattern == 0) {
/* FIXME - for unknown reasons, solid fill messes up the subsequent */
/* color state. Just leave it empty and let the background show */
cgm_next.interior_style = 0; /* empty */
break;
}
if (pattern == 3) {
/* Fill with solid color */
cgm_next.interior_style = 1;
break;
}
/* The rest of the patterns are hatch-filled */
cgm_next.interior_style = 3; /* hatched */
cgm_next.hatch_index = hatch_index[pattern];
break;
default: /* style == 0 or unknown --> fill with background color */
cgm_next.fill_color = 0;
cgm_next.interior_style = 1; /* solid */
break;
}
if (cgm_current.interior_style != cgm_next.interior_style){
cgm_current.interior_style = cgm_next.interior_style;
CGM_write_int_record(5, 22, 2, &cgm_next.interior_style);
}
if (cgm_current.fill_color != cgm_next.fill_color){
cgm_current.fill_color = cgm_next.fill_color;
CGM_write_int_record(5, 23, 2, &cgm_next.fill_color); /* fill color */
}
if (cgm_current.hatch_index != cgm_next.hatch_index &&
cgm_next.interior_style == 3){
cgm_current.hatch_index = cgm_next.hatch_index;
CGM_write_int_record(5, 24, 2, &cgm_next.hatch_index);
}
cgm_next.edge_visibility = 0; /* We draw the borders elsewhere */
if (cgm_current.edge_visibility != cgm_next.edge_visibility){
cgm_current.edge_visibility = cgm_next.edge_visibility;
CGM_write_int_record(5, 30, 2, &cgm_current.edge_visibility);
}
CGM_move(corner[0].x, corner[0].y);
cgm_doing_polygon = 1;
for (i = 1; i < points; i++)
CGM_solid_vector(corner[i].x, corner[i].y);
CGM_flush_polygon();
cgm_doing_polygon = 0;
}
static void
CGM_flush_polyline()
{
if (cgm_coords == 0)
return;
CGM_write_int_record(4, 1, cgm_coords * 2, cgm_polyline);
cgm_coords = 0;
}
static void
CGM_write_char_record(int class, int cgm_id, int numbytes, char *data)
{
int i, pad, length;
static unsigned char flag = 0xff;
static unsigned char paddata = 0;
char short_len;
pad = 0;
length = numbytes + 1;
if (numbytes >= 255)
length += 2; /* long string */
if (length & 1)
pad = 1; /* needs pad */
CGM_write_code(class, cgm_id, length);
if (numbytes < 255)
{
short_len = (char)numbytes;
fwrite(&short_len, 1, 1, gpoutfile); /* write true length */
} else {
fwrite(&flag, 1, 1, gpoutfile);
CGM_write_int(numbytes);
}
if (data)
fwrite(data, 1, numbytes, gpoutfile); /* write string */
else
for (i=0; i<numbytes+pad; i++)
fputc('\0', gpoutfile); /* write null bytes */
if(pad)
fwrite(&paddata, 1, 1, gpoutfile);
}
static void
CGM_write_byte_record(int class, int cgm_id, int numbytes, char *data)
{
int pad;
static unsigned char paddata = 0;
pad = numbytes & 1;
CGM_write_code(class, cgm_id, numbytes);
fwrite(data, 1, numbytes, gpoutfile); /* write string */
if(pad)
fwrite(&paddata, 1, 1, gpoutfile);
}
static void
CGM_write_int_record(int class, int cgm_id, int numbytes, int *data)
{
int i;
assert((numbytes & 1) == 0);
CGM_write_code(class, cgm_id, numbytes);
numbytes >>= 1;
for (i = 0; i < numbytes; i++)
CGM_write_int(data[i]);
}
static void
CGM_write_mixed_record(
int class, int cgm_id,
int numint, int *int_data,
int numchar, const char *char_data)
{
int i, pad, length;
static unsigned char paddata = 0;
static unsigned char flag = 0xff;
char short_len;
pad = 0;
length = numchar + 1;
if (numchar >= 255)
length += 2; /* long string */
if (length & 1)
pad = 1; /* needs pad */
CGM_write_code(class, cgm_id, numint * 2 + length);
for (i = 0; i < numint; i++)
CGM_write_int(int_data[i]); /* write integers */
if (numchar < 255) {
short_len = (char)numchar;
fwrite(&short_len, 1, 1, gpoutfile); /* write string length */
} else {
fwrite(&flag, 1, 1, gpoutfile);
CGM_write_int(numchar);
}
fwrite(char_data, 1, numchar, gpoutfile); /* write string */
if(pad)
fwrite(&paddata, 1, 1, gpoutfile);
}
/*
Write the code word that starts a CGM record.
bits in code word are as follows...
cccciiiiiiilllll
where
cccc is a 4-bit class number
iiiiiii is a 7-bit ID number
lllll is a 5-bit length (# bytes following the code word, or
31 followed by a word with the actual number)
*/
static void
CGM_write_code(int class, int cgm_id, int length)
{
unsigned int code;
assert((0 <= class) &&(class <16));
assert((0 <= cgm_id) && (cgm_id < 128));
assert(0 <= length);
if (length < 31) {
code = ((class &0x0f) <<12) |
((cgm_id & 0x7f) << 5) |
((length & 0x1f));
CGM_write_int(code);
} else {
code = ((class &0x0f) <<12) |
((cgm_id & 0x7f) << 5) |
0x1f;
CGM_write_int(code);
CGM_write_int(length);
}
}
static void
CGM_write_int(int value)
{
union {
short s;
char c[2];
} u;
assert( -32768 <= value );
assert( value <= 32767 );
u.c[0] = (value >> 8) & 255; /* convert to network order */
u.c[1] = value & 255;
fwrite(&u.s, 1, 2, gpoutfile);
}
/* Draw a dashed line to (ux,uy). CGM has linestyles, but they are
* not usable -- at least with the Word for Windows 6.0 filter, where
* lines of significant width (even 1 pt) always come out solid.
* Therefore, we implement dashed lines here instead. */
TERM_PUBLIC void
CGM_dashed_vector(unsigned int ux, unsigned int uy)
{
int xa, ya;
int dx, dy, adx, ady;
int dist; /* approximate distance in plot units
from starting point to specified end
point. */
long remain; /* approximate distance in plot units
remaining to specified end point. */
if (ux >= term->xmax)
ux = term->xmax;
if (uy >= term->ymax)
uy = term->ymax;
dx = (ux - cgm_posx);
dy = (uy - cgm_posy);
adx = abs(dx);
ady = abs(dy * 10);
/* using the approximation
sqrt(x**2 + y**2) ~ x + (5*x*x)/(12*y) when x > y.
Note ordering of calculations to avoid overflow on 16 bit
architectures */
if (10 * adx < ady)
dist = (ady / 2 + 25 * adx / ady * adx / 6 * 5) / 5;
else {
if (adx == 0)
return;
dist = (adx * 10 + (ady / 24) * (ady / adx)) / 10;
}
remain = dist;
xa = cgm_posx;
ya = cgm_posy;
while (remain > cgm_step) {
remain -= cgm_step;
if (cgm_step_index & 1)
CGM_solid_vector((int) (ux - (remain * dx) / dist),
(int) (uy - (remain * dy) / dist));
else {
xa = (int) (ux - (remain * dx) / dist);
ya = (int) (uy - (remain * dy) / dist);
CGM_move(xa, ya);
}
if (++cgm_step_index >= 8)
cgm_step_index = 0;
cgm_step = cgm_step_sizes[cgm_step_index];
}
if (cgm_step_index & 1)
CGM_solid_vector(ux, uy);
else
CGM_move(ux, uy);
cgm_step -= (int) remain;
}
TERM_PUBLIC void
CGM_solid_vector(unsigned int ux, unsigned int uy)
{
if (cgm_linetype == LT_NODRAW) {
CGM_move(ux, uy);
return;
}
/* FIXME: this is not valid clipping!
* Fortunately proper clipping might have been done already.
*/
if (ux >= term->xmax)
ux = term->xmax;
if (uy >= term->ymax)
uy = term->ymax;
if (ux == cgm_posx && uy == cgm_posy)
return;
if (cgm_coords > CGM_MAX_SEGMENTS - 2) {
if (cgm_doing_polygon)
CGM_flush_polygon();
else
CGM_flush_polyline();
cgm_polyline[cgm_coords++] = cgm_posx;
cgm_polyline[cgm_coords++] = cgm_posy + CGM_MARGIN;
} else if (cgm_coords == 0) {
cgm_polyline[cgm_coords++] = cgm_posx;
cgm_polyline[cgm_coords++] = cgm_posy + CGM_MARGIN;
}
cgm_polyline[cgm_coords++] = ux;
cgm_polyline[cgm_coords++] = uy + CGM_MARGIN;
cgm_posx = ux;
cgm_posy = uy;
}
TERM_PUBLIC void
CGM_put_text(unsigned int x, unsigned int y, const char str[])
{
static int where[3] = { 0, 0, 1 }; /* the final "1" signals that
this is the last text in the
string */
const char *s = str;
/* sanity check - labels are not clipped */
if ((x > 32767) || (y > 32767))
return;
while (*s)
if (!isspace((unsigned char) *s++))
goto showit;
return;
showit:
CGM_flush_polyline();
/* update the text characteristics if they have changed since the
last text string was output */
if (cgm_current.font_index != cgm_next.font_index) {
cgm_current.font_index = cgm_next.font_index;
CGM_write_int_record(5, 10, 2, &cgm_next.font_index);
}
if (cgm_current.justify_mode != cgm_next.justify_mode) {
static int data[6] = { 1, 3, 0, 0, 0, 0 };
cgm_current.justify_mode = cgm_next.justify_mode;
switch (cgm_current.justify_mode) {
case LEFT:
data[0] = 1;
break;
case CENTRE:
data[0] = 2;
break;
case RIGHT:
data[0] = 3;
break;
default:
assert(0);
}
CGM_write_int_record(5, 18, 12, data);
}
if (cgm_current.char_height != cgm_next.char_height) {
int h = cgm_next.char_height;
cgm_current.char_height = h;
h = h*2/3; /* gnuplot measures fonts by the
baseline-to-baseline distance,
while the CGM file needs the actual
height of the upper case
characters. */
CGM_write_int_record(5, 15, 2, &h);
}
/* "angle" is the angle of the text baseline (counter-clockwise in
radians from horizontal). This is a bit more general than
gnuplot needs right now. */
if (cgm_current.angle != cgm_next.angle) {
/* The first two elements of orient are components of a vector
"upward" with respect to the text. The next two elements are
components of a vector along the baseline of the text. The
lengths of both vectors are equal to the baseline-to-baseline
distance in plot units. */
static int orient[4];
cgm_current.angle = cgm_next.angle;
orient[0] = (int)cgm_next.char_height*cos(cgm_next.angle+M_PI_2);
orient[1] = (int)cgm_next.char_height*sin(cgm_next.angle+M_PI_2);
orient[2] = (int)cgm_next.char_height*cos(cgm_next.angle);
orient[3] = (int)cgm_next.char_height*sin(cgm_next.angle);
CGM_write_int_record(5, 16, 8, orient);
}
where[0] = x;
where[1] = y + CGM_MARGIN;
CGM_write_mixed_record(4, 4, 3, where, strlen(str), str);
cgm_posx = cgm_posy = -2000;
}
TERM_PUBLIC int
CGM_text_angle(float ang)
{
if (cgm_rotate) {
cgm_next.angle = ang * M_PI_2 / 90.;
return TRUE;
}
return ang ? FALSE : TRUE;
}
TERM_PUBLIC int
CGM_justify_text(enum JUSTIFY mode)
{
cgm_next.justify_mode = mode;
return (TRUE);
}
TERM_PUBLIC void
CGM_reset()
{
cgm_posx = cgm_posy = 0;
free(cgm_polyline);
}
TERM_PUBLIC void
CGM_point(unsigned int x, unsigned int y, int number)
{
int old_dashtype;
if (number < 0) { /* draw dot */
CGM_move(x, y);
CGM_solid_vector(x + 1, y);
return;
}
number %= CGM_POINTS;
CGM_flush_polyline();
old_dashtype = cgm_dashtype;
CGM_dashtype(0);
if (number >= 3) /* using a polygon */
cgm_next.interior_style = 1; /* solid */
if (number == 4 || number == 6 || number == 8
|| number == 10 || number == 12) {
/* filled */
cgm_next.edge_visibility = 0;
cgm_next.fill_color = cgm_color;
} else {
/* NOT filled */
cgm_next.edge_visibility = 1;
cgm_next.interior_style = 0; /* empty */
cgm_next.edge_color = cgm_color;
}
if (cgm_current.interior_style != cgm_next.interior_style){
cgm_current.interior_style = cgm_next.interior_style;
CGM_write_int_record(5, 22, 2, &cgm_next.interior_style);
}
if (cgm_current.fill_color != cgm_next.fill_color){
cgm_current.fill_color = cgm_next.fill_color;
CGM_write_int_record(5, 23, 2, &cgm_next.fill_color);
}
if (cgm_current.edge_visibility != cgm_next.edge_visibility){
cgm_current.edge_visibility = cgm_next.edge_visibility;
CGM_write_int_record(5, 30, 2, &cgm_current.edge_visibility);
}
if (cgm_current.edge_visibility &&
cgm_current.edge_color != cgm_next.edge_color){
cgm_current.edge_color = cgm_next.edge_color;
CGM_write_int_record(5, 29, 2, &cgm_current.edge_color);
}
switch (number) {
case 0: /* draw plus */
CGM_move(x - cgm_tic, y);
CGM_solid_vector(x + cgm_tic, y);
CGM_move(x, y - cgm_tic);
CGM_solid_vector(x, y + cgm_tic);
break;
case 1: /* draw X */
CGM_move(x - cgm_tic707, y - cgm_tic707);
CGM_solid_vector(x + cgm_tic707, y + cgm_tic707);
CGM_move(x - cgm_tic707, y + cgm_tic707);
CGM_solid_vector(x + cgm_tic707, y - cgm_tic707);
break;
case 2: /* draw star (asterisk) */
CGM_move(x, y - cgm_tic);
CGM_solid_vector(x, y + cgm_tic);
CGM_move(x + cgm_tic866, y - cgm_tic500);
CGM_solid_vector(x - cgm_tic866, y + cgm_tic500);
CGM_move(x + cgm_tic866, y + cgm_tic500);
CGM_solid_vector(x - cgm_tic866, y - cgm_tic500);
break;
case 3: /* draw box */
case 4:
CGM_move(x - cgm_tic707, y - cgm_tic707);
CGM_solid_vector(x + cgm_tic707, y - cgm_tic707);
CGM_solid_vector(x + cgm_tic707, y + cgm_tic707);
CGM_solid_vector(x - cgm_tic707, y + cgm_tic707);
CGM_flush_polygon();
break;
case 5:
case 6: /* draw circle (actually, dodecagon)
(WinWord 6 accepts the CGM "circle"
element, but the resulting circle
is not correctly centered!) */
CGM_move(x, y - cgm_tic);
CGM_solid_vector(x + cgm_tic500, y - cgm_tic866);
CGM_solid_vector(x + cgm_tic866, y - cgm_tic500);
CGM_solid_vector(x + cgm_tic, y);
CGM_solid_vector(x + cgm_tic866, y + cgm_tic500);
CGM_solid_vector(x + cgm_tic500, y + cgm_tic866);
CGM_solid_vector(x, y + cgm_tic);
CGM_solid_vector(x - cgm_tic500, y + cgm_tic866);
CGM_solid_vector(x - cgm_tic866, y + cgm_tic500);
CGM_solid_vector(x - cgm_tic, y);
CGM_solid_vector(x - cgm_tic866, y - cgm_tic500);
CGM_solid_vector(x - cgm_tic500, y - cgm_tic866);
CGM_flush_polygon();
break;
case 7: /* draw triangle (point up) */
case 8:
CGM_move(x, y + cgm_tic1241);
CGM_solid_vector(x - cgm_tic1077, y - cgm_tic621);
CGM_solid_vector(x + cgm_tic1077, y - cgm_tic621);
CGM_flush_polygon();
break;
case 9: /* draw triangle (point down) */
case 10:
CGM_move(x, y - cgm_tic1241);
CGM_solid_vector(x - cgm_tic1077, y + cgm_tic621);
CGM_solid_vector(x + cgm_tic1077, y + cgm_tic621);
CGM_flush_polygon();
break;
case 11: /* draw diamond */
case 12:
CGM_move(x - cgm_tic, y);
CGM_solid_vector(x, y - cgm_tic);
CGM_solid_vector(x + cgm_tic, y);
CGM_solid_vector(x, y + cgm_tic);
CGM_flush_polygon();
break;
}
CGM_dashtype(old_dashtype);
}
TERM_PUBLIC void
CGM_set_pointsize(double size)
{
/* Markers were chosen to have approximately equal
areas. Dimensions are as follows, in units of
cgm_tic:
plus, diamond: half height = 1
square, cross: half height = sqrt(1/2) ~ 12/17
triangle: half width = sqrt(sqrt(4/3)) ~ 14/13,
height = sqrt(3*sqrt(4/3)) ~ 54/29
star: half height = 1, half width = sqrt(3/4) ~ 13/15
dodecagon: coordinates of vertices are 0,
sin(30) = 1/2, cos(30) = sqrt(3/4) ~ 13/15, or 1
The fractions are approximates of the equivalent
continued fractions. */
if (size < 0)
size = 1;
cgm_tic = (size * term->h_tic / 2);
cgm_tic707 = cgm_tic * 12 / 17;
cgm_tic866 = cgm_tic * 13 / 15;
cgm_tic500 = cgm_tic / 2;
cgm_tic1241 = cgm_tic * 36 / 29;
cgm_tic1077 = cgm_tic * 14 / 13;
cgm_tic621 = cgm_tic * 18 / 29;
}
static void
CGM_flush_polygon()
{
if (cgm_coords == 0)
return;
CGM_write_int_record(4, 7, cgm_coords * 2, cgm_polyline);
cgm_coords = 0;
}
/*
* This terminal driver does not support true RGB color,
* but we can at least try to find some reasonable approximation.
*/
#define CLOSE_ENOUGH 32 /* 0 would require a perfect match */
static int
CGM_find_nearest_color(t_colorspec *colorspec)
{
int red = (colorspec->lt >> 16) & 0xff;
int green = (colorspec->lt >> 8) & 0xff;
int blue = colorspec->lt & 0xff;
int closest = 0;
int howclose = 1<<16;
int i = 0;
int k;
int dr, dg, db, distance;
for (k=0; k<cgm_user_color_count; k++) {
dr = cgm_user_color_table[++i] - red;
dg = cgm_user_color_table[++i] - green;
db = cgm_user_color_table[++i] - blue;
distance = (dr*dr + dg*dg + db*db);
if (distance < howclose) {
closest = k;
howclose = distance;
}
if (distance < CLOSE_ENOUGH)
break;
}
FPRINTF((stderr,"CGM_find_nearest_color: asked for %d %d %d\n",red,green,blue));
FPRINTF((stderr," got index %3d %d %d %d\n", closest,
cgm_user_color_table[closest*3], cgm_user_color_table[closest*3+1],
cgm_user_color_table[closest*3+2]));
return closest;
}
#undef CLOSE_ENOUGH
#ifdef DEFEAT_ASSERTIONS
#define NDEBUG
#include <assert.h>
#undef DEFEAT_ASSERTIONS
#endif /* DEFEAT_ASSERTIONS */
#endif /* TERM_BODY */
#ifdef TERM_TABLE
TERM_TABLE_START(cgm_driver)
"cgm", "Computer Graphics Metafile",
CGM_LARGE - CGM_MARGIN, CGM_SMALL - CGM_MARGIN, CGM_VCHAR, CGM_HCHAR,
CGM_VTIC, CGM_HTIC, CGM_options, CGM_init, CGM_reset,
CGM_text, null_scale, CGM_graphics, CGM_move, CGM_solid_vector,
CGM_linetype, CGM_put_text, CGM_text_angle,
CGM_justify_text, CGM_point, do_arrow, CGM_set_font,
CGM_set_pointsize,
TERM_BINARY|TERM_CAN_DASH|TERM_LINEWIDTH, /* various flags */
NULL, /* after one plot of multiplot */
NULL, /* before subsequent plot of multiplot */
CGM_fillbox,
CGM_linewidth
#ifdef USE_MOUSE
, NULL, NULL, NULL, NULL, NULL
/* , waitforinput, put_tmptext, set_ruler, set_cursor, set_clipboard */
#endif
, CGM_make_palette,
NULL /* _previous_palette */,
CGM_set_color,
CGM_filled_polygon
TERM_TABLE_END(cgm_driver)
#undef LAST_TERM
#define LAST_TERM cgm_driver
#endif /* TERM_TABLE */
#endif /* TERM_PROTO_ONLY */
#ifdef TERM_HELP
START_HELP(cgm)
"1 cgm",
"?commands set terminal cgm",
"?set terminal cgm",
"?set term cgm",
"?terminal cgm",
"?term cgm",
"?cgm",
" The `cgm` terminal generates a Computer Graphics Metafile, Version 1. ",
" This file format is a subset of the ANSI X3.122-1986 standard entitled",
" \"Computer Graphics - Metafile for the Storage and Transfer of Picture",
" Description Information\".",
"",
" Syntax:",
" set terminal cgm {color | monochrome} {solid | dashed} {{no}rotate}",
" {<mode>} {width <plot_width>} {linewidth <line_width>}",
" {font \"<fontname>,<fontsize>\"}",
" {background <rgb_color>}",
" [deprecated] {<color0> <color1> <color2> ...}",
"",
" `solid` draws all curves with solid lines, overriding any dashed patterns;",
" <mode> is `landscape`, `portrait`, or `default`;",
" <plot_width> is the assumed width of the plot in points; ",
" <line_width> is the line width in points (default 1); ",
" <fontname> is the name of a font (see list of fonts below)",
" <fontsize> is the size of the font in points (default 12).",
"",
" The first six options can be in any order. Selecting `default` sets all",
" options to their default values.",
"",
" The mechanism of setting line colors in the `set term` command is",
" deprecated. Instead you should set the background using a separate",
" keyword and set the line colors using `set linetype`.",
" The deprecated mechanism accepted colors of the form 'xrrggbb', where x is",
" the literal character 'x' and 'rrggbb' are the red, green and blue components",
" in hex. The first color was used for the background, subsequent colors are",
" assigned to successive line types.",
"",
" Examples:",
" set terminal cgm landscape color rotate dashed width 432 \\",
" linewidth 1 'Helvetica Bold' 12 # defaults",
" set terminal cgm linewidth 2 14 # wider lines & larger font",
" set terminal cgm portrait \"Times Italic\" 12",
" set terminal cgm color solid # no pesky dashes!",
"2 cgm font",
"?commands set terminal cgm font",
"?set terminal cgm font",
"?set term cgm font",
"?cgm font",
" The first part of a Computer Graphics Metafile, the metafile description,",
" includes a font table. In the picture body, a font is designated by an",
" index into this table. By default, this terminal generates a table with",
" the following 35 fonts, plus six more with `italic` replaced by",
" `oblique`, or vice-versa (since at least the Microsoft Office and Corel",
" Draw CGM import filters treat `italic` and `oblique` as equivalent):",
"",
"@start table - first is interactive cleartext form",
" Helvetica",
" Helvetica Bold",
" Helvetica Oblique",
" Helvetica Bold Oblique",
" Times Roman",
" Times Bold",
" Times Italic",
" Times Bold Italic",
" Courier",
" Courier Bold",
" Courier Oblique",
" Courier Bold Oblique",
" Symbol",
" Hershey/Cartographic_Roman",
" Hershey/Cartographic_Greek",
" Hershey/Simplex_Roman",
" Hershey/Simplex_Greek",
" Hershey/Simplex_Script",
" Hershey/Complex_Roman",
" Hershey/Complex_Greek",
" Hershey/Complex_Script",
" Hershey/Complex_Italic",
" Hershey/Complex_Cyrillic",
" Hershey/Duplex_Roman",
" Hershey/Triplex_Roman",
" Hershey/Triplex_Italic",
" Hershey/Gothic_German",
" Hershey/Gothic_English",
" Hershey/Gothic_Italian",
" Hershey/Symbol_Set_1",
" Hershey/Symbol_Set_2",
" Hershey/Symbol_Math",
" ZapfDingbats",
" Script",
" 15",
"#\\begin{tabular}{|lll|} \\hline",
"#\\multicolumn{3}{|c|}{CGM fonts}\\\\\\hline",
"#&Helvetica&Hershey/Cartographic\\_Roman\\\\",
"#&Helvetica Bold&Hershey/Cartographic\\_Greek\\\\",
"#&Helvetica Oblique&Hershey/Simplex\\_Roman\\\\",
"#&Helvetica Bold Oblique&Hershey/Simplex\\_Greek\\\\",
"#&Times Roman&Hershey/Simplex\\_Script\\\\",
"#&Times Bold&Hershey/Complex\\_Roman\\\\",
"#&Times Italic&Hershey/Complex\\_Greek\\\\",
"#&Times Bold Italic&Hershey/Complex\\_Italic\\\\",
"#&Courier&Hershey/Complex\\_Cyrillic\\\\",
"#&Courier Bold&Hershey/Duplex\\_Roman\\\\",
"#&Courier Oblique&Hershey/Triplex\\_Roman\\\\",
"#&Courier Bold Oblique&Hershey/Triplex\\_Italic\\\\",
"#&Symbol&Hershey/Gothic\\_German\\\\",
"#&ZapfDingbats&Hershey/Gothic\\_English\\\\",
"#&Script&Hershey/Gothic\\_Italian\\\\",
"#&15&Hershey/Symbol\\_Set\\_1\\\\",
"#&&Hershey/Symbol\\_Set\\_2\\\\",
"#&&Hershey/Symbol\\_Math\\\\",
"%c c l .",
"%@@CGM fonts",
"%_",
"%@@Helvetica",
"%@@Helvetica Bold",
"%@@Helvetica Oblique",
"%@@Helvetica Bold Oblique",
"%@@Times Roman",
"%@@Times Bold",
"%@@Times Italic",
"%@@Times Bold Italic",
"%@@Courier",
"%@@Courier Bold",
"%@@Courier Oblique",
"%@@Courier Bold Oblique",
"%@@Symbol",
"%@@Hershey/Cartographic_Roman",
"%@@Hershey/Cartographic_Greek",
"%@@Hershey/Simplex_Roman",
"%@@Hershey/Simplex_Greek",
"%@@Hershey/Simplex_Script",
"%@@Hershey/Complex_Roman",
"%@@Hershey/Complex_Greek",
"%@@Hershey/Complex_Script",
"%@@Hershey/Complex_Italic",
"%@@Hershey/Complex_Cyrillic",
"%@@Hershey/Duplex_Roman",
"%@@Hershey/Triplex_Roman",
"%@@Hershey/Triplex_Italic",
"%@@Hershey/Gothic_German",
"%@@Hershey/Gothic_English",
"%@@Hershey/Gothic_Italian",
"%@@Hershey/Symbol_Set_1",
"%@@Hershey/Symbol_Set_2",
"%@@Hershey/Symbol_Math",
"%@@ZapfDingbats",
"%@@Script",
"%@@15",
"@end table",
"^<table align=\"center\" border=\"1\" rules=\"groups\" frame=\"hsides\" cellpadding=\"3\">",
"^<colgroup>",
"^ <col align=\"left\">",
"^ <col align=\"left\">",
"^</colgroup>",
"^<thead>",
"^<tr><th colspan=2 align=\"center\">CGM fonts</th></tr>",
"^</thead>",
"^<tbody>",
"^<tr><td>Helvetica</td><td>Hershey/Cartographic_Roman</td></tr>",
"^<tr><td>Helvetica Bold</td><td>Hershey/Cartographic_Greek</td></tr>",
"^<tr><td>Helvetica Oblique</td><td>Hershey/Simplex_Roman</td></tr>",
"^<tr><td>Helvetica Bold Oblique</td><td>Hershey/Simplex_Greek</td></tr>",
"^<tr><td>Times Roman</td><td>Hershey/Simplex_Script</td></tr>",
"^<tr><td>Times Bold</td><td>Hershey/Complex_Roman</td></tr>",
"^<tr><td>Times Italic</td><td>Hershey/Complex_Greek</td></tr>",
"^<tr><td>Times Bold Italic</td><td>Hershey/Complex_Italic</td></tr>",
"^<tr><td>Courier</td><td>Hershey/Complex_Cyrillic</td></tr>",
"^<tr><td>Courier Bold</td><td>Hershey/Duplex_Roman</td></tr>",
"^<tr><td>Courier Oblique</td><td>Hershey/Triplex_Roman</td></tr>",
"^<tr><td>Courier Bold Oblique</td><td>Hershey/Triplex_Italic</td></tr>",
"^<tr><td>Symbol</td><td>Hershey/Gothic_German</td></tr>",
"^<tr><td>ZapfDingbats</td><td>Hershey/Gothic_English</td></tr>",
"^<tr><td>Script</td><td>Hershey/Gothic_Italian</td></tr>",
"^<tr><td>15</td><td>Hershey/Symbol_Set_1</td></tr>",
"^<tr><td></td><td>Hershey/Symbol_Set_2</td></tr>",
"^<tr><td></td><td>Hershey/Symbol_Math</td></tr>",
"^</tbody>",
"^</table>",
"",
" The first thirteen of these fonts are required for WebCGM. The",
" Microsoft Office CGM import filter implements the 13 standard fonts",
" listed above, and also 'ZapfDingbats' and 'Script'. However, the",
" script font may only be accessed under the name '15'. For more on",
" Microsoft import filter font substitutions, check its help file which",
" you may find here:",
" C:\\Program Files\\Microsoft Office\\Office\\Cgmimp32.hlp",
" and/or its configuration file, which you may find here:",
" C:\\Program Files\\Common Files\\Microsoft Shared\\Grphflt\\Cgmimp32.cfg",
"",
" In the `set term` command, you may specify a font name which does not",
" appear in the default font table. In that case, a new font table is",
" constructed with the specified font as its first entry. You must ensure",
" that the spelling, capitalization, and spacing of the name are",
" appropriate for the application that will read the CGM file. (Gnuplot",
" and any MIL-D-28003A compliant application ignore case in font names.)",
" If you need to add several new fonts, use several `set term` commands.",
"",
" Example:",
" set terminal cgm 'Old English'",
" set terminal cgm 'Tengwar'",
" set terminal cgm 'Arabic'",
" set output 'myfile.cgm'",
" plot ...",
" set output",
"",
" You cannot introduce a new font in a `set label` command.",
"2 cgm fontsize",
"?commands set terminal cgm fontsize",
"?set terminal cgm fontsize",
"?set term cgm fontsize",
"?cgm fontsize",
" Fonts are scaled assuming the page is 6 inches wide. If the `size`",
" command is used to change the aspect ratio of the page or the CGM file",
" is converted to a different width, the resulting font sizes will be",
" scaled up or down accordingly. To change the assumed width, use the",
" `width` option.",
"2 cgm linewidth",
"?commands set terminal cgm linewidth",
"?set terminal cgm linewidth",
"?set term cgm linewidth",
"?cgm linewidth",
" The `linewidth` option sets the width of lines in pt. The default width",
" is 1 pt. Scaling is affected by the actual width of the page, as",
" discussed under the `fontsize` and `width` options.",
"2 cgm rotate",
"?commands set terminal cgm rotate",
"?set terminal cgm rotate",
"?set term cgm rotate",
"?cgm rotate",
" The `norotate` option may be used to disable text rotation. For",
" example, the CGM input filter for Word for Windows 6.0c can accept",
" rotated text, but the DRAW editor within Word cannot. If you edit a",
" graph (for example, to label a curve), all rotated text is restored to",
" horizontal. The Y axis label will then extend beyond the clip boundary.",
" With `norotate`, the Y axis label starts in a less attractive location,",
" but the page can be edited without damage. The `rotate` option confirms",
" the default behavior.",
"2 cgm solid",
"?set terminal cgm solid",
"?set term cgm solid",
"?cgm solid",
" The `solid` option may be used to disable dashed line styles in the",
" plots. This is useful when color is enabled and the dashing of the",
" lines detracts from the appearance of the plot. The `dashed` option",
" confirms the default behavior, which gives a different dash pattern to",
" each line type.",
"2 cgm size",
"?commands set terminal cgm size",
"?set terminal cgm size",
"?set term cgm size",
"?cgm size",
" Default size of a CGM plot is 32599 units wide and 23457 units high for",
" landscape, or 23457 units wide by 32599 units high for portrait.",
"2 cgm width",
"?commands set terminal cgm width",
"?set terminal cgm width",
"?set term cgm width",
"?cgm width",
" All distances in the CGM file are in abstract units. The application",
" that reads the file determines the size of the final plot. By default,",
" the width of the final plot is assumed to be 6 inches (15.24 cm). This",
" distance is used to calculate the correct font size, and may be changed",
" with the `width` option. The keyword should be followed by the width in",
" points. (Here, a point is 1/72 inch, as in PostScript. This unit is",
" known as a \"big point\" in TeX.) Gnuplot `expressions` can be used to",
" convert from other units.",
"",
" Example:",
" set terminal cgm width 432 # default",
" set terminal cgm width 6*72 # same as above",
" set terminal cgm width 10/2.54*72 # 10 cm wide",
"2 cgm nofontlist",
"?commands set terminal cgm nofontlist",
"?set terminal cgm nofontlist",
"?set term cgm nofontlist",
"?cgm nofontlist",
"?set terminal cgm winword6",
"?set term cgm winword6",
"?cgm winword6",
" The default font table includes the fonts recommended for WebCGM, which",
" are compatible with the Computer Graphics Metafile input filter for",
" Microsoft Office and Corel Draw. Another application might use",
" different fonts and/or different font names, which may not be",
" documented. The `nofontlist` (synonym `winword6`) option deletes the font",
" table from the CGM file. In this case, the reading application should",
" use a default table. Gnuplot will still use its own default font table",
" to select font indices. Thus, 'Helvetica' will give you an index of 1,",
" which should get you the first entry in your application's default font",
" table. 'Helvetica Bold' will give you its second entry, etc.",
""
END_HELP(cgm)
#endif /* TERM_HELP */
/*
* Local Variables:
* mode:C
* eval: (c-set-style "k&r")
* End:
*/
|