summaryrefslogtreecommitdiff
path: root/matrix8bytes.c
blob: 5d3ed6357a0897d56bc23b684ab588e219ffe50f (plain)
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
/*
 * This program is free software: you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation, either version 3 of the License, or
 *(at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.

 * You should have received a copy of the GNU General Public License
 * along with this program. If not, see <http://www.gnu.org/licenses/>.
 */

#include <stdio.h>
#include <stdlib.h>
#include <unistd.h>
#include <stdint.h>
#include <time.h>

#define CIRCLE "◯"
#define BLACKCIRCLE "⬤"
#define BALLS 2

uint64_t matrix;

void
printleds(void)
{
	printf("\0337");
	printf("%s", "\033[8;0F");
	printf("%s", "\033[0J");
	/* loop through each byte of matrix */
	int c = 56;
	uint8_t byte;
	while (c >= 0)
	{
		byte = (matrix >> c) & 0xff;
		printf("%s %s %s %s %s %s %s %s\n",
			(byte & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 1) & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 2) & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 3) & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 4) & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 5) & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 6) & 0x01) ? BLACKCIRCLE : CIRCLE,
			((byte >> 7) & 0x01) ? BLACKCIRCLE : CIRCLE);
		c -= 8;
	}
	printf("\0338");
}

int
main(void)
{
	printf("\n\n\n\n\n\n\n\n\n");
	srand(time(NULL));
	matrix = 0xff00000000000000;
	while (1)
	{
		matrix>>=8;
		if (matrix == 0)
			matrix = 0xff00000000000000;
		printleds();
		usleep(200000);
	}
	return 0;
}