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
|
/*****************************************************************************
Copyright 1988, 1989 by Digital Equipment Corporation, Maynard, Massachusetts.
All Rights Reserved
Permission to use, copy, modify, and distribute this software and its
documentation for any purpose and without fee is hereby granted,
provided that the above copyright notice appear in all copies and that
both that copyright notice and this permission notice appear in
supporting documentation, and that the name of Digital not be
used in advertising or publicity pertaining to distribution of the
software without specific, written prior permission.
DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
SOFTWARE.
******************************************************************************/
#include "x11perf.h"
static XPoint *points;
static GC pgc;
static void
GenerateLines(XParms xp, Parms p, Bool ddashed)
{
int size;
int half; /* Half of width if wide line */
int i;
int rows; /* Number of rows filled in current column */
int x, y; /* Next point */
int xdir, ydir; /* Which direction x, y are going */
int bigxdir;
int x1 = 0, y1 = 0; /* offsets to compute next point from current */
int phase; /* how far into 0..4*(size_1) we are */
float phasef; /* how far we are in real numbers */
float phaseinc; /* how much to increment phasef at each segment */
int size4; /* 4 * size */
if(ddashed)
pgc = xp->ddfggc;
else
pgc = xp->fggc;
size = p->special;
size4 = 4 * (size+1);
half = (size + 19) / 20;
points = (XPoint *)malloc((p->objects+1) * sizeof(XPoint));
/* All this x, x1, x1inc, etc. stuff is to create a pattern that
(1) scans down the screen vertically
(2) rotates the endpoints through all possible orientations
(3) bounces off bottom and top of window as needed
(4) moves left or right at each bounce to make things less boring
*/
x = half;
y = half;
xdir = 1;
ydir = 1;
bigxdir = 1;
phasef = 0.0;
phaseinc = ((float)size4) / ((float)p->objects);
if (phaseinc < 1.0) phaseinc = 1.0;
rows = 0;
points[0].x = x;
points[0].y = y;
for (i = 1; i != (p->objects+1); i++) {
phase = phasef;
switch (phase / (size+1)) {
case 0:
x1 = size;
y1 = phase;
break;
case 1:
x1 = size - phase % (size+1);
y1 = size;
break;
case 2:
x1 = phase % (size+1);
y1 = size;
break;
case 3:
x1 = size;
y1 = size - phase % (size+1);
break;
} /* end switch */
/* Move down or up the screen */
y += (ydir * y1);
/* If off either top or bottom, backtrack to previous position and go
the other way instead. Also move in bigxdir if not already. */
rows++;
if (y < half || y >= (HEIGHT-half) || rows > MAXROWS) {
rows = 0;
if (bigxdir > 0) {
if (x + size < WIDTH - half) {
xdir = 1;
} else {
bigxdir = -1;
}
} else {
if (x - size > half) {
xdir = -1;
} else {
bigxdir = 1;
}
}
ydir = -ydir;
y += (2 * ydir * y1);
/* If still off top or bottom, we can't do the line we want.
This will happen infrequently if the window is not twice the
length of the line. So instead, let's draw a line that puts
the line after this approximately through the center of the
window. Since it is very unlikely that both x and y will
need such adjustment, line length (in pixels) should not
change...we just can't get the slope we want for this line. */
if (y < half) {
y = (HEIGHT - y1)/2;
ydir = 1;
} else if (y > (HEIGHT - half)) {
y = (HEIGHT + y1)/2;
ydir = -1;
}
}
/* Move x left or right by x1 */
x += (xdir * x1);
xdir = -xdir;
/* Again, if we are off the bottom then we can't really draw the line
we want. */
if (x < half) {
x = (WIDTH - x1)/2;
xdir = 1;
} else if (x > (WIDTH - half)) {
x = (WIDTH + x1)/2;
xdir = -1;
}
points[i].x = x;
points[i].y = y;
/* Increment phasef */
phasef += phaseinc;
if (phasef >= size4) phasef -= size4;
}
}
int
InitLines(XParms xp, Parms p, int64_t reps)
{
GenerateLines(xp, p, False);
return reps;
}
static int
GenerateWideLines(XParms xp, Parms p, int64_t reps, Bool ddashed)
{
int size;
GenerateLines(xp, p, ddashed);
size = p->special;
if(ddashed) {
XSetLineAttributes(xp->d, xp->ddbggc, (int) ((size + 9) / 10),
LineSolid, CapRound, JoinRound);
XSetLineAttributes(xp->d, xp->ddfggc, (int) ((size + 9) / 10),
LineSolid, CapRound, JoinRound);
}
else {
XSetLineAttributes(xp->d, xp->bggc, (int) ((size + 9) / 10),
LineSolid, CapRound, JoinRound);
XSetLineAttributes(xp->d, xp->fggc, (int) ((size + 9) / 10),
LineSolid, CapRound, JoinRound);
}
return reps;
}
int
InitWideLines(XParms xp, Parms p, int64_t reps)
{
return GenerateWideLines(xp, p, reps, False);
}
int
InitDashedLines(XParms xp, Parms p, int64_t reps)
{
char dashes[2];
GenerateLines(xp, p, False);
/* Modify GCs to draw dashed */
XSetLineAttributes(xp->d, xp->bggc, 0, LineOnOffDash, CapButt, JoinMiter);
XSetLineAttributes(xp->d, xp->fggc, 0, LineOnOffDash, CapButt, JoinMiter);
dashes[0] = 3; dashes[1] = 2;
XSetDashes(xp->d, xp->fggc, 0, dashes, 2);
XSetDashes(xp->d, xp->bggc, 0, dashes, 2);
return reps;
}
int
InitWideDashedLines(XParms xp, Parms p, int64_t reps)
{
int size;
XGCValues gcv;
char dashes[2];
(void)GenerateWideLines(xp, p, reps, False);
size = p->special;
size = (size + 9) / 10;
/* Modify GCs to draw dashed */
dashes[0] = 2*size; dashes[1] = 2*size;
gcv.line_style = LineOnOffDash;
XChangeGC(xp->d, xp->fggc, GCLineStyle, &gcv);
XChangeGC(xp->d, xp->bggc, GCLineStyle, &gcv);
XSetDashes(xp->d, xp->fggc, 0, dashes, 2);
XSetDashes(xp->d, xp->bggc, 0, dashes, 2);
return reps;
}
int
InitDoubleDashedLines(XParms xp, Parms p, int64_t reps)
{
char dashes[2];
GenerateLines(xp, p, True);
/* Modify GCs to draw dashed */
XSetLineAttributes(xp->d, xp->ddbggc, 0, LineDoubleDash, CapButt, JoinMiter);
XSetLineAttributes(xp->d, xp->ddfggc, 0, LineDoubleDash, CapButt, JoinMiter);
dashes[0] = 3; dashes[1] = 2;
XSetDashes(xp->d, xp->ddfggc, 0, dashes, 2);
XSetDashes(xp->d, xp->ddbggc, 0, dashes, 2);
return reps;
}
int
InitWideDoubleDashedLines(XParms xp, Parms p, int64_t reps)
{
int size;
XGCValues gcv;
char dashes[2];
(void)GenerateWideLines(xp, p, reps, True);
size = p->special;
size = (size + 9) / 10;
/* Modify GCs to draw dashed */
dashes[0] = 2*size; dashes[1] = 2*size;
gcv.line_style = LineDoubleDash;
XChangeGC(xp->d, xp->ddfggc, GCLineStyle, &gcv);
XChangeGC(xp->d, xp->ddbggc, GCLineStyle, &gcv);
XSetDashes(xp->d, xp->ddfggc, 0, dashes, 2);
XSetDashes(xp->d, xp->ddbggc, 0, dashes, 2);
return reps;
}
void
DoLines(XParms xp, Parms p, int64_t reps)
{
int i;
for (i = 0; i != reps; i++)
{
XDrawLines(xp->d, xp->w, pgc, points, p->objects+1, CoordModeOrigin);
if (pgc == xp->ddbggc)
pgc = xp->ddfggc;
else if(pgc == xp->ddfggc)
pgc = xp->ddbggc;
else if (pgc == xp->bggc)
pgc = xp->fggc;
else
pgc = xp->bggc;
CheckAbort ();
}
}
void
EndLines(XParms xp, Parms p)
{
free(points);
}
|