-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstartmenu.c
124 lines (117 loc) · 2.17 KB
/
startmenu.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
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
#include "init.h"
#include "startmenu.h"
void startmenu(int *w, int *h, int *s)
{
#ifdef _WIN32
system("cls");
#else
system("clear");
#endif
int width, height, speed;
bool wyborokna = true;
while (wyborokna)
{
int nrrozmiar = 0;
printf("Bartosz Jaskiewicz - projekt z przedmiotu \n\"Wstep do programowania w jezyku C\"\n\n");
printf("Witamy w konfiguratorze gry Snake!\n\n");
printf("Wybierz wielkosc planszy:\n");
printf("1) Mala (640px/480px)\n"); //16 12
printf("2) Srednia (840px/680px)\n"); //21 17
printf("3) Duza (1200px/880px)\n"); //30 22
printf("0) Wyjscie\n\nWybrana opcja: ");
#ifdef _WIN32
scanf_s("%d", &nrrozmiar);
#endif
#ifdef __unix__
scanf("%d", &nrrozmiar);
#endif
switch (nrrozmiar)
{
case 1:
width = 640; height = 480;
wyborokna = false;
break;
case 2:
width = 840; height = 680;
wyborokna = false;
break;
case 3:
width = 1200; height = 880;
wyborokna = false;
break;
case 0:
printf("\nDo widzenia!\n");
#ifdef _WIN32
Sleep(1000);
#endif
#ifdef __unix__
sleep(1);
#endif
exit(0);
break;
default:
#ifdef _WIN32
system("cls");
#else
system("clear");
#endif
break;
}
}
wyborokna = true;
while (wyborokna)
{
#ifdef _WIN32
system("cls");
#endif
#ifdef __unix__
system("clear");
#endif
int nrszybkosc = 0;
printf("Dobrze.\n Teraz wybierz poziom trudnosci:\n\n");
printf("1) Slimak\n"); //7
printf("2) Wonsz\n"); //4
printf("3) Pytong\n"); //1
printf("0) Wyjscie\n\nWybrana opcja: ");
#ifdef _WIN32
scanf_s("%d", &nrszybkosc);
#endif
#ifdef __unix__
scanf("%d", &nrszybkosc);
#endif
switch (nrszybkosc)
{
case 1:
speed = 7;
wyborokna = false;
break;
case 2:
speed = 4;
wyborokna = false;
break;
case 3:
speed = 1;
wyborokna = false;
break;
case 0:
printf("\nDo widzenia!\n");
#ifdef _WIN32
Sleep(1000);
#endif
#ifdef __unix__
sleep(1);
#endif
exit(0);
break;
default:
#ifdef _WIN32
system("cls");
#endif
#ifdef __unix__
system("clear");
#endif
break;
}
}
*h = height; *w = width, *s = speed;
}