-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathauxiliares.cpp
230 lines (189 loc) · 5.27 KB
/
auxiliares.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
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
#include "auxiliares.h"
int buscarDrone (const Sistema & s, const Drone & d){
int i=0;
int ans=-1;
while (ans==-1 && i<s.enjambreDrones().size()){
if (d==s.enjambreDrones()[i]) ans=i;
i++;
}
return ans;
}
std::string getLineTwo (std::istream &is, char del1, char del2){
std::string str="";
while (is.peek()!=del1 && is.peek()!= del2){
char currChar;
is>>currChar;
str+=currChar;
}
return str;
}
std::istream &operator>>(std::istream &is, Drone &d){
d.cargar(is);
return is;
}
/*std::ostream &operator<<(std::ostream &os, Drone &d){
std::cout<<"hel";
d.guardar(os);
std::cout<<"hel";
return os;
}*/
std::istream &operator>>(std::istream &is, Parcela &p){
std::string str;
str = getLineTwo(is, ']', ',');
if (str=="Cultivo") p=Cultivo;
else if (str=="Granero") p=Granero;
else if (str=="Casa") p=Casa;
return is;
}
std::istream &operator>>(std::istream &is, Producto &p){
std::string str;
str = getLineTwo(is, ']', ',');
if (str=="Fertilizante") p=Fertilizante;
else if (str=="Plaguicida") p=Plaguicida;
else if (str=="PlaguicidaBajoConsumo") p=PlaguicidaBajoConsumo;
else if (str=="Herbicida") p=Herbicida;
else if (str=="HerbicidaLargoAlcance") p=HerbicidaLargoAlcance;
return is;
}
std::istream &operator>>(std::istream &is, Posicion &p){
char currChar;
int x,y;
is>>currChar>>x>>currChar>>y>>currChar;
p=Posicion {x,y};
return is;
}
std::istream &operator>>(std::istream &is, Campo &c){
c.cargar(is);
return is;
}
std::istream &operator>>(std::istream &is, EstadoCultivo &c){
std::string str;
str = getLineTwo(is, ',',']');
if (str=="RecienSembrado") c=RecienSembrado;
else if (str=="EnCrecimiento") c=EnCrecimiento;
if (str=="ListoParaCosechar") c=ListoParaCosechar;
else if (str=="ConMaleza") c=ConMaleza;
if (str=="ConPlaga") c=ConPlaga;
else if (str=="NoSensado") c=NoSensado;
return is;
}
std::ostream &operator<<(std::ostream &os, const Posicion &p){
os << '[' << p.x << ',' << p.y << ']';
return os;
}
bool enRango(const Sistema &s, Posicion p){
return p.x >= 0 && p.x < s.campo().dimensiones().ancho && p.y >= 0 && p.y < s.campo().dimensiones().largo;
}
bool posVacia(const Sistema &s, Posicion p){
bool res = true;
unsigned int i = 0;
while( i < s.enjambreDrones().size()){
if(s.enjambreDrones()[i].posicionActual() == p){
res = false;
}
i++;
}
return res;
}
Posicion suma(Posicion p, Posicion q){
Posicion s { p.x + q.x, p.y+ q.y};
return s;
}
Posicion posG(const Sistema & s){
Posicion granero;
int i = 0;
while (i < s.campo().dimensiones().ancho){
int j = 0;
while (j < s.campo().dimensiones().largo){
if (s.campo().contenido(Posicion { i, j }) == Granero){
granero = Posicion { i, j};
}
j++;
}
i++;
}
return granero;
}
bool hayProducto(const Secuencia<Producto>& ps, Producto p){
unsigned int i = 0;
bool b = false;
while(i < ps.size() && !b){
if(ps[i] == p){
b = true;
}
i++;
}
return b;
}
Secuencia<Posicion> movimientos(){
Secuencia<Posicion> mov(4);
mov = {Posicion {-1, 0}, Posicion {1, 0}, Posicion {0, -1}, Posicion {0, 1} };
return mov;
}
Secuencia<Posicion> posConCruces(const Secuencia<Drone>& ds) {
// Devuelve una lista de posiciones en las que hubo cruces sin elementos repetidos.
Secuencia<Posicion> res;
unsigned int i = 0;
while(i < ds.size()){
unsigned int j = 0;
while (j < ds[i].vueloRealizado().size()){
if(seCruzoConOtro(ds[i], ds, j)) {
Posicion pos = ds[i].vueloRealizado()[j];
if(!pertenece(pos, res)) res.push_back(pos);
}
j++;
}
i++;
}
/*for (Drone d : ds) {
for (int i = 0; i < d.vueloRealizado().size(); i++) {
if (seCruzoConOtro(d, ds, i)) {
Posicion pos = d.vueloRealizado()[i];
if (!pertenece(pos, res))
res.push_back(pos);
}
}
}
*/
return res;
}
bool const ordenCruzados(const InfoVueloCruzado& a, const InfoVueloCruzado& b) {
return a.cantidadCruces <= b.cantidadCruces; // Comparador para el ordenamiento de la lista de vuelsoCruzados. Ordena ascendiente por cantidad de cruces
}
int cantidadDronesCruzados(Posicion pos, const Secuencia<Drone>& ds) {
int cant = 0;
unsigned int i = 0;
while(i < ds.size()){ // Itero por todos los drones
unsigned int j = 0;
while(j < ds[i].vueloRealizado().size()){ // y por los vuelosRealizados
if (ds[i].vueloRealizado()[j] == pos && seCruzoConOtro(ds[i], ds, j)) cant ++;
j++; // si en pos se cruzó con otro drone, sumo uno al contador de cruces
} // seCruzoConOtro se encarga de no contar los "cruces" de un drone consigo mismo
i++;
}
/*
for (Drone d : ds) {
for (int i = 0; i < d.vueloRealizado().size(); i++) {
if (d.vueloRealizado()[i] == pos && seCruzoConOtro(d, ds, i))
cant++;
}
}
*/
return cant;
}
bool seCruzoConOtro (Drone d, const Secuencia<Drone>& ds, int i) {
// Devuelve true si d se cruzó con otro drone en ds (distinto) en el "momento" i.
unsigned int j = 0;
while (j < ds.size()){
if(ds[j] != d && d.vueloRealizado()[i] == ds[j].vueloRealizado()[i]) return true;
j++;
}
/*
for (Drone d2 : ds) {
if (d2 != d && d.vueloRealizado()[i] == d2.vueloRealizado()[i])
return true;
}
*/
return false;
}
//Implementen aqui sus funciones auxiliares globales definidas en aux.h...