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
|
/* Hello, Emacs, this is -*-C-*- */
/* GNUPLOT - tek.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:
* tek40xx, bitgraph, kermit_color_tek40xx, kermit_mono_tek40xx, selanar
* sixeltek, ln03plus, xterm
*
* AUTHORS
* Colin Kelley, Thomas Williams, Russell Lang
*
* send your comments or suggestions to (gnuplot-info@lists.sourceforge.net).
*
*/
/*
* Modified June 1995 Ian MacPhedran to support newterm format
*/
/*
* Modified November 2013 Erik Olofsen to support DEC's Sixel graphics,
* natively, which is more practical than using the PBM driver and piping
* through e.g. `ppmtosixel`.
* Gnuplot should be configured with `--with-bitmap-terminals`.
* The code was inserted here as XTerm now supports Tek and Sixel codes;
* for this driver to work, the Xterm terminal type should be selected as
* VT340, and `sixelScrolling` is best selected. The driver was tested from
* XTerm version 2.9.7, and mlterm version 3.3.2.
* Under VMS, the DECW$TERMINAL may be used (set to dark text and light
* background).
* The `set terminal` options are identical to that of the PBM driver,
* but `grayscale` not available (albeit via rgb specifications).
* Filled polygons are supported; the code was inspired by public domain
* code by Darel Rex Finley.
* Line widths greater than one are plotted using filled squares, with
* solid line types only.
* RGB color specifications are supported and override the defaults,
* which are according to the XTerm source:
* VT340:
* mono color
* 0: 0% 0% (bg for light on dark mode)
* 1: 14% blue
* 2: 29% red
* 3: 43% green
* 4: 57% magenta
* 5: 71% cyan
* 6: 86% yellow
* 7: 100% 50% (fg for light on dark mode)
* 8: 0% 25%
* 9: 14% gray-blue
* 10: 29% gray-red
* 11: 43% gray-green
* 12: 57% gray-magenta
* 13: 71% gray-cyan
* 14: 86% gray-yellow
* 15: 100% 75%
* To get the default device colors as given above (with offset 1), use:
unset for [i=1:16] linetype i
set for [i=1:16] linetype i linecolor i
or for black dashed lines:
set for [i=1:16] linetype i dashtype i linecolor "black"
*/
#define TEK
#define CTEK
#define VTTEK
#define XTERM
#ifndef NO_BITMAP_SUPPORT
#define SIXEL
#endif
/* Version 4.3: still available, but no longer built by default */
#if 0
#define KERMIT
#define SELANAR
#define BITGRAPH
#endif
#include "driver.h"
#ifdef TERM_REGISTER
register_term(tek40)
#ifdef VTTEK
register_term(vttek)
#endif
#ifdef XTERM
register_term(xterm)
#endif
#ifdef KERMIT
register_term(kc_tek40)
register_term(km_tek40)
#endif
#ifdef SELANAR
register_term(selanar)
#endif
#ifdef SIXEL
register_term(sixeltek)
#endif
#ifdef BITGRAPH
register_term(bitgraph)
#endif
#endif /* TERM_REGISTER */
#ifdef TERM_PROTO
TERM_PUBLIC void TEK40init(void);
TERM_PUBLIC void TEK40graphics(void);
TERM_PUBLIC void TEK40text(void);
TERM_PUBLIC void TEK40move(unsigned int x, unsigned int y);
TERM_PUBLIC void TEK40vector(unsigned int x, unsigned int y);
TERM_PUBLIC void TEK40put_text(unsigned int x, unsigned int y, const char str[]);
TERM_PUBLIC void TEK40reset(void);
#ifdef BITGRAPH
TERM_PUBLIC void BG_text(void);
TERM_PUBLIC void BG_put_text(unsigned int x, unsigned int y, const char str[]);
#endif
#if defined(SELANAR) || defined(BITGRAPH)
TERM_PUBLIC void TEK40linetype(int linetype);
#endif
#ifdef KERMIT
TERM_PUBLIC void KTEK40graphics(void);
TERM_PUBLIC void KTEK40Ctext(void);
TERM_PUBLIC void KTEK40Clinetype(int linetype);
TERM_PUBLIC void KTEK40Mlinetype(int linetype);
TERM_PUBLIC void KTEK40reset(void);
#endif
#ifdef SELANAR
TERM_PUBLIC void SEL_init(void);
TERM_PUBLIC void SEL_graphics(void);
TERM_PUBLIC void SEL_text(void);
TERM_PUBLIC void SEL_reset(void);
#endif
#ifdef SIXEL
TERM_PUBLIC void SIXEL_options(void);
TERM_PUBLIC void SIXEL_init(void);
TERM_PUBLIC void SIXEL_reset(void);
TERM_PUBLIC void SIXEL_text(void);
TERM_PUBLIC void SIXEL_graphics(void);
TERM_PUBLIC void SIXEL_linetype(int linetype);
TERM_PUBLIC void SIXEL_fillbox(int style, unsigned int x1, unsigned int y1, unsigned int width, unsigned int height);
TERM_PUBLIC int SIXEL_make_palette (t_sm_palette *);
TERM_PUBLIC void SIXEL_set_color(t_colorspec *colorspec);
TERM_PUBLIC void SIXEL_filled_polygon(int points, gpiPoint *corners);
#endif
TERM_PUBLIC void VTTEK40init(void);
TERM_PUBLIC void VTTEK40reset(void);
TERM_PUBLIC void VTTEK40linetype(int linetype);
TERM_PUBLIC void VTTEK40put_text(unsigned int x, unsigned int y, const char str[]);
TERM_PUBLIC void XTERM_graphics(void);
TERM_PUBLIC void XTERM_resume(void);
TERM_PUBLIC void XTERM_text(void);
TERM_PUBLIC int XTERM_set_font(const char * fontname);
TERM_PUBLIC void CTEK_linetype(int linetype);
TERM_PUBLIC void CTEK_move(unsigned int x, unsigned int y);
TERM_PUBLIC void CTEK_vector(unsigned int x, unsigned int y);
#endif /* TERM_PROTO */
#ifndef TERM_PROTO_ONLY
#ifdef TERM_BODY
#ifdef TEK
#define TEK40XMAX 1024
#define TEK40YMAX 780
#define TEK40XLAST (TEK40XMAX - 1)
#define TEK40YLAST (TEK40YMAX - 1)
#define TEK40VCHAR 25
#define TEK40HCHAR 14
#define TEK40VTIC 11
#define TEK40HTIC 11
#define HX 0x20 /* bit pattern to OR over 5-bit data */
#define HY 0x20
#define LX 0x40
#define LY 0x60
#define LOWER5 31
#define UPPER5 (31<<5)
TERM_PUBLIC void
TEK40init()
{
}
TERM_PUBLIC void
TEK40graphics()
{
#ifdef VMS
term_pasthru();
#endif /* VMS */
fputs("\033\014", gpoutfile);
/* 1
1. clear screen
*/
(void) fflush(gpoutfile);
sleep(1);
/* sleep 1 second to allow screen time to clear on real
tektronix terminals */
}
TERM_PUBLIC void
TEK40text()
{
#ifdef VMS
(void) fflush(gpoutfile); /* finish the graphics */
#endif
TEK40move(0, 12);
fputs("\037", gpoutfile);
/* 1
1. into alphanumerics
*/
#ifdef VMS
term_nopasthru();
#endif /* VMS */
}
#if defined(SELANAR) || defined(BITGRAPH)
TERM_PUBLIC void
TEK40linetype(int linetype)
{
(void) linetype;
}
#endif
TERM_PUBLIC void
TEK40move(unsigned int x, unsigned int y)
{
(void) putc('\035', gpoutfile); /* into graphics */
TEK40vector(x, y);
}
TERM_PUBLIC void
TEK40vector(unsigned int x, unsigned int y)
{
(void) putc((HY | (y & UPPER5) >> 5), gpoutfile);
(void) putc((LY | (y & LOWER5)), gpoutfile);
(void) putc((HX | (x & UPPER5) >> 5), gpoutfile);
(void) putc((LX | (x & LOWER5)), gpoutfile);
}
TERM_PUBLIC void
TEK40put_text(unsigned int x, unsigned int y, const char str[])
{
TEK40move(x, y - 11);
fprintf(gpoutfile, "\037%s\n", str);
}
TERM_PUBLIC void
TEK40reset()
{
}
#endif /* TEK */
/* thanks to dukecdu!evs (Ed Simpson) for the BBN BitGraph driver */
#ifdef BITGRAPH
#define BG_XMAX 768 /* width of plot area */
#define BG_YMAX 768 /* height of plot area */
#define BG_SCREEN_HEIGHT 1024 /* full screen height */
#define BG_XLAST (BG_XMAX - 1)
#define BG_YLAST (BG_YMAX - 1)
#define BG_VCHAR 16
#define BG_HCHAR 9
#define BG_VTIC 8
#define BG_HTIC 8
#define BG_init TEK40init
#define BG_graphics TEK40graphics
#define BG_linetype TEK40linetype
#define BG_move TEK40move
#define BG_vector TEK40vector
#define BG_reset TEK40reset
TERM_PUBLIC void
BG_text()
{
#ifdef VMS
(void) fflush(gpoutfile); /* finish the graphics */
#endif
BG_move(0, BG_SCREEN_HEIGHT - 2 * BG_VCHAR);
fputs("\037", gpoutfile);
/* 1
1. into alphanumerics
*/
}
TERM_PUBLIC void
BG_put_text(unsigned int x, unsigned int y, const char str[])
{
BG_move(x, y - 11);
fprintf(gpoutfile, "\037%s\n", str);
}
#endif /* BITGRAPH */
/* Color and Monochrome specials for the MS-DOS Kermit Tektronix Emulator
by Russell Lang, eln272v@monu1.cc.monash.oz */
#ifdef KERMIT
#define KTEK40HCHAR 13
TERM_PUBLIC void
KTEK40graphics()
{
#ifdef VMS
term_mode_tek();
term_pasthru();
#endif /* VMS */
fputs("\033\014", gpoutfile);
/* 1
1. clear screen
*/
/* kermit tektronix emulation doesn't need to wait */
}
TERM_PUBLIC void
KTEK40Ctext()
{
TEK40text();
KTEK40Clinetype(0); /* change to green */
#ifdef VMS
term_nopasthru();
#endif /* VMS */
}
/* special color linetypes for MS-DOS Kermit v2.31 tektronix emulator */
/* 0 = normal, 1 = bright
foreground color (30-37) = 30 + colors
where colors are 1=red, 2=green, 4=blue */
static const char *kermit_color[15] =
{"\033[0;37m", "\033[1;30m",
"\033[0;32m", "\033[0;36m", "\033[0;31m", "\033[0;35m",
"\033[1;34m", "\033[1;33m", "\033[1;31m", "\033[1;37m",
"\033[1;35m", "\033[1;32m", "\033[1;36m", "\033[0;34m",
"\033[0;33m"};
TERM_PUBLIC void
KTEK40Clinetype(int linetype)
{
if (linetype < -2)
linetype = LT_BLACK;
if (linetype >= 13)
linetype %= 13;
fprintf(gpoutfile, "%s", kermit_color[linetype + 2]);
}
/* linetypes for MS-DOS Kermit v2.30 tektronix emulator */
/* `=solid, a=fine dots, b=short dashes, c=dash dot,
d=long dash dot, e=dash dot dot */
static const char *kerm_linetype = "`a`abcde";
TERM_PUBLIC void
KTEK40Mlinetype(int linetype)
{
if (linetype < -2)
linetype = LT_BLACK;
if (linetype >= 6)
linetype %= 6;
fprintf(gpoutfile, "\033%c", kerm_linetype[linetype + 2]);
}
TERM_PUBLIC void
KTEK40reset()
{
fputs("\030\n", gpoutfile); /* turn off Tek emulation */
#ifdef VMS
term_mode_native();
#endif /* VMS */
}
#endif /* KERMIT */
/* thanks to sask!macphed (Geoff Coleman and Ian Macphedran) for the
Selanar driver */
#ifdef SELANAR
TERM_PUBLIC void
SEL_init()
{
fputs("\033\062", gpoutfile);
/* 1
1. set to ansi mode
*/
}
TERM_PUBLIC void
SEL_graphics()
{
fputs("\033[H\033[J\033\061\033\014", gpoutfile);
/* 1 2 3
1. clear ANSI screen
2. set to TEK mode
3. clear screen
*/
#ifdef VMS
term_pasthru();
#endif /* VMS */
}
TERM_PUBLIC void
SEL_text()
{
#ifdef VMS
(void) fflush(gpoutfile); /* finish the graphics */
#endif
TEK40move(0, 12);
fputs("\033\062", gpoutfile);
/* 1
1. into ANSI mode
*/
#ifdef VMS
term_nopasthru();
#endif /* VMS */
}
TERM_PUBLIC void
SEL_reset()
{
fputs("\033\061\033\012\033\062\033[H\033[J", gpoutfile);
/* 1 2 3 4
1 set tek mode
2 clear screen
3 set ansi mode
4 clear screen
*/
}
#endif /* SELANAR */
#ifdef SIXEL
#include "bitmap.h"
static int SIXEL_findslot(int rgbval);
static void SIXEL_setfont(void);
#define SIXEL_XMAX (639)
#define SIXEL_YMAX (479)
#define SIXEL_VCHAR (FNT5X9_VCHAR)
#define SIXEL_HCHAR (FNT5X9_HCHAR)
#define SIXEL_VTIC (FNT5X9_HBITS)
#define SIXEL_HTIC (FNT5X9_HBITS)
#define SIXEL_COL_UNDEFINED 0
#define SIXEL_COL_DEFINED 1
#define SIXEL_COL_USED 2
/* This is the _maximum_ number of allowed palette entries. */
#define SIXEL_NCOL 256
static int SIXEL_mode = 1; /* mono=0, color=1 */
static int SIXEL_font = 1; /* small=1,medium=2,large=3 */
static int SIXEL_ncol = 16; /* actual number of colors to be used */
static int SIXEL_lt;
static int SIXEL_fp = 0; /* start of gnuplot palette colors */
static int SIXEL_np = 0; /* size of gnuplot palette */
static int SIXEL_anchor = 1; /* Anchor plot at top left */
struct SIXEL_colorspec {
int state; /* see definitions above */
int rgbval;
};
/* The palette is used for pre-defined, user-defined, and gnuplot palette colors. */
static struct SIXEL_colorspec SIXEL_palette[SIXEL_NCOL];
static int
SIXEL_findslot(int rgbval)
{
int i, iopt;
int d1, d2, dist, dopt;
/* try to find a slot with a matching rgb value */
for (i = 0; i < SIXEL_ncol; i++) {
if (SIXEL_palette[i].rgbval == rgbval) {
SIXEL_palette[i].state = SIXEL_COL_USED;
return i;
}
}
/* if not found, try to find an undefined slot */
for (i = 0; i < SIXEL_ncol; i++) {
if (SIXEL_palette[i].state == SIXEL_COL_UNDEFINED) {
SIXEL_palette[i].state = SIXEL_COL_USED;
SIXEL_palette[i].rgbval = rgbval;
return i;
}
}
/* if not found, try to find an unused slot */
dopt = 0x30000; /* max is 3 times 256 squared */
iopt = 0;
for (i = 0; i < SIXEL_ncol; i++) {
if (SIXEL_palette[i].state != SIXEL_COL_USED) {
SIXEL_palette[i].state = SIXEL_COL_USED;
SIXEL_palette[i].rgbval = rgbval;
return i;
}
d1 = (SIXEL_palette[i].rgbval & 0xff0000) >> 16;
d2 = (rgbval & 0xff0000) >> 16;
dist = (d1 - d2) * (d1 - d2);
d1 = (SIXEL_palette[i].rgbval & 0x00ff00) >> 8;
d2 = (rgbval & 0x00ff00) >> 8;
dist += (d1 - d2) * (d1 - d2);
d1 = (SIXEL_palette[i].rgbval & 0x0000ff);
d2 = (rgbval & 0x0000ff);
dist += (d1 - d2) * (d1 - d2);
if (dist < dopt) {
dopt = dist;
iopt = i;
}
}
/* nothing available, use closest slot w.r.t. color */
return iopt;
}
enum SIXEL_id {
SIXEL_SMALL, SIXEL_MEDIUM, SIXEL_LARGE,
SIXEL_MONOCHROME, SIXEL_COLOR, SIXEL_COLORS,
SIXEL_SIZE, SIXEL_ANCHOR, SIXEL_SCROLL,
SIXEL_OTHER
};
static struct gen_table SIXEL_opts[] =
{
{ "s$mall", SIXEL_SMALL },
{ "me$dium", SIXEL_MEDIUM },
{ "l$arge", SIXEL_LARGE },
{ "mo$nochrome", SIXEL_MONOCHROME },
{ "c$olor", SIXEL_COLOR },
{ "c$olour", SIXEL_COLOR },
{ "colors", SIXEL_COLORS },
{ "size", SIXEL_SIZE },
{ "anchor", SIXEL_ANCHOR },
{ "scroll", SIXEL_SCROLL },
{ NULL, SIXEL_OTHER }
};
TERM_PUBLIC void
SIXEL_options()
{
while (!END_OF_COMMAND) {
switch(lookup_table(&SIXEL_opts[0],c_token)) {
case SIXEL_SMALL:
SIXEL_font = 1;
c_token++;
break;
case SIXEL_MEDIUM:
SIXEL_font = 2;
c_token++;
break;
case SIXEL_LARGE:
SIXEL_font = 3;
c_token++;
break;
case SIXEL_MONOCHROME:
SIXEL_mode = 0;
term->flags |= TERM_MONOCHROME;
c_token++;
break;
case SIXEL_COLOR:
SIXEL_mode = 1;
/* We do not change number of colors here. */
term->flags &= ~TERM_MONOCHROME;
c_token++;
break;
case SIXEL_COLORS:
SIXEL_mode = 1;
term->flags &= ~TERM_MONOCHROME;
c_token++;
SIXEL_ncol = real_expression();
if (SIXEL_ncol < 0) SIXEL_ncol = 16;
if (SIXEL_ncol > 256) SIXEL_ncol = 256;
break;
case SIXEL_SIZE: {
float width, height;
c_token++;
parse_term_size(&width, &height, PIXELS);
if (width > 0 && height > 0) {
term->xmax = width - 1;
term->ymax = height - 1;
}
break;
}
case SIXEL_ANCHOR:
SIXEL_anchor = 1;
c_token++;
break;
case SIXEL_SCROLL:
SIXEL_anchor = 0;
c_token++;
break;
case SIXEL_OTHER:
default:
int_warn(c_token, "unknown terminal option");
break;
}
}
term->v_tic = (term->xmax < term->ymax) ? term->xmax/100 : term->ymax/100;
if (term->v_tic < 1)
term->v_tic = 1;
term->h_tic = term->v_tic;
/* setup options string */
switch (SIXEL_font) {
case 1:
strcpy(term_options, "small");
break;
case 2:
strcpy(term_options, "medium");
break;
case 3:
strcpy(term_options, "large");
break;
}
if (SIXEL_mode == 0)
strcat(term_options, " monochrome");
else
sprintf(term_options + strlen(term_options), " colors %d", SIXEL_ncol);
if (strncmp(term->name, "sixel", 5) == 0)
strcat(term_options, SIXEL_anchor ? " anchor" : " scroll");
sprintf(term_options + strlen(term_options), " size %d,%d",
term->xmax + 1, term->ymax + 1);
}
TERM_PUBLIC void
SIXEL_init()
{
unsigned int xpixels = term->xmax + 1;
unsigned int ypixels = term->ymax + 1;
/* We count the numbers of planes where we reserve an additional
slot to account for "empty" pixels. */
int nplanes = 1;
int c = SIXEL_ncol + 1;
int i;
for (i = 0; i < 9; i++) {
if (c & 1)
nplanes = i + 1;
c >>= 1;
}
b_makebitmap(xpixels, ypixels, nplanes);
SIXEL_setfont();
}
TERM_PUBLIC void
SIXEL_reset()
{
b_freebitmap();
}
TERM_PUBLIC void
SIXEL_text()
{
int i, j, k, l, ic, n, pr, no;
char c, pc;
unsigned * map;
int *m;
/* place each new plot at upper left of terminal window */
if (SIXEL_anchor)
fprintf(gpoutfile,"\033[H");
/* initialization to Sixel mode and pixel aspect ratio,
but do not change the background */
fprintf(gpoutfile,"\033Pq\"1;1\n");
/* output the actually used rgb colors */
for (k = 0; k < SIXEL_ncol; k++) {
if (SIXEL_palette[k].state == SIXEL_COL_USED)
fprintf(gpoutfile, "#%d;2;%d;%d;%d\n", k,
(int) (((SIXEL_palette[k].rgbval & 0xff0000) >> 16) * 100./255.),
(int) (((SIXEL_palette[k].rgbval & 0x00ff00) >> 8) * 100./255.),
(int) (((SIXEL_palette[k].rgbval & 0x0000ff) * 100./255.)) );
}
map = gp_alloc(6 * b_xsize * sizeof(unsigned), "sixeltek");
for (j = b_ysize - 6; j >= 0; j -= 6) {
/* get pixel values only once */
for (i = 0; i < b_xsize; i++)
for (l = 0; l < 6; l++)
map[i * 6 + l] = b_getpixel(i, j + l);
for (k = 1; k <= SIXEL_ncol; k++) {
no = 0; /* for finite line records (VMS) */
pr = 0;
pc = '\0';
n = 0;
m = (int *)(&map[0]);
for (i = 0; i < b_xsize; i++) {
#if (0)
unsigned mask = 0x20;
ic = 0;
for (l = 0; l < 6; l++) {
ic |= (map[i * 6 + l] == k) ? mask : 0;
mask >>= 1;
}
#else
/* The loop above is by far the most exercised bit of code.
* Unrolling it substantially decreases execution time.
*/
ic = 0;
if (*(m++) == k) ic |= 0x20;
if (*(m++) == k) ic |= 0x10;
if (*(m++) == k) ic |= 0x08;
if (*(m++) == k) ic |= 0x04;
if (*(m++) == k) ic |= 0x02;
if (*(m++) == k) ic |= 0x01;
#endif
c = (char) (ic + 63);
if (c == pc && i != b_xsize - 1) {
n++;
} else {
if (n > 0 && pr == 0) {
pr++;
if (n < b_xsize-1 || pc != '?' || k == 1) { /* do not output empty lines */
no += fprintf(gpoutfile, "#%d", k - 1);
pr++;
}
}
if (pr == 2) {
if (i == b_xsize - 1 && c == pc) n++;
if (n > 3) {
no += fprintf(gpoutfile, "!%d%c", n, pc);
} else {
int ii;
for (ii = 1; ii <= n; ii++)
fputc(pc, gpoutfile);
no += n;
}
if (i == b_xsize-1 && c != pc) {
fputc(c, gpoutfile);
no++;
}
if (no > 70 && i < b_xsize - 1) {
fprintf(gpoutfile,"\n");
no = 0;
}
}
n = 1;
}
pc = c;
}
if (k == SIXEL_ncol)
fputs("-\n", gpoutfile);
else if (pr == 2)
fputs("$\n", gpoutfile);
}
}
free(map);
/* get out of Sixel mode */
fputs("\033\\\n", gpoutfile);
fflush(gpoutfile);
}
static void
SIXEL_setfont()
{
switch (SIXEL_font) {
case 1:
b_charsize(FNT5X9);
term->v_char = FNT5X9_VCHAR;
term->h_char = FNT5X9_HCHAR;
break;
case 2:
b_charsize(FNT9X17);
term->v_char = FNT9X17_VCHAR;
term->h_char = FNT9X17_HCHAR;
break;
case 3:
b_charsize(FNT13X25);
term->v_char = FNT13X25_VCHAR;
term->h_char = FNT13X25_HCHAR;
break;
}
}
TERM_PUBLIC void
SIXEL_graphics()
{
int i;
struct linestyle_def *this;
/* palette color 0 is background */
SIXEL_palette[0].state = SIXEL_COL_USED;
SIXEL_palette[0].rgbval = 0xFFFFFF;
/* palette color 1 is foreground */
SIXEL_palette[1].state = SIXEL_COL_USED;
SIXEL_palette[1].rgbval = 0x000000;
/* the rest of the palette starts out undefined */
for (i = 2; i < SIXEL_ncol; i++) {
SIXEL_palette[i].state = SIXEL_COL_UNDEFINED;
SIXEL_palette[i].rgbval = 0;
}
/* reserve one palette entry for each permanent line color */
i = 2;
for (this = first_perm_linestyle; this != NULL; this = this->next) {
if (this->lp_properties.pm3d_color.type == TC_RGB) {
int rgbval = this->lp_properties.pm3d_color.lt;
SIXEL_palette[i].state = SIXEL_COL_USED;
SIXEL_palette[i].rgbval = rgbval;
i++;
}
}
/* background fill */
b_setvalue(0);
b_boxfill(FS_OPAQUE, 0, 0, b_xsize, b_ysize);
}
TERM_PUBLIC void
SIXEL_linetype(int linetype)
{
int i;
SIXEL_lt = linetype;
/* monochrome */
if (SIXEL_mode == 0) {
b_setlinetype(linetype);
return;
}
if (linetype == LT_AXIS) {
b_setlinetype(1);
b_setvalue(2);
} else if (linetype == LT_BLACK) {
b_setlinetype(0);
b_setvalue(2);
} else if (linetype < 0) {
b_setlinetype(0);
b_setvalue(0);
} else if (linetype > 0) {
i = linetype % SIXEL_ncol;
b_setvalue(1 + i);
} else {
b_setlinetype(0);
}
}
TERM_PUBLIC void
SIXEL_fillbox(int style, unsigned int x1, unsigned int y1, unsigned int width, unsigned int height)
{
if (SIXEL_lt == LT_BACKGROUND)
return;
b_boxfill(style, x1, y1, width, height);
}
/* the palette defines all colors from the first undefined one;
this slot region will be continuous */
TERM_PUBLIC int
SIXEL_make_palette(t_sm_palette *palette)
{
int i, c;
if (palette == NULL) {
/* If we already have a palette, overwrite it */
if (SIXEL_fp > 0) {
for (i = SIXEL_fp; (i < SIXEL_ncol) && (i < SIXEL_fp + SIXEL_np); i++)
SIXEL_palette[i].state = SIXEL_COL_UNDEFINED;
}
/* Find the first unused slot */
for (i = 0; i < SIXEL_ncol; i++)
if (SIXEL_palette[i].state == SIXEL_COL_UNDEFINED)
break;
SIXEL_fp = i;
/* If there is enough space, reserve another few slots for user-defined colors */
if (SIXEL_ncol == 256)
SIXEL_fp = 128;
else if (SIXEL_ncol - i > 138)
SIXEL_fp += 10;
/* The remaining contiguous unused space is the new max palette size */
SIXEL_np = 0;
for (i = SIXEL_fp; i < SIXEL_ncol; i++) {
if (SIXEL_palette[SIXEL_fp].state != SIXEL_COL_UNDEFINED)
break;
SIXEL_np++;
}
FPRINTF((stderr, "SIXEL_make_palette: reporting %d colors available\n", SIXEL_np));
return SIXEL_np;
}
for (i = 0; i < SIXEL_np; i++) {
/* Requested palette may be smaller than allocated palette */
if (i >= sm_palette.colors) {
SIXEL_palette[SIXEL_fp + i].state = SIXEL_COL_UNDEFINED;
continue;
}
SIXEL_palette[SIXEL_fp + i].state = SIXEL_COL_USED;
SIXEL_palette[SIXEL_fp + i].rgbval = 0;
c = (int) (palette->color[i].r * 255);
SIXEL_palette[SIXEL_fp + i].rgbval |= c << 16;
c = (int) (palette->color[i].g * 255);
SIXEL_palette[SIXEL_fp + i].rgbval |= c << 8;
c = (int) (palette->color[i].b * 255);
SIXEL_palette[SIXEL_fp + i].rgbval |= c;
}
SIXEL_np = sm_palette.colors;
return SIXEL_np;
}
/*
* This doesn't really set a color. Instead it tries to match the color of
* a previously defined linetype. If no match is found but there is space in
* the palette for a new color, we add this one to the palette.
* If no more space is available - too bad.
*/
TERM_PUBLIC void
SIXEL_set_color(t_colorspec *colorspec)
{
int i;
switch (colorspec->type) {
default:
return;
case TC_LT:
if (colorspec->lt > 0)
SIXEL_linetype(colorspec->lt);
else if (colorspec->lt == LT_BLACK)
b_setvalue(2);
else if (colorspec->lt == LT_AXIS)
b_setvalue(2);
else
b_setvalue(0);
return;
case TC_RGB:
i = SIXEL_findslot(colorspec->lt);
b_setvalue(1 + i);
return;
case TC_FRAC:
if (CHECK_SMPAL_IS_DISCRETE_GRADIENT) {
i = index_from_gray(colorspec->value);
} else {
i = (colorspec->value < 0) ? 0 : (int)(colorspec->value * sm_palette.colors);
if (i >= sm_palette.colors)
i = sm_palette.colors - 1;
}
SIXEL_palette[SIXEL_fp + i].state = SIXEL_COL_USED;
b_setvalue(1 + SIXEL_fp + i);
return;
}
}
TERM_PUBLIC void
SIXEL_filled_polygon(int points, gpiPoint *corners)
{
if (SIXEL_lt == LT_BACKGROUND)
return; /* opaque polygon! */
b_filled_polygon(points, corners);
}
#endif /* SIXEL */
#ifdef VTTEK
TERM_PUBLIC void
VTTEK40init()
{
fputs("\033[?38h", gpoutfile);
fflush(gpoutfile);
sleep(1);
/* sleep 1 second to allow screen time to clear on some terminals */
#ifdef VMS
term_mode_tek();
#endif /* VMS */
}
TERM_PUBLIC void
VTTEK40reset()
{
fputs("\033[?38l", gpoutfile);
fflush(gpoutfile);
sleep(1);
/* sleep 1 second to allow screen time to clear on some terminals */
#ifdef VMS
term_mode_native();
#endif /* VMS */
}
/* linetypes for VT-type terminals in tektronix emulator mode */
/* `=solid, a=fine dots, b=short dashes, c=dash dot,
d=long dash dot, h=bold solid, i=bold fine dots, j=bold short dashes,
k=bold dash dot, l=bold long dash dot */
static const char *vt_linetype = "`a`abcdhijkl";
static int last_vt_linetype = 0;
TERM_PUBLIC void
VTTEK40linetype(int linetype)
{
if (linetype < -2)
linetype = LT_BLACK;
if (linetype >= 10)
linetype %= 10;
fprintf(gpoutfile, "\033%c", vt_linetype[linetype + 2]);
last_vt_linetype = linetype;
}
TERM_PUBLIC void
VTTEK40put_text(unsigned int x, unsigned int y, const char str[])
{
int linetype;
linetype = last_vt_linetype;
VTTEK40linetype(0);
TEK40put_text(x, y, str);
VTTEK40linetype(linetype);
}
#endif /* VTTEK */
#ifdef XTERM
#define XT_TEK_ESC "\033"
#define XT_TEK_GFX XT_TEK_ESC "[?38h"
#define XT_TEK_ANSI XT_TEK_ESC "\003"
#define XT_TEK_CLR XT_TEK_ESC "\014"
#define XT_TEK_ALPHA "\037"
static const char *xt_tek_fontsize = "89:;";
TERM_PUBLIC void
XTERM_graphics()
{
XTERM_resume();
fputs(XT_TEK_CLR, gpoutfile);
}
TERM_PUBLIC void
XTERM_resume()
{
fputs(XT_TEK_GFX, gpoutfile);
}
TERM_PUBLIC void
XTERM_text()
{
fputs(XT_TEK_ALPHA XT_TEK_ANSI, gpoutfile);
}
TERM_PUBLIC int
XTERM_set_font(const char *fontname)
{
char size = 0;
if (fontname) {
size_t lp = strlen(fontname);
if (lp>0) size = fontname[lp-1]-'1';
}
fprintf(gpoutfile, XT_TEK_ESC "%c",
xt_tek_fontsize[size>0&&size<4?size:0]);
return(TRUE);
}
#endif /* XTERM */
#ifdef LN03P
TERM_PUBLIC void
LN03Pinit()
{
fputs("\033[?38h", gpoutfile);
}
TERM_PUBLIC void
LN03Preset()
{
fputs("\033[?38l", gpoutfile);
}
#endif /* LN03P */
/* tek40xx (monochrome) with linetype support by Jay I. Choe */
#ifdef CTEK
/*#define ABS(A) (((A)>=0)? (A):-(A))*/
#define SIGN(A) (((A) >= 0)? 1:-1)
static void CT_solid_vector(int x, int y);
static void CT_draw_vpoint(int x, int y, int last);
static void CT_pattern_vector(int x1, int y1);
/* CT_lines are line types defined as bit pattern */
static unsigned long CT_lines[] =
{~(unsigned long)0, /* solid line */
0x000fffff, /* long dash */
0x00ff00ff, /* short dash */
0x00f00fff, /* dash-dot */
0x00f07fff, /* long dash - dot */
0x07070707,
0x07ff07ff,
0x070707ff};
/* current line pattern */
static unsigned long *CT_pattern = &CT_lines[0];
/* we need to keep track of tek cursor location */
static int CT_last_linetype = 0, CT_last_x, CT_last_y;
TERM_PUBLIC void
CTEK_linetype(int linetype)
{
if (linetype < 0)
linetype = 0;
linetype %= (sizeof(CT_lines) / sizeof(unsigned long));
CT_pattern = &CT_lines[linetype];
CT_last_linetype = linetype;
}
TERM_PUBLIC void
CTEK_move(unsigned int x, unsigned int y)
{
TEK40move(x, y);
CT_last_x = x;
CT_last_y = y;
}
static void
CT_solid_vector(int x, int y)
{
TEK40vector(x, y);
CT_last_x = x;
CT_last_y = y;
}
/*
simulate pixel draw using tek vector draw.
delays actual line drawing until maximum line segment is determined
(or first/last point is defined)
*/
static int CT_penon = 0; /* is Pen on? */
static void
CT_draw_vpoint(int x, int y, int last)
{
static int xx0, yy0, xx1, yy1;
if ((*CT_pattern) & 1) {
if (CT_penon) { /* This point is a continuation of current line */
xx1 = x;
yy1 = y;
} else { /* beginning of new line */
xx0 = xx1 = x;
yy0 = yy1 = y;
CT_penon = 1;
}
*CT_pattern = ((*CT_pattern) >> 1) | ((unsigned long)1 << 31); /* rotate the pattern */
if (last) { /* draw the line anyway if this is the last point */
TEK40move(xx0, yy0);
TEK40vector(xx1, yy1);
CT_penon = 0;
}
} else { /* do not draw this pixel */
if (CT_penon) { /* last line segment ended at the previous pixel. */
/* draw the line */
TEK40move(xx0, yy0);
TEK40vector(xx1, yy1);
CT_penon = 0;
}
*CT_pattern = (*CT_pattern) >> 1; /* rotate the current pattern */
}
}
/*
draw vector line with pattern
*/
static void
CT_pattern_vector(int x1, int y1)
{
int op; /* order parameter */
int x0 = CT_last_x;
int y0 = CT_last_y;
int dx = x1 - x0;
int dy = y1 - y0;
int ax = ABS(dx) << 1;
int ay = ABS(dy) << 1;
int sx = SIGN(dx);
int sy = SIGN(dy);
if (ax >= ay) {
for (op = ay - (ax >> 1); x0 != x1; x0 += sx, op += ay) {
CT_draw_vpoint(x0, y0, 0);
if (op > 0 || (op == 0 && sx == 1)) {
op -= ax;
y0 += sy;
}
}
} else { /* ax < ay */
for (op = ax - (ay >> 1); y0 != y1; y0 += sy, op += ax) {
CT_draw_vpoint(x0, y0, 0);
if (op > 0 || (op == 0 && sy == 1)) {
op -= ay;
x0 += sx;
}
}
}
CT_draw_vpoint(x0, y0, 1); /* last point */
CT_last_x = x1;
CT_last_y = y1;
}
TERM_PUBLIC void
CTEK_vector(unsigned int x, unsigned int y)
{
if (CT_last_linetype <= 0)
CT_solid_vector(x, y);
else
CT_pattern_vector(x, y);
}
#endif /* CTEK */
#endif /* TERM_BODY */
#ifdef TERM_TABLE
#ifdef CTEK
TERM_TABLE_START(tek40_driver)
"tek40xx", "Tektronix 4010 and others; most TEK emulators",
TEK40XMAX, TEK40YMAX, TEK40VCHAR, TEK40HCHAR,
TEK40VTIC, TEK40HTIC, options_null, TEK40init, TEK40reset,
TEK40text, null_scale, TEK40graphics, CTEK_move, CTEK_vector,
CTEK_linetype, TEK40put_text, null_text_angle,
null_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(tek40_driver)
#endif /* CTEK */
#undef LAST_TERM
#define LAST_TERM tek40_driver
#ifdef VTTEK
TERM_TABLE_START(vttek_driver)
"vttek", "VT-like tek40xx terminal emulator",
TEK40XMAX, TEK40YMAX, TEK40VCHAR, TEK40HCHAR,
TEK40VTIC, TEK40HTIC, options_null, VTTEK40init, VTTEK40reset,
TEK40text, null_scale, TEK40graphics, TEK40move, TEK40vector,
VTTEK40linetype, VTTEK40put_text, null_text_angle,
null_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(vttek_driver)
#undef LAST_TERM
#define LAST_TERM vttek_driver
#endif /* VTTEK */
#ifdef XTERM
TERM_TABLE_START(xterm_driver)
"xterm", "Xterm Tektronix 4014 Mode",
TEK40XMAX, TEK40YMAX, TEK40VCHAR, TEK40HCHAR,
TEK40VTIC, TEK40HTIC, options_null, TEK40init, TEK40reset,
XTERM_text, null_scale, XTERM_graphics, TEK40move, TEK40vector,
VTTEK40linetype, VTTEK40put_text, null_text_angle,
null_justify_text, line_and_point, do_arrow, XTERM_set_font, 0,
TERM_CAN_MULTIPLOT|TERM_NO_OUTPUTFILE, XTERM_text, XTERM_resume
TERM_TABLE_END(xterm_driver)
#undef LAST_TERM
#define LAST_TERM xterm_driver
#endif /* XTERM */
#ifdef KERMIT
TERM_TABLE_START(kc_tek40_driver)
"kc_tek40xx", "MS-DOS Kermit Tek4010 terminal emulator - color",
TEK40XMAX, TEK40YMAX, TEK40VCHAR, KTEK40HCHAR,
TEK40VTIC, TEK40HTIC, options_null, TEK40init, KTEK40reset,
KTEK40Ctext, null_scale, KTEK40graphics, TEK40move, TEK40vector,
KTEK40Clinetype, TEK40put_text, null_text_angle,
null_justify_text, do_point, do_arrow, set_font_null
TERM_TABLE_END(kc_tek40_driver)
#undef LAST_TERM
#define LAST_TERM kc_tek40_driver
TERM_TABLE_START(km_tek40_driver)
"km_tek40xx", "MS-DOS Kermit Tek4010 terminal emulator - monochrome",
TEK40XMAX, TEK40YMAX, TEK40VCHAR, KTEK40HCHAR,
TEK40VTIC, TEK40HTIC, options_null, TEK40init, KTEK40reset,
TEK40text, null_scale, KTEK40graphics, TEK40move, TEK40vector,
KTEK40Mlinetype, TEK40put_text, null_text_angle,
null_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(km_tek40_driver)
#undef LAST_TERM
#define LAST_TERM km_tek40_driver
#endif /* KERMIT */
#ifdef SELANAR
TERM_TABLE_START(selanar_driver)
"selanar", "Selanar",
TEK40XMAX, TEK40YMAX, TEK40VCHAR, TEK40HCHAR,
TEK40VTIC, TEK40HTIC, options_null, SEL_init, SEL_reset,
SEL_text, null_scale, SEL_graphics, TEK40move, TEK40vector,
TEK40linetype, TEK40put_text, null_text_angle,
null_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(selanar_driver)
#undef LAST_TERM
#define LAST_TERM selanar_driver
#endif /* SELANAR */
#ifdef SIXEL
TERM_TABLE_START(sixel_driver)
"sixeltek", "Sixel output using bitmap graphics",
SIXEL_XMAX, SIXEL_YMAX, SIXEL_VCHAR, SIXEL_HCHAR,
SIXEL_VTIC, SIXEL_HTIC, SIXEL_options, SIXEL_init, SIXEL_reset,
SIXEL_text, null_scale, SIXEL_graphics, b_move, b_vector,
SIXEL_linetype, b_put_text, b_text_angle,
b_justify_text, line_and_point, do_arrow, set_font_null,
0, 0, 0, 0, SIXEL_fillbox, b_linewidth,
#ifdef USE_MOUSE
term_waitforinput, NULL, NULL, NULL, NULL,
#endif
SIXEL_make_palette, NULL, SIXEL_set_color,
SIXEL_filled_polygon,
NULL, /* image */
NULL, NULL, NULL,
NULL,
NULL,
0.,
NULL,
NULL,
NULL,
b_dashtype
TERM_TABLE_END(sixel_driver)
#undef LAST_TERM
#define LAST_TERM sixel_driver
#endif /* SIXEL */
#ifdef BITGRAPH
TERM_TABLE_START(bitgraph_driver)
"bitgraph", "BBN Bitgraph Terminal",
BG_XMAX, BG_YMAX, BG_VCHAR, BG_HCHAR,
BG_VTIC, BG_HTIC, options_null, BG_init, BG_reset,
BG_text, null_scale, BG_graphics, BG_move, BG_vector,
BG_linetype, BG_put_text, null_text_angle,
null_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(bitgraph_driver)
#undef LAST_TERM
#define LAST_TERM bitgraph_driver
#endif /* BITGRAPH */
#endif /* TERM_TABLE */
#endif /* TERM_PROTO_ONLY */
#ifdef TERM_HELP
START_HELP(tek40)
"1 tek40",
"?commands set terminal tek40xx",
"?set terminal tek40xx",
"?set term tek40xx",
"?terminal tek40xx",
"?term tek40xx",
"?tek40",
"?commands set terminal vttek",
"?set terminal vttek",
"?set term vttek",
"?terminal vttek",
"?term vttek",
"?vttek",
"?commands set terminal xterm",
"?set terminal xterm",
"?set term xterm",
"?terminal xterm",
"?term xterm",
"?xterm",
#ifdef KERMIT
"?commands set terminal kc-tek40xx",
"?set terminal kc-tek40xx",
"?set term kc-tek40xx",
"?terminal kc-tek40xx",
"?term kc-tek40xx",
"?kc-tek40xx",
"?commands set terminal km-tek40xx",
"?set terminal km-tek40xx",
"?set term km-tek40xx",
"?terminal km-tek40xx",
"?term km-tek40xx",
"?km-tek40xx",
#endif
#ifdef SELANAR
"?commands set terminal selanar",
"?set terminal selanar",
"?set term selanar",
"?terminal selanar",
"?term selanar",
"?selanar",
#endif
#ifdef SIXEL
"?commands set terminal sixeltek",
"?set terminal sixeltek",
"?set term sixeltek",
"?terminal sixeltek",
"?term sixeltek",
"?sixeltek",
" Syntax:",
" set terminal sixeltek {<fontsize>} {mono|color|colors <n>} {size <x>,<y>}",
" {animate}",
"",
" The `sixel` output format was originally used by DEC terminals and printers.",
" This driver supports palette images with a maximum of 256 colors. The default",
" is 16 which can be changed using the `colors` option.",
"",
" The font size can be specified as `small`, `medium` or `large`.",
"",
" `anchor` causes each new plot to be anchored at the top left of the window.",
" `scroll` intead draws each plot at the current cursor position and allows it",
" to scroll with the text.",
"",
" For use with xterm, xterm must be compiled/configured with",
" \"--enable-sixel-graphics\" and started with \"-ti 340\" on the command line.",
"",
" Note that gnuplot also supports another sixel output terminal, `sixelgd`,",
" that offers more options and features."
#endif
#ifdef BITGRAPH
"?commands set terminal bitgraph",
"?set terminal bitgraph",
"?set term bitgraph",
"?terminal bitgraph",
"?term bitgraph",
"?bitgraph",
#endif
" This family of terminal drivers supports a variety of VT-like terminals.",
" `tek40xx` supports Tektronix 4010 and others as well as most TEK emulators.",
" `vttek` supports VT-like tek40xx terminal emulators.",
" The following are present only if selected when gnuplot is built:",
" `kc-tek40xx` supports MS-DOS Kermit Tek4010 terminal emulators in color;",
" `km-tek40xx` supports them in monochrome. `selanar` supports Selanar graphics.",
" `bitgraph` supports BBN Bitgraph terminals.",
" None have any options."
END_HELP(tek40)
#endif /* TERM_HELP */
|