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 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330
|
/* Graphics.cpp
*
* Copyright (C) 1992-2011 Paul Boersma
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation; either version 2 of the License, or (at
* your option) any later version.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
* See the GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
*/
#include <stdarg.h>
#include "GraphicsP.h"
#include "enums_getText.h"
#include "Graphics_enums.h"
#include "enums_getValue.h"
#include "Graphics_enums.h"
/***** Methods *****/
Thing_implement (Graphics, Thing, 0);
void structGraphics :: v_destroy () {
Melder_free (record);
Graphics_Parent :: v_destroy ();
}
/* On Macintosh, the Device Coordinates are Mac window coordinates.
* However, we would like to be able to call Graphics_setWsViewport () with widget coordinates.
* The following routine computes the conversion. It is called by Graphics_init () and by
* Graphics_setWsViewport ().
*/
static void widgetToWindowCoordinates (I) {
#if mac
iam (Graphics);
if (my screen) {
iam (GraphicsScreen);
if (my d_drawingArea) {
GuiObject widget = my d_drawingArea;
int shellX = 0, shellY = 0;
do {
int x = GuiObject_getX (widget), y = GuiObject_getY (widget);
shellX += x;
shellY += y;
widget = GuiObject_parent (widget);
} while (! XtIsShell (widget));
my d_x1DC += shellX;
my d_x2DC += shellX;
my d_y1DC += shellY;
my d_y2DC += shellY;
}
}
#else
(void) void_me;
#endif
}
static void computeTrafo (I) {
iam (Graphics);
double worldScaleX, worldScaleY, workScaleX, workScaleY;
worldScaleX = (my d_x2NDC - my d_x1NDC) / (my d_x2WC - my d_x1WC);
worldScaleY = (my d_y2NDC - my d_y1NDC) / (my d_y2WC - my d_y1WC);
my deltaX = my d_x1NDC - my d_x1WC * worldScaleX;
my deltaY = my d_y1NDC - my d_y1WC * worldScaleY;
workScaleX = (my d_x2DC - my d_x1DC) / (my d_x2wNDC - my d_x1wNDC);
my deltaX = my d_x1DC - (my d_x1wNDC - my deltaX) * workScaleX;
my scaleX = worldScaleX * workScaleX;
if (my yIsZeroAtTheTop) {
workScaleY = ((int) my d_y1DC - (int) my d_y2DC) / (my d_y2wNDC - my d_y1wNDC);
my deltaY = my d_y2DC - (my d_y1wNDC - my deltaY) * workScaleY;
} else {
workScaleY = ((int) my d_y2DC - (int) my d_y1DC) / (my d_y2wNDC - my d_y1wNDC);
my deltaY = my d_y1DC - (my d_y1wNDC - my deltaY) * workScaleY;
}
my scaleY = worldScaleY * workScaleY;
}
/***** WORKSTATION FUNCTIONS *****/
void Graphics_init (Graphics me) {
my d_x1DC = my d_x1DCmin = 0; my d_x2DC = my d_x2DCmax = 32767;
my d_y1DC = my d_y1DCmin = 0; my d_y2DC = my d_y2DCmax = 32767;
my d_x1WC = my d_x1NDC = my d_x1wNDC = 0.0;
my d_x2WC = my d_x2NDC = my d_x2wNDC = 1.0;
my d_y1WC = my d_y1NDC = my d_y1wNDC = 0.0;
my d_y2WC = my d_y2NDC = my d_y2wNDC = 1.0;
widgetToWindowCoordinates (me);
computeTrafo (me);
my lineWidth = 1.0;
my arrowSize = 1.0;
my font = kGraphics_font_HELVETICA;
my fontSize = 10;
my fontStyle = Graphics_NORMAL;
my record = NULL;
my irecord = my nrecord = 0;
my percentSignIsItalic = 1;
my numberSignIsBold = 1;
my circumflexIsSuperscript = 1;
my underscoreIsSubscript = 1;
my dollarSignIsCode = 0;
my atSignIsLink = 0;
}
Graphics Graphics_create (int resolution) {
Graphics me = (Graphics) Thing_new (Graphics);
Graphics_init (me);
my resolution = resolution;
return me;
}
int Graphics_getResolution (Graphics me) {
return my resolution;
}
void Graphics_setWsViewport (Graphics me,
long x1DC, long x2DC, long y1DC, long y2DC)
{
if (x1DC < my d_x1DCmin || x2DC > my d_x2DCmax || y1DC < my d_y1DCmin || y2DC > my d_y2DCmax) {
static MelderString warning = { 0 };
MelderString_empty (& warning);
MelderString_append (& warning, L"Graphics_setWsViewport: coordinates too large:\n",
Melder_integer (x1DC), L"..", Melder_integer (x2DC), L" x ", Melder_integer (y1DC), L"..", Melder_integer (y2DC));
MelderString_append (& warning, L" goes outside ",
Melder_integer (my d_x1DCmin), L"..", Melder_integer (my d_x2DCmax), L" x ", Melder_integer (my d_y1DCmin), L"..", Melder_integer (my d_y2DCmax), L".");
Melder_warning (warning.string);
x1DC = my d_x1DCmin;
x2DC = my d_x2DCmax;
y1DC = my d_y1DCmin;
y2DC = my d_y2DCmax;
}
my d_x1DC = x1DC;
my d_x2DC = x2DC;
my d_y1DC = y1DC;
my d_y2DC = y2DC;
widgetToWindowCoordinates (me);
#if win
if (my screen && my printer) {
GraphicsScreen mescreen = (GraphicsScreen) me;
/*
* Map page coordinates to paper coordinates.
*/
mescreen -> d_x1DC -= GetDeviceCaps (mescreen -> d_gdiGraphicsContext, PHYSICALOFFSETX);
mescreen -> d_x2DC -= GetDeviceCaps (mescreen -> d_gdiGraphicsContext, PHYSICALOFFSETX);
mescreen -> d_y1DC -= GetDeviceCaps (mescreen -> d_gdiGraphicsContext, PHYSICALOFFSETY);
mescreen -> d_y2DC -= GetDeviceCaps (mescreen -> d_gdiGraphicsContext, PHYSICALOFFSETY);
}
#endif
computeTrafo (me);
}
void Graphics_resetWsViewport (Graphics me,
long x1DC, long x2DC, long y1DC, long y2DC)
{
my d_x1DC = x1DC;
my d_x2DC = x2DC;
my d_y1DC = y1DC;
my d_y2DC = y2DC;
computeTrafo (me);
}
void Graphics_inqWsViewport (Graphics me, long *x1DC, long *x2DC, long *y1DC, long *y2DC) {
*x1DC = my d_x1DC;
*x2DC = my d_x2DC;
*y1DC = my d_y1DC;
*y2DC = my d_y2DC;
}
void Graphics_setWsWindow (Graphics me, double x1NDC, double x2NDC, double y1NDC, double y2NDC) {
my d_x1wNDC = x1NDC;
my d_x2wNDC = x2NDC;
my d_y1wNDC = y1NDC;
my d_y2wNDC = y2NDC;
computeTrafo (me);
if (my recording)
{ op (SET_WS_WINDOW, 4); put (x1NDC); put (x2NDC); put (y1NDC); put (y2NDC); }
}
void Graphics_inqWsWindow (Graphics me, double *x1NDC, double *x2NDC, double *y1NDC, double *y2NDC) {
*x1NDC = my d_x1wNDC;
*x2NDC = my d_x2wNDC;
*y1NDC = my d_y1wNDC;
*y2NDC = my d_y2wNDC;
}
/***** CO-ORDINATE TRANFORMATIONS *****/
void Graphics_DCtoWC (Graphics me, long xDC, long yDC, double *xWC, double *yWC) {
if (my yIsZeroAtTheTop) {
*xWC = (xDC + 0.5 - my deltaX) / my scaleX;
*yWC = (yDC - 0.5 - my deltaY) / my scaleY;
} else {
*xWC = (xDC + 0.5 - my deltaX) / my scaleX;
*yWC = (yDC + 0.5 - my deltaY) / my scaleY;
}
}
#define wdx(x) ((x) * my scaleX + my deltaX)
#define wdy(y) ((y) * my scaleY + my deltaY)
void Graphics_WCtoDC (Graphics me, double xWC, double yWC, long *xDC, long *yDC) {
*xDC = wdx (xWC);
*yDC = wdy (yWC);
}
/***** OUTPUT PRIMITIVES, RECORDABLE *****/
void Graphics_setViewport (Graphics me, double x1NDC, double x2NDC, double y1NDC, double y2NDC) {
my d_x1NDC = x1NDC;
my d_x2NDC = x2NDC;
my d_y1NDC = y1NDC;
my d_y2NDC = y2NDC;
computeTrafo (me);
if (my recording)
{ op (SET_VIEWPORT, 4); put (x1NDC); put (x2NDC); put (y1NDC); put (y2NDC); }
}
void Graphics_setInner (Graphics me) {
double margin = 2.8 * my fontSize * my resolution / 72.0;
double wDC = (my d_x2DC - my d_x1DC) / (my d_x2wNDC - my d_x1wNDC) * (my d_x2NDC - my d_x1NDC);
double hDC = abs (my d_y2DC - my d_y1DC) / (my d_y2wNDC - my d_y1wNDC) * (my d_y2NDC - my d_y1NDC);
double dx = 1.5 * margin / wDC;
double dy = margin / hDC;
my horTick = 0.06 * dx, my vertTick = 0.09 * dy;
if (dx > 0.4) dx = 0.4;
if (dy > 0.4) dy = 0.4;
my horTick /= 1 - 2 * dx, my vertTick /= 1 - 2 * dy;
my outerViewport.x1NDC = my d_x1NDC;
my outerViewport.x2NDC = my d_x2NDC;
my outerViewport.y1NDC = my d_y1NDC;
my outerViewport.y2NDC = my d_y2NDC;
my d_x1NDC = (1 - dx) * my outerViewport.x1NDC + dx * my outerViewport.x2NDC;
my d_x2NDC = (1 - dx) * my outerViewport.x2NDC + dx * my outerViewport.x1NDC;
my d_y1NDC = (1 - dy) * my outerViewport.y1NDC + dy * my outerViewport.y2NDC;
my d_y2NDC = (1 - dy) * my outerViewport.y2NDC + dy * my outerViewport.y1NDC;
computeTrafo (me);
if (my recording) { op (SET_INNER, 0); }
}
void Graphics_unsetInner (Graphics me) {
my d_x1NDC = my outerViewport.x1NDC;
my d_x2NDC = my outerViewport.x2NDC;
my d_y1NDC = my outerViewport.y1NDC;
my d_y2NDC = my outerViewport.y2NDC;
computeTrafo (me);
if (my recording)
{ op (UNSET_INNER, 0); }
}
void Graphics_setWindow (Graphics me, double x1WC, double x2WC, double y1WC, double y2WC) {
my d_x1WC = x1WC;
my d_x2WC = x2WC;
my d_y1WC = y1WC;
my d_y2WC = y2WC;
computeTrafo (me);
if (my recording)
{ op (SET_WINDOW, 4); put (x1WC); put (x2WC); put (y1WC); put (y2WC); }
}
/***** INQUIRIES TO CURRENT GRAPHICS *****/
void Graphics_inqViewport (Graphics me, double *x1NDC, double *x2NDC, double *y1NDC, double *y2NDC) {
*x1NDC = my d_x1NDC;
*x2NDC = my d_x2NDC;
*y1NDC = my d_y1NDC;
*y2NDC = my d_y2NDC;
}
void Graphics_inqWindow (Graphics me, double *x1WC, double *x2WC, double *y1WC, double *y2WC) {
*x1WC = my d_x1WC;
*x2WC = my d_x2WC;
*y1WC = my d_y1WC;
*y2WC = my d_y2WC;
}
Graphics_Viewport Graphics_insetViewport
(Graphics me, double x1rel, double x2rel, double y1rel, double y2rel)
{
Graphics_Viewport previous;
previous.x1NDC = my d_x1NDC;
previous.x2NDC = my d_x2NDC;
previous.y1NDC = my d_y1NDC;
previous.y2NDC = my d_y2NDC;
Graphics_setViewport
(me, (1 - x1rel) * my d_x1NDC + x1rel * my d_x2NDC,
x2rel * my d_x2NDC + (1 - x2rel) * my d_x1NDC,
(1 - y1rel) * my d_y1NDC + y1rel * my d_y2NDC,
y2rel * my d_y2NDC + (1 - y2rel) * my d_y1NDC);
return previous;
}
void Graphics_resetViewport (Graphics me, Graphics_Viewport viewport) {
Graphics_setViewport (me, viewport.x1NDC, viewport.x2NDC, viewport.y1NDC, viewport.y2NDC);
}
/* Millimetres. */
double Graphics_dxMMtoWC (Graphics me, double dx_mm) {
return dx_mm * my resolution / (25.4 * my scaleX);
}
double Graphics_dyMMtoWC (Graphics me, double dy_mm) {
return my yIsZeroAtTheTop ?
dy_mm * my resolution / (-25.4 * my scaleY) : dy_mm * my resolution / (25.4 * my scaleY);
}
double Graphics_distanceWCtoMM (Graphics me, double x1WC, double y1WC, double x2WC, double y2WC) {
double dxDC = (x1WC - x2WC) * my scaleX;
double dyDC = (y1WC - y2WC) * my scaleY;
return sqrt (dxDC * dxDC + dyDC * dyDC) * 25.4 / my resolution;
}
double Graphics_dxWCtoMM (Graphics me, double dxWC) {
return dxWC * my scaleX * 25.4 / my resolution;
}
double Graphics_dyWCtoMM (Graphics me, double dyWC) {
return my yIsZeroAtTheTop ?
dyWC * my scaleY * -25.4 / my resolution : dyWC * my scaleY * 25.4 / my resolution;
}
/* End of file Graphics.cpp */
|