|
DataMuseum.dkPresents historical artifacts from the history of: DKUUG/EUUG Conference tapes |
This is an automatic "excavation" of a thematic subset of
See our Wiki for more about DKUUG/EUUG Conference tapes Excavated with: AutoArchaeologist - Free & Open Source Software. |
top - metrics - downloadIndex: T v
Length: 2579 (0xa13) Types: TextFile Names: »v384.trm«
└─⟦52210d11f⟧ Bits:30007239 EUUGD2: TeX 3 1992-12 └─⟦63303ae94⟧ »unix3.14/TeX3.14.tar.Z« └─⟦c58930e5c⟧ └─⟦this⟧ »TeX3.14/TeXcontrib/gnuplot/term/v384.trm«
/* GNUPLOT - v384.trm */ /* * Copyright (C) 1990 * * 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 modified code. Modifications are to be distributed * as patches to released version. * * This software is provided "as is" without express or implied warranty. * * This file is included by ../term.c. * * This terminal driver supports: * Vectrix 384 - works with tandy color printer as well * * AUTHORS * roland@moncskermit.OZ (Roland Yap) * * send your comments or suggestions to (pixar!info-gnuplot@sun.com). * */ /* * Vectrix 384 driver - works with tandy color printer as well * in reverse printing 8 color mode. * This doesn't work on Vectrix 128 because it redefines the * color table. It can be hacked to work on the 128 by changing * the colours but then it will probably not print best. The color * table is purposely designed so that it will print well * */ #define V384_XMAX 630 #define V384_YMAX 480 #define V384_XLAST (V384_XMAX - 1) #define V384_YLAST (V384_YMAX - 1) #define V384_VCHAR 12 #define V384_HCHAR 7 #define V384_VTIC 8 #define V384_HTIC 7 V384_init() { fprintf(outfile,"%c%c G0 \n",27,18); fprintf(outfile,"Q 0 8\n"); fprintf(outfile,"0 0 0\n"); fprintf(outfile,"255 0 0\n"); fprintf(outfile,"0 255 0\n"); fprintf(outfile,"0 0 255\n"); fprintf(outfile,"0 255 255\n"); fprintf(outfile,"255 0 255\n"); fprintf(outfile,"255 255 0\n"); fprintf(outfile,"255 255 255\n"); } V384_graphics() { fprintf(outfile,"%c%c E0 RE N 65535\n",27,18); } V384_text() { fprintf(outfile,"%c%c\n",27,17); } V384_linetype(linetype) int linetype; { static int color[]= { 1 /* red */, 2 /* green */, 3 /* blue */, 4 /* cyan */, 5 /* magenta */, 6 /* yellow */, /* not a good color so not in use at the moment */ 7 /* white */ }; if (linetype < 0) linetype=6; else linetype %= 5; fprintf(outfile,"C %d\n",color[linetype]); } V384_move(x,y) unsigned int x,y; { fprintf(outfile,"M %d %d\n",x+20,y); } V384_vector(x,y) unsigned int x,y; { fprintf(outfile,"L %d %d\n",x+20,y); } V384_put_text (x, y, str) unsigned int x, y; char str[]; { V384_move (x, y + V384_VCHAR/2); fprintf (outfile, "$%s\n", str); } V384_reset() { }