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
|
/* $Id: hpgl.c,v 1.5 2009/07/10 13:02:25 ajb Exp $
*
* File: hpgl.c
*
* Descript: hp7470, hp7580, and lj_hpgl drivers
*
* Library: ---
*
* Requires: ---
*
* Public: plD_init_hp7470()
* plD_init_hp7580()
* plD_init_lj_hpgl()
* plD_line_hpgl()
* plD_polyline_hpgl()
* plD_eop_hpgl()
* plD_bop_hpgl()
* plD_tidy_hpgl()
* plD_state_hpgl()
* plD_esc_hpgl()
*
* pldummy_hpgl()
*
* Private: initialize_hpgl_pls()
*
* Notes: ---
*
\*--------------------------------------------------------------------------*/
#include "plDevs.h"
#if defined(PLD_hp7470) || defined(PLD_hp7580) || defined(PLD_lj_hpgl)
#include "plplotP.h"
#include <stdio.h>
#include <string.h>
#include "drivers.h"
/* Device info */
const char* plD_DEVICE_INFO_hpgl =
#if defined(PLD_hp7470)
"hp7470:HP 7470 Plotter File (HPGL Cartridge, Small Plotter):0:hpgl:34:hp7470\n"
#endif
#if defined(PLD_hp7580)
"hp7580:HP 7580 Plotter File (Large Plotter):0:hpgl:35:hp7580\n"
#endif
#if defined(PLD_lj_hpgl)
"lj_hpgl:HP Laserjet III, HPGL emulation mode:0:hpgl:36:lj_hpgl"
#endif
;
void plD_line_hpgl (PLStream *, short, short, short, short);
void plD_polyline_hpgl (PLStream *, short *, short *, PLINT);
void plD_eop_hpgl (PLStream *);
void plD_bop_hpgl (PLStream *);
void plD_tidy_hpgl (PLStream *);
void plD_state_hpgl (PLStream *, PLINT);
void plD_esc_hpgl (PLStream *, PLINT, void *);
/* top level declarations */
/* Plotter sizes */
#define HP7470_XMIN 0
#define HP7470_XMAX 10299
#define HP7470_YMIN 0
#define HP7470_YMAX 7649
#define HP7580_XMIN -4500
#define HP7580_XMAX 4500
#define HP7580_YMIN -2790
#define HP7580_YMAX 2790
#define LJIII_XMIN 0
#define LJIII_XMAX 11000
#define LJIII_YMIN 500
#define LJIII_YMAX 7700
#define OF pls->OutFile
#define MIN_WIDTH 1 /* Minimum pen width */
#define MAX_WIDTH 10 /* Maximum pen width */
#define DEF_WIDTH 1 /* Default pen width */
static void hpgl_dispatch_init_helper( PLDispatchTable *pdt,
const char *menustr, const char *devnam,
int type, int seq, plD_init_fp init )
{
#ifndef ENABLE_DYNDRIVERS
pdt->pl_MenuStr = menustr;
pdt->pl_DevName = devnam;
#endif
pdt->pl_type = type;
pdt->pl_seq = seq;
pdt->pl_init = init;
pdt->pl_line = (plD_line_fp) plD_line_hpgl;
pdt->pl_polyline = (plD_polyline_fp) plD_polyline_hpgl;
pdt->pl_eop = (plD_eop_fp) plD_eop_hpgl;
pdt->pl_bop = (plD_bop_fp) plD_bop_hpgl;
pdt->pl_tidy = (plD_tidy_fp) plD_tidy_hpgl;
pdt->pl_state = (plD_state_fp) plD_state_hpgl;
pdt->pl_esc = (plD_esc_fp) plD_esc_hpgl;
}
/*--------------------------------------------------------------------------*\
* initialize_hpgl_pls()
*
* Initialize plot stream
\*--------------------------------------------------------------------------*/
static void
initialize_hpgl_pls(PLStream *pls)
{
PLDev *dev = (PLDev *) pls->dev;
if (pls->width == 0) /* Is 0 if uninitialized */
pls->width = 1;
plFamInit(pls); /* Initialize family file info */
plOpenFile(pls); /* get file name if not already set */
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
dev->xlen = dev->xmax - dev->xmin;
dev->ylen = dev->ymax - dev->ymin;
plP_setpxl((PLFLT) 40., (PLFLT) 40.);
plP_setphy(dev->xmin, dev->xmax, dev->ymin, dev->ymax);
}
/*--------------------------------------------------------------------------*\
* plD_init_hp7470()
*
* Initialize device.
\*--------------------------------------------------------------------------*/
#ifdef PLD_hp7470
void plD_init_hp7470 (PLStream *);
void plD_dispatch_init_hp7470( PLDispatchTable *pdt )
{
hpgl_dispatch_init_helper( pdt,
"HP 7470 Plotter File (HPGL Cartridge, Small Plotter)",
"hp7470",
plDevType_FileOriented, 34,
(plD_init_fp) plD_init_hp7470 );
}
void
plD_init_hp7470(PLStream *pls)
{
PLDev *dev;
pls->color = 1;
dev = plAllocDev(pls); /* Allocate device-specific data */
dev->xmin = HP7470_XMIN;
dev->xmax = HP7470_XMAX;
dev->ymin = HP7470_YMIN;
dev->ymax = HP7470_YMAX;
initialize_hpgl_pls(pls); /* initialize plot stream */
fputs( "\x1b.I200;;17:\x1b.N;19:\x1b.M;;;10:IN;\n", OF );
}
#endif /* PLD_hp7470 */
/*--------------------------------------------------------------------------*\
* plD_init_hp7580()
*
* Initialize device.
\*--------------------------------------------------------------------------*/
#ifdef PLD_hp7580
void plD_init_hp7580 (PLStream *);
void plD_dispatch_init_hp7580( PLDispatchTable *pdt )
{
hpgl_dispatch_init_helper( pdt,
"HP 7580 Plotter File (Large Plotter)", "hp7580",
plDevType_FileOriented, 35,
(plD_init_fp) plD_init_hp7580 );
}
void
plD_init_hp7580(PLStream *pls)
{
PLDev *dev;
pls->color = 1;
dev = plAllocDev(pls); /* Allocate device-specific data */
dev->xmin = HP7580_XMIN;
dev->xmax = HP7580_XMAX;
dev->ymin = HP7580_YMIN;
dev->ymax = HP7580_YMAX;
initialize_hpgl_pls(pls); /* initialize plot stream */
fputs( "\x1b.I200;;17:\x1b.N;19:\x1b.M;;;10:IN;\n", OF );
fputs( "RO90;IP;SP4;PA;\n", OF );
}
#endif /* PLD_hp7580 */
/*--------------------------------------------------------------------------*\
* plD_init_lj_hpgl()
*
* Initialize device.
\*--------------------------------------------------------------------------*/
#ifdef PLD_lj_hpgl
void plD_init_lj_hpgl (PLStream *);
void plD_dispatch_init_hpgl( PLDispatchTable *pdt )
{
hpgl_dispatch_init_helper( pdt,
"HP Laserjet III, HPGL emulation mode", "lj_hpgl",
plDevType_FileOriented, 36,
(plD_init_fp) plD_init_lj_hpgl );
}
void
plD_init_lj_hpgl(PLStream *pls)
{
PLDev *dev;
dev = plAllocDev(pls); /* Allocate device-specific data */
dev->xmin = LJIII_XMIN;
dev->xmax = LJIII_XMAX;
dev->ymin = LJIII_YMIN;
dev->ymax = LJIII_YMAX;
initialize_hpgl_pls(pls); /* initialize plot stream */
/* HP III changes here up to .I200 puts printer in HPGL/2 emulation
* with 300DPI printing.
* Next line : added pw 0.2 for pen width 0.2 (of an inch ?)
*/
fputs("\x1b*T300R\x1b%1B;\x1b.I200;;17:\x1b.N;19:\x1b.M;;;10:IN;\n", OF);
fputs("RO90;IP;PW 0.2;SP 1;PA;", OF);
}
#endif /* PLD_lj_hpgl */
/*--------------------------------------------------------------------------*\
* plD_line_hpgl()
*
* Draw a line in the current color from (x1,y1) to (x2,y2).
\*--------------------------------------------------------------------------*/
void
plD_line_hpgl(PLStream *pls, short x1a, short y1a, short x2a, short y2a)
{
PLDev *dev = (PLDev *) pls->dev;
int xx1 = x1a, yy1 = y1a, xx2 = x2a, yy2 = y2a;
/* Write out old path */
if (xx1 != dev->xold || yy1 != dev->yold)
pls->bytecnt += fprintf( OF, "PU%d %d;", xx1, yy1 );
/* Add new point to path */
pls->bytecnt += fprintf( OF, "PD%d %d\n", xx2, yy2);
dev->xold = xx2;
dev->yold = yy2;
}
/*--------------------------------------------------------------------------*\
* plD_polyline_hpgl()
*
* Draw a polyline in the current color.
\*--------------------------------------------------------------------------*/
void
plD_polyline_hpgl(PLStream *pls, short *xa, short *ya, PLINT npts)
{
register PLINT i;
PLDev *dev = (PLDev *) pls->dev;
/* Write out old path */
if (xa[0] != dev->xold || ya[0] != dev->yold)
pls->bytecnt += fprintf( OF, "PU%d %d;", xa[0], ya[0] );
/* Add new point to path */
for (i = 1; i < npts; i++)
pls->bytecnt += fprintf( OF, "PD%d %d\n", xa[i], ya[i] );
dev->xold = xa[ npts - 1 ];
dev->yold = ya[ npts - 1 ];
}
/*--------------------------------------------------------------------------*\
* plD_eop_hpgl()
*
* End of page.
\*--------------------------------------------------------------------------*/
void
plD_eop_hpgl(PLStream *pls)
{
(void) pls; /* pmr: make it used */
}
/*--------------------------------------------------------------------------*\
* plD_bop_hpgl()
*
* Set up for the next page.
* Advance to next family file if necessary (file output).
\*--------------------------------------------------------------------------*/
void
plD_bop_hpgl(PLStream *pls)
{
PLDev *dev = (PLDev *) pls->dev;
dev->xold = PL_UNDEFINED;
dev->yold = PL_UNDEFINED;
fputs( "PG;\n", OF );
if (!pls->termin)
plGetFam(pls);
pls->page++;
}
/*--------------------------------------------------------------------------*\
* plD_tidy_hpgl()
*
* Close graphics file or otherwise clean up.
\*--------------------------------------------------------------------------*/
void
plD_tidy_hpgl(PLStream *pls)
{
(void) pls; /* pmr: make it used */
fputs( "SP0\n", OF );
fclose(OF);
}
/*--------------------------------------------------------------------------*\
* plD_state_hpgl()
*
* Handle change in PLStream state (color, pen width, fill attribute, etc).
\*--------------------------------------------------------------------------*/
void
plD_state_hpgl(PLStream *pls, PLINT op)
{
/*
** Map pen [1] colours to:
** 1: Red
** 2: Yellow
** 3: Green
** 4: Blue
** 5: Magenta
** 6: Off
** 7: Black
** 8: Cyan
** Given PLPLOT [0] colours are:
** White, Red, Yellow, Green, Aqua, Pink, Wheat, Grey,
** Brown, Blue, Violet, Cyan, Turquoise, Magenta, Salmon, Black
*/
static int hcolmap[16] = { 6,1,2,3,4,5,6,7,8,4,4,8,8,5,5,7 };
switch (op) {
case PLSTATE_WIDTH:
case PLSTATE_COLOR0:{
int width =
(pls->width < MIN_WIDTH) ? DEF_WIDTH :
(pls->width > MAX_WIDTH) ? MAX_WIDTH : pls->width;
if ( pls->icol0 < 0 || pls->icol0 > 15)
fputs( "\nInvalid pen selection.", stderr );
else
fprintf( OF, "SP%d %d\n", hcolmap[pls->icol0], width );
break;
}
case PLSTATE_COLOR1:
break;
}
}
/*--------------------------------------------------------------------------*\
* plD_esc_hpgl()
*
* Escape function.
\*--------------------------------------------------------------------------*/
void
plD_esc_hpgl(PLStream *pls, PLINT op, void *ptr)
{
(void) pls; /* pmr: make it used */
(void) op;
(void) ptr;
}
#else
int
pldummy_hpgl(void)
{
return 0;
}
#endif /* PLD_hp7470 || PLD_hp7580 || PLD_lj_hpgl */
|