~aleteoryx/9c

ref: 2a08c37c3db23b27b963442fe273097915bc30ea 9c/spiral.c -rw-r--r-- 2.7 KiB
2a08c37c — glenda spirals! 37 years ago
                                                                                
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
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <event.h>

#define RAD (PI * 2)
#define DEG (PI / 180.0)

Image *bg,*fg;

int frametime;
double spr;
int wings;
double wingrads;
double eccen;

vlong starttime;

void
usage(void)
{
	fprint(2,"usage: %s [-f framerate] [-r rpm] [-w wings] [-e deg]\n", argv0);
	exits("usage");
}

Point
SPt(int x, int y)
{
	return addpt(Pt(x, y), screen->r.min);
}

Rectangle
SRect(int x0, int y0, int x1, int y1)
{
	return rectaddpt(Rect(x0, y0, x1, y1), screen->r.min);
}

Point
imagecenter(Image* img)
{
	return divpt(addpt(img->r.min, img->r.max), 2);
}

double
imageradius(Image* img)
{
	Point dims;
	dims = divpt(subpt(img->r.max, img->r.min), 2);
	return 1.4 + sqrt(dims.x*dims.x + dims.y*dims.y);
}

Point
vecpt(double radians, double radius)
{
	double x,y;
	x = sin(radians) * radius;
	y = cos(radians) * radius;

	return Pt(x + 1, y + 1);
}

void
drawframe(double ts)
{
	double radians, radius;
	Point center;
	Point wingpoints[6];

	radians = fmod(ts / spr, spr) * RAD;
	radius = imageradius(screen) * 1.4;
	center = imagecenter(screen);
	wingpoints[0] = center;
	wingpoints[5] = addpt(center, Pt(1, 1));

	draw(screen, screen->r, bg, nil, SPt(0, 0));

	for(int i = 0; i < wings; i++)
	{
		wingpoints[1] = addpt(center, vecpt(radians + eccen, radius / 3));
		wingpoints[2] = addpt(center, vecpt(radians, radius));
		radians += wingrads;
		wingpoints[3] = addpt(center, vecpt(radians, radius));
		wingpoints[4] = addpt(center, vecpt(radians + eccen, radius / 3));
		radians += wingrads;

		fillbezspline(screen, wingpoints, 6, ~0, fg, Pt(0, 0));
	}
}

double
ftime(void)
{
	return ((double)(nsec() - starttime)) / 1000000000.0;
}

void
eresized(int new)
{
	if(new && getwindow(display, Refnone) < 0)
		fprint(2,"can't reattach to window\n");
	drawframe(ftime());
}

void
main(int argc, char* argv[])
{
	int timer,etype;
	Event e;

	frametime = 1.0 / 30.0 * 1000;
	wings = 3;
	spr = 2;
	eccen = RAD / 6;

	ARGBEGIN{
	case 'f':
		frametime = 1.0 / atof(EARGF(usage())) * 1000;
		break;
	case 'r':
		spr = 1.0 / (atof(EARGF(usage())) / 60.0);
		break;
	case 'w':
		wings = atoi(EARGF(usage()));
		break;
	case 'e':
		eccen = DEG * atof(EARGF(usage()));
		break;
	default:
		usage();
	} ARGEND

	if(wings < 1) wings = 1;
	wingrads = PI / (double) wings;

	if(initdraw(nil, nil, "spiral") < 0)
		sysfatal("initdraw: %r");

	fg = allocimage(display, Rect(0,0, 1,1), GREY1, 1, DBlack);
	if(!fg)
		sysfatal("couldn't allocimage!");

	bg = allocimage(display, Rect(0,0, 1,1), GREY1, 1, DWhite);
	if(!bg)
		sysfatal("couldn't allocimage!");

	starttime = nsec();

	einit(Emouse);
	timer = etimer(0, frametime);

	for(;;)
	{
		etype = event(&e);

		if (etype == timer)
			drawframe(ftime());
	}
}