Revert last commit.
[bertos.git] / bertos / gfx / charts.c
1 /**
2  * \file
3  * <!--
4  * This file is part of BeRTOS.
5  *
6  * Bertos is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License as published by
8  * the Free Software Foundation; either version 2 of the License, or
9  * (at your option) any later version.
10  *
11  * This program is distributed in the hope that it will be useful,
12  * but WITHOUT ANY WARRANTY; without even the implied warranty of
13  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14  * GNU General Public License for more details.
15  *
16  * You should have received a copy of the GNU General Public License
17  * along with this program; if not, write to the Free Software
18  * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
19  *
20  * As a special exception, you may use this file as part of a free software
21  * library without restriction.  Specifically, if other files instantiate
22  * templates or use macros or inline functions from this file, or you compile
23  * this file and link it with other files to produce an executable, this
24  * file does not by itself cause the resulting executable to be covered by
25  * the GNU General Public License.  This exception does not however
26  * invalidate any other reasons why the executable file might be covered by
27  * the GNU General Public License.
28  *
29  * Copyright 2004 Develer S.r.l. (http://www.develer.com/)
30  * Copyright 1999, 2000, 2001, 2003 Bernie Innocenti <bernie@codewiz.org>
31  *
32  * -->
33  *
34  * \version $Id$
35  * \author Bernie Innocenti <bernie@codewiz.org>
36  *
37  * \brief Simple charts on top of mware/gfx routines (implementation).
38  *
39  */
40
41 #include "charts.h"
42 #include <gfx/gfx.h>
43
44
45 #ifndef CONFIG_CHART_ARROWS
46 #define CONFIG_CHART_ARROWS 0
47 #endif
48
49
50 void chart_init(Bitmap *bm, coord_t xmin, coord_t ymin, coord_t xmax, coord_t ymax)
51 {
52         /* Clear the chart area */
53         gfx_rectClear(bm, xmin, ymin, xmax, ymax);
54
55         gfx_setClipRect(bm, xmin + CHART_BORDERLEFT, ymin + CHART_BORDERTOP,
56                 xmax - CHART_BORDERRIGHT, ymax - CHART_BORDERBOTTOM);
57
58         chart_drawAxis(bm);
59 }
60
61
62 void chart_setScale(Bitmap *bm, chart_x_t xmin, chart_y_t ymin, chart_x_t xmax, chart_y_t ymax)
63 {
64         gfx_setViewRect(bm, xmin, ymin, xmax, ymax);
65 }
66
67
68 /**
69  * Draw the chart axes
70  */
71 void chart_drawAxis(Bitmap *bm)
72 {
73 #if CONFIG_CHART_ARROWS
74
75         /* Draw axis */
76         gfx_moveTo(bm, bm->cr.xmin, bm->cr.ymin + 4);
77         gfx_lineTo(bm, bm->cr.xmin, bm->cr.ymax - 1);
78         gfx_lineTo(bm, bm->cr.xmax - 4 - 1, bm->cr.ymax - 1);
79
80         /* Draw up arrow */
81         gfx_moveTo(bm, bm->cr.xmin - 2, bm->cr.ymin + 3);
82         gfx_lineTo(bm, bm->cr.xmin + 2, bm->cr.ymin + 3);
83         gfx_lineTo(bm, bm->cr.xmin, bm->cr.ymin);
84         gfx_lineTo(bm, bm->cr.xmin - 2, bm->cr.ymin + 3);
85
86         /* Draw right arrow */
87         gfx_moveTo(bm, bm->cr.xmax - 4, bm->cr.ymax - 3);
88         gfx_lineTo(bm, bm->cr.xmax - 4, bm->cr.ymax + 1);
89         gfx_lineTo(bm, bm->cr.xmax - 1, bm->cr.ymax - 1);
90         gfx_lineTo(bm, bm->cr.xmax - 4, bm->cr.ymax - 3);
91
92 #else /* CONFIG_CHART_ARROWS */
93
94         /* Draw a box around the chart */
95         gfx_rectDraw(bm, bm->cr.xmin, bm->cr.ymin, bm->cr.xmax, bm->cr.ymax);
96
97 #endif /* CONFIG_CHART_ARROWS */
98
99         //CHECK_WALL(wall_before_raster, WALL_SIZE);
100         //CHECK_WALL(wall_after_raster, WALL_SIZE);
101 }
102
103
104 /**
105  * Draw a set of \a curve_cnt connected segments, whose Y coordinates
106  * are identified by the \a curve_y array and X-coordinates are
107  * are evenly spaced by one virtual unit.
108  */
109 void chart_drawCurve(Bitmap *bm, const chart_y_t *curve_y, int curve_cnt)
110 {
111         int i;
112
113         gfx_moveTo(bm, gfx_transformX(bm, 0), gfx_transformY(bm, curve_y[0]));
114
115         for (i = 1; i < curve_cnt; i++)
116                 gfx_lineTo(bm, gfx_transformX(bm, i), gfx_transformY(bm, curve_y[i]));
117
118         //CHECK_WALL(wall_before_raster, WALL_SIZE);
119         //CHECK_WALL(wall_after_raster, WALL_SIZE);
120 }
121
122
123 /**
124  * Disegna dei dot in corrispondenza delle coppie (dotsx[i];dotsy[i])
125  * Se dotsx e' NULL, i punti vengono disegnati ad intervalli regolari.
126  */
127 void chart_drawDots(Bitmap *bm, const chart_x_t *dots_x, const chart_y_t *dots_y, int cnt)
128 {
129         int i;
130         coord_t x, y;
131
132         for (i = 0; i < cnt; i++)
133         {
134                 if (dots_x)
135                         x = gfx_transformX(bm, dots_x[i]);
136                 else
137                         x = gfx_transformX(bm, i);
138
139                 y = gfx_transformY(bm, dots_y[i]);
140
141                 /* Draw tick over the curve */
142                 gfx_rectFill(bm,
143                         x - TICKS_WIDTH / 2, y - TICKS_HEIGHT / 2,
144                         x + (TICKS_WIDTH + 1) / 2, y + (TICKS_HEIGHT + 1) / 2);
145
146                 /* Draw vertical line from the curve to the X-axis */
147                 //gfx_drawLine(bm, x, y, x, bm->cr.ymax - 1);
148         }
149
150         //CHECK_WALL(wall_before_raster, WALL_SIZE);
151         //CHECK_WALL(wall_after_raster, WALL_SIZE);
152 }
153