~aleteoryx/9c

ref: 16b2039dcba74f8a3b3a906600a5da0fa10ac87d 9c/spiral.c -rw-r--r-- 2.2 KiB
16b2039d — glenda wings! 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
#include <u.h>
#include <libc.h>
#include <draw.h>
#include <event.h>

#define RAD (PI * 2)

Image *bg,*fg;

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

vlong starttime;

void
usage(void)
{
	fprint(2,"usage: %s [-f framerate] [-r rpm] [-w wings]\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;

	radians = fmod(ts / spr, spr) * RAD;
	radius = imageradius(screen);
	center = imagecenter(screen);

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

	for(int i = 0; i < wings; i++)
	{
		line(screen, center, addpt(vecpt(radians, radius), center), Enddisc, Enddisc, 2, fg, Pt(0,0));
		radians += wingrads * 2;
	}
}

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;

	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;
	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());
	}
}