-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.c
85 lines (63 loc) · 1.58 KB
/
main.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
/*Program wyswietla napis po krzywej parametrycznej
oraz losuje wspolrzedne "komety", jezeli kometa "zderzy sie" z napisem program konczy dzialanie
dziala tylko na linuksie przez wykorzystanie biblioteki ncurses niedostpnej na windowsie
*/
#include <ncurses.h>
#include <math.h>
#include <stdlib.h>
#include <stdio.h>
#include <time.h>
#include <unistd.h>
int kolumny = 0;
int rzedy = 0;
char tekst[] = "Krzysztof Brzoska";
char kometa[]="XXX";
char kometa2[]="XXX";
char kometa3[]="XXX";
int main()
{
initscr();
getmaxyx( stdscr, rzedy, kolumny );
double x, y;
int t=0;
time_t tt;
int zarodek= time(&tt);
srand(zarodek);
for (t=8;t<100000;t++){
getmaxyx( stdscr, rzedy, kolumny );
x= 0.2*t*sin(t);
y= 0.2*t*cos(t);
int a = x;
int b = y;
int a1, b1;
if (t%2==0){
a1 = rand()%rzedy-2;
b1 = rand()%kolumny-1;}
if (a== rzedy/2-2){
t=8;
}else if (b== kolumny/2-2){
t=8;
}
start_color();
init_pair(1, COLOR_RED, COLOR_GREEN);
attrset(COLOR_PAIR(1));
mvwaddstr(stdscr, rzedy / 2+a,( kolumny / 2 ) -( sizeof( tekst ) / 2 )+b, tekst );
mvwaddstr(stdscr,a1, b1-1, kometa );
mvwaddstr(stdscr, a1-1, b1-1, kometa2 );
mvwaddstr(stdscr, a1+1, b1-1, kometa3 );
int roznica_a=abs((rzedy / 2)+a-a1);
int roznica_b=abs(( kolumny / 2 )+b-b1);
if ((roznica_a==0 && roznica_b<6) || (roznica_a==1 && roznica_b<6)){
wrefresh(stdscr);
usleep(900000);
wclear(stdscr);
mvwaddstr(stdscr,rzedy/2, kolumny/2-3, "koniec" );
getch();
endwin();
return 0;}
wrefresh(stdscr);
usleep(200000);
wclear(stdscr);
}
return 0;
}