summary refs log tree commit diff homepage
path: root/2022/day10.awk
blob: 5589a1c167f7a4559cb52b98e26bc904ca6d4e7d (plain) (blame)
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
BEGIN {
	cycles = 1;
	X = 1;
}
function cycle() {
	if (cycles == 20 || (cycles-20) % 40 == 0) {
		sum += cycles * X;
	}
	crt[+x,+y] = ((X >= x-1 && X <= x+1) ? "#" : ".");
	if (++x == 40) {
		y++;
		x = 0;
	}
	cycles++;
}
/addx/ {
	cycle();
	cycle();
	X += $2;
}
/noop/ {
	cycle();
}
END {
	print sum;
	for (y = 0; y < 6; ++y) {
		for (x = 0; x < 40; ++x) {
			printf "%s", crt[x,y];
		}
		printf "\n";
	}
}