6 #define A_POGRUBIONY (1 << 0)
10 #define KOLOR_CZERWONY 1
11 #define KOLOR_ZIELONY 2
12 #define KOLOR_BRAZOWY 3
13 #define KOLOR_NIEBIESKI 4
14 #define KOLOR_MAGENTA 5
23 static atrybut const bombki[] = {
24 {A_POGRUBIONY, KOLOR_CZERWONY},
25 {A_POGRUBIONY, KOLOR_NIEBIESKI},
26 {A_POGRUBIONY, KOLOR_BRAZOWY},
27 {A_POGRUBIONY, KOLOR_MAGENTA},
28 {A_POGRUBIONY, KOLOR_CYJAN},
29 {A_POGRUBIONY, KOLOR_BIALY},
31 static int const ile_b = sizeof bombki / sizeof *bombki;
33 static atrybut const spacja = {0, KOLOR_BRAK};
34 static atrybut const choinka = {0, KOLOR_ZIELONY};
35 static atrybut const podstawa = {0, KOLOR_BRAZOWY};
36 static atrybut const podpis = {A_POGRUBIONY, KOLOR_CZERWONY};
37 static atrybut const gwiazdka = {A_POGRUBIONY, KOLOR_BRAZOWY};
39 static void inicjuj_rng()
42 FILE* f = fopen("/dev/urandom", "rb");
45 if (fread(&nowe_ziarno, sizeof nowe_ziarno, 1, f) == 1) {
56 static char const rysunek[] =
67 static void ustaw(atrybut const* attr)
69 static atrybut ostatni = {-1, -1};
70 if (ostatni.attr == attr->attr && ostatni.kolor == attr->kolor) return;
72 putp(exit_attribute_mode);
73 if ((attr->attr & A_POGRUBIONY) != 0) {
74 putp(enter_bold_mode);
76 if (attr->kolor != KOLOR_BRAK) {
77 putp(tparm(set_a_foreground, attr->kolor));
84 setupterm(NULL, 1, NULL);
85 atrybut const* kolor = &choinka;
86 for (int i = 0; rysunek[i] != '\0'; i++) {
88 if (c == '[') kolor = &podstawa;
89 atrybut const* akt = kolor;
90 if (c >= 'a' && c <= 'z') akt = &podpis;
91 if (c == '.') akt = &bombki[rand() % ile_b];
92 if (c == '*') akt = &gwiazdka;
93 if (c == ' ' || c == '\n') akt = &spacja;
94 if (c == ']') kolor = &choinka;
98 putp(exit_attribute_mode);