1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250
|
#include <tcl.h>
#include <tk.h>
#include <stdlib.h>
#include <ctype.h>
#include <string.h>
#include "tkRaster.h"
#include "tkRasterBuiltIn.h"
static int ParseCoords (Tcl_Interp *interp, int argc, char **argv,
double **coordptr, int *ncoordsptr)
/* -----------
*
* Parses the argv strings as doubles. Tries to detect when a string
* represents a number and stops when the string is not numeric. Stores
* in *coordptr a pointer to an array (dynamically allocatd) with
* the parsed values and in *ncoordsptr the number of values found.
* Returns a standard Tcl Result.
*/
{
int i;
double* coord = (double*) malloc (sizeof (double) * argc);
for (i = 0;
i < argc && (isdigit (argv [i][0]) ||
(argv [i][0]=='-' && isdigit (argv [i][1])));
++i) {
if (Tcl_GetDouble (interp, argv [i], & coord [i]) != TCL_OK) {
free (coord);
return TCL_ERROR;
}
}
* coordptr = coord;
* ncoordsptr = i;
return TCL_OK;
}
static int DrawLine (Tcl_Interp *interp, Tk_Raster *raster,
ClientData clientdata, int argc, char **argv)
/* --------
*
* Implements raster drawing commands of the form:
*
* <raster> draw_line <x0> <y0> <x1> <y1> ?... <xN> <yN>? ?-style <env>?
*
* Draws a polygonal line linking the successive points with
* coordinates (<xi>,<yi>) using the color and linestyle of the raster's
* current drawing environment or the one specified in the -style option.
*
* or
* <raster> fill_polygon <x0> <y0> <x1> <y1> ?... <xN> <yN>? ?-style <env>?
*
* Fills the polygon instead of drawing its outline.
*/
{
double *coords = NULL;
int n;
ClientData prevdrawenv = NULL;
ClientData drawenv;
int envno;
if (ParseCoords (interp, argc-2, argv+2, &coords, &n) != TCL_OK)
goto error;
if (n < 4 || n%2 == 1) {
Tcl_AppendResult (interp, "insufficient # of coordinates", (char*)NULL);
goto error;
}
if (argc > n+2) {
if (strncmp (argv [n+2], "-style", strlen (argv [n+2])) == 0) {
if (argc != n+4) {
Tcl_AppendResult (interp, "expecting style #", (char*) NULL);
goto error;
}
GetDrawEnv (raster, &prevdrawenv);
if (Tcl_GetInt (interp, argv [n+3], &envno) != TCL_OK ||
DrawEnvIndex (interp, raster, envno, &drawenv) != TCL_OK ||
SetDrawEnv (interp, raster, drawenv) != TCL_OK) {
goto error;
}
}
else {
Tcl_AppendResult (interp, "unrecognized option: ", argv [n+2],
(char*) NULL);
goto error;
}
}
if (argv [1][0] == 'f') {
RasterFillPolygon (raster, coords, n/2);
}
else {
RasterDrawLines (raster, coords, n/2);
}
free (coords);
if (prevdrawenv != NULL) SetDrawEnv (interp, raster, prevdrawenv);
return TCL_OK;
error:
if (coords != NULL) free (coords);
if (prevdrawenv != NULL) SetDrawEnv (interp, raster, prevdrawenv);
return TCL_ERROR;
}
static int DrawPoint (Tcl_Interp *interp, Tk_Raster *raster,
ClientData clientdata, int argc, char **argv)
/* --------
*
* Implements a raster drawing command of the form:
*
* <raster> draw_point <x0> <y0> ? ... <xN> <yN>? ?-style <env>?
*
* Draws the given points using the color of the raster's
* current drawing environment or the one specified in the -style option.
*/
{
double *coords = NULL;
int n;
ClientData prevdrawenv = NULL;
ClientData drawenv;
int envno;
if (ParseCoords (interp, argc-2, argv+2, &coords, &n) != TCL_OK)
goto error;
if (n < 2 || n%2 == 1) {
Tcl_AppendResult (interp, "insufficient # of coordinates", (char*)NULL);
goto error;
}
if (argc > n+2) {
if (strncmp (argv [n+2], "-style", strlen (argv [n+2])) == 0) {
if (argc != n+4) {
Tcl_AppendResult (interp, "expecting style #", (char*) NULL);
goto error;
}
GetDrawEnv (raster, &prevdrawenv);
if (Tcl_GetInt (interp, argv [n+3], &envno) != TCL_OK ||
DrawEnvIndex (interp, raster, envno, &drawenv) != TCL_OK ||
SetDrawEnv (interp, raster, drawenv) != TCL_OK) {
goto error;
}
}
else {
Tcl_AppendResult (interp, "unrecognized option: ", argv [n+2],
(char*) NULL);
goto error;
}
}
RasterDrawPoints (raster, coords, n/2);
free (coords);
if (prevdrawenv != NULL) SetDrawEnv (interp, raster, prevdrawenv);
return TCL_OK;
error:
if (coords != NULL) free (coords);
if (prevdrawenv != NULL) SetDrawEnv (interp, raster, prevdrawenv);
return TCL_ERROR;
}
static int DrawRect (Tcl_Interp *interp, Tk_Raster *raster,
ClientData clientdata, int argc, char **argv)
/* ---------
*
* Implements a raster drawing command of the form:
*
* <raster> xxx_rectangle <x0> <y0> <x1> <y1> ?... <xN> <yN>?
* ?-style <env>?
*
* (where xxx is 'draw' or 'fill)
*
* Draws (or fills) the given rectangles using the settings of the raster's
* current drawing environment or the one specified in the -style option.
*/
{
double *coords = NULL;
int n;
ClientData prevdrawenv = NULL;
ClientData drawenv;
int envno;
if (ParseCoords (interp, argc-2, argv+2, &coords, &n) != TCL_OK)
goto error;
if (n < 4 || n%4 != 0) {
Tcl_AppendResult (interp, "insufficient # of coordinates", (char*)NULL);
goto error;
}
if (argc > n+2) {
if (strncmp (argv [n+2], "-style", strlen (argv [n+2])) == 0) {
if (argc != n+4) {
Tcl_AppendResult (interp, "expecting style #", (char*) NULL);
goto error;
}
GetDrawEnv (raster, &prevdrawenv);
if (Tcl_GetInt (interp, argv [n+3], &envno) != TCL_OK ||
DrawEnvIndex (interp, raster, envno, &drawenv) != TCL_OK ||
SetDrawEnv (interp, raster, drawenv) != TCL_OK) {
goto error;
}
}
else {
Tcl_AppendResult (interp, "unrecognized option: ", argv [n+2],
(char*) NULL);
goto error;
}
}
if (argv [1][0] == 'f') {
RasterFillRectangles (raster, coords, n/4);
}
else {
RasterDrawRectangles (raster, coords, n/4);
}
free (coords);
if (prevdrawenv != NULL) SetDrawEnv (interp, raster, prevdrawenv);
return TCL_OK;
error:
if (coords != NULL) free (coords);
if (prevdrawenv != NULL) SetDrawEnv (interp, raster, prevdrawenv);
return TCL_ERROR;
}
int RasterBuiltInInit (interp)
/* -----------------
*
* Initializes the built in raster drawing commands
*/
Tcl_Interp * interp;
{
return (RasterAddPrimitive (interp, "draw_line", DrawLine,
(RasterPrimInitProc*) NULL,
(RasterPrimFreeProc*) NULL) == TCL_OK &&
RasterAddPrimitive (interp, "fill_polygon", DrawLine,
(RasterPrimInitProc*) NULL,
(RasterPrimFreeProc*) NULL) == TCL_OK &&
RasterAddPrimitive (interp, "draw_point", DrawPoint,
(RasterPrimInitProc*) NULL,
(RasterPrimFreeProc*) NULL) == TCL_OK &&
RasterAddPrimitive (interp, "draw_rectangle", DrawRect,
(RasterPrimInitProc*) NULL,
(RasterPrimFreeProc*) NULL) == TCL_OK &&
RasterAddPrimitive (interp, "fill_rectangle", DrawRect,
(RasterPrimInitProc*) NULL,
(RasterPrimFreeProc*) NULL) == TCL_OK)
? TCL_OK : TCL_ERROR;
}
|