X-Git-Url: http://git.maemo.org/git/?p=scdataviz;a=blobdiff_plain;f=graph.c;h=cd2b05652c5df5d15a2d31803160a6e09e097e6b;hp=1b0f4685303145fd16d756b21f1202184e63917c;hb=099e099f2dc85d096b0dc73865e4ca94bcc9585c;hpb=0c8587ee853fe75d965f89a9de1901166c544001 diff --git a/graph.c b/graph.c index 1b0f468..cd2b056 100644 --- a/graph.c +++ b/graph.c @@ -32,6 +32,11 @@ along with this program. If not, see . #include #include #include +#include + +#ifdef DEBUG +#define DEBUG_AUTOAXIS +#endif G_DEFINE_TYPE(Graph, graph, G_TYPE_OBJECT); @@ -44,6 +49,7 @@ static void graph_init(Graph *graph) { graph->symbol = CIRCLE; graph->points = g_ptr_array_new(); graph->lines = NULL; + graph->xaxis = graph->yaxis = NULL; } Graph *graph_new(void) { @@ -81,13 +87,34 @@ int graph_add_point(Graph* graph, double x, double y, const GString *label) { return 0; } +int graph_add_graph_line(Graph* graph, struct graph_line *l) { + if(l == NULL) return 1; + if(graph->lines == NULL) { + if((graph->lines = g_ptr_array_new()) == NULL) return 1; + } + g_ptr_array_add(graph->lines, l); + if((graph->points->len == 0) && + (graph->lines->len == 1)) { + graph->maxx = graph->minx = l->p0_x; + graph->maxy = graph->miny = l->p0_y; + }else{ + if(l->p0_x > graph->maxx) graph->maxx = l->p0_x; + if(l->p0_x < graph->minx) graph->minx = l->p0_x; + if(l->p0_y > graph->maxy) graph->maxy = l->p0_y; + if(l->p0_y < graph->miny) graph->miny = l->p0_y; + } + if(l->p3_x > graph->maxx) graph->maxx = l->p3_x; + if(l->p3_x < graph->minx) graph->minx = l->p3_x; + if(l->p3_y > graph->maxy) graph->maxy = l->p3_y; + if(l->p3_y < graph->miny) graph->miny = l->p3_y; + return 0; +} + + int graph_add_line(Graph* graph, double p0_x, double p0_y, double p1_x, double p1_y, double p2_x, double p2_y, double p3_x, double p3_y) { #ifdef DEBUG fprintf(stderr, "graph_add_line(%d, p0_x=%g, p0_y=%g, p1_x=%g, p1_y=%g, p2_x=%g, p2_y=%g, p3_x=%g, p3_y=%g\n", (unsigned int) graph, p0_x, p0_y, p1_x, p1_y, p2_x, p2_y, p3_x, p3_y); #endif - if(graph->lines == NULL) { - if((graph->lines = g_ptr_array_new()) == NULL) return 1; - } struct graph_line *l; if((l=(struct graph_line*)malloc(sizeof(struct graph_line))) == NULL) return 2; l->p0_x=p0_x; @@ -98,22 +125,7 @@ int graph_add_line(Graph* graph, double p0_x, double p0_y, double p1_x, double p l->p2_y=p2_y; l->p3_x=p3_x; l->p3_y=p3_y; - g_ptr_array_add(graph->lines, l); - if((graph->points->len == 0) && - (graph->lines->len == 1)) { - graph->maxx = graph->minx = p0_x; - graph->maxy = graph->miny = p0_y; - }else{ - if(p0_x > graph->maxx) graph->maxx = p0_x; - if(p0_x < graph->minx) graph->minx = p0_x; - if(p0_y > graph->maxy) graph->maxy = p0_y; - if(p0_y < graph->miny) graph->miny = p0_y; - } - if(p3_x > graph->maxx) graph->maxx = p3_x; - if(p3_x < graph->minx) graph->minx = p3_x; - if(p3_y > graph->maxy) graph->maxy = p3_y; - if(p3_y < graph->miny) graph->miny = p3_y; - return 0; + return graph_add_graph_line(graph, l); } struct cxt { @@ -125,10 +137,10 @@ static void linear_interpolate(gpointer data, gpointer user_data) { struct cxt *cxt = user_data; struct graph_point *p3 = data; if(cxt->p0 != NULL) { - double p1_x = (p3->x - cxt->p0->x)/3.0; - double p1_y = (p3->y - cxt->p0->y)/3.0; - double p2_x = (p3->x + 2*cxt->p0->x)/3.0; - double p2_y = (p3->y + 2*cxt->p0->y)/3.0; + double p1_x = (p3->x + 2*cxt->p0->x)/3.0; + double p1_y = (p3->y + 2*cxt->p0->y)/3.0; + double p2_x = (2*p3->x + cxt->p0->x)/3.0; + double p2_y = (2*p3->y + cxt->p0->y)/3.0; graph_add_line(cxt->graph, cxt->p0->x, cxt->p0->y, p1_x, p1_y, p2_x, p2_y, p3->x, p3->y); } cxt->p0 = p3; @@ -140,3 +152,91 @@ void graph_add_linear_connectors(Graph* graph) { cxt.p0 = NULL; g_ptr_array_foreach(graph->points, &linear_interpolate, &cxt); } + +void graph_bezier_linear_to_cubic(double x0, double x3, double *x1, double *x2) { + *x1 = (x3 + 2.0*x0)/3.0; + *x2 = (2.0*x3 + x0)/3.0; +} + +void graph_bezier_linear_to_quadratic(double x0, double x3, double *x1) { + *x1 = (x3 + x0)/2.0; +} + +void graph_bezier_quadratic_to_cubic(double x0, double x3, double *x1, double *x2) { + *x2 = (x3-2.0*(*x1))/3.0; + *x1 = (x0-2.0*(*x1))/3.0; +} + +void graph_set_xaxis(Graph *g, struct graph_axis *axis) { + if(g->xaxis != NULL) { + free(g->xaxis); + } + g->xaxis=axis; +} +void graph_set_yaxis(Graph *g, struct graph_axis *axis) { + if(g->yaxis != NULL) { + free(g->yaxis); + } + g->yaxis=axis; +} + +struct graph_axis* autoset_axis(Graph* g, GString* title, double min, double max) { + struct graph_axis *axis; + double range_mag; + double start_mag; + double stop_mag; + int i, j; + if(g->points->len == 0) { + return NULL; + } + if((axis=(struct graph_axis *)malloc(sizeof(struct graph_axis))) == NULL) { + return NULL; + } + if(g->points->len == 1) { + axis->major=1; + axis->minor=0; + axis->subminor=0; + axis->major_start=min; + axis->major_step=max; + }else{ + range_mag = logb(max - min); + if(min == 0) + start_mag = 0; + else + start_mag = copysign(pow(10, floor(log10(min))), min); + if(max == 0) + stop_mag = 0; + else + stop_mag = copysign(pow(10, ceil(log10(max))), max); + for(i=1; i<9; i++) { + if(i*start_mag > min) break; + } + i--; + for(j=10; j>1; j--) { + if(j*(stop_mag/10) < max) break; + } + j++; + axis->major=10; + axis->minor=1; + axis->subminor=4; + axis->major_start=i*start_mag; + axis->major_step=(j*(stop_mag/10) - axis->major_start)/(axis->major); + } + axis->title=g_string_new(title->str); + #ifdef DEBUG_AUTOAXIS + fprintf(stderr, "graph_autoset_xaxis: xmin=%g, log10(xmin)=%g, floor=%g, pow=%g round=%g\n", min, log10(min), floor(log10(min)), pow(10, floor(log10(min))), round(pow(10, floor(log10(min))))); + fprintf(stderr, "graph_autoset_xaxis: xmax=%g, log10(xmax)=%g, floor=%g, pow=%g round=%g\n", max, log10(max), floor(log10(max)), pow(10, floor(log10(max))), round(pow(10, floor(log10(max))))); + fprintf(stderr, "graph_autoset_xaxis: xmin=%g,max=%g start_mag=%g, stop_mag=%g range_mag=%g\n", min, max, start_mag, stop_mag, range_mag); + #endif + return axis; +} + +int graph_autoset_xaxis(Graph *g, GString *title) { + graph_set_xaxis(g, autoset_axis(g, title, g->minx, g->maxx)); + return 0; +} + +int graph_autoset_yaxis(Graph *g, GString *title) { + graph_set_yaxis(g, autoset_axis(g, title, g->miny, g->maxy)); + return 0; +}