-
Notifications
You must be signed in to change notification settings - Fork 0
/
menu.cpp
182 lines (159 loc) · 4.66 KB
/
menu.cpp
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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
#include "modele.h"
#include "var.h"
void menuaccueil()
{
initscr();
noecho();
start_color();
curs_set(0);
int y, x;
getmaxyx(stdscr, y, x);
string choices[3] = {"1. Classique",
"2. Deux Tables",
"3. Quitter"};
int choice;
int highlight{0};
string l1 = R"(
_______ ________ ___ ___ ________
/ ___ \|\ __ \|\ \ |\ \|\ __ \
/__/|_/ /\ \ \|\ \ \ \\_\ \ \ \|\ \
|__|// / /\ \ \\\ \ \______ \ \ __ \
/ /_/__\ \ \\\ \|_____|\ \ \ \|\ \
|\________\ \_______\ \ \__\ \_______\
\|_______|\|_______| \|__|\|_______|
)";
init_pair(10, 10, COLOR_BLACK);
attron(COLOR_PAIR(10));
printw("\n\n\n\n\n");
printw(l1.c_str());
attroff(COLOR_PAIR(10));
WINDOW * menu = newwin(5, x - 107, y - 53, 50);
refresh();
wrefresh(menu);
keypad(menu, 1);
while(1)
{
for(int i = 0; i < 3; i++)
{
if(i == highlight)
{
wattron(menu, A_REVERSE);}
mvwprintw(menu, i+1, 1, choices[i].c_str());
wattroff(menu, A_REVERSE);
}
choice = wgetch(menu);
switch(choice) {
case KEY_UP:
highlight--;
if(highlight < 0) {
highlight = 2;
}
break;
case KEY_DOWN:
highlight++;
if(highlight > 2) {
highlight = 0;
}
break;
default:
break;
}
if(choice == 10) {
if(highlight == 0) {
joue();
endwin();
break;
}
if(highlight == 1) {
joue_var();
endwin();
break;
}
if(highlight == 2) {
endwin();
break;
}
}
}
}
void initcolor() {
init_pair(1, 1, COLOR_BLACK);
init_pair(2, 2, COLOR_BLACK);
init_pair(3, 3, COLOR_BLACK);
init_pair(4, 4, COLOR_BLACK);
init_pair(5, 5, COLOR_BLACK);
init_pair(6, 6, COLOR_BLACK);
init_pair(7, 7, COLOR_BLACK);
init_pair(8, 9, COLOR_BLACK);
init_pair(9, 10, COLOR_BLACK);
init_pair(10, 11, COLOR_BLACK);
init_pair(11, 12, COLOR_BLACK);
init_pair(12, 13, COLOR_BLACK);
init_pair(13, 14, COLOR_BLACK);
}
void menudejeu(Plateau plat, bool ai) {
start_color();
initcolor();
string l2 =R"( COMMANDES
,---, ,---,
| H | | ^ |
,---,---,---, ,---, ,---,---,---,
| G | B | D | | A | | < | v | > |
'---'---'---' '---' '---'---'---')";
printw("\n");
printw("\t\t\t\t\t Appuyez sur Esc pour quitter le jeux ");
printw("\n\t\t\t\t\t\t\tScore: ");
printw(to_string(score(plat) -16).c_str());
printw("\n");
if(ai)
{
attron(COLOR_PAIR(9));
printw("\t\t\t\t\t\t IA activée");
attroff(COLOR_PAIR(9));
}
else
{
attron(COLOR_PAIR(8));
printw("\t\t\t\t\t\t IA désactivée");
attroff(COLOR_PAIR(8));
}
printw("\n\n\n");
dessinecolor(plat);
printw("\n");
printw(l2.c_str());
}
void findepartie(Plateau plat)
{
int ch;
initscr();
start_color();
initcolor();
string gameover = R"(
________ ________ _____ ______ _______ ________ ___ ___ _______ ________
|\ ____\|\ __ \|\ _ \ _ \|\ ___ \ |\ __ \|\ \ / /|\ ___ \ |\ __ \
\ \ \___|\ \ \|\ \ \ \\\__\ \ \ \ __/| \ \ \|\ \ \ \ / / | \ __/|\ \ \|\ \
\ \ \ __\ \ __ \ \ \\|__| \ \ \ \_|/__ \ \ \\\ \ \ \/ / / \ \ \_|/_\ \ _ _\
\ \ \|\ \ \ \ \ \ \ \ \ \ \ \ \_|\ \ \ \ \\\ \ \ / / \ \ \_|\ \ \ \\ \|
\ \_______\ \__\ \__\ \__\ \ \__\ \_______\ \ \_______\ \__/ / \ \_______\ \__\\ _\
\|_______|\|__|\|__|\|__| \|__|\|_______| \|_______|\|__|/ \|_______|\|__|\|__|
)";
printw("\n");
attron(COLOR_PAIR(8));
printw("\t\t\t\t\t Appuyez sur Esc pour quitter le jeux ");
attroff(COLOR_PAIR(8));
printw("\n\t\t\t\t\t\t\tScore: ");
printw(to_string(score(plat) - 16).c_str());
printw("\n\n\n");
dessinecolor(plat);
printw("\n");
attron(COLOR_PAIR(8));
printw(gameover.c_str());
attroff(COLOR_PAIR(8));
while(true) {
ch = getch();
if(ch == 27) {
endwin();
break;
}
}
}