-
Notifications
You must be signed in to change notification settings - Fork 1
/
menu.hpp
113 lines (97 loc) · 4.22 KB
/
menu.hpp
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
#include <iostream>
#include <fstream>
#include <string>
using namespace std;
const std::string VERSION = "v5.0.0";
void stampaScrittaMenu() {
system("cls");
cout << "LLL AAAAAA BBBBBBBBB IIIII RRRRRRRRR IIIII NNNNNN NNN TTTTTTTTTTT " << endl;
cout << "LLL AAA AAA BBB BBB III RRR RRR III NNN NNN NNN TTT " << endl;
cout << "LLL AAA AAA BBBBBBBBB III RRRRRRRRR III NNN NNN NNN TTT " << endl;
cout << "LLL AAAAAAAAAAAA BBB BBB III RRR RRR III NNN NNN NNN TTT " << endl;
cout << "LLLLLLLLLL AAA AAA BBBBBBBBB IIIII RRR RRRR IIIII NNN NNNNNN TTT " << endl;
cout << "\n " << VERSION << " By FLAK-ZOSO & AsiaMarcheluzzo " << endl;
}
void stampaDati() {
// Leggi il file di testo che chiamiamo utenti.txt
ifstream fin; // Dichiaro una variabile ifstream
fin.open("utenti.txt", ios::in); // Apre il flusso con "utenti.txt"
string testo;
if (fin) { // Se il file esiste...
while (getline(fin, testo)) // ...allora leggiamo il file...
cout << testo << endl; // ...e lo mettiamo in output
} else {
// Non esiste il file, quindi lo creiamo
ofstream fout; // Dichiaro un flusso in uscita
fout.open("utenti.txt", ios::out); // Lo apro verso "utenti.txt"
string classifica[10][2] = {
{"Bot1", "100000"},
{"Bot2", "90000"},
{"Bot3", "8000"},
{"Bot4", "700"},
{"Bot5", "60"},
{"Bot6", "50"},
{"Bot7", "40"},
{"Bot8", "30"},
{"Bot9", "20"},
{"Bot10", "10"}
};
for (int i=0; i<10; i++) {
fout << classifica[i][0] << ' ' << classifica[i][1] << endl;
cout << classifica[i][0] << ' ' << classifica[i][1] << endl;
}
return;
}
// stampa i primi 10 risultati migliori con usernamme
string classifica[10][2];
for (int i=0; i<10; i++) {
fin >> classifica[i][0]; // Nella prima colonna ci sono gli username
fin >> classifica[i][1]; // Nella seconda colonna ci sono i punteggi sottoforma di stringa
cout << classifica[i][0] << ' ' << classifica[i][1] << endl;
}
}
void scriviDati(string username, int punteggio) {
// Apro il file utenti.txt e inserisco in mezzo l'utente SE ha fatto un punteggio da classifica
string classifica[10][2]; // Classifica, ma meglio dire elenco dei migliori 10 risultati
ifstream fin; // File della classifica in modalità input
fin.open("utenti.txt", ios::in);
for(int j=0;j<10;j++) {
fin >> classifica[j][0];
fin >> classifica[j][1];
}
if (punteggio < stoi(classifica[9][1])) // stoi = String TO Int
return; // Se il punteggio dell'utente è minore di quello dell'ultimo in classifica allora non occorre salvarlo
ofstream fout; // File della classifica in modalità output
fout.open("utenti.txt", ios::out);
// Inserisco il punteggio nella classifica
for (int i=0; i<10; i++) {
if (stoi(classifica[i][1])<punteggio) {
fout << username << ' ' << to_string(punteggio) << endl;
cout << username << ' ' << to_string(punteggio) << endl;
for (int f=i+1; f<10; f++) {
fout << classifica[f-1][0] << ' ' << classifica[f-1][1] << endl;
cout << classifica[f-1][0] << ' ' << classifica[f-1][1] << endl;
}
break;
} else {
// Poi la ristampi nel file
fout << classifica[i][0] << ' ' << classifica[i][1] << endl;
cout << classifica[i][0] << ' ' << classifica[i][1] << endl;
}
}
system("pause >nul");
}
int leggiRecord(string username) {
// Se è già registrato fai return del suo record
ifstream fin("utenti.txt", ios::in);
string classifica[10][2];
if (fin) {
for (int j=0; j<10; j++) {
fin >> classifica[j][0];
fin >> classifica[j][1];
if (classifica[j][0] == username)
return stoi(classifica[j][1]);
}
}
return 0; // Se non è ancora registrato fai return 0
}