-
Notifications
You must be signed in to change notification settings - Fork 0
/
fibonacci.c
67 lines (62 loc) · 1.28 KB
/
fibonacci.c
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
void
fibonacci(Monitor *mon, int s) {
unsigned int i, n, nx, ny, nw, nh;
Client *c;
for(n = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next), n++);
if(n == 0)
return;
// FIXME: gap calculation is not that good
nx = mon->wx + gappx;
ny = 0;
nw = mon->ww - 2*gappx;
nh = mon->wh - 2*gappx;
for(i = 0, c = nexttiled(mon->clients); c; c = nexttiled(c->next)) {
if((i % 2 && nh / 2 > 2 * c->bw)
|| (!(i % 2) && nw / 2 > 2 * c->bw)) {
if(i < n - 1) {
if(i % 2)
nh = (nh - gappx) / 2;
else
nw = (nw - gappx) / 2;
if((i % 4) == 2 && !s)
nx += nw + gappx;
else if((i % 4) == 3 && !s)
ny += nh + gappx;
}
if((i % 4) == 0) {
if(s)
ny += nh + gappx;
else
ny -= nh + gappx;
}
else if((i % 4) == 1)
nx += nw + gappx;
else if((i % 4) == 2)
ny += nh + gappx;
else if((i % 4) == 3) {
if(s)
nx += nw + gappx;
else
nx -= nw + gappx;
}
if(i == 0)
{
if(n != 1)
nw = (mon->ww - 2*gappx - gappx) * mon->mfact;
ny = mon->wy + gappx;
}
else if(i == 1)
nw = mon->ww - nw - gappx - 2*gappx;
i++;
}
resize(c, nx, ny, nw - 2 * c->bw, nh - 2 * c->bw, c->bw, 0);
}
}
void
dwindle(Monitor *mon) {
fibonacci(mon, 1);
}
void
spiral(Monitor *mon) {
fibonacci(mon, 0);
}