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
|
/* -*- objc -*- */
/* GNUPLOT - aquaTerm.trm */
/*
* This file is included by ../term.c via ../term.h.
*
* This terminal driver supports:
* Aqua (Mac OS X/Cocoa)
*
* AUTHORS
* Per Persson from openstep.trm by Robert Lutwak
*
* Homepage: http://aquaterm.sourceforge.net
* send your comments or suggestions to (persquare@users.sourceforge.net).
*
* This terminal attempts to connect, via the Mac OS X Distributed
* Objects system, to the "aquatermServer." If there is no such
* service registered with the OS, the terminal attempts to fire
* up AquaTerm.app. If the user has not set the environment variable
* AQUATERM_PATH, the terminal searches for AquaTerm.app in standard
* locations like /Applications, ~/Applications, etc.
* In order to use this filter, you MUST have AquaTerm.app installed
* on your system.
*
* Once connected to the server, all gnuplot graphs are sent,
* via the D.O. system, to AquaTerm.app, which produces renders graphs,
* manages the windows, takes care of printing etc.
*
*/
#include "driver.h"
#ifdef TERM_REGISTER
register_term(aqua)
#endif
#ifdef TERM_PROTO
/* Required entries */
TERM_PUBLIC void AQUA_options(void);
TERM_PUBLIC void AQUA_init(void);
TERM_PUBLIC void AQUA_reset(void);
TERM_PUBLIC void AQUA_text(void);
TERM_PUBLIC void AQUA_graphics(void);
TERM_PUBLIC void AQUA_move(unsigned int x, unsigned int y);
TERM_PUBLIC void AQUA_vector(unsigned int x, unsigned int y);
TERM_PUBLIC void AQUA_linetype(int linetype);
TERM_PUBLIC void AQUA_dashtype(int type, t_dashtype *custom_dash_type);
TERM_PUBLIC void AQUA_put_text(unsigned int x, unsigned int y,const char *str);
/* Optional entries */
TERM_PUBLIC int AQUA_text_angle(float ang);
TERM_PUBLIC int AQUA_justify_text(enum JUSTIFY);
TERM_PUBLIC int AQUA_set_font(const char *font); /* "font,size" */
TERM_PUBLIC void AQUA_set_pointsize(double size); /* notification of set pointsize */
TERM_PUBLIC void AQUA_point(unsigned int, unsigned int, int);
TERM_PUBLIC int flags; /* various flags */
TERM_PUBLIC void AQUA_suspend(void); /* after one plot of multiplot */
TERM_PUBLIC void AQUA_resume(void); /* before subsequent plot of multiplot */
TERM_PUBLIC void AQUA_boxfill(int style, unsigned int x1, unsigned int y1, unsigned int width, unsigned int height); /* clear part of multiplot */
TERM_PUBLIC void AQUA_linewidth(double linewidth);
TERM_PUBLIC void AQUA_pointsize(double pointsize);
TERM_PUBLIC int AQUA_make_palette(t_sm_palette *palette);
TERM_PUBLIC void AQUA_previous_palette(void);
TERM_PUBLIC void AQUA_set_color(t_colorspec *);
TERM_PUBLIC void AQUA_filled_polygon(int points, gpiPoint *corners);
TERM_PUBLIC void AQUA_image(unsigned, unsigned, coordval *, gpiPoint *, t_imagecolor);
TERM_PUBLIC void ENHAQUA_put_text(unsigned int x, unsigned int y, const char str[]);
TERM_PUBLIC void ENHAQUA_open(char * fontname, double fontsize,
double base, TBOOLEAN widthflag, TBOOLEAN showflag,
int overprint);
TERM_PUBLIC void ENHAQUA_flush(void);
TERM_PUBLIC void ENHAQUA_writec(int c);
/* End of entries */
#define AQUA_RESOLUTION (20.0) /* Increase resolution */
#define AQUA_XMAX (11.75 * 72 * AQUA_RESOLUTION) /* = paper width (in) times screen resolution */
#define AQUA_YMAX (8.25 * 72 * AQUA_RESOLUTION) /* = paper height (in) times screen resolution */
#define AQUA_VTIC (8.0*AQUA_RESOLUTION)
#define AQUA_HTIC (8.0*AQUA_RESOLUTION)
#define AQUA_VCHAR (16.0*AQUA_RESOLUTION) /* default font is Times at 14 points */
#define AQUA_HCHAR (AQUA_VCHAR*6.0/10.0)
#define AQUA_DASH_PATTERNS 8
#define AQUA_DEFAULT_DASHLENGTH_FACTOR 0.5
#define SPECIAL_COLORS 4
#define CYCLIC_COLORS 9
#define GOT_AQUA_PROTO
#endif /* TERM_PROTO */
#ifndef TERM_PROTO_ONLY
#ifdef TERM_BODY
#import <AquaTerm/AQTAdapter.h>
#import <Foundation/NSAutoreleasePool.h>
#import <Foundation/NSArray.h>
#import <Foundation/NSDictionary.h>
#import <Foundation/NSAttributedString.h>
#import <stdarg.h>
/* Debugging extras */
static inline void NOOP_(id x, ...) {;}
#ifdef LOGGING
#define LOG NSLog
#else
#define LOG NOOP_
#endif /* LOGGING */
/* AquaTerm specific */
static NSAutoreleasePool *arpool;
static NSAutoreleasePool *loopPool;
static AQTAdapter *adapter;
/* Supported features */
static TBOOLEAN AQUA_hasAlphaSupport = FALSE;
/* Internal state */
static int AQUA_plotRef = 0; /* A ref to the current plot */
static char AQUA_title[MAX_LINE_LEN + 1] = "Figure 0"; /* Plot title (in windowbar) */
static unsigned int AQUA_xSize = AQUA_XMAX; /* plot horizontal size */
static unsigned int AQUA_ySize = AQUA_YMAX; /* plot vertical size*/
static int AQUA_LineType = LT_UNDEFINED; /* current line type*/
static float AQUA_LineWidth = 1.0; /* current line width*/
static float AQUA_TextAngle = 0.0; /* current text orientation*/
static enum JUSTIFY AQUA_TextJust = LEFT; /* current text justification*/
/* default text font family: */
static char AQUA_fontNameDef[MAX_ID_LEN + 1] = "Times-Roman";
static double AQUA_fontSizeDef = 14; /* default text size*/
/* current text font family: */
static char AQUA_fontNameCur[MAX_ID_LEN + 1] = "Times-Roman";
static double AQUA_fontSizeCur = 14; /* current text size*/
/* dash patterns */
static TBOOLEAN AQUA_dashedlines = FALSE;
static float AQUA_dashlength_factor = AQUA_DEFAULT_DASHLENGTH_FACTOR;
static int AQUA_dashPatternLengths[AQUA_DASH_PATTERNS] = {0, 2, 2, 2, 4, 4, 4, 6};
static int AQUA_dashPatterns[AQUA_DASH_PATTERNS][6] = {
{0, 0, 0, 0, 0, 0},
{8, 8, 0, 0, 0, 0},
{4, 6, 0, 0, 0, 0},
{2, 3, 0, 0, 0, 0},
{12, 4, 2, 4, 0, 0},
{6, 6, 2, 6, 0, 0},
{4, 4, 4, 12, 0, 0},
{1, 4, 12, 4, 1, 4}
};
/* Helper functions */
static NSString* AQUA_convert_using_encoding(const char *string);
static void get_font_name_and_size
(const char *s, char **name, double *size);
static void set_font_size(double size);
/*
* ----------------------------------------------------------------
* Aquaterm driver implementation
* ----------------------------------------------------------------
*
* Current options are:
* <n> title "theTitle" size <x> <y> fname "fontface" fsize <fontsize>
*/
TERM_PUBLIC void
AQUA_options()
{
char *s;
TBOOLEAN set_number = FALSE;
AQUA_title[0] = '\0'; /* Force re-interpretation of title string */
/* Default to enhanced text mode */
if (!almost_equals(c_token-1, "termopt$ion")) {
term->put_text = ENHAQUA_put_text;
term->flags |= TERM_ENHANCED_TEXT;
}
while (!END_OF_COMMAND) {
if (almost_equals(c_token, "ti$tle")) {
c_token++;
if (!(s = try_to_get_string()))
int_error(c_token,"fname: expecting plot title");
strncpy(AQUA_title,s,sizeof(AQUA_title));
free(s);
continue;
}
if (almost_equals(c_token, "s$ize")) {
double value;
c_token++;
if (END_OF_COMMAND)
int_error(c_token,"expecting x size");
value = real_expression();
if (value < 2 || value > 2048)
int_error(c_token,"x size out of range");
AQUA_xSize = (unsigned int) value * AQUA_RESOLUTION;
if (END_OF_COMMAND)
int_error(c_token,"expecting y size");
if (equals(c_token, ","))
c_token++;
value = real_expression();
if (value < 2 || value > 2048)
int_error(c_token,"y size out of range");
AQUA_ySize = (unsigned int) value * AQUA_RESOLUTION;
continue;
}
if (almost_equals(c_token, "fn$ame") || almost_equals(c_token, "font")) {
char *name;
double size;
c_token++;
if (!(s = try_to_get_string()))
int_error(c_token,"expecting font specifier");
get_font_name_and_size(s, &name, &size);
free(s);
if (name)
strncpy(AQUA_fontNameDef, name, sizeof(AQUA_fontNameDef));
strncpy(AQUA_fontNameCur, AQUA_fontNameDef, sizeof(AQUA_fontNameCur));
[adapter setFontname:AQUA_convert_using_encoding(AQUA_fontNameCur)];
if (size > 0)
AQUA_fontSizeDef = size;
AQUA_fontSizeCur = AQUA_fontSizeDef;
continue;
}
if (almost_equals(c_token, "fs$ize")) {
double size;
c_token++;
if (END_OF_COMMAND)
int_error(c_token,"expecting font size");
if ((size = real_expression()) > 0)
AQUA_fontSizeDef = size;
AQUA_fontSizeCur = AQUA_fontSizeDef;
continue;
}
if (equals(c_token, "solid")) {
c_token++;
AQUA_dashedlines = FALSE;
continue;
}
if (almost_equals(c_token, "dash$ed")) {
c_token++;
AQUA_dashedlines = TRUE;
continue;
}
if (equals(c_token, "lw") || almost_equals(c_token, "linew$idth")) {
c_token++;
if (END_OF_COMMAND)
int_error(c_token, "expecting line width");
AQUA_LineWidth = real_expression();
if (AQUA_LineWidth < 0.0)
AQUA_LineWidth = 1.0;
continue;
}
if (equals(c_token, "dl") || almost_equals(c_token, "dashl$ength")) {
c_token++;
if (END_OF_COMMAND)
int_error(c_token, "expecting dashlength multiplier");
AQUA_dashlength_factor = real_expression();
if (AQUA_dashlength_factor < 0.0)
AQUA_dashlength_factor = AQUA_DEFAULT_DASHLENGTH_FACTOR;
continue;
}
if (almost_equals(c_token, "enh$anced")) {
term->put_text = ENHAQUA_put_text;
c_token++;
term->flags |= TERM_ENHANCED_TEXT;
continue;
}
if (almost_equals(c_token, "noenh$anced")) {
term->put_text = AQUA_put_text;
c_token++;
term->flags &= ~TERM_ENHANCED_TEXT;
continue;
}
if (!set_number) { /* plot ref number*/
AQUA_plotRef = int_expression();
set_number = TRUE;
continue;
}
int_error(c_token, "unexpected text at end of command");
}
set_font_size(AQUA_fontSizeCur);
if (AQUA_title[0]=='\0') /* always set title */
sprintf(AQUA_title, "Figure %d", AQUA_plotRef);
/* Save options back into options string in normalized format */
sprintf(term_options, "%d title \"%s\" size %d,%d font \"%s,%g\" %s %s",
AQUA_plotRef,
AQUA_title,
(unsigned int) (AQUA_xSize/AQUA_RESOLUTION), (unsigned int) (AQUA_ySize/AQUA_RESOLUTION),
AQUA_fontNameCur, AQUA_fontSizeCur,
term->put_text == ENHAQUA_put_text?"enhanced":"noenhanced",
AQUA_dashedlines?"dashed":"solid");
if (AQUA_dashedlines)
sprintf(&(term_options[strlen(term_options)]), " dl %3.1f", AQUA_dashlength_factor);
if (AQUA_LineWidth != 1.0)
sprintf(&(term_options[strlen(term_options)]), " linewidth %3.1f", AQUA_LineWidth);
}
static NSString*
AQUA_convert_using_encoding(const char *string)
{
static bool didCheckEncodingSupport = false;
static bool hasStringEncodingSupport = false;
NSStringEncoding currentEncoding;
NSString *translatedString;
/* Check encoding support in system on first call */
if(!didCheckEncodingSupport) {
didCheckEncodingSupport = true;
hasStringEncodingSupport = [NSString respondsToSelector:@selector(stringWithCString:encoding:)];
}
/* Set encoding as requested by user via "set encoding" */
switch(encoding){
case S_ENC_ISO8859_1:
currentEncoding = NSISOLatin1StringEncoding;
break;
case S_ENC_ISO8859_2:
currentEncoding = NSISOLatin2StringEncoding;
break;
case S_ENC_ISO8859_9:
currentEncoding = NSWindowsCP1254StringEncoding;
break;
case S_ENC_CP1250:
currentEncoding = NSWindowsCP1250StringEncoding;
break;
case S_ENC_CP1252:
currentEncoding = NSWindowsCP1252StringEncoding;
break;
/* FIXME: Add more encodings... */
case S_ENC_DEFAULT: /* Fallthrough */
default :
/* UTF8 is 'default' */
currentEncoding = NSUTF8StringEncoding;
break;
}
/* Perform translation (into UTF8 encoding used by Mac OS X) */
if (hasStringEncodingSupport) {
translatedString = [NSString stringWithCString:string encoding:currentEncoding];
} else {
translatedString = [NSString stringWithCString:string];
}
/* Check for nil result before returning */
return translatedString?translatedString:@"";
}
/*
* get font name and size from string 'name,size'
* If name is missing, NULL is returned in *name.
* If size is missing, -1 is returned in *size.
*/
static void
get_font_name_and_size(const char *s, char **name, double *size)
{
static char buf[MAX_ID_LEN + 1];
char *comma;
*name = NULL;
*size = -1;
if (!s || !*s)
return;
strncpy(buf, s, sizeof(buf));
if ((comma = strchr(buf, ','))) {
*comma = '\0';
sscanf(comma+1, "%lf", size);
}
if (strlen(buf) > 0)
*name = buf;
}
/* set font size, and reset h_char, v_char */
static void
set_font_size(double size)
{
[adapter setFontsize:size];
term->h_char = (int) (size * 0.6 * AQUA_RESOLUTION);
term->v_char = (int) (size * 1.5 * AQUA_RESOLUTION);
}
TERM_PUBLIC void
AQUA_init()
{
float fontSize, fontWHRatio;
NSString *title;
LOG(@"Aqua Init (open plot)");
if (arpool == NULL) {
/* FIXME: This should be removed when pools are handled in gnuplot proper */
arpool = [[NSAutoreleasePool alloc] init];
}
if (adapter == NULL) {
adapter = [[AQTAdapter alloc] init];
if (!adapter) { /* server could be invalid (=nil) for several reasons */
/* FIXME: Issue warning here? */
}
}
/* Must open plot before all other commands */
[adapter openPlotWithIndex:AQUA_plotRef];
/* Check for support of version-dependent features */
AQUA_hasAlphaSupport = [AQTAdapter instancesRespondToSelector:@selector(setColorRed:green:blue:alpha:)];
/* set xmax, ymax*/
term->xmax = AQUA_xSize;
term->ymax = AQUA_ySize;
/* set current font*/
[adapter setFontname:AQUA_convert_using_encoding(AQUA_fontNameCur)];
set_font_size(AQUA_fontSizeCur); /* this also sets v_char and h_char */
/* set h_tic, v_tic*/
term->h_tic = term->v_char / 3;
term->v_tic = term->v_char / 3;
[adapter setPlotSize:NSMakeSize(AQUA_xSize/AQUA_RESOLUTION, AQUA_ySize/AQUA_RESOLUTION)];
[adapter setPlotTitle:AQUA_convert_using_encoding(AQUA_title)];
/*
* Set up the basic indexed colormap for gnuplot
*/
/* Special colors */
[adapter setColormapEntry:0 red:1.0 green:1.0 blue:1.0]; /* linetype -4 */
[adapter setColormapEntry:1 red:0.9 green:0.9 blue:0.9]; /* linetype -3 (xor;interactive) light gray */
[adapter setColormapEntry:2 red:0.0 green:0.0 blue:0.0]; /* linetype -2 (border) black */
[adapter setColormapEntry:3 red:0.8 green:0.8 blue:0.8]; /* linetype -1 (gridlines) light grey */
/* Cyclic colors */
[adapter setColormapEntry:4 red:1.0 green:0.0 blue:0.0]; /* red */
[adapter setColormapEntry:5 red:0.0 green:1.0 blue:0.0]; /* green */
[adapter setColormapEntry:6 red:0.0 green:0.0 blue:1.0]; /* blue */
[adapter setColormapEntry:7 red:1.0 green:0.0 blue:1.0]; /* magenta */
[adapter setColormapEntry:8 red:0.0 green:1.0 blue:1.0]; /* cyan */
[adapter setColormapEntry:9 red:0.6275 green:0.3216 blue:0.1765]; /* sienna */
[adapter setColormapEntry:10 red:1.0 green:0.6471 blue:0.0]; /* orange */
[adapter setColormapEntry:11 red:0.5 green:0.4980 blue:0.3137]; /* coral */
[adapter setColormapEntry:12 red:0.25 green:0.25 blue:0.25]; /* grey */
}
TERM_PUBLIC void
AQUA_reset()
{
LOG(@"Aqua reset");
}
TERM_PUBLIC void
AQUA_text()
{
LOG(@"Aqua text (render)");
[adapter renderPlot];
}
TERM_PUBLIC void
AQUA_graphics()
{
#ifdef LOGGING
/* Keep the compiler quiet when not debugging */
LOG(@"Pre: (arpool + loopPool, loopPool) =(%d, %d)", [NSAutoreleasePool autoreleasedObjectCount],
[NSAutoreleasePool topAutoreleasePoolCount]);
#endif
/* Avoid buildup of objects in the autoreleasepools */
[loopPool release];
loopPool = [[NSAutoreleasePool alloc] init];
#ifdef LOGGING
/* Keep the compiler quiet when not debugging */
LOG(@"Post: (arpool + loopPool, loopPool) =(%d, %d)",[NSAutoreleasePool autoreleasedObjectCount],
[NSAutoreleasePool topAutoreleasePoolCount]);
#endif
[adapter eraseRect:NSMakeRect(0.0, 0.0, AQUA_xSize/AQUA_RESOLUTION, AQUA_ySize/AQUA_RESOLUTION)];
AQUA_LineType = LT_UNDEFINED;
}
TERM_PUBLIC void
AQUA_move(unsigned int x, unsigned int y)
{
[adapter moveToPoint:NSMakePoint(x/AQUA_RESOLUTION, y/AQUA_RESOLUTION)];
}
TERM_PUBLIC void
AQUA_vector(unsigned int x, unsigned int y)
{
[adapter addLineToPoint:NSMakePoint(x/AQUA_RESOLUTION, y/AQUA_RESOLUTION)];
}
TERM_PUBLIC void
AQUA_linetype(int linetype)
{
float dash[8];
int i, style;
LOG(@"AQUA_linetype(%d) ---> entry: %d", linetype, (linetype%CYCLIC_COLORS)+SPECIAL_COLORS);
if (linetype != AQUA_LineType) {
/* Note: this operation maps linestyle -4 to -1 onto colormap entries 0 to 3 */
AQUA_LineType = linetype;
[adapter takeColorFromColormapEntry:(linetype%CYCLIC_COLORS)+SPECIAL_COLORS];
}
if (AQUA_dashedlines) {
style = linetype%AQUA_DASH_PATTERNS;
if (style <= 0) {
[adapter setLinestyleSolid];
} else {
// Set up a dash array
for(i = 0; i<AQUA_dashPatternLengths[style]; i++) {
dash[i] = AQUA_dashPatterns[style][i] * AQUA_dashlength_factor;
}
[adapter setLinestylePattern:dash count:AQUA_dashPatternLengths[style] phase:0.0];
}
}
}
TERM_PUBLIC void
AQUA_dashtype(int type, t_dashtype *custom_dash_type)
{
float dash[DASHPATTERN_LENGTH];
int i;
LOG(@"AQUA_dashtype(%d)", type);
if(!AQUA_dashedlines) {
return;
}
switch(type) {
case DASHTYPE_SOLID:
[adapter setLinestyleSolid];
break;
case DASHTYPE_AXIS:
break;
case DASHTYPE_CUSTOM:
if (custom_dash_type) {
for(i = 0; i < DASHPATTERN_LENGTH && custom_dash_type->pattern[i] > 0; i++) {
dash[i] = custom_dash_type->pattern[i] * AQUA_dashlength_factor;
}
[adapter setLinestylePattern:dash count:i phase:0.0];
}
break;
default:
if(type > 0) {
type %= AQUA_DASH_PATTERNS;
for(i = 0; i<AQUA_dashPatternLengths[type]; i++) {
dash[i] = AQUA_dashPatterns[type][i] * AQUA_dashlength_factor;
}
[adapter setLinestylePattern:dash count:AQUA_dashPatternLengths[type] phase:0.0];
}
else {
[adapter setLinestyleSolid];
}
}
}
TERM_PUBLIC void
AQUA_put_text(unsigned int x, unsigned int y, const char *str)
{
if (!strlen(str))
return;
[adapter addLabel:AQUA_convert_using_encoding(str)
atPoint:NSMakePoint(x/AQUA_RESOLUTION, y/AQUA_RESOLUTION)
angle:AQUA_TextAngle
align:(AQUA_TextJust | AQTAlignMiddle)];
}
TERM_PUBLIC int
AQUA_justify_text (enum JUSTIFY mode)
{
AQUA_TextJust = mode;
return (TRUE);
}
TERM_PUBLIC int
AQUA_text_angle (float angle)
{
AQUA_TextAngle = angle;
return (TRUE);
}
TERM_PUBLIC int
AQUA_set_font(const char *font) /* "font,size" */
{
char *name;
double size;
get_font_name_and_size(font, &name, &size);
if (name)
strncpy(AQUA_fontNameCur, name, sizeof(AQUA_fontNameCur));
else
strncpy(AQUA_fontNameCur, AQUA_fontNameDef, sizeof(AQUA_fontNameCur));
if (size > 0)
AQUA_fontSizeCur = size;
else
AQUA_fontSizeCur = AQUA_fontSizeDef;
NSString *fontFace = AQUA_convert_using_encoding(AQUA_fontNameCur);
LOG(@"Setting:(%@,%f)", fontFace, (float)AQUA_fontSizeCur);
[adapter setFontname:fontFace];
set_font_size(AQUA_fontSizeCur);
return (TRUE);
}
TERM_PUBLIC void
AQUA_set_pointsize(double size) /* notification of set pointsize */
{
LOG(@"AQUA_set_pointsize(%f)", size);
}
TERM_PUBLIC void
AQUA_point(unsigned int x, unsigned int y, int number)
{
/* The default dot-routine doesn't work with AQT */
[adapter setLinestyleSolid]; /* Symbols should never be dashed */
[adapter setLinewidth:1.0];
[adapter setLineCapStyle:AQTRoundLineCapStyle]; /* Set line cap style to round to create a dot */
[adapter moveToPoint:NSMakePoint(x/AQUA_RESOLUTION-0.005, y/AQUA_RESOLUTION)];
[adapter addLineToPoint:NSMakePoint(x/AQUA_RESOLUTION+0.005, y/AQUA_RESOLUTION)];
[adapter moveToPoint:NSMakePoint(0,0)]; /* Force a path end to work around a bug in AquaTerm 1.0.0 */
/* Round caps results in nicer symbols too */
if (number>=0) {
do_point(x, y, number);
}
[adapter moveToPoint:NSMakePoint(0,0)]; /* Force a path end to work around a bug in AquaTerm 1.0.0 */
[adapter setLineCapStyle:AQTButtLineCapStyle]; /* Reset line capstyle */
}
/* after one plot of multiplot */
TERM_PUBLIC void
AQUA_suspend()
{
[adapter renderPlot];
}
/* before subsequent plot of multiplot */
TERM_PUBLIC void
AQUA_resume()
{
}
/* clear part of multiplot */
TERM_PUBLIC void
AQUA_boxfill(int style, unsigned int x1, unsigned int y1, unsigned int width, unsigned int height)
{
float r,g,b,a;
LOG(@"\nstyle=%d\nstyle & 0xf = %d\nfillpar=%d\n", style, style & 0xf, style >> 4);
/* Save current color */
if (AQUA_hasAlphaSupport)
[adapter getColorRed:&r green:&g blue:&b alpha:&a];
else
[adapter getColorRed:&r green:&g blue:&b];
/* fillpar:
* - solid : 0 - 100
* - pattern : 0 - 100
*/
int fillpar = style >> 4;
style &= 0xf;
switch (style) {
case 0: /* fill with background color */
{
float rb, gb, bb;
[adapter getBackgroundColorRed:&rb green:&gb blue:&bb];
[adapter setColorRed:rb green:gb blue:bb];
}
break;
case FS_TRANSPARENT_SOLID:
if (AQUA_hasAlphaSupport) {
float alpha = fillpar * 0.01;
[adapter setColorRed:r green:g blue:b alpha:alpha];
break;
} else
/* fall through */
case FS_SOLID: /* solid fill */
if (fillpar < 100) {
float density = (100 - fillpar)*0.01;
[adapter setColorRed:r*(1-density) + density
green:g*(1-density) + density
blue:b*(1-density) + density];
}
break;
case FS_PATTERN: /* pattern fill */
case FS_TRANSPARENT_PATTERN:
/* Can't do pattern easily, using colors. */
[adapter takeColorFromColormapEntry:(fillpar%CYCLIC_COLORS)+SPECIAL_COLORS];
break;
default:
break;
}
NSRect scaledRect = NSMakeRect(x1/AQUA_RESOLUTION, y1/AQUA_RESOLUTION, width/AQUA_RESOLUTION, height/AQUA_RESOLUTION);
/* FIXME: Aquaterm eraseRect scales very badly with the total number of rectangles.
* It is probably fixable, but is the erase operation necessary at all?
*/
[adapter eraseRect:scaledRect];
[adapter addFilledRect:scaledRect];
/* Restore color */
if (AQUA_hasAlphaSupport)
[adapter setColorRed:r green:g blue:b alpha:a];
else
[adapter setColorRed:r green:g blue:b];
}
TERM_PUBLIC void
AQUA_linewidth(double linewidth)
{
linewidth *= AQUA_LineWidth;
[adapter setLinewidth:linewidth];
}
TERM_PUBLIC void
AQUA_pointsize(double pointsize)
{
LOG(@"AQUA_pointsize(%f)", pointsize);
term_pointsize = pointsize;
}
TERM_PUBLIC int
AQUA_make_palette(t_sm_palette *palette)
{
if (palette == NULL) {
/* AquaTerm can do continuous colors */
return 0;
}
return 0;
}
TERM_PUBLIC void
AQUA_set_color(t_colorspec *colorspec)
{
rgb_color color;
double alpha;
switch (colorspec->type) {
case TC_FRAC:
rgb1maxcolors_from_gray(colorspec->value, &color);
[adapter setColorRed:color.r green:color.g blue:color.b];
break;
case TC_RGB:
color.r = (double)((colorspec->lt >> 16) & 255) / 255.;
color.g = (double)((colorspec->lt >> 8 ) & 255) / 255.;
color.b = (double)(colorspec->lt & 255) / 255.;
alpha = (double)((colorspec->lt >> 24) & 255) / 255.;
if (AQUA_hasAlphaSupport && (alpha > 0)) {
alpha = 1.0 - alpha;
[adapter setColorRed:color.r green:color.g blue:color.b alpha:alpha];
} else {
[adapter setColorRed:color.r green:color.g blue:color.b];
}
break;
case TC_LT:
[adapter takeColorFromColormapEntry:((colorspec->lt)%CYCLIC_COLORS)+SPECIAL_COLORS];
break;
default:
break;
}
AQUA_LineType = LT_UNDEFINED;
}
TERM_PUBLIC void
AQUA_filled_polygon(int pc, gpiPoint *corners)
{
int i;
int fillpar = corners->style >> 4;
float r,g,b,a;
/* Save current color */
if (AQUA_hasAlphaSupport)
[adapter getColorRed:&r green:&g blue:&b alpha:&a];
else
[adapter getColorRed:&r green:&g blue:&b];
/* This switch is a clone of the one in AQUA_boxfill() */
switch (corners->style & 0xf) {
case 0: /* fill with background color */
{
float rb, gb, bb;
[adapter getBackgroundColorRed:&rb green:&gb blue:&bb];
[adapter setColorRed:rb green:gb blue:bb];
}
break;
case FS_TRANSPARENT_SOLID:
if (AQUA_hasAlphaSupport) {
float alpha = fillpar * 0.01;
[adapter setColorRed:r green:g blue:b alpha:alpha];
break;
} else
/* fall through */
case FS_SOLID: /* solid fill */
if (fillpar < 100) {
float density = (100 - fillpar)*0.01;
[adapter setColorRed:r*(1-density) + density
green:g*(1-density) + density
blue:b*(1-density) + density];
}
break;
case FS_PATTERN: /* pattern fill */
case FS_TRANSPARENT_PATTERN:
/* Can't do pattern easily, using colors. */
[adapter takeColorFromColormapEntry:(fillpar%CYCLIC_COLORS)+SPECIAL_COLORS];
break;
default:
break;
}
[adapter moveToVertexPoint:NSMakePoint(corners[0].x/AQUA_RESOLUTION,
corners[0].y/AQUA_RESOLUTION)];
for (i=1; i<pc; i++) {
[adapter addEdgeToVertexPoint:NSMakePoint(corners[i].x/AQUA_RESOLUTION,
corners[i].y/AQUA_RESOLUTION)];
}
/* Restore color */
if (AQUA_hasAlphaSupport)
[adapter setColorRed:r green:g blue:b alpha:a];
else
[adapter setColorRed:r green:g blue:b];
}
TERM_PUBLIC void
AQUA_previous_palette()
{
}
TERM_PUBLIC void
AQUA_image (unsigned int M, unsigned int N, coordval *image, gpiPoint *corner, t_imagecolor color_mode)
{
float width = (corner[1].x - corner[0].x)/AQUA_RESOLUTION;
float height = (corner[0].y - corner[1].y)/AQUA_RESOLUTION;
float xPos = corner[0].x/AQUA_RESOLUTION;
float yPos = corner[1].y/AQUA_RESOLUTION;
int bitmapSize = M*N;
int targetSize = 3 * bitmapSize;
int srcSize;
unsigned char *bitmap;
int i;
bitmap = malloc(targetSize*sizeof(unsigned char));
if (bitmap != nil) {
if (color_mode == IC_RGB) {
srcSize = targetSize;
for (i=0;i<srcSize;i++) {
bitmap[i] = (unsigned char)(255*image[i]);
}
} else if (color_mode == IC_PALETTE) {
rgb_color color;
unsigned char *bitmapPtr = bitmap;
srcSize = bitmapSize;
for (i=0;i<srcSize;i++) {
rgb1maxcolors_from_gray(image[i], &color);
*bitmapPtr = (unsigned char)(255*color.r);
bitmapPtr++;
*bitmapPtr = (unsigned char)(255*color.g);
bitmapPtr++;
*bitmapPtr = (unsigned char)(255*color.b);
bitmapPtr++;
}
} else {
NSLog(@"Unknown bitmap format");
}
[adapter addImageWithBitmap:bitmap
size:NSMakeSize(M, N)
bounds:NSMakeRect(xPos, yPos, width, height)];
free(bitmap);
}
return;
}
/*
* Per Persson 20041019
* Support for enhanced text mode
*
* Known issues:
* - Overprinting not implemented
* - The sub/superscript level is determined from relative fontsize,
* it may break if fontsize is changed for individual characters.
*/
static NSMutableAttributedString *enhString;
static NSMutableDictionary *attributes;
TERM_PUBLIC void
ENHAQUA_put_text(unsigned int x, unsigned int y, const char str[])
{
if (!strlen(str))
return;
if (ignore_enhanced_text || (!strpbrk(str, "{}^_@&~") && !contains_unicode(str))) {
AQUA_put_text(x,y,str);
return;
}
/* set up the global variables needed by enhanced_recursion() */
enhanced_fontscale = 1;
strncpy(enhanced_escape_format,"\\%o",sizeof(enhanced_escape_format));
/* Clear the attributed string */
[enhString release];
enhString = [[NSMutableAttributedString alloc] init];
[enhString setAttributedString:[[NSAttributedString alloc] initWithString:@""]];
while (*(str = enhanced_recursion((char *)str, TRUE, AQUA_fontNameCur,
(double)(AQUA_fontSizeCur), 0.0, TRUE, TRUE, 0))) {
/* 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 */
}
/* Now, send the attributed string to the adapter */
[adapter addLabel:enhString
atPoint:NSMakePoint(x/AQUA_RESOLUTION, y/AQUA_RESOLUTION)
angle:AQUA_TextAngle
align:(AQUA_TextJust | AQTAlignMiddle)];
}
TERM_PUBLIC void
ENHAQUA_open(char * fontname, double fontsize,
double base, TBOOLEAN widthflag, TBOOLEAN showflag,
int overprint)
{
LOG(@"%s %.1f %.1f %s %s %d", fontname, fontsize, base,
widthflag ? "true" : "false",
showflag ? "true" : "false",
overprint);
if (overprint != 0)
return;
[attributes release];
attributes = [[NSMutableDictionary alloc] initWithCapacity:16];
[attributes setObject:AQUA_convert_using_encoding(fontname) forKey:@"AQTFontname"];
if (fabs(base)>0.01) {
/* consider this as super/subscript, and compute subscript level */
int n = (int)round(log(fontsize/AQUA_fontSizeCur)/log(0.8));
[attributes setObject:[NSNumber numberWithInt:(base > 0)?n:-n]
forKey:@"NSSuperScript"];
} else if (fabs(fontsize - AQUA_fontSizeCur)>0.01) {
/* Fontsize was set explicitly */
[attributes setObject:[NSNumber numberWithFloat:fontsize] forKey:@"AQTFontsize"];
}
if (!showflag)
[attributes setObject:[NSNumber numberWithInt:1]
forKey:@"AQTNonPrintingChar"];
}
/* Local buffer used in encoding conversion */
#define ENHAQUA_CSTRBUFLEN 1023
static char cStrBuf[ENHAQUA_CSTRBUFLEN + 1];
static unsigned int cStrBufIndex = 0;
TERM_PUBLIC void
ENHAQUA_flush(void)
{
/* Convert cStrBuf UTF8 according to encoding, use convert_using_encoding()
and apply attributes before adding to enhString
*/
NSAttributedString *aStr;
cStrBuf[cStrBufIndex] = '\0';
cStrBufIndex = 0;
aStr = [[NSAttributedString alloc] initWithString:AQUA_convert_using_encoding(cStrBuf) attributes:attributes];
[enhString appendAttributedString:aStr];
[aStr release];
}
TERM_PUBLIC void
ENHAQUA_writec(int c)
{
/* Buffer byte sequence into cStrBuf */
LOG(@"int c = 0x%04x", c);
cStrBuf[cStrBufIndex] = (char)(c+0x100) & 0xFF; /* FIXME: Sometimes c is overflowed */
if (cStrBufIndex < ENHAQUA_CSTRBUFLEN)
cStrBufIndex++;
}
#endif /* TERM_BODY */
#ifdef TERM_TABLE
TERM_TABLE_START(aqua_driver)
"aqua",
"Interface to graphics terminal server for MacOS",
0 /* xmax */ , 0 /* ymax */ , 0 /* vchar */ , 0 /* hchar */ ,
0 /* vtic */ , 0 /* htic */ ,
AQUA_options, AQUA_init, AQUA_reset,
AQUA_text, null_scale, AQUA_graphics, AQUA_move, AQUA_vector,
AQUA_linetype, AQUA_put_text,
/* optionals */
AQUA_text_angle,
AQUA_justify_text, AQUA_point, do_arrow, AQUA_set_font,
AQUA_pointsize,
TERM_CAN_MULTIPLOT|TERM_NO_OUTPUTFILE|TERM_CAN_DASH|TERM_POLYGON_PIXELS|TERM_LINEWIDTH,
AQUA_suspend, AQUA_resume,
AQUA_boxfill, AQUA_linewidth
#ifdef USE_MOUSE
, 0, 0, 0, 0, 0
#endif /* USE_MOUSE */
, AQUA_make_palette,
AQUA_previous_palette,
AQUA_set_color,
AQUA_filled_polygon,
AQUA_image,
ENHAQUA_open, ENHAQUA_flush, ENHAQUA_writec,
0 /* layer */ , 0 /* path */ , 0.0 /* tscale */ , 0 /* hypertext */,
0 /* boxed_text */ , 0 /* modify_plots */,
AQUA_dashtype
TERM_TABLE_END(aqua_driver)
#undef LAST_TERM
#define LAST_TERM aqua_driver
#endif /* TERM_TABLE */
#endif /* TERM_PROTO_ONLY */
#ifdef TERM_HELP
START_HELP(aqua)
"1 aqua",
"?commands set terminal aqua",
"?set terminal aqua",
"?set term aqua",
"?terminal aqua",
"?term aqua",
"?aqua",
" This terminal relies on AquaTerm.app for display on MacOS.",
"",
" Syntax:",
" set terminal aqua {<n>} {title \"<wintitle>\"} {size <x> <y>}",
" {font \"<fontname>{,<fontsize>}\"}",
" {linewidth <lw>}\"}",
" {{no}enhanced} {solid|dashed} {dl <dashlength>}}",
"",
" where <n> is the number of the window to draw in (default is 0),",
" <wintitle> is the name shown in the title bar (default \"Figure <n>\"),",
" <x> <y> is the size of the plot (default is 846x594 pt = 11.75x8.25 in).",
"",
" Use <fontname> to specify the font (default is \"Times-Roman\"),",
" and <fontsize> to specify the font size (default is 14.0 pt).",
"",
" The aqua terminal supports enhanced text mode (see `enhanced`), except for",
" overprint. Font support is limited to the fonts available on the system.",
" Character encoding can be selected by `set encoding` and currently supports",
" iso_latin_1, iso_latin_2, cp1250, and UTF8 (default).",
"",
" Lines can be drawn either solid or dashed, (default is solid) and the dash",
" spacing can be modified by <dashlength> which is a multiplier > 0.",
""
END_HELP(aqua)
#endif /* TERM_HELP */
|