diff --git a/common/utils/T/tracer/gui/x.c b/common/utils/T/tracer/gui/x.c index 04b110a435df91610f378f461f5fb91ebeea69a1..e68e3bcb928f8b1e3701a625c49e6ae13d5c4ecb 100644 --- a/common/utils/T/tracer/gui/x.c +++ b/common/utils/T/tracer/gui/x.c @@ -286,3 +286,31 @@ void x_draw(x_connection *_c, x_window *_w) printf("x_draw XCopyArea w h %d %d display %p window %d pixmap %d\n", w->width, w->height, c->d, (int)w->w, (int)w->p); XCopyArea(c->d, w->p, w->w, c->colors[1], 0, 0, w->width, w->height, 0, 0); } + +/* those two special functions are to plot many points + * first call x_add_point many times then x_plot_points once + */ +void x_add_point(x_connection *_c, int x, int y) +{ + struct x_connection *c = _c; + + if (c->pts_size == c->pts_maxsize) { + c->pts_maxsize += 65536; + c->pts = realloc(c->pts, c->pts_maxsize * sizeof(XPoint)); + if (c->pts == NULL) OOM; + } + + c->pts[c->pts_size].x = x; + c->pts[c->pts_size].y = y; + c->pts_size++; +} + +void x_plot_points(x_connection *_c, x_window *_w, int color) +{ + struct x_connection *c = _c; +fprintf(stderr, "x_plot_points %d points\n", c->pts_size); + struct x_window *w = _w; + XDrawPoints(c->d, w->p, c->colors[color], c->pts, c->pts_size, + CoordModeOrigin); + c->pts_size = 0; +} diff --git a/common/utils/T/tracer/gui/x.h b/common/utils/T/tracer/gui/x.h index 41cf65393bcdeaafafa1c4413ca65727c69f04cb..e8f1d42d136fdfb979c5eea7b74c95649e52401b 100644 --- a/common/utils/T/tracer/gui/x.h +++ b/common/utils/T/tracer/gui/x.h @@ -41,6 +41,12 @@ void x_fill_rectangle(x_connection *c, x_window *w, int color, void x_draw_string(x_connection *_c, x_window *_w, int color, int x, int y, const char *t); +/* specials functions to plot many points + * you call several times x_add_point() then x_plot_points() + */ +void x_add_point(x_connection *c, int x, int y); +void x_plot_points(x_connection *c, x_window *w, int color); + /* this function copies the pixmap to the window */ void x_draw(x_connection *c, x_window *w); diff --git a/common/utils/T/tracer/gui/x_defs.h b/common/utils/T/tracer/gui/x_defs.h index 43b99f7cf7ae907f2245b2f51ff9ac96b68b7f30..41817d06ceb95ebb1dc1ec6ad11dcd1c0ad72fbf 100644 --- a/common/utils/T/tracer/gui/x_defs.h +++ b/common/utils/T/tracer/gui/x_defs.h @@ -7,6 +7,9 @@ struct x_connection { Display *d; GC *colors; int ncolors; + XPoint *pts; + int pts_size; + int pts_maxsize; }; struct x_window {