ngspice/src/frontend/plotting/graf.c

1073 lines
30 KiB
C
Raw Normal View History

2000-04-27 22:03:57 +02:00
/**********
Copyright 1990 Regents of the University of California. All rights reserved.
Author: 1988 Jeffrey M. Hsu
$Id$
2000-04-27 22:03:57 +02:00
**********/
/*
* Most of the gr_ module resides here, in particular, gr_init
* and gr_point, expect for the gr_ grid routines.
*
*/
#include <ngspice.h>
#include "cpdefs.h" /* for VT_ */
2000-04-27 22:03:57 +02:00
#include "cpextern.h"
#include <plot.h>
#include "ftedebug.h" /* for iplot */
#include <dvec.h> /* for struct dvec */
#include "ftedefs.h" /* for FTEextern.h and IPOINT{MIN,MAX} */
2000-04-27 22:03:57 +02:00
#include "fteinput.h"
#include <graph.h>
2000-04-27 22:03:57 +02:00
#include "ftedbgra.h"
#include "ftedev.h"
#include <terminal.h>
src/Makefile.am src/help.c src/main.c src/circuit/Makefile.am src/circuit/ifnewuid.c src/frontend/Makefile.am src/frontend/aspice.c src/frontend/circuits.h src/frontend/com_display.c src/frontend/com_hardcopy.c src/frontend/commands.c src/frontend/commands.h src/frontend/cpitf.c src/frontend/debugcom.c src/frontend/device.c src/frontend/diff.c src/frontend/display.c src/frontend/dotcards.c src/frontend/fourier.c src/frontend/inp.c src/frontend/inpcom.c src/frontend/linear.c src/frontend/misccoms.c src/frontend/mw_coms.c src/frontend/nutinp.c src/frontend/options.c src/frontend/outitf.c src/frontend/parse.c src/frontend/postcoms.c src/frontend/postsc.c src/frontend/rawfile.c src/frontend/resource.c src/frontend/runcoms.c src/frontend/runcoms2.c src/frontend/shyu.c src/frontend/spec.c src/frontend/spiceif.c src/frontend/subckt.c src/frontend/vectors.c src/frontend/where.c src/frontend/plotting/Makefile.am src/frontend/plotting/agraf.c src/frontend/plotting/graf.c src/frontend/plotting/plotcurv.c src/frontend/plotting/plotit.c src/frontend/plotting/x11.c src/frontend/plotting/xgraph.c src/include/Makefile.am src/maths/cmaths/cmath4.c src/misc/terminal.c src/misc/terminal.h src/parser/cshpar.c src/parser/front.c src/parser/front.h src/parser/history.c src/parser/history.h src/parser/modify.c src/parser/var2.c src/parser/var2.h src/parser/variable.c: Refactoring of frontend code. * src/include/ftehelp.h src/include/variable.h: Moved into frontend directory. * src/include/cpdefs.h src/include/cpextern.h src/include/ftedefs.h src/include/plot.h: Updates.
2000-06-27 18:09:02 +02:00
#include <variable.h>
2000-04-27 22:03:57 +02:00
#include "graf.h"
#include "graphdb.h"
#include "grid.h"
#include "../terminal.h"
#include "../breakp2.h"
#include "../error.h"
#include "../display.h"
#include "../runcoms.h"
2000-04-27 22:03:57 +02:00
/* static declarations */
static void gr_start_internal(struct dvec *dv, bool copyvec);
static int iplot(struct plot *pl, int id);
static void set(struct plot *plot, struct dbcomm *db, bool unset, int mode);
static char * getitright(char *buf, double num);
/* for legends, set in gr_start, reset in gr_iplot and gr_init */
static int plotno;
static int curcolor = 1; /* for assigning unique colors */
static int curlst = 0; /* for assigning line styles */
/* invariant: currentgraph contains the current graph */
/* These are what gets plotted as points when you specify point plots */
static char pointchars[128];
2009-12-31 16:42:28 +01:00
#define DEFPOINTCHARS "ox+#*abcdefhgijklmnpqrstuvwyz"
2000-04-27 22:03:57 +02:00
/* Buffer for ticmarks if given a list */
static char ticbuf[1024];
static char *ticlist = ticbuf;
#define MAXTICS 100
double *readtics(char *string);
#define XFACTOR 1 /* How much to expand the X scale during iplot. */
#define YFACTOR 0.2 /* How much to expand the Y scale during iplot. */
2000-04-27 22:03:57 +02:00
/*
* Start of a new graph.
* Fill in the data that gets displayed.
* Difference from old gr_init
* we don't try to determine the look of the screen from here
* leave to lower level routines
*
*/
int
gr_init(double *xlims, double *ylims, /* The size of the screen. */
char *xname, char *plotname, /* What to label things. */
char *hcopy, /* The raster file. */
int nplots, /* How many plots there will be. */
double xdelta, double ydelta, /* Line increments for the scale. */
GRIDTYPE gridtype, /* The grid type */
PLOTTYPE plottype, /* and the plot type. */
char *xlabel, char *ylabel, /* Labels for axes. */
int xtype, int ytype, /* The types of the data graphed. */
char *pname,
char *commandline) /* For xi_zoomdata() */
2000-04-27 22:03:57 +02:00
{
GRAPH *graph;
int b;
wordlist *wl;
char *comb_title;
if (!(graph = NewGraph())) {
return(FALSE);
}
/*
The global currentgraph will always be the current graph.
*/
SetGraphContext(graph->graphid);
graph->onevalue = (xname ? FALSE : TRUE);
/* communicate filename to plot 5 driver */
if (hcopy) {
graph->devdep = hcopy;
}
plotno = 0;
/* note: should do only once, maybe in gr_init_once */
if (!cp_getvar("pointchars", VT_STRING, pointchars))
(void) strcpy(pointchars, DEFPOINTCHARS);
if (!cp_getvar("ticmarks", VT_NUM, (char *) &graph->ticmarks)) {
if (cp_getvar("ticmarks", VT_BOOL, (char *) &b))
graph->ticmarks = 10;
else
graph->ticmarks = 0;
}
if (cp_getvar("ticlist", VT_LIST, ticlist)) {
wl = (wordlist *)vareval("ticlist");
ticlist = (char *)wl_flatten(wl);
graph->ticdata = (double *) readtics(ticlist);
} else
graph->ticdata = NULL;
if (!xlims || !ylims) {
internalerror("gr_init: no range specified");
return(FALSE);
}
/* save upper and lower limits */
graph->data.xmin = xlims[0];
graph->data.xmax = xlims[1];
graph->data.ymin = ylims[0];
graph->data.ymax = ylims[1];
2002-01-03 23:44:21 +01:00
/* get title into plot window */
#ifdef HAS_WINDOWS
if (!pname)
pname = "(unknown)";
if (!plotname)
plotname = "(unknown)";
comb_title = tmalloc(strlen(plotname) + strlen(pname) + 3);
sprintf(comb_title, "%s: %s", pname, plotname);
graph->plotname = comb_title;
#endif
2000-04-27 22:03:57 +02:00
/* note: have enum here or some better convention */
if (NewViewport(graph) == 1) {
/* note: where is the error message generated? */
/* note: undo tmallocs */
2000-04-27 22:03:57 +02:00
fprintf(cp_err, "Can't open viewport for graphics.\n");
return(FALSE);
}
/* layout decisions */
/* note: have to do before gr_fixgrid and after NewViewport */
graph->viewportxoff = graph->fontwidth * 8; /* 8 lines on left */
graph->viewportyoff = graph->fontheight * 4; /* 4 on bottom */
DevClear();
graph->grid.gridtype = gridtype;
graph->plottype = plottype;
graph->grid.xdatatype = xtype;
graph->grid.ydatatype = ytype;
graph->grid.xdelta = xdelta;
graph->grid.ydelta = ydelta;
graph->grid.ysized = 0;
graph->grid.xsized = 0;
if (!graph->onevalue) {
if (xlabel) {
graph->grid.xlabel = xlabel;
} else {
graph->grid.xlabel = xname;
}
if (ylabel) {
graph->grid.ylabel = ylabel;
}
} else {
if (xlabel) {
graph->grid.xlabel = xlabel;
} else {
graph->grid.xlabel = "real";
}
if (ylabel) {
graph->grid.ylabel = ylabel;
} else {
graph->grid.ylabel = "imag";
}
}
2002-01-03 23:44:21 +01:00
#ifndef HAS_WINDOWS
2000-04-27 22:03:57 +02:00
if (!pname)
pname = "(unknown)";
if (!plotname)
plotname = "(unknown)";
comb_title = tmalloc(strlen(plotname) + strlen(pname) + 3);
sprintf(comb_title, "%s: %s", pname, plotname);
graph->plotname = comb_title;
2002-01-03 23:44:21 +01:00
#endif
2000-04-27 22:03:57 +02:00
gr_resize_internal(graph);
gr_redrawgrid(graph);
/* Set up colors and line styles. */
if (dispdev->numlinestyles == 1)
curlst = 0; /* Use the same one all the time. */
else
curlst = 1;
/* XXX Special exception for SMITH */
if (dispdev->numcolors > 2 && (graph->grid.gridtype == GRID_SMITH
|| graph->grid.gridtype == GRID_SMITHGRID))
{
curcolor = 3;
} else
curcolor = 1;
graph->commandline = copy(commandline);
return(TRUE);
}
/*
* Add a point to the curve we're currently drawing.
* Should be in between a gr_init() and a gr_end()
* expect when iplotting, very bad hack
* Differences from old gr_point:
* We save points here, instead of in lower levels.
* Assume we are in right context
* Save points in data space (not screen space).
* We pass two points in so we can multiplex plots.
*
*/
void
gr_point(struct dvec *dv,
double newx, double newy,
double oldx, double oldy,
int np)
2000-04-27 22:03:57 +02:00
{
int oldtox, oldtoy; /* value before clipping */
char pointc[2];
int fromx, fromy, tox, toy;
int ymin, dummy;
DatatoScreen(currentgraph, oldx, oldy, &fromx, &fromy);
DatatoScreen(currentgraph, newx, newy, &tox, &toy);
/* note: we do not particularly want to clip here */
2000-04-27 22:03:57 +02:00
oldtox = tox; oldtoy = toy;
if (!currentgraph->grid.circular) {
if (clip_line(&fromx, &fromy, &tox, &toy,
currentgraph->viewportxoff, currentgraph->viewportyoff,
currentgraph->viewport.width + currentgraph->viewportxoff,
currentgraph->viewport.height + currentgraph->viewportyoff))
return;
} else {
if (clip_to_circle(&fromx, &fromy, &tox, &toy,
currentgraph->grid.xaxis.circular.center,
currentgraph->grid.yaxis.circular.center,
currentgraph->grid.xaxis.circular.radius))
return;
}
if (currentgraph->plottype != PLOT_POINT) {
SetLinestyle(dv->v_linestyle);
} else {
/* if PLOT_POINT,
don't want to plot an endpoint which have been clipped */
if (tox != oldtox || toy != oldtoy)
return;
}
SetColor(dv->v_color);
switch (currentgraph->plottype) {
double *tics;
case PLOT_LIN:
/* If it's a linear plot, ignore first point since we don't
want to connect with oldx and oldy. */
2000-04-27 22:03:57 +02:00
if (np)
DrawLine(fromx, fromy, tox, toy);
if ((tics = (double *) currentgraph->ticdata)) {
for (; *tics < HUGE; tics++) {
if (*tics == (double) np) {
Text("x", (int) (tox - currentgraph->fontwidth / 2),
(int) (toy - currentgraph->fontheight / 2));
/* gr_redraw will redraw this w/o our having to save it
Guenther Roehrich 22-Jan-99 */
/* SaveText(currentgraph, "x",
2000-04-27 22:03:57 +02:00
(int) (tox - currentgraph->fontwidth / 2),
(int) (toy - currentgraph->fontheight / 2)); */
2000-04-27 22:03:57 +02:00
break;
}
}
} else if ((currentgraph->ticmarks >0) && (np > 0)
&& (np % currentgraph->ticmarks == 0))
{
/* Draw an 'x' */
Text("x", (int) (tox - currentgraph->fontwidth / 2),
(int) (toy - currentgraph->fontheight / 2));
/* gr_redraw will redraw this w/o our having to save it
Guenther Roehrich 22-Jan-99 */
/* SaveText(currentgraph, "x",
2000-04-27 22:03:57 +02:00
(int) (tox - currentgraph->fontwidth / 2),
(int) (toy - currentgraph->fontheight / 2)); */
2000-04-27 22:03:57 +02:00
}
break;
case PLOT_COMB:
DatatoScreen(currentgraph,
(double) 0, currentgraph->datawindow.ymin,
&dummy, &ymin);
DrawLine(tox, ymin, tox, toy);
break;
case PLOT_POINT:
/* Here, gi_linestyle is the character used for the point. */
pointc[0] = dv->v_linestyle;
pointc[1] = '\0';
Text(pointc, (int) (tox - currentgraph->fontwidth / 2),
(int) (toy - currentgraph->fontheight / 2));
default:
break;
}
}
static void
gr_start_internal(struct dvec *dv, bool copyvec)
{
struct dveclist *link;
char *s;
/* Do something special with poles and zeros. Poles are 'x's, and
* zeros are 'o's. */
2000-04-27 22:03:57 +02:00
s = ft_typenames(dv->v_type);
if (eq(s, "pole")) {
dv->v_linestyle = 'x';
return;
} else if (eq(s, "zero")) {
dv->v_linestyle = 'o';
return;
}
/* Find a (hopefully) new line style and color. */
if (currentgraph->plottype == PLOT_POINT) {
if (pointchars[curlst - 1])
curlst++;
else
curlst = 2;
} else if ((curlst > 0) && (++curlst == dispdev->numlinestyles))
curlst = 2;
if ((curcolor > 0) && (++curcolor == dispdev->numcolors))
curcolor = (((currentgraph->grid.gridtype == GRID_SMITH
|| currentgraph->grid.gridtype == GRID_SMITHGRID) &&
(dispdev->numcolors > 3)) ? 4 : 2);
if (currentgraph->plottype == PLOT_POINT)
dv->v_linestyle = pointchars[curlst - 2];
else
dv->v_linestyle = curlst;
dv->v_color = curcolor;
/* save the data so we can refresh */
link = (struct dveclist *) tmalloc(sizeof(struct dveclist));
2000-04-27 22:03:57 +02:00
link->next = currentgraph->plotdata;
if (copyvec) {
link->vector = vec_copy(dv);
/* vec_copy doesn't set v_color or v_linestyle */
link->vector->v_color = dv->v_color;
link->vector->v_linestyle = dv->v_linestyle;
link->vector->v_flags |= VF_PERMANENT;
} else {
link->vector = dv;
}
currentgraph->plotdata = link;
/* Put the legend entry on the screen. */
drawlegend(currentgraph, plotno, dv);
plotno++;
}
/* start one plot of a graph */
void
gr_start(struct dvec *dv)
{
gr_start_internal(dv, TRUE);
}
/* make sure the linestyles in this graph don't exceed the number of
linestyles available in the current display device */
2000-04-27 22:03:57 +02:00
void
gr_relinestyle(GRAPH *graph)
{
struct dveclist *link;
for (link = graph->plotdata; link; link = link->next) {
if (graph->plottype == PLOT_POINT) continue;
if (!(link->vector->v_linestyle < dispdev->numlinestyles)) {
link->vector->v_linestyle %= dispdev->numlinestyles;
}
if (!(link->vector->v_color < dispdev->numcolors)) {
link->vector->v_color %= dispdev->numcolors;
}
}
}
/* PN static */
void
drawlegend(GRAPH *graph, int plotno, struct dvec *dv)
{
int x, y, i;
char buf[16];
x = ((plotno % 2) ? graph->viewportxoff :
((graph->viewport.width) / 2));
y = graph->absolute.height - graph->fontheight
- ((plotno + 2) / 2) * (graph->fontheight);
i = y + graph->fontheight / 2 + 1;
SetColor(dv->v_color);
if (graph->plottype == PLOT_POINT) {
(void) sprintf(buf, "%c : ", dv->v_linestyle);
Text(buf, x + graph->viewport.width / 20
- 3 * graph->fontwidth, y);
} else {
SetLinestyle(dv->v_linestyle);
DrawLine(x, i, x + graph->viewport.width / 20, i);
}
SetColor(1);
Text(dv->v_name, x + graph->viewport.width / 20
+ graph->fontwidth, y);
}
/* end one plot of a graph */
void
gr_end(struct dvec *dv)
{
Update();
}
/* Print text in the bottom line. */
void
gr_pmsg(char *text)
{
char buf[BSIZE_SP];
buf[0] = 0;
Update();
if (cp_getvar("device", VT_STRING, buf)
&& !(strcmp("/dev/tty", buf) == 0))
fprintf(cp_err, "%s", text);
else
/* MW. grid.xlabel may be NULL */
if (currentgraph->grid.xlabel)
Text(text, currentgraph->viewport.width
- (strlen(currentgraph->grid.xlabel) + 3)
* currentgraph->fontwidth,
currentgraph->absolute.height - currentgraph->fontheight);
else
fprintf(cp_err, " %s \n", text);
2000-04-27 22:03:57 +02:00
Update();
return;
}
void
gr_clean(void)
{
Update();
return;
}
/* call this routine after viewport size changes */
void
gr_resize(GRAPH *graph)
{
double oldxratio, oldyratio;
double scalex, scaley;
struct _keyed *k;
oldxratio = graph->aspectratiox;
oldyratio = graph->aspectratioy;
graph->grid.xsized = 0;
graph->grid.ysized = 0;
gr_resize_internal(graph);
/* scale keyed text */
scalex = oldxratio / graph->aspectratiox;
scaley = oldyratio / graph->aspectratioy;
for (k = graph->keyed; k; k = k->next) {
k->x = (k->x - graph->viewportxoff) * scalex + graph->viewportxoff;
k->y = (k->y - graph->viewportyoff) * scaley + graph->viewportyoff;
}
/* X also generates an expose after a resize.
This is handled in X10 by not redrawing on resizes and waiting
for the expose event to redraw. In X11, the expose routine
tries to be clever and only redraws the region specified in an
expose event, which does not cover the entire region of the
plot if the resize was from a small window to a larger window.
So in order to keep the clever X11 expose event handling, we
have the X11 resize routine pull out expose events for that
window, and we redraw on resize also. */
2000-04-27 22:03:57 +02:00
#ifdef X_DISPLAY_MISSING
gr_redraw(graph);
#endif
}
/* PN static */
void
gr_resize_internal(GRAPH *graph)
{
if (!graph->grid.xsized)
graph->viewport.width = graph->absolute.width -
1.4 * graph->viewportxoff;
if (!graph->grid.ysized)
graph->viewport.height = graph->absolute.height -
2 * graph->viewportyoff;
gr_fixgrid(graph, graph->grid.xdelta, graph->grid.ydelta,
graph->grid.xdatatype, graph->grid.ydatatype);
/* cache width and height info to make DatatoScreen go fast */
/* note: XXX see if this is actually used anywhere */
graph->datawindow.width = graph->datawindow.xmax -
graph->datawindow.xmin;
graph->datawindow.height = graph->datawindow.ymax -
graph->datawindow.ymin;
/* cache (datawindow size) / (viewport size) */
graph->aspectratiox = graph->datawindow.width / graph->viewport.width;
graph->aspectratioy = graph->datawindow.height / graph->viewport.height;
}
/* redraw everything in struct graph */
void
gr_redraw(GRAPH *graph)
{
struct dveclist *link;
/* establish current graph so default graphic calls will work right */
PushGraphContext(graph);
DevClear();
/* redraw grid */
gr_redrawgrid(graph);
for (link=graph->plotdata, plotno = 0; link;
link = link->next, plotno++) {
/* redraw legend */
drawlegend(graph, plotno, link->vector);
/* replot data
if onevalue, pass it a NULL scale
otherwise, if vec has its own scale, pass that
else pass vec's plot's scale
*/
ft_graf(link->vector,
graph->onevalue ? (struct dvec *) NULL :
(link->vector->v_scale ?
link->vector->v_scale :
link->vector->v_plot->pl_scale),
TRUE);
}
gr_restoretext(graph);
PopGraphContext();
}
void
gr_restoretext(GRAPH *graph)
{
struct _keyed *k;
/* restore text */
for (k=graph->keyed; k; k = k->next) {
SetColor(k->colorindex);
Text(k->text, k->x, k->y);
}
}
/* Do some incremental plotting. There are 3 cases:
*
* First, if length < IPOINTMIN, don't do anything.
*
* Second, if length = IPOINTMIN, plot what we have so far.
*
* Third, if length > IPOINTMIN, plot the last points and resize if
* needed.
*
2000-04-27 22:03:57 +02:00
* Note we don't check for pole / zero because they are of length 1.
*
* FIXME: there is a problem with multiple iplots that use the same
* vector, namely, that vector has the same color throughout. This is
* another reason why we need to pull color and linestyle out of dvec
* XXX Or maybe even something more drastic ?? */
2000-04-27 22:03:57 +02:00
static int
iplot(struct plot *pl, int id)
{
int len = pl->pl_scale->v_length;
struct dvec *v, *xs = pl->pl_scale;
double *lims, dy;
double start, stop, step;
register int j;
bool changed = FALSE;
int yt;
char *yl = NULL;
double xlims[2], ylims[2];
static REQUEST reqst = { checkup_option, 0 };
int inited = 0;
char commandline[513];
for (j = 0, v = pl->pl_dvecs; v; v = v->v_next)
if (v->v_flags & VF_PLOT)
j++;
if (!j)
return(0);
if (ft_grdb)
fprintf(cp_err, "Entering iplot, len = %d\n\r", len);
if (len < IPOINTMIN) {
/* Nothing yet */
return(0);
} else if (len == IPOINTMIN || !id) {
resumption = FALSE;
2000-04-27 22:03:57 +02:00
/* Draw the grid for the first time, and plot everything. */
lims = ft_minmax(xs, TRUE);
xlims[0] = lims[0];
xlims[1] = lims[1];
ylims[0] = HUGE;
ylims[1] = - ylims[0];
for (v = pl->pl_dvecs; v; v = v->v_next)
if (v->v_flags & VF_PLOT) {
lims = ft_minmax(v, TRUE);
if (lims[0] < ylims[0])
ylims[0] = lims[0];
if (lims[1] > ylims[1])
ylims[1] = lims[1];
if (!yl)
yl = v->v_name;
}
if (ft_grdb)
fprintf(cp_err,
"iplot: after 5, xlims = %G, %G, ylims = %G, %G\n\r",
xlims[0],
xlims[1],
ylims[0],
ylims[1]);
for (yt = pl->pl_dvecs->v_type, v = pl->pl_dvecs->v_next; v;
v = v->v_next)
if ((v->v_flags & VF_PLOT) && (v->v_type != yt)) {
yt = 0;
break;
}
/* note: have command options for iplot to specify xdelta,
etc. So don't need static variables hack. Assume default
values for now. */
sprintf(commandline, "plot %s", yl);
2000-04-27 22:03:57 +02:00
(void) gr_init(xlims, ylims, xs->v_name,
pl->pl_title, (char *) NULL, j, 0.0, 0.0,
GRID_LIN, PLOT_LIN, xs->v_name, yl, xs->v_type, yt,
plot_cur->pl_typename, commandline);
for (v = pl->pl_dvecs; v; v = v->v_next)
if (v->v_flags & VF_PLOT) {
gr_start_internal(v, FALSE);
ft_graf(v, xs, TRUE);
}
inited = 1;
} else {
/* plot the last points and resize if needed */
Input(&reqst, 0);
2000-04-27 22:03:57 +02:00
/* First see if we have to make the screen bigger */
dy = (isreal(xs) ? xs->v_realdata[len - 1] :
realpart(&xs->v_compdata[len - 1]));
if (ft_grdb)
fprintf(cp_err, "x = %G\n\r", dy);
if (!if_tranparams(ft_curckt, &start, &stop, &step) ||
!ciprefix("tran", pl->pl_typename)) {
stop = HUGE;
start = - stop;
}
/* checking for x lo */
2000-04-27 22:03:57 +02:00
while (dy < currentgraph->data.xmin) {
changed = TRUE;
if (ft_grdb)
fprintf(cp_err, "resize: xlo %G -> %G\n\r",
currentgraph->data.xmin,
currentgraph->data.xmin -
(currentgraph->data.xmax -
currentgraph->data.xmin)
* XFACTOR);
/* set the new x lo value */
2000-04-27 22:03:57 +02:00
currentgraph->data.xmin -=
(currentgraph->data.xmax -
currentgraph->data.xmin)
* XFACTOR;
if (currentgraph->data.xmin < start) {
currentgraph->data.xmin = start;
break;
}
}
if (currentgraph->data.xmax <
currentgraph->data.xmin)
currentgraph->data.xmax =
currentgraph->data.xmin;
/* checking for x hi */
2000-04-27 22:03:57 +02:00
while (dy > currentgraph->data.xmax) {
changed = TRUE;
if (ft_grdb)
fprintf(cp_err, "resize: xhi %G -> %G\n\r",
currentgraph->data.xmax,
currentgraph->data.xmax +
(currentgraph->data.xmax -
currentgraph->data.xmin) * XFACTOR);
/* set the new x hi value */
2000-04-27 22:03:57 +02:00
currentgraph->data.xmax +=
(currentgraph->data.xmax -
currentgraph->data.xmin) *
XFACTOR;
if (currentgraph->data.xmax > stop) {
currentgraph->data.xmax = stop;
break;
}
}
/* checking for all y values */
2000-04-27 22:03:57 +02:00
for (v = pl->pl_dvecs; v; v = v->v_next) {
if (!(v->v_flags & VF_PLOT))
continue;
dy = (isreal(v) ? v->v_realdata[len - 1] :
realpart(&v->v_compdata[len - 1]));
if (ft_grdb)
fprintf(cp_err, "y = %G\n\r", dy);
/* checking for y lo */
2000-04-27 22:03:57 +02:00
while (dy < currentgraph->data.ymin) {
changed = TRUE;
if (ft_grdb)
fprintf(cp_err, "resize: ylo %G -> %G\n\r",
currentgraph->data.ymin,
currentgraph->data.ymin -
(currentgraph->data.ymax -
currentgraph->data.ymin) * YFACTOR);
/* set the new y lo value */
2000-04-27 22:03:57 +02:00
currentgraph->data.ymin -=
(currentgraph->data.ymax -
currentgraph->data.ymin) * YFACTOR;
/* currentgraph->data.ymin +=
(dy - currentgraph->data.ymin) * YFACTOR;*/
2000-04-27 22:03:57 +02:00
}
if (currentgraph->data.ymax <
currentgraph->data.ymin)
currentgraph->data.ymax =
currentgraph->data.ymin;
/* checking for y hi */
2000-04-27 22:03:57 +02:00
while (dy > currentgraph->data.ymax) {
changed = TRUE;
if (ft_grdb)
fprintf(cp_err, "resize: yhi %G -> %G\n\r",
currentgraph->data.ymax,
currentgraph->data.ymax +
(currentgraph->data.ymax -
currentgraph->data.ymin) * YFACTOR);
/* set the new y hi value */
2000-04-27 22:03:57 +02:00
currentgraph->data.ymax +=
(currentgraph->data.ymax -
currentgraph->data.ymin) * YFACTOR;
/* currentgraph->data.ymax +=
(dy - currentgraph->data.ymax) * YFACTOR;*/
2000-04-27 22:03:57 +02:00
}
}
if (changed) {
/* Redraw everything. */
gr_pmsg("Resizing screen");
gr_resize(currentgraph);
#ifndef X_DISPLAY_MISSING
2000-04-27 22:03:57 +02:00
gr_redraw(currentgraph);
#endif
2000-04-27 22:03:57 +02:00
} else {
/* Just connect the last two points. This won't be done
* with curve interpolation, so it might look funny. */
2000-04-27 22:03:57 +02:00
for (v = pl->pl_dvecs; v; v = v->v_next)
if (v->v_flags & VF_PLOT) {
gr_point(v,
(isreal(xs) ? xs->v_realdata[len - 1] :
realpart(&xs->v_compdata[len - 1])),
(isreal(v) ? v->v_realdata[len - 1] :
realpart(&v->v_compdata[len - 1])),
(isreal(xs) ? xs->v_realdata[len - 2] :
realpart(&xs->v_compdata[len - 2])),
(isreal(v) ? v->v_realdata[len - 2] :
realpart(&v->v_compdata[len - 2])),
len - 1);
}
}
}
Update();
return(inited);
}
static void
set(struct plot *plot, struct dbcomm *db, bool unset, int mode)
{
struct dvec *v;
struct dbcomm *dc;
if (db->db_type == DB_IPLOTALL || db->db_type == DB_TRACEALL) {
for (v = plot->pl_dvecs; v; v = v->v_next) {
if (unset)
v->v_flags &= ~mode;
else
v->v_flags |= mode;
}
return;
}
for (dc = db; dc; dc = dc->db_also) {
v = vec_fromplot(dc->db_nodename1, plot);
if (!v || v->v_plot != plot) {
if (!eq(dc->db_nodename1, "0") && !unset) {
fprintf(cp_err, "Warning: node %s non-existent in %s.\n",
dc->db_nodename1, plot->pl_name);
/* note: XXX remove it from dbs, so won't get further errors */
}
continue;
}
if (unset)
v->v_flags &= ~mode;
else
v->v_flags |= mode;
}
return;
}
static char *
getitright(char *buf, double num)
{
char *p;
int k;
sprintf(buf, " % .5g", num);
p =strchr(buf, '.');
if (p) {
return p - 4;
} else {
k = strlen(buf);
if (k > 8)
return buf + 4;
else /* k >= 4 */
return buf + k - 4;
}
}
static int hit, hit2;
void reset_trace(void)
{
hit = -1;
hit2 = -1;
}
void
gr_iplot(struct plot *plot)
{
struct dbcomm *db;
int dontpop; /* So we don't pop w/o push. */
char buf[30];
hit = 0;
for (db = dbs; db; db = db->db_next) {
if (db->db_type == DB_IPLOT || db->db_type == DB_IPLOTALL) {
if (db->db_graphid) PushGraphContext(FindGraph(db->db_graphid));
set(plot, db, FALSE, VF_PLOT);
dontpop = 0;
if (iplot(plot, db->db_graphid)) {
/* graph just assigned */
db->db_graphid = currentgraph->graphid;
dontpop = 1;
}
set(plot, db, TRUE, VF_PLOT);
if (!dontpop && db->db_graphid) PopGraphContext();
} else if (db->db_type == DB_TRACENODE || db->db_type == DB_TRACEALL) {
struct dvec *v, *u;
int len;
set(plot, db, FALSE, VF_PRINT);
len = plot->pl_scale->v_length;
dontpop = 0;
for (v = plot->pl_dvecs; v; v = v->v_next) {
if (v->v_flags & VF_PRINT) {
u = plot->pl_scale;
if (len <= 1 || hit <= 0 || hit2 < 0) {
if (len <= 1 || hit2 < 0)
term_clear( );
else
term_home( );
hit = 1;
hit2 = 1;
printf(
"\tExecution trace (remove with the \"delete\" command)");
term_cleol( );
printf("\n");
if (u) {
printf("%12s:", u->v_name);
if (isreal(u)) {
printf("%s",
getitright(buf, u->v_realdata[len - 1]));
} else {
/* MW. Complex data here, realdata is NULL
(why someone use realdata here again) */
printf("%s",
getitright(buf, u->v_compdata[len - 1].cx_real));
printf(", %s",
getitright(buf, u->v_compdata[len - 1].cx_imag));
}
term_cleol( );
printf("\n");
}
}
if (v == u)
continue;
printf("%12s:", v->v_name);
if (isreal(v)) {
printf("%s", getitright(buf, v->v_realdata[len - 1]));
} else {
/* MW. Complex data again */
printf("%s", getitright(buf, v->v_compdata[len - 1].cx_real));
printf(", %s", getitright(buf, v->v_compdata[len - 1].cx_imag));
}
term_cleol( );
printf("\n");
}
}
set(plot, db, TRUE, VF_PRINT);
}
}
}
/* This gets called after iplotting is done. We clear out the
* db_graphid fields. Copy the dvecs, which we referenced by
* reference, so DestroyGraph gets to free its own copy.
*
* Note: This is a clear case for separating the linestyle and color
* fields from dvec. */
2000-04-27 22:03:57 +02:00
void
gr_end_iplot(void)
{
struct dbcomm *db, *prev, *next;
GRAPH *graph;
struct dveclist *link;
struct dvec *dv;
prev = NULL;
for (db = dbs; db; prev = db, db = next) {
next = db->db_next;
if (db->db_type == DB_DEADIPLOT) {
if (db->db_graphid) {
DestroyGraph(db->db_graphid);
if (prev)
prev->db_next = next;
else
dbs = next;
dbfree(db);
}
} else if (db->db_type == DB_IPLOT || db->db_type == DB_IPLOTALL) {
if (db->db_graphid) {
/* get private copy of dvecs */
graph = FindGraph(db->db_graphid);
link = graph->plotdata;
while (link) {
dv = link->vector;
link->vector = vec_copy(dv);
/* vec_copy doesn't set v_color or v_linestyle */
link->vector->v_color = dv->v_color;
link->vector->v_linestyle = dv->v_linestyle;
link->vector->v_flags |= VF_PERMANENT;
link = link->next;
}
db->db_graphid = 0;
} else {
/* warn that this wasn't plotted */
fprintf(cp_err, "Warning: iplot %d was not executed.\n",
db->db_number);
}
}
}
return;
}
double *
readtics(char *string)
{
int i, k;
char *words, *worde;
double *tics, *ticsk;
tics = (double *) tmalloc(MAXTICS * sizeof(double));
ticsk = tics;
words = string;
for (i = k = 0; *words && k < MAXTICS; words = worde) {
while (isspace(*words))
words++;
worde = words;
while (isalpha(*worde) || isdigit(*worde))
worde++;
if (*worde)
*worde++ = '\0';
sscanf(words, "%lf", ticsk++);
k++;
}
*ticsk = HUGE;
return(tics);
}