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
|
/* Hello, Emacs, this is -*-C-*-
* $Id: fig.trm,v 1.69 2011/11/07 18:32:04 markisch Exp $
*/
/* GNUPLOT - fig.trm */
/*[
* Copyright 1990 - 1993, 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.
*
* This terminal driver supports:
* Fig graphics language
*
* AUTHORS
* Micah Beck, David Kotz
*
* send your comments or suggestions to (gnuplot-info@lists.sourceforge.net).
*
*/
/*
* Original for Fig code output by Micah Beck, 1989
* Department of Computer Science, Cornell University
* Updated by David Kotz for gnuplot 2.0
* More efficient output by Ian Dall
* Updated to FIG 2.1 (with color) format by Vivek Khera
* Updated to FIG 3.1 (higher resolution) format by Ian MacPhedran, Jan 1995
* Updated to conform to newterm format Ian MacPhedran, Apr 1995
* Point-count option joachim.selinger@ins.uni-stuttgart.de (JFS) Feb 9 1996
* More options (portrait/landscape, metric/inches, size, fontsize, thickness)
* plus symbols and depth/thickness by bernlohr@eu1.mpi-hd.mpg.de (KB) Aug 15 1996
* Added PM3D functionality Ian MacPhedran, April 15 1999
* Take into account 'set palette maxcolors' Petr Mikulik, June 11 2002
* Don't reset options when 'set term fig <new options>', Petr Mikulik, Aug 24 2002
* Ethan A Merritt - May 2008:
* Bring into line with other terminals for point types, size syntax, font spec
*/
#include "driver.h"
#ifdef TERM_REGISTER
register_term(fig)
#endif /* TERM_REGISTER */
#ifdef TERM_PROTO
TERM_PUBLIC void FIG_options __PROTO((void));
TERM_PUBLIC void FIG_init __PROTO((void));
TERM_PUBLIC void FIG_graphics __PROTO((void));
TERM_PUBLIC void FIG_text __PROTO((void));
TERM_PUBLIC void FIG_linetype __PROTO((int linetype));
TERM_PUBLIC void FIG_move __PROTO((unsigned int x, unsigned int y));
TERM_PUBLIC void FIG_vector __PROTO((unsigned int ux, unsigned int uy));
TERM_PUBLIC void FIG_arrow __PROTO((unsigned int sx, unsigned int sy, unsigned int ex, unsigned int ey, int head));
TERM_PUBLIC void FIG_put_text __PROTO((unsigned int x, unsigned int y, const char *str));
TERM_PUBLIC int FIG_justify_text __PROTO((enum JUSTIFY mode));
TERM_PUBLIC int FIG_text_angle __PROTO((int ang));
TERM_PUBLIC void FIG_pointsize __PROTO((double arg_pointsize));
TERM_PUBLIC void FIG_linewidth __PROTO((double linewidth));
TERM_PUBLIC void FIG_reset __PROTO((void));
TERM_PUBLIC void FIG_lpoint __PROTO((unsigned int x, unsigned int y, int number));
TERM_PUBLIC void FIG_boxfill __PROTO((int style, unsigned int x, unsigned int y, unsigned int w, unsigned int h));
TERM_PUBLIC int FIG_make_palette (t_sm_palette *);
/* TERM_PUBLIC void FIG_previous_palette (void); */
TERM_PUBLIC void FIG_set_color (t_colorspec *);
TERM_PUBLIC void FIG_filled_polygon (int, gpiPoint *);
TERM_PUBLIC void FIG_layer __PROTO((t_termlayer syncpoint));
#define GOT_FIG_PROTO
#endif /* TERM_PROTO */
#ifndef TERM_PROTO_ONLY
#ifdef TERM_BODY
#include "object.h" /* modified from the XFig distribution */
#define FIG_DEFAULT DEFAULT
#define FIG_ROMAN_FONT (0) /* actually, the default font */
#if METRIC
# define INCH FALSE
#else
# define INCH TRUE
#endif
/* These should not be defined elsewhere - ACZ */
/* This is now 1200 per inch */
#define FIG_IRES (1200)
/* This is now 450 per cm */
#define FIG_MRES (450)
#define FIG_COORD_SYS 2
#define FIG_ORIENT (FIG_portrait?"Portrait":"Landscape")
/* Could be "Portrait" */
#define FIG_JUST "Center"
/* Could be "Flush Left" */
#define FIG_UNIT (FIG_inches?"Inches":"Metric")
/* Could be "Inches" */
#define FIG_PAPER (FIG_inches ? "Letter" : "A4")
#define FIG_MAGNIFICATION 100.0
#define FIG_MULTIPAGE "Single"
/* Could be "Multiple" */
#define FIG_TRANSCOLOR -2
/* none: -2; background: -1; 0..31: foreground colors */
/* This could probably be dropped with the support of GIFs. */
#define FIG_TRUERES (FIG_inches ? FIG_IRES : FIG_MRES) /* ACZ */
#define FIG_DEFAULTVERSION "3.2"
#define FIG_HTIC(inch) ((inch) ? (5*FIG_IRES)/80 : (15*FIG_MRES)/100)
#define FIG_VTIC(inch) ((inch) ? (5*FIG_IRES)/80 : (15*FIG_MRES)/100)
#define FIG_FONT_S (10) /* size in points */
#define FIG_MAX_POINTS 99999L /* almost infinite ;-) */
/* height of font in pixels: */
#define FIG_to_pixel_v(inch,s) (((inch) ? (s)*FIG_IRES : (s)*FIG_MRES*2.54) / 72 * 3/4)
/* This is fudged to enlarge the drawing area, but gives fairly good results */
/* this is a guess at the width: */
#define FIG_to_pixel_h(inch,s) (FIG_to_pixel_v(inch,s)*6/10)
#define FIG_VCHAR FIG_to_pixel_v(INCH,FIG_FONT_S) /* just for default, */
#define FIG_HCHAR FIG_to_pixel_h(INCH,FIG_FONT_S) /* not really used */
/* Text flags (ULIG) */
enum FIG_TEXT_STYLEBITS {
FIG_TEXT_RIGID = 1<<0,
FIG_TEXT_SPECIAL = 1<<1,
FIG_TEXT_POSTSCRIPT = 1<<2,
FIG_TEXT_HIDDEN = 1<<3
};
#define FIG_TEXT_NORMAL FIG_TEXT_POSTSCRIPT
enum FIG_poly_stat {
FIG_poly_new, FIG_poly_part
};
static int FIG_posx;
static int FIG_posy;
static long FIG_poly_vec_cnt;
static int FIG_depth = 10;
static int FIG_linedepth = 10;
static int FIG_thickness = 1;
static int FIG_default_thickness = 1;
static double FIG_current_pointsize = 1.;
static double FIG_current_linewidth = 1.;
/* Maximum number of points per POLYLINE.
Default 1000 (hardcoded in help section as well) */
static int FIG_poly_vec_max = 999; /* JFS */
static enum FIG_poly_stat FIG_polyvec_stat;
/* 5 inches wide by 3 inches high */
#define FIG_XMAX(inch) ((inch) ? 5*FIG_IRES : 12*FIG_MRES)
#define FIG_YMAX(inch) ((inch) ? 3*FIG_IRES : 8*FIG_MRES)
#define FIG_XOFF(inch) ((inch) ? FIG_IRES : 2*FIG_MRES)
#define FIG_YOFF(inch) ((inch) ? FIG_IRES : 2*FIG_MRES)
#define BFIG_HTIC(inch) ((inch) ? (7*FIG_IRES)/80 : (20*FIG_MRES)/100)
#define BFIG_VTIC(inch) ((inch) ? (7*FIG_IRES)/80 : (20*FIG_MRES)/100)
#define BFIG_FONT_S (16) /* size in points */
#define BFIG_VCHAR FIG_to_pixel_v(INCH,BFIG_FONT_S) /* height in pixels of font */
#define BFIG_HCHAR FIG_to_pixel_h(INCH,BFIG_FONT_S) /* this is a guess at the width */
static F_point *FIG_points = NULL; /* Array for the collection of points for
POLYLINE, allocated on demand. */
static F_line FIG_line;
/* 8 inches wide by 5 inches high */
#define BFIG_XMAX(inch) ((inch) ? 8*FIG_IRES : 20*FIG_MRES)
#define BFIG_YMAX(inch) ((inch) ? 5*FIG_IRES : 15*FIG_MRES)
#define BFIG_XOFF(inch) ((inch) ? FIG_IRES : 2*FIG_MRES)
#define BFIG_YOFF(inch) ((inch) ? FIG_IRES : 2*FIG_MRES)
static int FIG_type; /* negative types use real lines */
static float FIG_spacing; /* length of dash or dot spacing */
static int FIG_justify; /* Fig justification T_*_JUSTIFIED */
static float FIG_angle; /* Fig text angle (in radians) */
static int FIG_use_color = FALSE; /* do we use color or not? */
static int FIG_is_big = FALSE; /* big plot ? */
static int FIG_color = DEFAULT; /* which color to use */
static int FIG_xoff = FIG_XOFF(INCH);
static int FIG_yoff = FIG_YOFF(INCH);
static int FIG_font_id = FIG_ROMAN_FONT;
static int FIG_font_s = FIG_FONT_S;
static int FIG_portrait = FALSE;
static int FIG_inches = INCH;
static int FIG_text_flags = FIG_TEXT_NORMAL; /* whether text is special or hidden etc. */
static char FIG_version[MAX_ID_LEN+1] = FIG_DEFAULTVERSION; /* file format version */
static int FIG_solid = FALSE; /* dashed lines or not */
static int FIG_palette_set = FALSE; /* PM3D Palette Set ? */
static int FIG_palette_size = 128; /* Number of colours in palette */
static int FIG_palette_offst = 32; /* Offset from zero for user colours */
static int FIG_fill_style = 20; /* Full saturation */
static void FIG_poly_clean __PROTO((enum FIG_poly_stat fig_stat));
enum FIG_id {
FIG_MONOCHROME, FIG_COLOR,
FIG_SMALL, FIG_BIG,
FIG_INCHES, FIG_METRIC,
FIG_PORTRAIT, FIG_LANDSCAPE,
FIG_SIZE, FIG_FONT, FIG_FONTSIZE,
FIG_THICKNESS, FIG_DEPTH, FIG_POINTSMAX,
FIG_SOLID, FIG_DASHED,
FIG_NORMALTEXT, FIG_SPECIALTEXT, FIG_HIDDENTEXT, FIG_RIGIDTEXT,
FIG_VERSION, FIG_OTHER
};
static struct gen_table FIG_opts[] =
{
{ "b$ig", FIG_BIG },
{ "c$olor", FIG_COLOR },
{ "c$olour", FIG_COLOR },
{ "da$shed", FIG_DASHED },
{ "de$pth", FIG_DEPTH },
{ "font", FIG_FONT },
{ "f$ontsize", FIG_FONTSIZE },
{ "in$ches", FIG_INCHES },
{ "l$andscape", FIG_LANDSCAPE },
{ "me$tric", FIG_METRIC },
{ "mo$nochrome", FIG_MONOCHROME },
{ "poi$ntsmax", FIG_POINTSMAX },
{ "por$trait", FIG_PORTRAIT },
{ "si$ze", FIG_SIZE },
{ "sm$all", FIG_SMALL },
{ "so$lid", FIG_SOLID },
{ "linew$idth", FIG_THICKNESS },
{ "t$hickness", FIG_THICKNESS },
{ "texth$idden", FIG_HIDDENTEXT },
{ "textn$ormal", FIG_NORMALTEXT },
{ "textr$igid", FIG_RIGIDTEXT },
{ "texts$pecial", FIG_SPECIALTEXT },
{ "v$ersion", FIG_VERSION },
{ NULL, FIG_OTHER }
};
const struct gen_table FIG_fonts[] =
{
{ "Times Roman", 0 },
{ "Times Italic", 1 },
{ "Times Bold", 2 },
{ "Times Bold Italic", 3 },
{ "AvantGarde Book", 4 },
{ "AvantGarde Book Oblique", 5 },
{ "AvantGarde Demi", 6 },
{ "AvantGarde Demi Oblique", 7 },
{ "Bookman Light", 8 },
{ "Bookman Light Italic", 9 },
{ "Bookman Demi", 10 },
{ "Bookman Demi Italic", 11 },
{ "Courier", 12 },
{ "Courier Oblique", 13 },
{ "Courier Bold", 14 },
{ "Courier Bold Oblique", 15 },
{ "Helvetica", 16 },
{ "Helvetica Oblique", 17 },
{ "Helvetica Bold", 18 },
{ "Helvetica Bold Oblique", 19 },
{ "Helvetica Narrow", 20 },
{ "Helvetica Narrow Oblique", 21 },
{ "Helvetica Narrow Bold", 22 },
{ "Helvetica Narrow Bold Oblique", 23 },
{ "New Century Schoolbook Roman", 24 },
{ "New Century Schoolbook Italic", 25 },
{ "New Century Schoolbook Bold", 26 },
{ "New Century Schoolbook Bold Italic", 27 },
{ "Palatino Roman", 28 },
{ "Palatino Italic", 29 },
{ "Palatino Bold", 30 },
{ "Palatino Bold Italic", 31 },
{ "Symbol", 32 },
{ "Zapf Chancery Medium Italic", 33 },
{ "Zapf Dingbats", 34 },
{ NULL, -1}
};
TERM_PUBLIC void
FIG_options()
{
int parse_error = FALSE;
long temp_max;
unsigned int tmax_t;
double xsize_t = 0, ysize_t = 0;
char text_flags[256]; /* for description only */
#if 0
/* Terminals should not reset options to defaults. */
FIG_use_color = FALSE; /* default */
FIG_is_big = FALSE; /* default */
FIG_portrait = FALSE;
FIG_font_id = FIG_ROMAN_FONT;
FIG_font_s = 0;
FIG_default_thickness = 1;
xsize_t = ysize_t = 0.;
FIG_inches = INCH;
FIG_text_flags = FIG_TEXT_NORMAL;
FIG_solid = FALSE;
strcpy( FIG_version, FIG_DEFAULTVERSION );
#endif
while (!END_OF_COMMAND) {
switch(lookup_table(&FIG_opts[0],c_token)) {
case FIG_MONOCHROME:
FIG_use_color = FALSE;
c_token++;
break;
case FIG_COLOR:
FIG_use_color = TRUE;
c_token++;
break;
case FIG_SMALL:
FIG_is_big = FALSE;
c_token++;
break;
case FIG_BIG:
FIG_is_big = TRUE;
c_token++;
break;
case FIG_INCHES:
FIG_inches = TRUE;
c_token++;
break;
case FIG_METRIC:
FIG_inches = FALSE;
c_token++;
break;
case FIG_SOLID:
FIG_solid = TRUE;
c_token++;
break;
case FIG_DASHED:
FIG_solid = FALSE;
c_token++;
break;
case FIG_NORMALTEXT:
FIG_text_flags = FIG_TEXT_NORMAL;
c_token++;
break;
case FIG_SPECIALTEXT:
FIG_text_flags |= FIG_TEXT_SPECIAL;
FIG_text_flags &= ~FIG_TEXT_POSTSCRIPT;
FIG_font_id = 0;
c_token++;
break;
case FIG_HIDDENTEXT:
FIG_text_flags |= FIG_TEXT_HIDDEN;
c_token++;
break;
case FIG_RIGIDTEXT:
FIG_text_flags |= FIG_TEXT_RIGID;
c_token++;
break;
case FIG_PORTRAIT:
FIG_portrait = TRUE;
c_token++;
break;
case FIG_LANDSCAPE:
FIG_portrait = FALSE;
c_token++;
break;
case FIG_SIZE:
c_token++;
if (END_OF_COMMAND) {
int_error(c_token, "size: 2 numbers expected");
} else {
xsize_t = real_expression();
if (equals(c_token,","))
c_token++;
if (END_OF_COMMAND) {
int_error(c_token, "size: 2 numbers expected");
xsize_t = 0.;
} else {
ysize_t = real_expression();
}
if (xsize_t < 2. || ysize_t < 2. || xsize_t > 99. || ysize_t > 99.) {
if (xsize_t != 0. || ysize_t != 0.)
int_error(c_token, "size: out of range");
xsize_t = ysize_t = 0.;
}
}
break;
case FIG_FONT:
{
char *fontname;
int sep;
c_token++;
if (END_OF_COMMAND || !((fontname = try_to_get_string())))
int_error(c_token, "expecting font name");
sep = strcspn(fontname,",");
sscanf (&(fontname[sep+1]),"%d",&FIG_font_s);
fontname[sep] = '\0';
FIG_font_id = lookup_table_entry(FIG_fonts, fontname);
if (FIG_font_id < 0)
FIG_font_id = FIG_ROMAN_FONT;
free(fontname);
break;
}
case FIG_FONTSIZE:
c_token++;
FIG_font_s = int_expression();
break;
case FIG_THICKNESS:
c_token++;
if (END_OF_COMMAND) {
int_error(c_token, "thickness: number expected");
} else {
FIG_default_thickness = int_expression();
if (FIG_default_thickness < 1 || FIG_default_thickness > 10) {
int_error(c_token - 1, "thickness out of range");
FIG_default_thickness = 1;
}
}
break;
case FIG_DEPTH:
c_token++;
if (END_OF_COMMAND) {
int_error(c_token, "depth: number expected");
} else {
FIG_depth = int_expression();
if (FIG_depth < 0 || FIG_depth > 99) {
int_error(c_token - 1, "depth out of range");
FIG_depth = 10;
}
FIG_linedepth = FIG_depth;
}
break;
case FIG_POINTSMAX:
/* Skip the word and then expect the number ! */
c_token++;
if (END_OF_COMMAND) {
int_error(c_token,
"max. points per polyline: number expected");
} else {
temp_max = (long) real_expression();
/* Now check the range for the number */
if ((temp_max > 1) && (temp_max < (FIG_MAX_POINTS + 2))) {
/* OK. subtract one to the right number! See other numbers... */
FIG_poly_vec_max = temp_max - 1;
} else {
int_error(c_token,
"pointsmax: number out of range (2,%ld)",
(FIG_MAX_POINTS + 1));
}
}
break;
case FIG_VERSION:
c_token++;
if (END_OF_COMMAND) {
int_error(c_token, "version: 3.1 or 3.2 expected");
} else {
copy_str( FIG_version, c_token, MAX_ID_LEN );
c_token++;
if( strcmp( FIG_version, "3.1" ) != 0 &&
strcmp( FIG_version, "3.2" ) != 0 ) {
int_error(c_token, "wrong version number, must be 3.1 or 3.2");
}
}
break;
case FIG_OTHER:
default:
parse_error = TRUE;
int_error(c_token, "unrecognized option");
break;
}
}
if( FIG_text_flags == FIG_TEXT_NORMAL ) {
strcpy( text_flags, " textnormal" );
} else {
sprintf( text_flags, "%s%s%s",
(FIG_text_flags & FIG_TEXT_SPECIAL) ? " textspecial" : "",
(FIG_text_flags & FIG_TEXT_HIDDEN) ? " texthidden" : "",
(FIG_text_flags & FIG_TEXT_RIGID) ? " textrigid" : ""
);
}
sprintf(term_options, "%s %s %s %d %s %s %s%s %s \"%s,%d\" %s %d %s %d %s %s",
FIG_use_color ? "color" : "monochrome",
FIG_is_big ? "big" : "small",
"pointsmax",
FIG_poly_vec_max + 1,
FIG_portrait ? "portrait" : "landscape",
FIG_inches ? "inches" : "metric",
FIG_solid ? "solid" : "dashed",
text_flags,
"font", FIG_fonts[FIG_font_id].key,
/* fontsize */ (FIG_font_s > 0 ? FIG_font_s :
(FIG_is_big ? BFIG_FONT_S : FIG_FONT_S)),
"linewidth", FIG_default_thickness, "depth", FIG_depth,
"version", FIG_version ); /* JFS, KB, ULIG */
if (xsize_t > 0. && ysize_t > 0.) {
if (xsize_t - (int) xsize_t == 0. && ysize_t - (int) ysize_t == 0.)
sprintf(term_options + strlen(term_options),
" size %d %d", (int) xsize_t, (int) ysize_t);
else
sprintf(term_options + strlen(term_options),
" size %f %f", xsize_t, ysize_t);
}
if (!FIG_is_big) {
if (FIG_font_s <= 0) /* KB */
FIG_font_s = FIG_FONT_S;
term->xmax = FIG_XMAX(FIG_inches);
term->ymax = FIG_YMAX(FIG_inches);
term->v_tic = FIG_VTIC(FIG_inches);
term->h_tic = FIG_HTIC(FIG_inches);
FIG_xoff = FIG_XOFF(FIG_inches);
FIG_yoff = FIG_YOFF(FIG_inches);
} else {
if (FIG_font_s <= 0) /* KB */
FIG_font_s = BFIG_FONT_S;
term->xmax = BFIG_XMAX(FIG_inches);
term->ymax = BFIG_YMAX(FIG_inches);
term->v_tic = BFIG_VTIC(FIG_inches);
term->h_tic = BFIG_HTIC(FIG_inches);
FIG_xoff = BFIG_XOFF(FIG_inches);
FIG_yoff = BFIG_YOFF(FIG_inches);
}
if (FIG_portrait) { /* KB */
tmax_t = term->xmax;
term->xmax = term->ymax;
term->ymax = tmax_t;
}
if (xsize_t > 0. && ysize_t > 0.) {
term->xmax = (unsigned int) (xsize_t * FIG_TRUERES);
term->ymax = (unsigned int) (ysize_t * FIG_TRUERES);
}
term->v_char = FIG_to_pixel_v(FIG_inches, FIG_font_s);
term->h_char = FIG_to_pixel_h(FIG_inches, FIG_font_s);
FIG_thickness = FIG_default_thickness;
if (parse_error) { /* JFS, KB */
int_error(c_token, "unrecognized option");
}
}
static void
FIG_poly_clean(enum FIG_poly_stat fig_stat)
{
int i, j;
int cap_style;
if (fig_stat == FIG_poly_part) {
cap_style = (FIG_line.style==DOTTED_LINE)
? CAP_ROUND : FIG_line.cap_style;
fprintf(gpoutfile,
"%d %d %d %d %d %d %d %d %d %9.3f %d %d %d %d %d %ld\n\t",
O_POLYLINE, FIG_line.type, FIG_line.style, FIG_line.thickness,
FIG_line.pen_color, FIG_line.fill_color, FIG_line.depth,
FIG_line.pen_style, FIG_line.fill_style, FIG_line.style_val,
FIG_line.join_style, cap_style, FIG_line.radius,
0, 0, FIG_poly_vec_cnt);
j = 0;
for (i = 0; i < FIG_poly_vec_cnt; i++) {
fprintf(gpoutfile, " %d %d", FIG_points[i].x, FIG_points[i].y);
if (j++ > 4 && i != FIG_poly_vec_cnt - 1) {
fputs("\n\t", gpoutfile);
j = 0; /* JFS */
}
}
if (j != 0) {
putc('\n', gpoutfile);
}
/* Give the memory back to the system because we are done with this
* polyline. Make sure FIG_points contains NULL afterwards!
*/
free(FIG_points);
FIG_points = NULL;
}
FIG_polyvec_stat = FIG_poly_new;
}
TERM_PUBLIC void
FIG_init()
{
FIG_posx = FIG_posy = 0;
FIG_polyvec_stat = FIG_poly_new;
FIG_linetype(-1);
FIG_justify_text(LEFT);
FIG_text_angle(0);
FIG_palette_set = FALSE; /* PM3D Palette Set ? */
FIG_line.tagged = FIG_DEFAULT;
FIG_line.distrib = FIG_DEFAULT;
FIG_line.type = T_POLYLINE;
FIG_line.style = 0;
FIG_line.thickness = FIG_thickness;
FIG_line.fill_style = -1;
FIG_line.depth = FIG_linedepth;
FIG_line.pen_style = 0;
FIG_line.for_arrow = NULL;
FIG_line.back_arrow = NULL;
FIG_line.cap_style = 0;
FIG_line.join_style = 0;
FIG_line.style_val = 0.0;
FIG_line.radius = 0;
FIG_line.pic = NULL;
FIG_line.next = NULL;
/* Add further versions headers below (ULIG). There is probably more work to be done */
/* than only changing the header in future xfig versions */
if( strcmp(FIG_version, "3.1") == 0 ) {
fprintf( gpoutfile,
"#FIG 3.1\n%s\n%s\n%s\n%d %d\n",
FIG_ORIENT,
FIG_JUST,
FIG_UNIT,
FIG_IRES, FIG_COORD_SYS
);
} else if( strcmp(FIG_version, "3.2") == 0 ) {
fprintf( gpoutfile,
"#FIG 3.2\n%s\n%s\n%s\n%s\n%6.2f\n%s\n%d\n%d %d\n",
FIG_ORIENT,
FIG_JUST,
FIG_UNIT,
FIG_PAPER,
FIG_MAGNIFICATION,
FIG_MULTIPAGE,
FIG_TRANSCOLOR,
FIG_IRES, FIG_COORD_SYS
);
}
}
TERM_PUBLIC void
FIG_graphics()
{
FIG_posx = FIG_posy = 0;
FIG_polyvec_stat = FIG_poly_new;
/* there is no way to have separate pictures in a FIG file */
}
TERM_PUBLIC void
FIG_text()
{
/* there is no way to have separate pictures in a FIG file */
FIG_poly_clean(FIG_polyvec_stat);
FIG_posx = FIG_posy = 0;
fflush(gpoutfile);
}
/* Line types for FIG work like this:
* for monochrome:
* -2 : solid (border)
* -1 : dotted 4 (axes)
* 0 : solid (first curve)
* 1 : dotted 3
* 2 : dashed 3
* 3 : dotted 6
* 4 : dashed 6
* ... ...
* for color, cycle through colors. once colors are used up, repeat colors
* but start using dashed lines of different dash length. don't use white
* as a color.
*/
TERM_PUBLIC void
FIG_linetype(int linetype) /* expect linetype >= -2 */
{
int last_FIG_type = FIG_type;
int last_FIG_spacing = FIG_spacing;
int last_FIG_color = FIG_color;
int last_FIG_depth = FIG_linedepth;
int last_FIG_thickness = FIG_thickness;
/* mapping of fig color codes to color sequence as in the postscript terminal */
#define npscolors 9
int fig2pscolors[npscolors] = {
4 /*red*/, 2 /*green*/, 1 /*blue*/,
5 /*magenta*/, 3 /*cyan*/, 6 /*yellow*/,
0 /*black*/, 26 /*brown*/,
11 /*use LtBlue instead of light gray*/
/* note: black=1, white=8 */
};
FIG_linedepth = FIG_depth;
FIG_thickness = FIG_current_linewidth * FIG_default_thickness;
if (FIG_thickness < 1)
FIG_thickness = 1;
FIG_color = DEFAULT;
if (linetype <= LT_NODRAW)
linetype = LT_BLACK;
switch (linetype) {
case 0:
case LT_BLACK:{
FIG_type = SOLID_LINE;
FIG_spacing = 0.0;
if (FIG_use_color)
#if 0 /* fig's old color sequence */
FIG_color = BLACK;
#else /* color sequence compatible to the postscript terminal */
if (linetype==0) FIG_color = fig2pscolors[0]; /* red */
#endif
break;
}
case LT_AXIS:{
FIG_type = DOTTED_LINE;
if( FIG_solid )
FIG_type = SOLID_LINE;
FIG_spacing = 4.0; /* gap */
if (FIG_use_color)
FIG_color = BLACK;
break;
}
default:{
/* now linetype >= 1 --- shouldn't be negative anyway */
FIG_linedepth = FIG_depth + linetype / 1000;
linetype %= 1000;
/* Thickness of lines is either included in the linetype */
/* (in Fig units) or the default is scaled with the */
/* current 'linewidth'. */
if ((FIG_thickness = linetype / 100) == 0)
FIG_thickness = FIG_current_linewidth * FIG_default_thickness;
if (FIG_thickness < 1) /* Less than 1 would be invisible */
FIG_thickness = 1;
linetype %= 100;
if (FIG_use_color) {
#if 0 /* fig's old color sequence */
FIG_type = (linetype >= WHITE); /* dashed line */
FIG_color = linetype % WHITE;
FIG_spacing = (linetype / WHITE) * 3;
#else /* color sequence compatible to the postscript terminal */
FIG_type = (linetype >= npscolors); /* dashed line */
FIG_color = fig2pscolors[linetype % npscolors];
FIG_spacing = (linetype / npscolors) * 3;
#endif
} else { /* monochrome */
FIG_type = (linetype)? linetype%2 + 1 : SOLID_LINE; /* dotted, dashed, ... */
FIG_spacing = (linetype + 1) / 2 * 3;
}
if( FIG_solid )
FIG_type = SOLID_LINE;
break;
}
}
if (FIG_type != last_FIG_type || FIG_spacing != last_FIG_spacing ||
FIG_color != last_FIG_color || FIG_linedepth != last_FIG_depth ||
FIG_thickness != last_FIG_thickness)
FIG_poly_clean(FIG_polyvec_stat);
}
TERM_PUBLIC void
FIG_move(unsigned int x, unsigned int y)
{
int last_FIG_posx = FIG_posx;
int last_FIG_posy = FIG_posy;
FIG_posx = x;
FIG_posy = y;
if (FIG_posx != last_FIG_posx || FIG_posy != last_FIG_posy)
FIG_poly_clean(FIG_polyvec_stat);
}
TERM_PUBLIC void
FIG_vector(unsigned int ux, unsigned int uy)
{
int x = ux, y = uy;
if (FIG_polyvec_stat != FIG_poly_part) {
FIG_line.pen_color = FIG_color;
FIG_line.fill_color = FIG_color;
FIG_line.style = FIG_type;
FIG_line.style_val = FIG_spacing;
FIG_line.depth = FIG_linedepth;
FIG_line.thickness = FIG_thickness;
FIG_poly_vec_cnt = 0;
/* allocate memory for the first point */
FIG_points = (F_point *) gp_realloc(FIG_points, sizeof(F_point), "FIG_points"); /* JFS */
FIG_points[FIG_poly_vec_cnt].x = FIG_xoff + FIG_posx;
FIG_points[FIG_poly_vec_cnt].y = term->ymax + FIG_yoff - FIG_posy;
FIG_poly_vec_cnt = 1;
FIG_polyvec_stat = FIG_poly_part;
}
/* allocate memory for the next point */
FIG_points = (F_point *) gp_realloc(FIG_points, (FIG_poly_vec_cnt + 1) *
sizeof(F_point), "FIG_points"); /* JFS */
FIG_points[FIG_poly_vec_cnt].x = FIG_xoff + x;
FIG_points[FIG_poly_vec_cnt].y = term->ymax + FIG_yoff - y;
FIG_poly_vec_cnt++;
if (FIG_poly_vec_cnt > FIG_poly_vec_max)
FIG_poly_clean(FIG_polyvec_stat);
FIG_posx = x;
FIG_posy = y;
}
TERM_PUBLIC void
FIG_arrow(
unsigned int sx, unsigned int sy, /* start coord */
unsigned int ex, unsigned int ey, /* end coord */
int head)
{
int cap_style;
double awidth, aheight; /* arrow head sizes */
FIG_poly_clean(FIG_polyvec_stat);
cap_style = (FIG_line.style==DOTTED_LINE)? CAP_ROUND : FIG_line.cap_style;
fprintf(gpoutfile, "%d %d %d %d %d %d %d %d %d %9.3f %d %d %d %d %d %d\n",
O_POLYLINE, FIG_line.type, FIG_type, FIG_thickness,
FIG_color, FIG_color, FIG_linedepth,
FIG_line.pen_style, FIG_line.fill_style, FIG_spacing,
FIG_line.join_style, cap_style, FIG_line.radius,
head ? 1 : 0, head==2 ? 1 : 0, 2);
/* arrow head(s) */
if (head) {
unsigned int headbackangleparameter = 0;
unsigned int headfillparameter = 0;
/* arrow head size */
if (curr_arrow_headlength==0) {
awidth = (double) (term->h_tic / 2 + 1);
aheight = (double) term->h_tic;
} else {
awidth = (double) curr_arrow_headlength * 2*sin(curr_arrow_headangle*M_PI/180);
aheight = (double) curr_arrow_headlength * cos(curr_arrow_headangle*M_PI/180);
}
/* arrow head geometry */
if ( curr_arrow_headbackangle < 70 )
headbackangleparameter = 2;
else if ( curr_arrow_headbackangle > 110 )
headbackangleparameter = 3;
else
headbackangleparameter = 1;
if (curr_arrow_headfilled==2)
headfillparameter = 1;
else
headfillparameter = 0;
/* forward head */
fprintf(gpoutfile, "%d %d %.3f %.3f %.3f\n",
headbackangleparameter, headfillparameter,
1.0, awidth, aheight);
/* backward head */
if (head==2)
fprintf(gpoutfile, "%d %d %.3f %.3f %.3f\n",
headbackangleparameter, headfillparameter,
1.0, awidth, aheight);
}
/* arrow line */
fprintf(gpoutfile, "%d %d %d %d\n",
FIG_xoff + sx, FIG_yoff + term->ymax - sy,
FIG_yoff + ex, FIG_yoff + term->ymax - ey);
FIG_posx = ex;
FIG_posy = ey;
}
TERM_PUBLIC void
FIG_put_text(unsigned int x, unsigned int y, const char *str)
{
char *s1, *s2, *output_string;
if (strlen(str) == 0)
return;
output_string = (char *) gp_alloc(2*strlen(str)+1, "FIG text");
s1 = (char *)str;
s2 = output_string;
do {
if (*s1 == '\\') *(s2++) = *s1;
*(s2++) = *s1;
} while ( *(s1++) );
FIG_poly_clean(FIG_polyvec_stat);
if (FIG_angle == 0.)
y -= term->v_char / 2; /* assuming vertical center justified */
else {
x += (int)(term->v_char*sin(FIG_angle)/4.);
y -= (int)(term->v_char*cos(FIG_angle)/4.);
}
fprintf(gpoutfile, "%d %d %d %d %d %d %6.3f %6.3f %d %6.3f %6.3f %d %d %s\\001\n",
OBJ_TEXT, FIG_justify, FIG_color, 0, FIG_DEFAULT,
FIG_font_id, (float) FIG_font_s,
FIG_angle, FIG_text_flags, (float) term->v_char,
(float) term->h_char * strlen(str),
FIG_xoff + x, term->ymax + FIG_yoff - y, output_string);
free(output_string);
}
TERM_PUBLIC int
FIG_justify_text(enum JUSTIFY mode)
{
switch (mode) {
case LEFT:
FIG_justify = T_LEFT_JUSTIFIED;
break;
case CENTRE:
FIG_justify = T_CENTER_JUSTIFIED;
break;
case RIGHT:
FIG_justify = T_RIGHT_JUSTIFIED;
break;
/* shouldn't happen */
default:
FIG_justify = T_LEFT_JUSTIFIED;
return (FALSE);
break;
}
return (TRUE);
}
TERM_PUBLIC int
FIG_text_angle(int ang)
{
FIG_angle = ang * M_PI_2 / 90. ;
return (TRUE);
}
TERM_PUBLIC void
FIG_lpoint(unsigned int x, unsigned int y, int number)
{
FIG_type = 0; /* Solid lines for marker outline */
if (number % 100 >= 49 && number % 100 < 99) { /* circles, squares, triangles */
int r, d, h, xpc, ypc;
int line_color, fill_color, fill_style;
int cnum, tnum, color, depth;
FIG_poly_clean(FIG_polyvec_stat);
depth = FIG_linedepth - 1; /* Above error bars */
if (number > 1000)
depth = FIG_depth + number / 1000 - 1;
number %= 1000;
if (depth < 0)
depth = 0;
if (number < 100)
color = FIG_color;
else if (FIG_use_color)
color = number / 100 - 1;
else if (number / 100 >= WHITE)
color = WHITE;
else
color = DEFAULT;
number %= 100;
cnum = (number + 1) % 10;
tnum = (number - 49) / 10;
if (cnum < 5)
line_color = (FIG_use_color ? BLACK : DEFAULT);
else
line_color = FIG_color;
fill_color = color;
if (cnum == 0 || cnum == 5)
fill_style = -1;
else
fill_style = (cnum % 5) * 5;
xpc = FIG_xoff + x;
ypc = term->ymax + FIG_yoff - y;
if (tnum == 0) { /* circle */
r = FIG_current_pointsize * term->v_char / 4 + 1;
fprintf(gpoutfile,
"1 3 %d %d %d %d %d %d %d %6.3f 1 0.000 %d %d %d %d %d %d %d %d\n",
FIG_type, FIG_thickness, line_color,
fill_color, depth, 0, fill_style, FIG_spacing,
xpc, ypc, r, r, xpc, ypc, xpc, ypc - r);
} else {
fprintf(gpoutfile, "2 3 %d %d %d %d %d %d %d %6.3f 0 0 0 0 0 ",
FIG_type, FIG_thickness, line_color,
fill_color, depth, 0, fill_style, FIG_spacing);
if (tnum == 1) { /* square */
d = FIG_current_pointsize * term->v_char / 4 + 1;
fprintf(gpoutfile, "5\n\t%d %d %d %d %d %d %d %d %d %d\n",
xpc - d, ypc - d, xpc - d, ypc + d, xpc + d, ypc + d, xpc + d, ypc - d,
xpc - d, ypc - d);
} else if (tnum == 2) { /* diamond */
d = FIG_current_pointsize * term->v_char / 3 + 1;
fprintf(gpoutfile, "5\n\t%d %d %d %d %d %d %d %d %d %d\n",
xpc - d, ypc, xpc, ypc + d, xpc + d, ypc, xpc, ypc - d, xpc - d, ypc);
} else if (tnum == 3) { /* triangle up */
d = FIG_current_pointsize * term->v_char / 3 + 1;
h = d * 4 / 7; /* About d times one 3rd of sqrt(3) */
fprintf(gpoutfile, "4\n\t%d %d %d %d %d %d %d %d\n",
xpc - d, ypc + h, xpc, ypc - 2 * h, xpc + d, ypc + h, xpc - d, ypc + h);
} else if (tnum == 4) { /* triangle down */
d = FIG_current_pointsize * term->v_char / 3 + 1;
h = d * 4 / 7;
fprintf(gpoutfile, "4\n\t%d %d %d %d %d %d %d %d\n",
xpc - d, ypc - h, xpc, ypc + 2 * h, xpc + d, ypc - h, xpc - d, ypc - h);
}
}
} else {
int pt = number % 13;
switch (pt) {
default: do_point(x, y, pt); break;
case 3: FIG_lpoint(x, y, 64); break;
case 4: FIG_lpoint(x, y, 68); break;
case 5: FIG_lpoint(x, y, 54); break;
case 6: FIG_lpoint(x, y, 58); break;
case 7: FIG_lpoint(x, y, 84); break;
case 8: FIG_lpoint(x, y, 88); break;
case 9: FIG_lpoint(x, y, 94); break;
case 10: FIG_lpoint(x, y, 98); break;
case 11: FIG_lpoint(x, y, 74); break;
case 12: FIG_lpoint(x, y, 78); break;
}
}
}
TERM_PUBLIC void
FIG_pointsize(double arg_pointsize)
{
FIG_current_pointsize = arg_pointsize < 0. ? 1. : arg_pointsize;
/* Bug-fix by hkeller@gwdg.de and K.B.: set pointsize for do_point() */
do_pointsize(arg_pointsize * FIG_font_s / (double) FIG_FONT_S);
}
TERM_PUBLIC void
FIG_linewidth(double linewidth)
{
FIG_current_linewidth = linewidth;
}
TERM_PUBLIC void
FIG_reset()
{
FIG_poly_clean(FIG_polyvec_stat);
FIG_posx = FIG_posy = 0;
fflush(gpoutfile);
}
TERM_PUBLIC void
FIG_boxfill(
int style,
unsigned int x, unsigned int y,
unsigned int w, unsigned int h)
{
int pen_color, fill_color, fill_style, fill_dens;
FIG_poly_clean(FIG_polyvec_stat);
FIG_line.pen_color = FIG_color;
switch( style & 0xf ) {
case FS_SOLID:
case FS_TRANSPARENT_SOLID:
/* style == 1 --> filled with intensity according to filldensity */
pen_color = FIG_line.pen_color;
fill_color = FIG_line.pen_color;
fill_dens = style >> 4;
if( fill_dens < 0 ) fill_dens = 0;
if( fill_dens > 100 ) fill_dens = 100;
if( FIG_color == -1 || FIG_color == 0 )
/* default color or black: solid 0%...100% -> 0...20 */
fill_style = fill_dens / 5;
else
/* all other colors: solid 0%...100% -> 40...20 */
fill_style = 40 - fill_dens / 5;
break;
case FS_PATTERN:
case FS_TRANSPARENT_PATTERN:
/* style == 2 --> filled with pattern according to fillpattern */
pen_color = FIG_line.pen_color;
fill_color = WHITE;
fill_style = 41 + ( ( (style>>4) < 0 ) ? 0 : style>>4 );
break;
case FS_EMPTY:
default:
/* style == 0 or unknown --> filled with background color */
pen_color = FIG_line.pen_color;
fill_color = WHITE;
fill_style = 20;
}
x = FIG_xoff + x;
y = term->ymax + FIG_yoff - y;
fprintf(gpoutfile, "%d %d %d %d %d %d %d %d %d %6.3f %d %d %d %d %d %d\n"
" %d %d %d %d %d %d %d %d %d %d\n",
O_POLYLINE, FIG_line.type, FIG_line.style, FIG_line.thickness,
pen_color, fill_color, FIG_line.depth, FIG_line.pen_style,
fill_style, FIG_line.style_val, FIG_line.join_style,
FIG_line.cap_style, FIG_line.radius, 0, 0, 5,
x, y, x+w, y, x+w, y-h, x, y-h, x, y );
}
TERM_PUBLIC int FIG_make_palette(t_sm_palette *palette)
{
int i;
/* Query to determine palette size */
if (palette==NULL) {
return FIG_palette_size; /* How big is palette ? */
}
FIG_poly_clean(FIG_polyvec_stat); /* Clean up current data */
if (FIG_palette_set == FALSE) {
/* Create new palette */
FIG_palette_set = TRUE;
if (FIG_use_color == FALSE || sm_palette.colorMode == SMPAL_COLOR_MODE_GRAY) {
/* Gray palette */
if (FIG_use_color == FALSE && sm_palette.colorMode == SMPAL_COLOR_MODE_RGB)
fprintf(stderr, "Monochrome fig file: using gray palette instead of color\n");
for (i = 0; i < sm_palette.colors; i++) {
int j = (int)(i * 255.0 / (sm_palette.colors-1) + 0.5);
fprintf(gpoutfile, "%d %d #%2.2x%2.2x%2.2x\n",
O_COLOR_DEF, (i + FIG_palette_offst), j, j, j);
}
} else {
/* Create colour/normal palette */
for (i = 0; i < sm_palette.colors; i++) {
fprintf(gpoutfile, "%d %d #%2.2x%2.2x%2.2x\n",
O_COLOR_DEF, (i + FIG_palette_offst),
(int)( palette->color[i].r * 255 + 0.5 ),
(int)( palette->color[i].g * 255 + 0.5 ),
(int)( palette->color[i].b * 255 + 0.5 ) );
}
}
} else {
fprintf(stderr, "fig: Attempt to set palette twice\n");
}
return 0;
}
/* This doesn't apply for FIG format files
TERM_PUBLIC void FIG_previous_palette()
{
}
*/
TERM_PUBLIC void FIG_set_color(t_colorspec *colorspec)
{
double gray = colorspec->value;
int new_color;
if (colorspec->type == TC_LT) {
FIG_linetype(colorspec->lt);
return;
}
if (colorspec->type != TC_FRAC)
return;
new_color = (gray <= 0) ? 0 : (int)(gray * sm_palette.colors);
if (new_color >= FIG_palette_size)
new_color = FIG_palette_size - 1;
if (FIG_palette_set == FALSE) {
fprintf(stderr,"fig: Palette used before set\n"); /* Error condition */
}
new_color += FIG_palette_offst;
if (FIG_color != new_color) {
FIG_poly_clean(FIG_polyvec_stat);
FIG_color = new_color;
}
}
TERM_PUBLIC void FIG_filled_polygon(int points, gpiPoint *corners)
{
int i,j;
FIG_poly_clean(FIG_polyvec_stat); /* Clean up current data */
fprintf(gpoutfile, "%d %d %d %d %d %d %d %d %d %9.3f %d %d %d %d %d %ld\n\t",
O_POLYLINE, T_POLYGON, FIG_line.style, 0,
FIG_color, FIG_color, FIG_line.depth,
FIG_line.pen_style, FIG_fill_style, FIG_line.style_val,
FIG_line.join_style, FIG_line.cap_style, FIG_line.radius,
0, 0, (long)(points+1));
/* set thickness (arg 4) to 0 */
j = 0;
for (i = 0; i < points; i++) {
fprintf(gpoutfile, " %d %d", FIG_xoff + corners[i].x,
term->ymax + FIG_yoff - corners[i].y);
if (j++ > 4 && i != points - 1) {
fputs("\n\t", gpoutfile);
j = 0; /* JFS */
}
}
fprintf(gpoutfile, " %d %d", FIG_xoff + corners[0].x,
term->ymax + FIG_yoff - corners[0].y);
j++;
if (j != 0) {
putc('\n', gpoutfile);
}
}
TERM_PUBLIC void
FIG_layer(t_termlayer syncpoint)
{
static int plotno = 0;
/* We must ignore all syncpoints that we don't recognize */
switch (syncpoint) {
default:
break;
case TERM_LAYER_BEFORE_PLOT:
FIG_poly_clean(FIG_polyvec_stat);
fputs("6", gpoutfile);
/* Bounding box? Give it the entire plot area */
fprintf(gpoutfile, " %d %d %d %d\n",
FIG_xoff + plot_bounds.xleft,
term->ymax + FIG_yoff - plot_bounds.ytop,
FIG_xoff + plot_bounds.xright,
term->ymax + FIG_yoff - plot_bounds.ybot);
fprintf(gpoutfile, "# Begin plot #%d\n", ++plotno);
break;
case TERM_LAYER_AFTER_PLOT:
FIG_poly_clean(FIG_polyvec_stat);
fprintf(gpoutfile, "# End plot #%d\n", plotno);
fputs("-6\n", gpoutfile);
break;
case TERM_LAYER_RESET:
plotno = 0;
break;
}
}
#endif /* TERM_BODY */
#ifdef TERM_TABLE
TERM_TABLE_START(fig_driver)
"fig", "FIG graphics language for XFIG graphics editor",
FIG_XMAX(INCH), FIG_YMAX(INCH), FIG_VCHAR, FIG_HCHAR,
FIG_VTIC(INCH), FIG_HTIC(INCH), FIG_options, FIG_init, FIG_reset,
FIG_text, null_scale, FIG_graphics, FIG_move, FIG_vector,
FIG_linetype, FIG_put_text, FIG_text_angle, FIG_justify_text,
FIG_lpoint, FIG_arrow, set_font_null, FIG_pointsize,
TERM_BINARY|TERM_CAN_DASH /*flags */ ,
0 /*suspend */ , 0 /*resume */ ,
FIG_boxfill, FIG_linewidth
#ifdef USE_MOUSE
,0, 0, 0, 0, 0 /* no mouse support for the fig terminal */
#endif
, FIG_make_palette, 0 /*previous_palette*/, FIG_set_color, FIG_filled_polygon
, 0
, 0, 0, 0 /* no enhanced text support */
, FIG_layer
TERM_TABLE_END(fig_driver)
#undef LAST_TERM
#define LAST_TERM fig_driver
#endif /* TERM_TABLE */
#endif /* TERM_PROTO_ONLY */
#ifdef TERM_HELP
START_HELP(fig)
"1 fig",
"?commands set terminal fig",
"?set terminal fig",
"?set term fig",
"?terminal fig",
"?term fig",
"?fig",
"?xfig",
" The `fig` terminal device generates output in the Fig graphics language.",
"",
" Syntax:",
" set terminal fig {monochrome | color}",
" {landscape | portrait}",
" {small | big | size <xsize> <ysize>}",
" {metric | inches}",
" {pointsmax <max_points>}",
" {solid | dashed}",
" {font \"<fontname>{,<fontsize>}\"}",
" {textnormal | {textspecial texthidden textrigid}}",
" {{thickness|linewidth} <units>}",
" {depth <layer>}",
" {version <number>}",
"",
" `monochrome` and `color` determine whether the picture is black-and-white or",
" `color`. `small` and `big` produce a 5x3 or 8x5 inch graph in the default",
" `landscape` mode and 3x5 or 5x8 inches in `portrait` mode.",
" `size` sets (overrides) the size of the drawing",
" area to <xsize>*<ysize> in units of inches or centimeters depending on the",
" `inches` or `metric` setting in effect.",
" The latter settings is also used as default units for editing with \"xfig\".",
"",
" `pointsmax <max_points>` sets the maximum number of points per polyline.",
"",
" `solid` inhibits automatic usage of `dash`ed lines when solid linestyles are",
" used up, which otherwise occurs.",
"",
" `font` sets the text font face to <fontname> and its size to <fontsize>",
" points. `textnormal` resets the text flags and selects postscript fonts,",
" `textspecial` sets the text flags for LaTeX specials, `texthidden` sets the",
" hidden flag and `textrigid` the rigid flag.",
"",
" `depth` sets the default depth layer for all lines and text. The default",
" depth is 10 to leave room for adding material with \"xfig\" on top of the",
" plot.",
"",
" `version` sets the format version of the generated fig output. Currently",
" only versions 3.1 and 3.2 are supported.",
"",
" `thickness` sets the default line thickness, which is 1 if not specified.",
" Overriding the thickness can be achieved by adding a multiple of 100 to the",
" `linetype` value for a `plot` command. In a similar way the `depth`",
" of plot elements (with respect to the default depth) can be controlled by",
" adding a multiple of 1000 to <linetype>. The depth is then <layer> +",
" <linetype>/1000 and the thickness is (<linetype>%1000)/100 or, if that is",
" zero, the default line thickness. `linewidth` is a synonym for `thickness`.",
"",
" Additional point-plot symbols are also available with the `fig` driver. The",
" symbols can be used through `pointtype` values % 100 above 50, with different",
" fill intensities controlled by <pointtype> % 5 and outlines in black (for",
" <pointtype> % 10 < 5) or in the current color. Available symbols are",
" 50 - 59: circles",
" 60 - 69: squares",
" 70 - 79: diamonds",
" 80 - 89: upwards triangles",
" 90 - 99: downwards triangles",
" The size of these symbols is linked to the font size. The depth of symbols",
" is by default one less than the depth for lines to achieve nice error bars.",
" If <pointtype> is above 1000, the depth is <layer> + <pointtype>/1000-1. If",
" <pointtype>%1000 is above 100, the fill color is (<pointtype>%1000)/100-1.",
"",
" Available fill colors are (from 1 to 9): black, blue, green, cyan, red,",
" magenta, yellow, white and dark blue (in monochrome mode: black for 1 to 6",
" and white for 7 to 9).",
"",
" See `plot with` for details of <linetype> and <pointtype>.",
"",
" The `big` option is a substitute for the `bfig` terminal in earlier versions,",
" which is no longer supported.",
"",
" Examples:",
" set terminal fig monochrome small pointsmax 1000 # defaults",
"",
" plot 'file.dat' with points linetype 102 pointtype 759",
" would produce circles with a blue outline of width 1 and yellow fill color.",
"",
" plot 'file.dat' using 1:2:3 with err linetype 1 pointtype 554",
" would produce errorbars with black lines and circles filled red. These",
" circles are one layer above the lines (at depth 9 by default).",
"",
" To plot the error bars on top of the circles use",
" plot 'file.dat' using 1:2:3 with err linetype 1 pointtype 2554"
END_HELP(fig)
#endif /* TERM_HELP */
#if 0
/* I hope this is enough to stop compilers looking in here
* (I think that anything inside #if 0 is still strictly
* required to be valid C, rather than just any old junk
* like this.)
*/
/*
* FIG : Facility for Interactive Generation of figures
* Copyright (c) 1985 by Supoj Sutanthavibul
* Parts Copyright (c) 1994 by Brian V. Smith
* Parts Copyright (c) 1991 by Paul King
*
* The X Consortium, and any party obtaining a copy of these files from
* the X Consortium, directly or indirectly, is granted, free of charge, a
* full and unrestricted irrevocable, world-wide, paid up, royalty-free,
* nonexclusive right and license to deal in this software and
* documentation files (the "Software"), including without limitation the
* rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons who receive
* copies from any such party to do so, with the only requirement being
* that this copyright notice remain intact. This license includes without
* limitation a license to do the foregoing actions under any patents of
* the party supplying this software to the X Consortium.
*/
/*
The only difference from version 3.0 to version 3.1 is that the position
of the "magnet" has been shifted by 14 Fig units.
In the 2.1 and older versions of xfig the grid was in multiples of 5 Fig
units, but they were on intervals 4, 9, 14, 19, etc.
When version 3.0 was created, coordinates were simply multiplied by the
ratio of the resolutions (1200/80 = 15) so values like 4 became 60 instead
of 74 ((4+1)*15 - 1).
This means that figures converted from 2.1 and older files are offset by
14 Fig units but new objects entered with version 3.0 are correct.
In version 3.1 the magnet grid is at intervals 0, 75, 150, etc instead of
-1, 74, 149, etc.
Figures from 2.1 and older are correctly converted now and a warning is popped
up when you read in a version 3.0 file that says you may have to offset the
figure when you load it, using the x and y offsets in the file panel.
--------------------------------------------------------------------------------
Description of the Fig Format Follows
--------------------------------------------------------------------------------
(1) The very first line is a comment line containing the name and version:
#FIG 3.1
The character # at the first column of a line indicates that the line
is a comment line which will be ignored.
(2) The first non-comment line consists of two numbers and two strings:
int fig_resolution (Fig units/inch)
string orientation ("Landscape" or "Portrait")
string justification ("Center" or "Flush Left")
string units ("Metric" or "Inches")
int coordinate_system (1: origin is the lower left corner (NOT USED)
2: upper left)
Fig_resolution is the resolution of the figure in the file.
Xfig will always write the file with a resolution of 1200ppi so it
will scale the figure upon reading it in if its resolution is different
from 1200ppi. Pixels are assumed to be square.
Xfig will read the orientation string and change the canvas to match
either the Landscape or Portrait mode of the figure file.
The units specification is self-explanatory.
The coordinate_system variable is ignored - the origin is ALWAYS the
upper-left corner.
** Coordinates are given in "fig_resolution" units.
** Line thicknesses are given in 1/80 of an inch ("display units"). The
minimum line thickness is 0 (no line is drawn) and the maximum is 500.
** dash-lengths/dot-gaps are given in 1/80 of an inch.
(3) The rest of the file contains various objects. An object can be one
of six classes (or types).
0) Color pseudo-object.
1) Arc.
2) Ellipse which is a generalization of circle.
3) Polyline which includes polygon and box.
4) Spline which includes closed/open control/interpolated spline.
5) Text.
6) Compound object which is composed of one or more objects.
In the following elaboration on object formats, every value of Fig
output are separated by blank characters or new line ('\n'). The
value of the unused parameters will be -1.
Some fields are described as "enumeration type" or "bit vector"; the
values which these fields can take are defined in the header file object.h.
The pen_style field is unused.
These values may be defined in some future version of Fig.
The two color fields (pen and fill; pen only, for texts) are
defined as follows:
-1 = Default
0 = Black
1 = Blue
2 = Green
3 = Cyan
4 = Red
5 = Magenta
6 = Yellow
7 = White
8-11 = four shades of blue (dark to lighter)
12-14 = three shades of green (dark to lighter)
15-17 = three shades of cyan (dark to lighter)
18-20 = three shades of red (dark to lighter)
21-23 = three shades of magenta (dark to lighter)
24-26 = three shades of brown (dark to lighter)
27-30 = four shades of pink (dark to lighter)
31 = Gold
values from 32 to 543 (512 total) are user colors and
are defined in color pseudo-objects (type 0)
For WHITE color, the area fill field is defined as follows:
-1 = not filled
0 = black
... values from 1 to 19 are shades of grey, from darker to lighter
20 = white
21-40 not used
41-56 see patterns for colors, below
For BLACK or DEFAULT color, the area fill field is defined as follows:
-1 = not filled
0 = white
... values from 1 to 19 are shades of grey, from lighter to darker
20 = black
21-40 not used
41-56 see patterns for colors, below
For all other colors, the area fill field is defined as follows:
-1 = not filled
0 = black
... values from 1 to 19 are "shades" of the color, from darker to lighter.
A shade is defined as the color mixed with black
20 = full saturation of the color
... values from 21 to 39 are "tints" of the color from the color to white.
A tint is defined as the color mixed with white
40 = white
41 = 30 degree left diagonal pattern
42 = 30 degree right diagonal pattern
43 = 30 degree crosshatch
44 = 45 degree left diagonal pattern
45 = 45 degree right diagonal pattern
46 = 45 degree crosshatch
47 = bricks
48 = circles
49 = horizontal lines
50 = vertical lines
51 = crosshatch
52 = fish scales
53 = small fish scales
54 = octagons
55 = horizontal "tire treads"
56 = vertical "tire treads"
The depth field is defined as follows:
0 ... 999 where larger value means object is deeper than (under)
objects with smaller depth
The line_style field is defined as follows:
-1 = Default
0 = Solid
1 = Dashed
2 = Dotted
The style_val field is defined as the length, in 1/80 inches, of the on/off
dashes for dashed lines, and the distance between the dots, in 1/80 inches,
for dotted lines.
The join_style field is defined FOR LINES only as follows:
0 = Miter (the default in xfig 2.1 and earlier)
1 = Bevel
2 = Round
The cap_style field is defined FOR LINES, OPEN SPLINES and ARCS only as follows:
0 = Butt (the default in xfig 2.1 and earlier)
1 = Round
2 = Projecting
The arrow_type field is defined for LINES, ARCS and OPEN SPLINES
only as follows:
0 = Stick-type (the default in xfig 2.1 and earlier)
1 = Closed triangle:
|\
| \
| \
| /
| /
|/
2 = Closed with "indented" butt:
|\
\ \
\ \
\ \
/ /
/ /
/ /
|/
3 = Closed with "pointed" butt:
|\
/ \
/ \
/ \
\ /
\ /
\ /
|/
The arrow_style field is defined for LINES, ARCS and OPEN SPLINES
only as follows:
0 = Hollow (actually filled with white)
1 = Filled with pen_color
(3.0) OBJECT DEFINITION:
(3.1) Color Pseudo-objects (user-defined colors)
This is used to define arbitrary colors beyond the 32 standard colors.
The color objects must be defined before any other Fig objects.
First line:
type name (brief description)
---- ---- -------------------
int object_code (always 0)
int color_number (color number, from 32-543 (512 total))
hex string rgb values (hexadecimal string describing red,
green and blue values (e.g. #330099) )
(3.2) ARC
First line:
type name (brief description)
---- ---- -------------------
int object_code (always 5)
int sub_type (0: pie-wedge (closed)
1: open ended arc)
int line_style (enumeration type)
int line_thickness (1/80 inch)
int pen_color (enumeration type, pen color)
int fill_color (enumeration type, fill color)
int depth (enumeration type)
int pen_style (pen style, not used)
int area_fill (enumeration type, -1 = no fill)
float style_val (1/80 inch)
int cap_style (enumeration type)
int direction (0: clockwise, 1: counterclockwise)
int forward_arrow (0: no forward arrow, 1: on)
int backward_arrow (0: no forward arrow, 1: on)
float center_x, center_y (center of the arc)
int x1, y1 (Fig units, the 1st point the user entered)
int x2, y2 (Fig units, the 2nd point)
int x3, y3 (Fig units, the last point)
Forward arrow line (Optional; absent if forward_arrow is 0):
type name (brief description)
---- ---- -------------------
int arrow_type (enumeration type)
int arrow_style (enumeration type)
float arrow_thickness (1/80 inch)
float arrow_width (Fig units)
float arrow_height (Fig units)
Backward arrow line (Optional; absent if backward_arrow is 0):
type name (brief description)
---- ---- -------------------
int arrow_type (enumeration type)
int arrow_style (enumeration type)
float arrow_thickness (1/80 inch)
float arrow_width (Fig units)
float arrow_height (Fig units)
(3.3) COMPOUND
A line with object code 6 signifies the start of a compound.
There are four more numbers on this line which indicate the
upper right corner and the lower left corner of the bounding
box of this compound. A line with object code -6 signifies
the end of the compound. Compound may be nested.
First line:
type name (brief description)
---- ---- -------------------
int object_code (always 6)
int upperright_corner_x (Fig units)
int upperright_corner_y (Fig units)
int lowerleft_corner_x (Fig units)
int lowerleft_corner_y (Fig units)
Subsequent lines:
objects
.
.
Last line:
-6
(3.4) ELLIPSE
First line:
type name (brief description)
---- ---- -------------------
int object_code (always 1)
int sub_type (1: ellipse defined by radiuses
2: ellipse defined by diameters
3: circle defined by radius
4: circle defined by diameter)
int line_style (enumeration type)
int thickness (1/80 inch)
int pen_color (enumeration type, pen color)
int fill_color (enumeration type, fill color)
int depth (enumeration type)
int pen_style (pen style, not used)
int area_fill (enumeration type, -1 = no fill)
float style_val (1/80 inch)
int direction (always 1)
float angle (radians, the angle of the x-axis)
int center_x, center_y (Fig units)
int radius_x, radius_y (Fig units)
int start_x, start_y (Fig units; the 1st point entered)
int end_x, end_y (Fig units; the last point entered)
(3.5) POLYLINE
First line:
type name (brief description)
---- ---- -------------------
int object_code (always 2)
int sub_type (1: polyline
2: box
3: polygon
4: arc-box)
5: imported-picture bounding-box)
int line_style (enumeration type)
int thickness (1/80 inch)
int pen_color (enumeration type, pen color)
int fill_color (enumeration type, fill color)
int depth (enumeration type)
int pen_style (pen style, not used)
int area_fill (enumeration type, -1 = no fill)
float style_val (1/80 inch)
int join_style (enumeration type)
int cap_style (enumeration type, only used for POLYLINE)
int radius (1/80 inch, radius of arc-boxes)
int forward_arrow (0: off, 1: on)
int backward_arrow (0: off, 1: on)
int npoints (number of points in line)
Forward arrow line: same as ARC object
Backward arrow line: same as ARC object
Points line:
type name (brief description)
---- ---- -------------------
int x1, y1 (Fig units)
int x2, y2 (Fig units)
.
.
int xnpoints ynpoints (this will be the same as the 1st
point for polygon and box)
PIC line:
type name (brief description)
---- ---- -------------------
boolean flipped orientation = normal (0) or flipped (1)
char file[] name of picture file to import
(3.6) SPLINE
First line:
type name (brief description)
---- ---- -------------------
int object_code (always 3)
int sub_type (0: open spline
1: closed spline
2: open interpolated spline
3: closed interpolated spline)
int line_style (See the end of this section)
int thickness (1/80 inch)
int pen_color (enumeration type, pen color)
int fill_color (enumeration type, fill color)
int depth (enumeration type)
int pen_style (pen style, not used)
int area_fill (enumeration type, -1 = no fill)
float style_val (1/80 inch)
int cap_style (enumeration type, only used for open splines)
int forward_arrow (0: off, 1: on)
int backward_arrow (0: off, 1: on)
int npoints (number of control points in spline)
Forward arrow line: same as ARC object
Backward arrow line: same as ARC object
Points line: same as POLYLINE object
Control points line (absent if sub_type is 0 or 1):
Control points of interpolated spline. There are two control
points for each knots. A section i, of the spline is drawn
using Bezier cubic with the following four points:
(x ,y ), (rx ,ry ), (lx , ly ), (x , y ).
i i i i i+1 i+1 i+1 i+1
For closed interpolated spline the last pair of control points,
(lxnpoints,lynpoints) and (rxnpoints,rynpoints) (which can be ignored),
are the same as (lx1,ly1) and (rx1,ry1) respectively.
type name (brief description)
---- ---- -------------------
float lx1, ly1 (Fig units)
float rx1, ry1 (Fig units)
float lx2, ly2 (Fig units)
float rx2, ry2 (Fig units)
.
.
float lxnpoints, lynpoints (Fig units)
float rxnpoints, rynpoints (Fig units)
(3.7) TEXT
type name (brief description)
---- ---- -------------------
int object (always 4)
int sub_type (0: Left justified
1: Center justified
2: Right justified)
int color (enumeration type)
int depth (enumeration type)
int pen_style (enumeration , not used)
int font (enumeration type)
float font_size (font size in points)
float angle (radians, the angle of the text)
int font_flags (bit vector)
float height (Fig units)
float length (Fig units)
int x, y (Fig units, coordinate of the origin
of the string. If sub_type = 0, it is
the lower left corner of the string.
If sub_type = 1, it is the lower
center. Otherwise it is the lower
right corner of the string.)
char string[] (ASCII characters; starts after a blank
character following the last number and
ends before the sequence '\001'. This
sequence is not part of the string.
Characters above octal 177 are
represented by \xxx where xxx is the
octal value. This permits Fig files to
be edited with 7-bit editors and sent
by e-mail without data loss.
Note that the string may contain '\n'.)
The font_flags field is defined as follows:
Bit Description
0 Rigid text (text doesn't scale when scaling compound objects)
1 Special text (for LaTeX)
2 PostScript font (otherwise LaTeX font is used)
3 Hidden text
The font field is defined as follows:
For font_flags bit 2 = 0 (LaTeX fonts):
0 Default font
1 Roman
2 Bold
3 Italic
4 Sans Serif
5 Typewriter
For font_flags bit 3 = 1 (PostScript fonts):
-1 Default font
0 Times Roman
1 Times Italic
2 Times Bold
3 Times Bold Italic
4 AvantGarde Book
5 AvantGarde Book Oblique
6 AvantGarde Demi
7 AvantGarde Demi Oblique
8 Bookman Light
9 Bookman Light Italic
10 Bookman Demi
11 Bookman Demi Italic
12 Courier
13 Courier Oblique
14 Courier Bold
15 Courier Bold Oblique
16 Helvetica
17 Helvetica Oblique
18 Helvetica Bold
19 Helvetica Bold Oblique
20 Helvetica Narrow
21 Helvetica Narrow Oblique
22 Helvetica Narrow Bold
23 Helvetica Narrow Bold Oblique
24 New Century Schoolbook Roman
25 New Century Schoolbook Italic
26 New Century Schoolbook Bold
27 New Century Schoolbook Bold Italic
28 Palatino Roman
29 Palatino Italic
30 Palatino Bold
31 Palatino Bold Italic
32 Symbol
33 Zapf Chancery Medium Italic
34 Zapf Dingbats
*/
#endif
|