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
|
/* Hello, Emacs, this is -*-C-*-
* $Id: kyo.trm,v 1.12 2006/07/21 02:35:47 sfeam Exp $
*
*/
/* Prescribe (KYOCERA) driver - Michael Waldor */
/*[
* 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.
]*/
/* Modified for gnuplot 2.0 sk@sun4 24-Apr-1990 13:23 */
/*
* adapted to the new terminal layout by Stefan Bodewig (Dec. 1995)
*/
#include "driver.h"
#ifdef TERM_REGISTER
register_term(prescribe)
register_term(kyo)
#endif
#ifdef TERM_PROTO
TERM_PUBLIC void PRE_init __PROTO((void));
TERM_PUBLIC void KYO_init __PROTO((void));
TERM_PUBLIC void PRE_graphics __PROTO((void));
TERM_PUBLIC void PRE_text __PROTO((void));
TERM_PUBLIC void PRE_linetype __PROTO((int linetype));
TERM_PUBLIC void PRE_move __PROTO((unsigned int x, unsigned int y));
TERM_PUBLIC void PRE_vector __PROTO((unsigned int x, unsigned int y));
TERM_PUBLIC void PRE_put_text __PROTO((unsigned int x, unsigned int y, const char *str));
TERM_PUBLIC int PRE_justify_text __PROTO((enum JUSTIFY mode));
TERM_PUBLIC void PRE_reset __PROTO((void));
#define PRE_XMAX 2567
#define PRE_YMAX 1815 /* X:Y = sqrt(2) */
#define PRE_VCHAR (PRE_YMAX/30)
#define PRE_HCHAR 33 /* about 9 chars per inch */
#define PRE_HTIC (PRE_XMAX/80)
#define PRE_VTIC PRE_HTIC
/* for Courier font: */
#define KYO_VCHAR (14*(300/72)) /* 12 pt + 2 pt baselineskip */
#define KYO_HCHAR (300/10) /* 10 chars per inch */
#endif /* TERM_PROTO */
#ifndef TERM_PROTO_ONLY
#ifdef TERM_BODY
#define PRE_XLAST (PRE_XMAX - 1)
#define PRE_YLAST (PRE_YMAX - 1)
enum JUSTIFY pre_justify = LEFT; /* text is flush left */
TERM_PUBLIC void
PRE_init()
{
fputs("!R! RES;\n", gpoutfile);
/* UNIT: units are dots, 300 dots = 1 in = 72 pt */
/* SPO: landscape format */
/* STM, SLM set top, left margin */
/* Font: bold Helvetica (proportional font) */
fputs("PAGE; UNIT D; SPO L; STM 280; SLM 440;\n", gpoutfile);
fputs("FTMD 15; FONT 29; SCPI 9;\n", gpoutfile);
}
TERM_PUBLIC void
KYO_init()
{
fputs("!R! RES;\n", gpoutfile);
/* UNIT: units are dots, 300 dots = 1 in = 72 pt */
/* SPO: landscape format */
/* STM, SLM set top, left margin */
/* Font: Courier (fixed width font) */
fputs("PAGE; UNIT D; SPO L; STM 280; SLM 440;\n", gpoutfile);
fputs("FTMD 15; FONT 17; SCPI 10;\n", gpoutfile);
}
TERM_PUBLIC void
PRE_graphics()
{
}
TERM_PUBLIC void
PRE_text()
{ /* eject page after each plot */
fputs("PAGE;\n", gpoutfile);
}
TERM_PUBLIC void
PRE_linetype(int linetype)
{
/* actually choose pendiameter */
if (linetype < 0)
linetype = -linetype;
else
linetype = 3;
(void) fprintf(gpoutfile, "SPD %d;\n", linetype);
}
TERM_PUBLIC void
PRE_move(unsigned int x, unsigned int y)
{
(void) fprintf(gpoutfile, "MAP %1d,%1d;\n", x, PRE_YMAX - y);
}
TERM_PUBLIC void
PRE_vector(unsigned int x, unsigned int y)
{
(void) fprintf(gpoutfile, "DAP %1d, %1d;\n", x, PRE_YMAX - y);
}
TERM_PUBLIC void
PRE_put_text(unsigned int x, unsigned int y, const char *str)
{
PRE_move(x, y);
switch (pre_justify) {
case RIGHT:
(void) fprintf(gpoutfile, "RTXT \"%s\", B;\n", str);
break;
default:
(void) fprintf(gpoutfile, "TEXT \"%s\", B;\n", str);
}
}
TERM_PUBLIC int
PRE_justify_text(enum JUSTIFY mode)
{
pre_justify = mode;
switch (pre_justify) {
case LEFT:
case RIGHT:
return (TRUE);
default:
return (FALSE);
}
}
TERM_PUBLIC void
PRE_reset()
{
fputs("PAGE; RES; EXIT;\n", gpoutfile);
}
#endif /* TERM_BODY */
#ifdef TERM_TABLE
TERM_TABLE_START(prescribe_driver)
"prescribe", "Prescribe - for the Kyocera Laser Printer",
PRE_XMAX, PRE_YMAX, PRE_VCHAR, PRE_HCHAR,
PRE_VTIC, PRE_HTIC, options_null, PRE_init, PRE_reset,
PRE_text, null_scale, PRE_graphics, PRE_move, PRE_vector,
PRE_linetype, PRE_put_text, null_text_angle,
PRE_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(prescribe_driver)
#undef LAST_TERM
#define LAST_TERM prescribe_driver
TERM_TABLE_START(kyo_driver)
"kyo", "Kyocera Laser Printer with Courier font",
PRE_XMAX, PRE_YMAX, KYO_VCHAR, KYO_HCHAR,
PRE_VTIC, PRE_HTIC, options_null, KYO_init, PRE_reset,
PRE_text, null_scale, PRE_graphics, PRE_move, PRE_vector,
PRE_linetype, PRE_put_text, null_text_angle,
PRE_justify_text, line_and_point, do_arrow, set_font_null
TERM_TABLE_END(kyo_driver)
#undef LAST_TERM
#define LAST_TERM kyo_driver
#endif /* TERM_TABLE */
#endif /* TERM_PROTO_ONLY */
#ifdef TERM_HELP
START_HELP(kyo)
"1 kyo",
"?commands set terminal kyo",
"?set terminal kyo",
"?set term kyo",
"?terminal kyo",
"?term kyo",
"?kyo",
"?commands set terminal prescribe",
"?set terminal prescribe",
"?set term prescribe",
"?terminal prescribe",
"?term prescribe",
"?prescribe",
" The `kyo` and `prescribe` terminal drivers support the Kyocera laser printer.",
" The only difference between the two is that `kyo` uses \"Helvetica\" whereas",
" `prescribe` uses \"Courier\". There are no options."
END_HELP(kyo)
#endif
|