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
|
/* Hello, Emacs, this is -*-C-*- */
/* GNUPLOT - pc.trm */
/*[
* Copyright 1990 - 1993, 1998, 2004, 2018
*
* 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 uses the OpenWatcom C graphics library. It should work
* using the following graphic cards:
* cga, ega/vga, vgamono, svga, mcga, hercules, ???
*
* Previously, this driver combined graphics support using Watcom C, MSC and
* Turbo C. Support for the later two compilers has long been dropped, so we
* removed the driver code here, too. (BM Apr 2018)
*
* AUTHORS
* Colin Kelley, Thomas Williams, William Wilson, Russell Lang
* modified by David J. Liu (liu@csb.yale.edu) for version 3.6
* extended by Bastian Maerkisch for version 5.3
*
* send your comments or suggestions to (gnuplot-info@lists.sourceforge.net).
*
*/
/*
* adapted to the new terminal layout by Stefan Bodewig (Dec. 1995)
*/
#include "driver.h"
#ifdef TERM_REGISTER
register_term(dospc)
#endif
#ifdef TERM_PROTO
TERM_PUBLIC void PC_options(void);
TERM_PUBLIC void PC_init(void);
TERM_PUBLIC void PC_graphics(void);
TERM_PUBLIC void PC_text(void);
TERM_PUBLIC void PC_reset(void);
TERM_PUBLIC void PC_suspend(void);
TERM_PUBLIC void PC_resume(void);
TERM_PUBLIC void PC_linetype(int linetype);
TERM_PUBLIC void PC_move(unsigned int x, unsigned int y);
TERM_PUBLIC void PC_vector(unsigned int x, unsigned int y);
TERM_PUBLIC void PC_put_text(unsigned int x, unsigned int y, const char *str);
TERM_PUBLIC void PC_enhanced_put_text(unsigned int x, unsigned int y, const char str[]);
TERM_PUBLIC void PC_enhanced_open(char * fontname, double fontsize,
double base, TBOOLEAN widthflag, TBOOLEAN showflag, int overprint);
TERM_PUBLIC void PC_enhanced_flush(void);
TERM_PUBLIC int PC_text_angle(float ang);
TERM_PUBLIC int PC_set_font(const char *font);
TERM_PUBLIC void PC_pointsize(double size);
TERM_PUBLIC int PC_justify_text(enum JUSTIFY ang);
TERM_PUBLIC void PC_set_color(t_colorspec *colorspec);
TERM_PUBLIC int PC_make_palette(t_sm_palette *palette);
TERM_PUBLIC void PC_fillbox(int fillstyle, unsigned int x1, unsigned int y1, unsigned int width, unsigned int height);
TERM_PUBLIC void PC_filled_polygon(int npoints, gpiPoint *corners);
TERM_PUBLIC void PC_boxed_text(unsigned int x, unsigned int y, int option);
TERM_PUBLIC void PC_dashtype(int type, t_dashtype *custom_dash_pattern);
/* All of these values are place holders only. They will be re-determined
in init or graphics. */
#define PC_HCHAR FNT5X9_HCHAR
#define PC_VCHAR FNT5X9_VCHAR
#define PC_HTIC 5
#define PC_VTIC 4
#define PC_XMAX 100
#define PC_YMAX 100
#endif /* TERM_PROTO */
#ifndef TERM_PROTO_ONLY
#ifdef TERM_BODY
#include <string.h>
#include <stdlib.h>
#include <conio.h> /* for getch() */
#include <graph.h>
// Missing function definition
_WCRTLINK short _WCI86FAR _settransparency( short trans );
static void _settextang(int ang);
static void PC_save_text(void);
static void PC_restore_text(void);
static long PC_set_rgb_color(int r, int g, int b);
static int PC_translate_key(int key, int * mod);
static int PC_int_compare(const void * elem1, const void * elem2);
#if 0
/* old color sequence */
static int vga_color[] = { 7, 8, 2, 3, 4, 5, 9, 14, 12, 15, 13, 10, 11, 1, 6 };
/* old dash pattern sequence */
static unsigned int pc_dash_pattern[] = { 0xffff, 0x0f0f, 0xffff, 0xaaaa, 0x3333, 0x3f3f, 0x0f0f };
#else
/* classic color sequence */
static int vga_color[15] = { 7, 8, 4, 2, 1, 5, 3, 6, 14, 9, 12, 10, 11, 13, 15 };
/* "standard" dash pattern sequence: solid, dash, dash/dot, dash/dot/dot */
static unsigned int pc_dash_pattern[] = { 0xffff, 0xf0f0, 0xffff, 0xf0f0, 0xcccc, 0xfc30, 0xfccc };
#endif
/* Fill pattern copied from bitmap.c */
#define pc_fill_pattern_num 8
static unsigned char pc_fill_pattern_bitmaps[pc_fill_pattern_num][8] = {
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 } /* no fill */
,{ 0x82, 0x44, 0x28, 0x10, 0x28, 0x44, 0x82, 0x01 } /* cross-hatch (1) */
,{ 0x88, 0x55, 0x22, 0x55, 0x88, 0x55, 0x22, 0x55 } /* double crosshatch(2) */
,{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } /* solid fill (3) */
,{ 0x01, 0x02, 0x04, 0x08, 0x10, 0x20, 0x40, 0x80 } /* diagonal stripes (4) */
,{ 0x80, 0x40, 0x20, 0x10, 0x08, 0x04, 0x02, 0x01 } /* diagonal stripes (5) */
,{ 0x11, 0x11, 0x22, 0x22, 0x44, 0x44, 0x88, 0x88 } /* diagonal stripes (6) */
,{ 0x88, 0x88, 0x44, 0x44, 0x22, 0x22, 0x11, 0x11 } /* diagonal stripes (7) */
};
#define pc_shading_pattern_num 5
static unsigned char pc_shading_pattern_bitmap[pc_shading_pattern_num][8] = {
{ 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00 }, /* no fill */
{ 0x88, 0x22, 0x44, 0x11, 0x88, 0x22, 0x44, 0x11 }, /* 25% shade */
{ 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA, 0x55, 0xAA }, /* 50% shade */
{ 0xEE, 0xBB, 0xDD, 0x77, 0xEE, 0xBB, 0xDD, 0xEE }, /* 75% shade */
{ 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff, 0xff } /* solid fill */
};
/* graphics mode */
static int pc_driver, pc_mode;
static TBOOLEAN graphics_on = FALSE;
static TBOOLEAN pc_graphics = FALSE;
static pc_lastx, pc_lasty, pc_colors;
static TBOOLEAN pc_processing_events = FALSE;
/* graphics / text image */
static char * pc_image = NULL;
static char * pc_text_image = NULL;
static int pc_text_cols, pc_text_rows;
static struct rccoord pc_text_pos;
/* lines */
static int startx, starty;
static int pc_linewidth;
static float pc_linewidth_scale = 1.;
/* points */
static float pc_pointscale = 1.;
/* text */
static int pc_hjustify, pc_vjustify, pc_text_dir;
/* nominal font size */
#define PC_DEFAULT_FONTSIZE 18
static float pc_fontsize;
static float pc_font_aspect;
static float pc_fontscale = 1.;
/* colors */
static rgb255_color pc_background_rgb = { 0, 0, 0 };
static int pc_background = 0; /* index of background color */
static short pc_pal_ofs; /* offset of the palette (if any) */
static short pc_max_pal_size = 128; /* maximum palette size; this could be changed by the user */
static short pc_pal_colors; /* size of the palette */
static short pc_rgbcolors; /* number of allocated colors */
static rgb255_color pc_rgbcolor[256];
/* boxed text */
static TBOOLEAN pc_boxing = FALSE;
static struct xycoord pc_boxed_extent[4];
static void
_settextang(int ang)
{
while (ang < 0) ang += 360;
ang %= 360;
switch (ang) {
case 0:
_settextorient(1, 0);
break;
case 45:
_settextorient(1, 1);
break;
case 90:
_settextorient(0, 1);
break;
case 270:
_settextorient(0, -1);
break;
default:
_settextorient(cos(DEG2RAD * ang) * 255, sin(DEG2RAD * ang) * 255);
}
}
enum PC_id {
PC_ENH, PC_NOENH,
PC_LINEWIDTH, PC_POINTSIZE, PC_FONTSCALE,
PC_BACKGROUND,
PC_INVALID
};
static struct gen_table pc_opts[] =
{
{ "enh$anced", PC_ENH },
{ "noe$nhanced", PC_NOENH },
{ "lw", PC_LINEWIDTH },
{ "linew$idth", PC_LINEWIDTH },
{ "ps", PC_POINTSIZE },
{ "points$ize", PC_POINTSIZE },
{ "fs", PC_FONTSCALE },
{ "fonts$cale", PC_FONTSCALE },
{ "backg$round", PC_BACKGROUND },
{ NULL, PC_INVALID }
};
TERM_PUBLIC void
PC_options(void)
{
int i;
while (!END_OF_COMMAND) {
switch (lookup_table(pc_opts, c_token)) {
case PC_ENH:
c_token++;
term->put_text = PC_enhanced_put_text;
term->flags |= TERM_ENHANCED_TEXT;
break;
case PC_NOENH:
c_token++;
term->put_text = PC_put_text;
term->flags &= ~TERM_ENHANCED_TEXT;
break;
case PC_LINEWIDTH:
c_token++;
pc_linewidth_scale = real_expression();
if (pc_linewidth_scale <= 0)
pc_linewidth_scale = 1.;
break;
case PC_POINTSIZE:
c_token++;
pc_pointscale = real_expression();
if (pc_pointscale <= 0)
pc_pointscale = 1.;
break;
case PC_FONTSCALE:
c_token++;
pc_fontscale = real_expression();
if (pc_fontscale <= 0)
pc_fontscale = 1.;
break;
case PC_BACKGROUND: {
long background;
c_token++;
background = parse_color_name();
pc_background_rgb.r = (background >> 16) & 0xff;
pc_background_rgb.g = (background >> 8) & 0xff;
pc_background_rgb.b = (background ) & 0xff;
break;
}
default:
int_error(c_token, "unrecognized terminal option");
break;
}
}
sprintf_s(term_options, sizeof(term_options),
"%senhanced "
"linewidth %.1f pointsize %.1f fontscale %.1f"
" background \"#%02x%02x%02x\"",
term->flags & TERM_ENHANCED_TEXT ? "" : "no",
pc_linewidth_scale, pc_pointscale, pc_fontscale,
pc_background_rgb.r, pc_background_rgb.g, pc_background_rgb.b
);
}
static void
PC_setup(void)
{
int i, x, y;
char pc_modename[9];
struct videoconfig VC;
const char * adaptername[] = {
"MDPA", "CGA", "HERCULES", "MCGA", "EGA", "VGA", "SVGA"
};
short status;
char * pctrm;
if (pc_graphics)
return;
PC_save_text();
/* If environment PCTRM is set, try to initialize a specific card/mode. */
pctrm = getenv("PCTRM");
if (pctrm != NULL)
safe_strncpy(pc_modename, pctrm, sizeof(pc_modename));
else
pc_modename[0] = NUL;
_getvideoconfig(&VC);
if ((pc_driver = VC.adapter) == 0) {
fprintf(stderr, "Unable to initialize graphics.\n");
return;
}
switch (pc_driver = VC.adapter) {
case _HERCULES:
pc_mode = _HERCMONO;
break;
case _CGA:
pc_mode = _HRESBW;
break;
case _MCGA:
pc_mode = _MRES256COLOR;
break;
case _EGA:
pc_mode = (VC.monitor == _MONO ? _ERESCOLOR : _ERESNOCOLOR);
break;
case _VGA:
pc_mode = _VRES16COLOR;
break;
case _SVGA: {
const static short modes[6] = {
_MRES256COLOR, _VRES256COLOR, _SVRES256COLOR,
_XRES256COLOR, _YRES256COLOR, _ZRES256COLOR
};
int t, res = 1;
if (pc_modename[0] == 'S') { /* test SVGA resolution */
sscanf(pc_modename, "S%d", &t);
/* resolution */
switch (t) {
default:
case 640:
res = 1;
break; /* S640 */
case 800:
res = 2;
break; /* S800 */
case 1024:
res = 3;
break; /* S1024 */
case 1280:
res = 4;
break; /* S1280 */
case 1600:
res = 5;
break; /* S1600 */
}
}
pc_mode = modes[res];
while (_setvideomode(pc_mode) == 0 && res > 0) {
res--;
pc_mode = modes[res];
}
break;
}
default:
fputs("Unable to initialize graphics.\n", stderr);
return;
}
_setvideomode(pc_mode);
status = _grstatus();
_getvideoconfig(&VC);
pc_lastx = VC.numxpixels - 1;
pc_lasty = VC.numypixels - 1;
pc_colors = VC.numcolors;
_setvideomode(_DEFAULTMODE);
PC_restore_text();
x = pc_lastx + 1;
y = pc_lasty + 1;
fprintf(stderr, "\t%s screen of %d x %d pixels and %d colors.\n",
adaptername[pc_driver - 1],
x, y, pc_colors);
if (status != _GROK) {
fprintf(stderr, "\t_setvideomode: status = %d\n", status);
pc_driver = 0;
} else {
pc_graphics = TRUE;
}
}
TERM_PUBLIC void
PC_init(void)
{
struct _fontinfo fi;
if (!pc_graphics)
PC_setup();
if (!pc_graphics) {
term = NULL;
int_error(NO_CARET, "Unable to initialize dospc graphics.\n");
return;
}
/* init terminal: fixed size... */
term->xmax = pc_lastx + 1;
term->ymax = pc_lasty + 1;
}
TERM_PUBLIC void
PC_graphics(void)
{
struct textsettings ts;
if (!graphics_on && !pc_processing_events) {
PC_save_text();
graphics_on = TRUE;
_setvideomode(pc_mode);
}
/* init text properties */
_settextang(0);
PC_justify_text(LEFT);
_settextalign(pc_hjustify, pc_vjustify);
/* save initial font aspect ratio */
_gettextsettings(&ts);
pc_font_aspect = (float) ts.height / (float) ts.width;
/* set default font */
PC_set_font("");
_gettextsettings(&ts);
term->h_char = ts.width;
term->v_char = 12 * ts.height / 10; /* reserve some extra line spacing */
term->h_tic = term->v_tic = term->v_char / 2.5;
pc_linewidth = 1;
pc_pal_colors = 0;
/* reserved palette entries for default colors */
pc_rgbcolors = 16;
/* set background */
pc_background = ((pc_background_rgb.b >> 2) << 16) | ((pc_background_rgb.g >> 2) << 8) | (pc_background_rgb.r >> 2);
_setbkcolor(pc_background);
_clearscreen(_GCLEARSCREEN);
}
static void
PC_save_text(void)
{
if (pc_text_image == NULL) {
struct videoconfig vc;
long size;
_getvideoconfig( &vc );
pc_text_cols = vc.numtextcols;
pc_text_rows = vc.numtextrows;
size = 2 * pc_text_cols * pc_text_rows;
pc_text_image = gp_alloc(size, "text image");
}
if (pc_text_image != NULL) {
union REGS regs;
/* make a copy of the text memory */
char * video = (char *) (int) 0xB8000;
int size = 2 * pc_text_cols * pc_text_rows;
memcpy(pc_text_image, video, size);
/* save text cursor position */
regs.h.ah = 0x03;
regs.h.bh = 0;
int386(0x10, ®s, ®s);
pc_text_pos.row = regs.h.dh;
pc_text_pos.col = regs.h.dl;
}
}
static void
PC_restore_text(void)
{
graphics_on = FALSE;
_setvideomode(_DEFAULTMODE);
if (pc_text_image != NULL) {
union REGS regs;
/* restore text memory -*/
char * video = (char *) (int) 0xB8000;
int size = 2 * pc_text_cols * pc_text_rows;
memcpy(video, pc_text_image, size);
/* restore text cursor position */
regs.h.ah = 0x02;
regs.h.bh = 0;
regs.h.dh = pc_text_pos.row;
regs.h.dl = pc_text_pos.col;
int386(0x10, ®s, ®s);
}
}
/* Mapping tables for special keycodes. Note that these have to be
ordered by the conio key code. */
#ifdef USE_MOUSE
/* no modifiers */
static int pc_key_table [][2] = {
{ 59, GP_F1 },
{ 60, GP_F2 },
{ 61, GP_F3 },
{ 62, GP_F4 },
{ 63, GP_F5 },
{ 64, GP_F6 },
{ 65, GP_F7 },
{ 66, GP_F8 },
{ 67, GP_F9 },
{ 68, GP_F10 },
{ 71, GP_Home },
{ 72, GP_Up },
{ 73, GP_PageUp },
{ 75, GP_Left },
{ 77, GP_Right },
{ 79, GP_End },
{ 80, GP_Down },
{ 81, GP_PageDown },
{ 82, GP_Insert },
{ 83, GP_Delete },
{ 133, GP_F11 },
{ 134, GP_F12 }
};
/* shift modifier */
static int pc_shift_key_table [][2] = {
{ 15, GP_Tab },
{ 84, GP_F1 },
{ 85, GP_F2 },
{ 86, GP_F3 },
{ 87, GP_F4 },
{ 88, GP_F5 },
{ 89, GP_F6 },
{ 90, GP_F7 },
{ 91, GP_F8 },
{ 92, GP_F9 },
{ 93, GP_F10 },
{ 135, GP_F11 },
{ 136, GP_F12 }
};
/* ctrl modifier */
static int pc_control_key_table [][2] = {
{ 94, GP_F1 },
{ 95, GP_F2 },
{ 96, GP_F3 },
{ 97, GP_F4 },
{ 98, GP_F5 },
{ 99, GP_F6 },
{ 100, GP_F7 },
{ 101, GP_F8 },
{ 102, GP_F9 },
{ 103, GP_F10 },
{ 115, GP_Left },
{ 116, GP_Right },
{ 117, GP_End },
{ 118, GP_PageDown },
{ 119, GP_Home },
{ 132, GP_PageUp },
{ 137, GP_F11 },
{ 138, GP_F12 },
{ 141, GP_Up },
{ 142, GP_KP_Divide },
// { 143, GP_KP_Center },
{ 144, GP_KP_Multiply },
{ 145, GP_Down },
{ 146, GP_Insert },
{ 147, GP_Delete },
{ 148, GP_Tab },
{ 149, GP_KP_Subtract },
{ 150, GP_KP_Add }
};
/* alt modifier */
// These codes seem to correspond to scan-codes from an US keyboard.
// There's no remapping according to the locale.
static int pc_alt_key_table [][2] = {
// { GrKey_Alt_Escape, GP_Escape },
{ 14, GP_BackSpace },
{ 16, 'q' },
{ 17, 'w' },
{ 18, 'e' },
{ 19, 'r' },
{ 20, 't' },
{ 21, 'y' }, // no keyboard remapping...
{ 22, 'u' },
{ 23, 'i' },
{ 24, 'o' },
{ 25, 'p' },
{ 26, '[' },
{ 27, ']' },
// { 28, GP_Return },
{ 30, 'a' },
{ 31, 's' },
{ 32, 'd' },
{ 33, 'f' },
{ 34, 'g' },
{ 35, 'h' },
{ 36, 'j' },
{ 37, 'k' },
{ 38, 'l' },
{ 39, ';' },
{ 40, '\'' },
{ 41, '`' },
{ 43, '\\' },
{ 44, 'z' },
{ 45, 'x' },
{ 46, 'c' },
{ 47, 'v' },
{ 48, 'b' },
{ 49, 'n' },
{ 50, 'm' },
{ 51, ',' },
{ 52, '.' },
{ 53, '/' },
{ 74, GP_KP_Divide },
// { xx, GP_KP_Multiply },
// { 164, GP_KP_Subtract },
// { 55, GP_KP_Add },
{ 104, GP_F1 },
{ 105, GP_F2 },
{ 106, GP_F3 },
{ 107, GP_F4 },
{ 108, GP_F5 },
{ 109, GP_F6 },
{ 110, GP_F7 },
{ 111, GP_F8 },
{ 112, GP_F9 },
{ 113, GP_F10 },
// { 116, GP_KP_Enter },
{ 120, '1' },
{ 121, '2' },
{ 122, '3' },
{ 123, '4' },
{ 124, '5' },
{ 125, '6' },
{ 126, '7' },
{ 127, '8' },
{ 128, '9' },
{ 129, '0' },
{ 130, '-' },
{ 131, '=' },
{ 138, GP_F11 },
{ 139, GP_F12 },
{ 151, GP_Home },
{ 152, GP_Up },
{ 153, GP_PageUp },
{ 155, GP_Left },
{ 157, GP_Right },
{ 159, GP_End },
{ 160, GP_Down },
{ 161, GP_PageDown },
{ 162, GP_Insert },
{ 163, GP_Delete },
{ 165, GP_Tab }
};
static int
PC_int_compare(const void * elem1, const void * elem2)
{
int val = *(int *)elem1 - *(int *)elem2;
return (0 < val) - (val < 0);
}
/* map a PC special key to a gnuplot code */
static int
PC_translate_key(int key, int * mod)
{
int (* found)[2];
/* mapping of some special keys including modifiers */
found = bsearch((void *)&key,
pc_key_table, sizeof(pc_key_table) / (2 * sizeof(int)), 2 * sizeof(int),
&PC_int_compare);
if (found == NULL) {
found = bsearch((void *)&key,
pc_alt_key_table, sizeof(pc_alt_key_table) / (2 * sizeof(int)), 2 * sizeof(int),
&PC_int_compare);
if (found != NULL)
*mod = Mod_Alt;
}
if (found == NULL) {
found = bsearch((void *)&key,
pc_control_key_table, sizeof(pc_control_key_table) / (2 * sizeof(int)), 2 * sizeof(int),
&PC_int_compare);
if (found != NULL)
*mod = Mod_Ctrl;
}
if (found == NULL) {
found = bsearch((void *)&key,
pc_shift_key_table, sizeof(pc_shift_key_table) / (2 * sizeof(int)), 2 * sizeof(int),
&PC_int_compare);
if (found != NULL)
*mod = Mod_Shift;
}
return (found != NULL) ? (*found)[1] : -1;
}
#endif
TERM_PUBLIC void
PC_text(void)
{
if (!graphics_on)
return;
#ifdef USE_MOUSE
/* signal that we are done */
exec_event(GE_plotdone, 0, 0, 0, 0, 0);
if (!pc_processing_events) {
/* Hack to let the gnuplot kernel do new plots */
term_graphics = FALSE;
pc_processing_events = TRUE;
while (pc_processing_events) {
int key = getch();
switch (key) {
case 0: { // extended key
int c = getch();
int mod = 0;
key = PC_translate_key(c, &mod);
if (key > 0) {
if (mod != 0)
exec_event(GE_modifier, 0, 0, mod, 0, 0);
exec_event(GE_keypress, 0, 0, key, 0, 0);
if (mod != 0)
exec_event(GE_modifier, 0, 0, 0, 0, 0);
} else {
char s[80];
snprintf_s(s, sizeof(s), "extended key: %d ", c);
_outtext(s);
}
break;
}
case '\r':
case '\n':
case ' ':
exec_event(GE_keypress, 0, 0, key, 0, 0);
pc_processing_events = FALSE;
break;
default:
exec_event(GE_keypress, 0, 0, key, 0, 0);
}
}
pc_processing_events = FALSE;
term_graphics = TRUE;
PC_restore_text();
}
# else /* !USE_MOUSE */
(void) getch();
PC_restore_text();
#endif
if (pc_rgbcolors == 256)
printf("\tWarning: number of palette colors exhausted.\n");
}
TERM_PUBLIC void
PC_reset(void)
{
if (graphics_on)
PC_restore_text();
if (pc_image != NULL) {
free(pc_image);
pc_image = NULL;
}
if (pc_text_image != NULL) {
free(pc_text_image);
pc_text_image = NULL;
}
}
TERM_PUBLIC void
PC_suspend(void)
{
if (pc_image == NULL) {
long size = _imagesize(0, 0, pc_lastx, pc_lasty);
pc_image = gp_alloc(size, "multiplot image");
}
if (pc_image != NULL)
_getimage(0, 0, pc_lastx, pc_lasty, pc_image);
PC_text();
}
TERM_PUBLIC void
PC_resume(void)
{
PC_graphics();
if (pc_image != NULL)
_putimage(0, 0, pc_image, _GPSET);
}
TERM_PUBLIC void
PC_linetype(int linetype)
{
if (pc_colors > 14) { /* 16 or more colors */
t_colorspec colorspec;
colorspec.type = TC_LT;
colorspec.lt = linetype;
PC_set_color(&colorspec);
if (colorspec.lt != LT_AXIS)
_setlinestyle(pc_dash_pattern[0]); // solid line
else
_setlinestyle(pc_dash_pattern[1]); // dotted line
} else { /* MONO */
if (linetype < -2)
linetype = LT_BLACK;
if (linetype >= 5)
linetype %= 5;
_setcolor(1);
_setlinestyle(pc_dash_pattern[linetype + 2]);
}
}
TERM_PUBLIC void
PC_linewidth(double linewidth)
{
pc_linewidth = (int) (linewidth * pc_linewidth_scale + 0.5);
if (pc_linewidth < 1) pc_linewidth = 1;
}
TERM_PUBLIC void
PC_move(unsigned int x, unsigned int y)
{
_moveto(x, pc_lasty - y);
startx = x;
starty = y;
}
TERM_PUBLIC void
PC_vector(unsigned int x, unsigned int y)
{
if (pc_linewidth == 1) {
_lineto(x, pc_lasty - y);
} else {
int i;
/* Poor man's linewidth:
Note that in most cases the actual linewidth is wrong, there's no
transition between the cases below. And an even linewidth causes a shift
of the line by one pixel. Still better than nothing. */
if (abs(starty - y) >= abs(startx - x)) {
/* "vertical" lines */
for (i = 0; i < pc_linewidth; i++) {
_moveto(startx - pc_linewidth/2 + i, pc_lasty - starty);
_lineto(x - pc_linewidth/2 + i, pc_lasty - y);
}
} else {
/* "horizontal" lines */
for (i = 0; i < pc_linewidth; i++) {
_moveto(startx, pc_lasty - starty - pc_linewidth/2 + i);
_lineto(x, pc_lasty - y - pc_linewidth/2 + i);
}
}
}
startx = x;
starty = y;
}
TERM_PUBLIC int
PC_text_angle(float ang)
{
pc_text_dir = ang;
return TRUE;
}
TERM_PUBLIC int
PC_justify_text(enum JUSTIFY just)
{
switch (just) {
case LEFT:
pc_hjustify = _LEFT;
pc_vjustify = _HALF;
break;
case CENTRE:
pc_hjustify = _CENTER;
pc_vjustify = _HALF;
break;
case RIGHT:
pc_hjustify = _RIGHT;
pc_vjustify = _HALF;
break;
}
_settextalign(pc_hjustify, pc_vjustify);
return 1;
}
TERM_PUBLIC void
PC_put_text(unsigned int x, unsigned int y, const char *str)
{
_settextang(pc_text_dir);
_settextalign(pc_hjustify, pc_vjustify);
_grtext(x, pc_lasty - y, (char *) str);
if (pc_boxing) {
struct xycoord extent[4];
int i;
_gettextextent(x, pc_lasty - y, (char *) str, NULL, extent);
// In contrast to the documentation, we find the sequence to be clockwise.
pc_boxed_extent[0].xcoord = GPMIN(pc_boxed_extent[0].xcoord, extent[0].xcoord);
pc_boxed_extent[1].xcoord = GPMAX(pc_boxed_extent[1].xcoord, extent[1].xcoord);
pc_boxed_extent[2].xcoord = GPMAX(pc_boxed_extent[2].xcoord, extent[2].xcoord);
pc_boxed_extent[3].xcoord = GPMIN(pc_boxed_extent[3].xcoord, extent[3].xcoord);
pc_boxed_extent[0].ycoord = GPMAX(pc_boxed_extent[0].ycoord, extent[0].ycoord);
pc_boxed_extent[1].ycoord = GPMAX(pc_boxed_extent[1].ycoord, extent[1].ycoord);
pc_boxed_extent[2].ycoord = GPMIN(pc_boxed_extent[2].ycoord, extent[2].ycoord);
pc_boxed_extent[3].ycoord = GPMIN(pc_boxed_extent[3].ycoord, extent[3].ycoord);
}
}
/* -------------------------------------------------------------------------
The "enhanced text" code below is a modified version of Ethan Merritt's
original skeleton.
------------------------------------------------------------------------- */
static TBOOLEAN pc_enhanced_opened_string;
static TBOOLEAN pc_enhanced_show = TRUE;
static int pc_enhanced_overprint = 0;
static TBOOLEAN pc_enhanced_widthflag = TRUE;
static int pc_enhanced_xsave, pc_enhanced_ysave;
static double pc_enhanced_base;
static int pc_x;
static int pc_y;
static TBOOLEAN pc_sizeonly;
static double pc_text_sin;
static double pc_text_cos;
TERM_PUBLIC void
PC_enhanced_open(
char *fontname,
double fontsize, double base,
TBOOLEAN widthflag, TBOOLEAN showflag,
int overprint)
{
char font[20];
/* There are two special cases:
* overprint = 3 means save current position
* overprint = 4 means restore saved position
*/
if (overprint == 3) {
pc_enhanced_xsave = pc_x;
pc_enhanced_ysave = pc_y;
return;
} else if (overprint == 4) {
pc_x = pc_enhanced_xsave;
pc_y = pc_enhanced_ysave;
return;
}
if (!pc_enhanced_opened_string) {
pc_enhanced_opened_string = TRUE;
/* Start new text fragment */
enhanced_cur_text = &enhanced_text[0];
/* Keep track of whether we are supposed to show this string */
pc_enhanced_show = showflag;
/* 0/1/2 no overprint / 1st pass / 2nd pass */
pc_enhanced_overprint = overprint;
/* widthflag FALSE means do not update text position after printing */
pc_enhanced_widthflag = widthflag;
/* Select font */
sprintf_s(font, sizeof(font), ",%.1f", fontsize);
PC_set_font(font);
/* Scale fractional font height to vertical units of display */
pc_enhanced_base = base * term->v_char / (PC_DEFAULT_FONTSIZE * pc_fontscale) / 1.2;
/* draw text left to right, align with baseline */
_settextalign(_LEFT, _BASE);
}
}
TERM_PUBLIC void
PC_enhanced_flush(void)
{
char *str = enhanced_text; /* The fragment to print */
int len;
int width = 0;
int height = 0;
struct xycoord concat;
struct xycoord extent[4];
if (!pc_enhanced_opened_string)
return;
*enhanced_cur_text = NUL;
/* calculate length of string first */
_settextang(0);
_gettextextent(pc_x, pc_lasty - pc_y, str, &concat, extent);
len = concat.xcoord - pc_x;
width = len * pc_text_cos;
height = len * pc_text_sin;
_settextang(pc_text_dir);
/* print the string fragment, perhaps invisibly */
/* NB: base expresses offset from current y pos */
if (pc_enhanced_show && !pc_sizeonly) {
int base_x = - pc_enhanced_base * pc_text_sin;
int base_y = pc_enhanced_base * pc_text_cos;
_grtext(pc_x + base_x, pc_lasty - (pc_y + base_y), (char *) str);
}
if (!pc_enhanced_widthflag) {
/* don't update position */
width = 0;
height = 0;
}
if (pc_sizeonly) {
/* This is the first pass for justified printing. */
/* We just adjust the starting position for the second pass. */
if (pc_hjustify == _RIGHT) {
pc_x -= width;
pc_y -= height;
} else if (pc_hjustify == _CENTER) {
pc_x -= width / 2;
pc_y -= height / 2;
}
/* nothing to do for LEFT justified text */
} else if (pc_enhanced_overprint == 1) {
/* Save current position */
pc_enhanced_xsave = pc_x + width;
pc_enhanced_ysave = pc_y + height;
/* First pass of overprint, leave position in center of fragment */
pc_x += width / 2;
pc_y += height / 2;
} else if (pc_enhanced_overprint == 2) {
/* Restore current position, */
/* this sets the position behind the overprinted text */
pc_x = pc_enhanced_xsave;
pc_y = pc_enhanced_ysave;
} else {
/* Normal case is to update position to end of fragment */
pc_x += width;
pc_y += height;
}
pc_enhanced_opened_string = FALSE;
}
TERM_PUBLIC void
PC_enhanced_put_text(unsigned int x, unsigned int y, const char *str)
{
const char * original_string = str;
unsigned int pass, num_passes;
int shift_x, shift_y;
/* If no enhanced text processing is needed, we can use the plain */
/* vanilla put_text() routine instead of this fancy recursive one. */
if (ignore_enhanced_text || !strpbrk(str, "{}^_@&~")) {
PC_put_text(x, y, str);
return;
}
/* Set up global variables needed by enhanced_recursion() */
enhanced_fontscale = 1.0;
pc_enhanced_opened_string = FALSE;
safe_strncpy(enhanced_escape_format, "%c", sizeof(enhanced_escape_format));
// save sin/cos of text angle
pc_text_sin = sin(DEG2RAD * pc_text_dir);
pc_text_cos = cos(DEG2RAD * pc_text_dir);
// determine base line shift
{
struct xycoord concat_center;
struct xycoord concat_base;
struct xycoord extent_center[4];
struct xycoord extent_base[4];
int shift;
_settextang(0);
_settextalign(_LEFT, _BASE);
_gettextextent(x, pc_lasty - y, "XX", &concat_base, extent_base);
_settextalign(_LEFT, _CENTER);
_gettextextent(x, pc_lasty - y, "XX", &concat_center, extent_center);
_settextang(pc_text_dir);
shift = (extent_base[3].ycoord - extent_center[3].ycoord) / 2;
shift_y = pc_text_cos * shift;
shift_x = -pc_text_sin * shift;
}
pc_x = x + shift_x;
pc_y = y + shift_y;
/* Text justification requires two passes. During the first pass we */
/* don't draw anything, we just measure the space it will take. */
/* Without justification one pass is enough */
if (pc_hjustify == _LEFT) {
num_passes = 1;
pc_sizeonly = FALSE;
} else {
num_passes = 2;
pc_sizeonly = TRUE;
}
for (pass = 1; pass <= num_passes; pass++) {
/* Set the recursion going. We say to keep going until a
* closing brace, but we don't really expect to find one.
* If the return value is not the nul-terminator of the
* string, that can only mean that we did find an unmatched
* closing brace in the string. We increment past it (else
* we get stuck in an infinite loop) and try again.
*/
while (*(str = enhanced_recursion(str, TRUE,
"", PC_DEFAULT_FONTSIZE,
0.0, TRUE, TRUE, 0))) {
PC_enhanced_flush();
/* I think we can only get here if *str == '}' */
enh_err_check(str);
if (!*++str)
break; /* end of string */
/* else carry on and process the rest of the string */
}
/* In order to do text justification we need to do a second pass
* that uses information stored during the first pass, see
* PC_enhanced_flush().
*/
if (pass == 1) {
/* do the actual printing in the next pass */
pc_sizeonly = FALSE;
str = original_string;
}
}
PC_set_font("");
}
TERM_PUBLIC int
PC_set_font(const char *font)
{
float size = PC_DEFAULT_FONTSIZE;
if (font != NULL && font[0] != 0) {
char * sep = strchr(font, ',');
if (sep != NULL) {
size = atof(sep + 1);
}
}
/* estimate font size in pixels */
{
float aspect = (float) (pc_lastx + 1) / (float) (pc_lasty + 1);
float d = 14; /* assumed monitor size in inches */
float height = sqrt(d * d / (aspect * aspect + 1));
float res = (pc_lasty + 1) / height;
float fheight = res * size / 72. * pc_fontscale;
float fwidth = fheight / pc_font_aspect;
_setcharsize(fheight, fwidth);
}
pc_fontsize = size;
return TRUE;
}
TERM_PUBLIC void
PC_pointsize(double size)
{
term_pointsize = pc_pointscale * (size >= 0 ? size : 1);
}
static GP_INLINE int
PC_color_dist(int r1, int g1, int b1, int r2, int g2, int b2)
{
// https://www.compuphase.com/cmetric.htm
int rm = (r1 + r2) / 2;
int dr = r1 - r2;
int dg = g1 - g2;
int db = b1 - b2;
// return (dr * dr) + (dg * dg) + (db * db);
return (((512 + rm) * dr * dr) >> 8) + (4 * dg * dg) + (((767 - rm) * db * db) >> 8);
}
static long
PC_set_rgb_color(int r, int g, int b)
{
int closest_n = 0;
int closest_d = INT_MAX;
int i, d;
/* look-up color match */
for (i = 16; i < pc_rgbcolors; i++) {
d = PC_color_dist(pc_rgbcolor[i].r, pc_rgbcolor[i].g, pc_rgbcolor[i].b, r, g, b);
if (d == 0)
break;
if (d < closest_d) {
closest_d = d;
closest_n = i;
}
}
/* not found, allocate new slot */
if (d != 0) {
if (pc_rgbcolors == 256) {
/* list full, choose closest match */
return closest_n;
}
i = pc_rgbcolors;
pc_rgbcolor[i].r = r;
pc_rgbcolor[i].g = g;
pc_rgbcolor[i].b = b;
pc_rgbcolors++;
/* limited RGB range */
r >>= 2;
g >>= 2;
b >>= 2;
_remappalette(i, r + (g << 8) + (b << 16));
}
return i;
}
TERM_PUBLIC void
PC_set_color(t_colorspec *colorspec)
{
int color;
switch (colorspec->type) {
case TC_LT: {
int linetype = colorspec->lt;
if (pc_colors < 14) {
if (linetype == LT_BACKGROUND)
_setcolor(0);
else
_setcolor(1);
break;
}
switch (linetype) {
case LT_BACKGROUND:
_setcolor(0);
break;
case LT_BLACK:
/* do we have a dark background? */
if ((pc_background_rgb.r + pc_background_rgb.g + pc_background_rgb.b) <= 0x7f) {
_setcolor(vga_color[0]);
} else {
if (pc_colors > 16) {
long color = PC_set_rgb_color(0, 0, 0);
_setcolor(color);
} else {
_setcolor(8);
}
}
break;
case LT_AXIS:
if ((pc_background_rgb.r + pc_background_rgb.g + pc_background_rgb.b) <= 0x7f)
_setcolor(vga_color[1]);
else
_setcolor(vga_color[0]);
break;
default:
// default case
if (linetype >= 13)
linetype %= 13;
if (linetype < -2)
linetype = LT_BLACK;
_setcolor(vga_color[linetype + 2]);
}
break;
}
case TC_RGB: {
unsigned int rgb = colorspec->lt;
/* color range is 0..63 */
int r = ((rgb >> 16) & 0xff);
int g = ((rgb >> 8) & 0xff);
int b = ( rgb & 0xff);
if (pc_colors > 256) {
_setcolor(((b >> 2) << 16) | ((g >> 2) << 8) | (r >> 2));
} else if (pc_colors > 14) {
color = PC_set_rgb_color(r, g, b);
_setcolor(color);
}
break;
}
case TC_FRAC: {
float gray = colorspec->value;
rgb255_color rgb255;
if (pc_colors == 256) {
if (pc_pal_colors != 0) {
_setcolor(gray * pc_pal_colors + pc_pal_ofs);
} else {
// RGB colors or palette full
rgb255maxcolors_from_gray(colorspec->value, &rgb255);
color = PC_set_rgb_color(rgb255.r, rgb255.g, rgb255.b);
_setcolor(color);
}
}
break;
}
default:
break;
}
}
TERM_PUBLIC int
PC_make_palette(t_sm_palette *palette)
{
int i;
if (pc_colors == 256) {
if (palette == NULL) {
int n = GPMIN(256 - pc_rgbcolors, pc_max_pal_size);
if (n == 0)
pc_pal_colors = 0; /* palette is empty */
return n;
}
// new palette starts at the end
pc_pal_ofs = pc_rgbcolors;
for (i = 0; i < palette->colors; i++) {
long color =
((long) (palette->color[i].r * 63) ) |
((long) (palette->color[i].g * 63) << 8) |
((long) (palette->color[i].b * 63) << 16);
// save data
pc_rgbcolor[pc_pal_ofs + i ].r = (palette->color[i].r * 255);
pc_rgbcolor[pc_pal_ofs + i ].g = (palette->color[i].g * 255);
pc_rgbcolor[pc_pal_ofs + i ].b = (palette->color[i].b * 255);
_remappalette(i + pc_pal_ofs, color);
}
pc_pal_colors = palette->colors;
pc_rgbcolors += pc_pal_colors;
return pc_pal_colors;
} else if (pc_colors > 256) {
return 0;
}
return 1;
}
TERM_PUBLIC void
PC_fillbox(int fillstyle, unsigned int x1, unsigned int y1, unsigned int width, unsigned int height)
{
/* fillpar:
* - solid : 0 - 100
* - pattern : 0 - 100
*/
int fillpar = fillstyle >> 4;
int style = fillstyle & 0xf;
int x2 = x1 + width - 1;
short y2 = y1 + height - 1;
switch (style) {
case FS_EMPTY: { /* fill with background color */
short color = _getcolor();
_setfillmask(NULL);
_setcolor(0);
_rectangle(_GFILLINTERIOR, x1, pc_lasty - y1, x2, pc_lasty - y2);
_setcolor(color);
return; /* we're done */
}
case FS_DEFAULT: /* solid fill */
_setfillmask(NULL);
break;
case FS_SOLID: /* shaded fill */
case FS_TRANSPARENT_SOLID:
_settransparency(style == FS_TRANSPARENT_SOLID ? 1 : 0);
if (fillpar == 100) {
_setfillmask(NULL);
} else {
int steps = 100 / (pc_shading_pattern_num - 1);
int i = (fillpar + steps / 2) / steps;
_setfillmask(pc_shading_pattern_bitmap[i]);
}
break;
case FS_PATTERN:
case FS_TRANSPARENT_PATTERN:
_settransparency(style == FS_TRANSPARENT_PATTERN ? 1 : 0);
fillpar %= pc_fill_pattern_num;
_setfillmask(pc_fill_pattern_bitmaps[fillpar]);
break;
default:
/* should never happen */
break;
}
_rectangle(_GFILLINTERIOR, x1, pc_lasty - y1, x2, pc_lasty - y2);
}
TERM_PUBLIC void
PC_filled_polygon(int npoints, gpiPoint *corners)
{
int fillpar = corners->style >> 4;
int style = corners->style & 0xf;
struct xycoord * points;
int i;
points = malloc(sizeof(struct xycoord) * npoints);
for (i = 0; i < npoints; i++) {
points[i].xcoord = corners[i].x;
points[i].ycoord = pc_lasty - corners[i].y;
}
switch (style) {
case FS_EMPTY: { /* fill with background color */
short color = _getcolor();
_setfillmask(NULL);
_setcolor(0);
_polygon(_GFILLINTERIOR, npoints, points);
free(points);
_setcolor(color);
return; /* we're done */
}
case FS_DEFAULT: /* solid fill */
_setfillmask(NULL);
break;
case FS_SOLID: /* shaded fill */
case FS_TRANSPARENT_SOLID:
_settransparency(style == FS_TRANSPARENT_SOLID ? 1 : 0);
if (fillpar == 100) {
_setfillmask(NULL);
} else {
int steps = 100 / (pc_shading_pattern_num - 1);
int i = (fillpar + steps / 2) / steps;
_setfillmask(pc_shading_pattern_bitmap[i]);
}
break;
case FS_PATTERN:
case FS_TRANSPARENT_PATTERN:
_settransparency(style == FS_TRANSPARENT_PATTERN ? 1 : 0);
fillpar %= pc_fill_pattern_num;
_setfillmask(pc_fill_pattern_bitmaps[fillpar]);
break;
default:
/* should never happen */
break;
}
_polygon(_GFILLINTERIOR, npoints, points);
free(points);
}
TERM_PUBLIC void
PC_boxed_text(unsigned int x, unsigned int y, int option)
{
switch (option) {
case TEXTBOX_INIT: {
pc_boxing = TRUE;
pc_boxed_extent[0].xcoord = pc_boxed_extent[3].xcoord = SHRT_MAX;
pc_boxed_extent[1].xcoord = pc_boxed_extent[2].xcoord = 0;
pc_boxed_extent[0].ycoord = pc_boxed_extent[1].ycoord = 0;
pc_boxed_extent[2].ycoord = pc_boxed_extent[3].ycoord = SHRT_MAX;
break;
}
case TEXTBOX_OUTLINE:
// TODO: apply text margins
_polygon(_GBORDER, 4, pc_boxed_extent);
break;
case TEXTBOX_BACKGROUNDFILL:
// TODO: apply text margins
_polygon(_GFILLINTERIOR, 4, pc_boxed_extent);
break;
case TEXTBOX_MARGINS:
/* Change the text margins */
break;
case TEXTBOX_FINISH:
pc_boxing = FALSE;
break;
default:
break;
}
}
TERM_PUBLIC void
PC_dashtype(int type, t_dashtype *custom_dash_pattern)
{
if (type >= 0) { /* predefined linetype */
type = type % 5;
_setlinestyle(pc_dash_pattern[type + 2]);
} else switch (type) {
case DASHTYPE_AXIS:
_setlinestyle(pc_dash_pattern[1]);
break;
case DASHTYPE_SOLID:
_setlinestyle(pc_dash_pattern[0]);
break;
case DASHTYPE_CUSTOM:
/* Unsupported */
break;
}
}
#endif /* TERM_BODY */
#ifdef TERM_TABLE
TERM_TABLE_START(dospc_driver)
"dospc", "IBM PC/Clone running DOS",
PC_XMAX, PC_YMAX, PC_VCHAR, PC_HCHAR,
PC_VTIC, PC_HTIC, PC_options, PC_init, PC_reset,
PC_text, null_scale, PC_graphics, PC_move, PC_vector,
PC_linetype, PC_enhanced_put_text, PC_text_angle,
PC_justify_text, do_point, do_arrow, PC_set_font,
PC_pointsize,
TERM_NO_OUTPUTFILE | TERM_CAN_MULTIPLOT | TERM_CAN_DASH | TERM_ENHANCED_TEXT |
TERM_LINEWIDTH | TERM_FONTSCALE | TERM_POINTSCALE,
PC_suspend, PC_resume,
PC_fillbox,
PC_linewidth, /* linewidth */
#ifdef USE_MOUSE
NULL, NULL, NULL, NULL, NULL,
#endif
PC_make_palette, NULL, /* palette */
PC_set_color,
PC_filled_polygon,
NULL, /* image */
PC_enhanced_open, PC_enhanced_flush, do_enh_writec,
NULL, NULL, /* layer , path */
0,
NULL,
PC_boxed_text,
NULL,
PC_dashtype
TERM_TABLE_END(dospc_driver)
#undef LAST_TERM
#define LAST_TERM dospc_driver
#endif /* TERM_TABLE */
#endif /* TERM_PROTO_ONLY */
#ifdef TERM_HELP
START_HELP(dospc)
"1 dospc",
"?commands set terminal dospc",
"?set terminal dospc",
"?set term dospc",
"?terminal dospc",
"?term dospc",
"?dospc",
" Note: legacy terminal.",
" The `dospc` interactive terminal supports PCs with arbitrary graphics boards,",
" which will be automatically detected. It uses the OpenWatcom graphics",
" library.",
"",
" Syntax:",
" set terminal dospc",
" {{no}{enhanced}}",
" {fontscale <scale>} {pointsize <scale>} {linewidth <scale}",
" {background <rgbcolor>}",
"",
" Line widths, and point and font sizes can be scaled using the `linewidth`,",
" `pointscale`, or `fontscale` options, respectively.",
"",
" `background` sets the background color (default: black). It is only supported",
" with adapters with 16 or more colors.",
"",
" {`no`}`enhanced` toggles enhanced text mode features like sub-",
" and superscripts, see `enhanced text` for more information.",
"",
" To select a particular (S)VGA graphics mode, set the environment",
" variable PCTRM to one of S640, S800, S1024, S1280, or S1600.",
" Only 256 color SVGA modes are supported at this time.",
" For other adapters the resolution will be selected automatically.",
"",
" Limitations:",
" This terminal supports a maximum of 256 colors. Transparency is not",
" available. Thick lines are approximated very crudely, so expect ugly",
" output for non-vertical or non-horizontal lines."
END_HELP(dospc)
#endif /* TERM_HELP */
|