-
Notifications
You must be signed in to change notification settings - Fork 0
/
Scores.cpp
183 lines (172 loc) · 4.5 KB
/
Scores.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
180
181
182
183
/**
* Copyright (C) Kevin J. Estevez (kenystev) and Luis C. Isaula (lisaula)
*
* GNU GENERAL PUBLIC LICENSE Version 2
* The licenses for most software are designed to take away your
* freedom to share and change it. By contrast, the GNU General Public
* License is intended to guarantee your freedom to share and change free
* software--to make sure the software is free for all its users. This
* General Public License applies to most of the Free Software
* Foundation's software and to any other program whose authors commit to
* using it.
*/
#include "Scores.h"
/*
nombre 20
pista1 4
pista2 4
pista3 4
pista4 4
promedio 4
*/
Scores::Scores()
{
PATH_ARCHIVO = "ranking";
//ctor
}
bool Scores::createNewUserBinary(string name)
{
string archivo = "ranking";
ofstream file(archivo.c_str(),ios::in);
if(!file){
file.open(archivo.c_str());
}
//user1 = new Usuario(name);
file.seekp(0,ios::end);
int x=0,x1=0,x2=0,x3=0,p=0;
file.write(name.c_str(),20);
file.write((char*)&x,4);
file.write((char*)&x1,4);
file.write((char*)&x2,4);
file.write((char*)&x3,4);
file.write((char*)&p,4);
file.close();
}
bool Scores::readFileBinary(){
string archivo ="ranking";
ifstream file(archivo.c_str());
file.seekg(0,ios::end);
int fin = file.tellg();
int cantidad = fin/40;
file.seekg(0,ios::beg);
mi_mapa.clear();
for(int i =0;i<cantidad;i++){
char* nombre= new char[20];
string n;
int x1,x2,x3,x4,p;
file.read(nombre,20);
file.read((char*)&x1,4);
file.read((char*)&x2,4);
file.read((char*)&x3,4);
file.read((char*)&x4,4);
file.read((char*)&p,4);
n= nombre;
Usuario *u = new Usuario(n,x1,x2,x3,x4,p);
u->setAverage();
//u->imprimir();
mi_mapa.insert(pair<int,Usuario*>(u->getAverage(),u));
}
file.close();
return true;
}
void Scores::printMap(){
multimap<int,Usuario*>::iterator i = mi_mapa.begin();
int cont=0;
int cantidad=mi_mapa.size();
while(cont<cantidad && cont<6){
Usuario * user;
user = i->second;
user->print(cont);
i++;
cont++;
}
//font->drawText("Hola",0,0);
}
int Scores::seekUser(string name){
ifstream file(PATH_ARCHIVO.c_str(),ios::in);
file.seekg(0,ios::end);
int fin = file.tellg();
int cant = fin/40;
file.seekg(0,ios::beg);
for(int i=0;i<cant;i++){
char* nombre= new char[20];
string n;
int x1,x2,x3,x4,p;
file.read(nombre,20);
n= nombre;
if(n==name){
return file.tellg();
}
file.read((char*)&x1,4);
file.read((char*)&x2,4);
file.read((char*)&x3,4);
file.read((char*)&x4,4);
file.read((char*)&p,4);
}
file.close();
return -1;
}
void Scores::seekRLP(int no_pista){
ifstream file(PATH_ARCHIVO.c_str());
file.seekg(0,ios::end);
int fin = file.tellg();
int cantidad = fin/40;
file.seekg(0,ios::beg);
mi_mapa.clear();
for(int i =0;i<cantidad;i++){
char* nombre= new char[20];
string n;
int x1,x2,x3,x4,p;
file.read(nombre,20);
file.read((char*)&x1,4);
file.read((char*)&x2,4);
file.read((char*)&x3,4);
file.read((char*)&x4,4);
file.read((char*)&p,4);
n= nombre;
Usuario *u = new Usuario(n,x1,x2,x3,x4,p);
if(no_pista==1){
mi_mapa.insert(pair<int,Usuario*>(x1,u));
}
else if(no_pista==2){
mi_mapa.insert(pair<int,Usuario*>(x2,u));
}
else if(no_pista==3){
mi_mapa.insert(pair<int,Usuario*>(x3,u));
}
else if(no_pista==4){
mi_mapa.insert(pair<int,Usuario*>(x4,u));
}
}
file.close();
}
int Scores::getRLP(string name){
int mi_posicion=1;
multimap<int,Usuario*>::iterator i = mi_mapa.begin();
while(i!=mi_mapa.end()){
string user = i->second->nombre;
if(user==name){
return mi_posicion;
}
mi_posicion++;
i++;
}
}
bool Scores::setPuntosToPista(string name, int puntos, int pista){
ofstream file(PATH_ARCHIVO.c_str(),ios::in);
int pos = seekUser(name);
if(pos>0){
file.seekp(pos,ios::cur);
int real = pista -1;
file.seekp(real*4,ios::cur);
file.write((char*)&puntos,4);
file.close();
return true;
}
file.close();
return false;
}
Scores::~Scores()
{
//dtor
}