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
|
/* This header file is included by mi_fllarc.c (which contains code for
filling a poly-arc) and mi_arc.c (which contains code for drawing a wide
poly-arc). */
#define FULLCIRCLE (360 * 64)
/*----------------------------------------------------------------------*/
/* Structures and macros used by arc-filling code in mi_arc.c */
/*----------------------------------------------------------------------*/
/* Structure containing variables that are updated during a scan through a
filled arc. */
typedef struct
{
int xorg, yorg;
int y;
int dx, dy;
int e;
int ym, yk, xm, xk;
} miFillArc;
/* A floating-point version, used for non-circular arcs one of whose
dimensions (width or height) is greater than 800 pixels. Could use
64-bit integers. */
typedef struct
{
int xorg, yorg; /* upper left corner */
int y; /* vertical semi-axis */
int dx, dy;
double e;
double ym, yk, xm, xk;
} miFillArcD;
/* Which to use? */
#define MI_CAN_FILL_ARC(arc) (((arc)->width == (arc)->height) || \
(((arc)->width <= 800) && ((arc)->height <= 800)))
/* Nothing to draw? */
#define MI_FILLED_ARC_IS_EMPTY(arc) (!(arc)->angle2 || \
!(arc)->width || !(arc)->height || \
(((arc)->width == 1) && ((arc)->height & 1)))
/* used for setup only */
#define MIFILLARCSETUP(info, x, y, e, xk, xm, yk, ym, dx, dy, xorg, yorg) \
x = 0; \
y = info.y; \
e = info.e; \
xk = info.xk; \
xm = info.xm; \
yk = info.yk; \
ym = info.ym; \
dx = info.dx; \
dy = info.dy; \
xorg = info.xorg; \
yorg = info.yorg
#define MIFILLARCSTEP(x, y, e, xk, xm, yk, ym, dx, slw) \
e += yk; \
while (e >= 0) \
{ \
x++; \
xk -= xm; \
e += xk; \
} \
y--; \
yk -= ym; \
slw = (x << 1) + dx; \
if ((e == xk) && (slw > 1)) \
slw--
#define MIFILLARCLOWER(e, xk, y, dy, slw) (((y + dy) != 0) && ((slw > 1) || (e != xk)))
/* pie-slice related things */
typedef struct
{
int x;
int stepx;
int deltax;
int e;
int dy;
int dx;
} miSliceEdge;
typedef struct
{
miSliceEdge edge1, edge2;
int min_top_y, max_top_y;
int min_bot_y, max_bot_y;
bool edge1_top, edge2_top;
bool flip_top, flip_bot;
} miArcSlice;
#define MIARCSLICESTEP(edge) \
edge.x -= edge.stepx; \
edge.e -= edge.dx; \
if (edge.e <= 0) \
{ \
edge.x -= edge.deltax; \
edge.e += edge.dy; \
}
#define MIFILLSLICEUPPER(y, slice) \
((y >= slice.min_top_y) && (y <= slice.max_top_y))
#define MIFILLSLICELOWER(y, slice) \
((y >= slice.min_bot_y) && (y <= slice.max_bot_y))
#define MIARCSLICEUPPER(xl,xr,slice,slw) \
xl = xorg - x; \
xr = xl + slw - 1; \
if (slice.edge1_top && (slice.edge1.x < xr)) \
xr = slice.edge1.x; \
if (slice.edge2_top && (slice.edge2.x > xl)) \
xl = slice.edge2.x;
#define MIARCSLICELOWER(xl,xr,slice,slw) \
xl = xorg - x; \
xr = xl + slw - 1; \
if (!slice.edge1_top && (slice.edge1.x > xl)) \
xl = slice.edge1.x; \
if (!slice.edge2_top && (slice.edge2.x < xr)) \
xr = slice.edge2.x;
/*----------------------------------------------------------------------*/
/* Macros used by wide-arc-drawing code in mi_arc.c */
/*----------------------------------------------------------------------*/
/* used for setup only */
#define MIWIDEARCSETUP(x,y,dy,slw,e,xk,xm,yk,ym) \
x = 0; \
y = slw >> 1; \
yk = y << 3; \
xm = 8; \
ym = 8; \
if (dy) \
{ \
xk = 0; \
if (slw & 1) \
e = -1; \
else \
e = -(y << 2) - 2; \
} \
else \
{ \
y++; \
yk += 4; \
xk = -4; \
if (slw & 1) \
e = -(y << 2) - 3; \
else \
e = - (y << 3); \
}
#define MIFILLINARCSTEP(inx, iny, ine, inxk, inxm, inyk, inym, dx, slw) \
ine += inyk; \
while (ine >= 0) \
{ \
inx++; \
inxk -= inxm; \
ine += inxk; \
} \
iny--; \
inyk -= inym; \
slw = (inx << 1) + dx; \
if ((ine == inxk) && (slw > 1)) \
slw--
/*----------------------------------------------------------------------*/
|