-
Notifications
You must be signed in to change notification settings - Fork 0
/
Aeroporto.h
317 lines (273 loc) · 6.58 KB
/
Aeroporto.h
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
#ifndef AEROPORTO_H_
#define AEROPORTO_H_
#include "Companhia.h"
#include <vector>
#include "Plano_de_voo.h"
#include <string>
#include "Pista_aterragem.h"
#include "Pista_descolagem.h"
#include "Arquivo_de_voo.h"
#include "passageiro.h"
namespace std {
class Aeroporto {
private:
float taxas;
string nome;
vector<Plano_de_voo> planos;
vector<Companhia_aerea> companhias;
Pista_aterragem pista1;
Pista_descolagem pista2;
Passageiro_tb passageiros;
Arquivo_de_voo arquivos;
public:
Aeroporto(string nome);
/**
*class destructor for a airport
*@name -Aeroporto
*/
virtual ~Aeroporto();
/**
* adds a company to the vector of all companies
* @name add_companhia
* @param string & sigla
* @param string & nme_companhia
*
*/
void add_companhia(string & sigla, string & nme_companhia);
vector<string> nomes_companhias();
/**
* returns the number os flght plans
* @name getNumPlanos
* @return the size of vector planos
*/
int getNumPlanos(){
return this->planos.size();
}
/**
* returns a flight plan existing in a position of the vector planos
* @name getPlano
* @param int i
* @return a flight plan from the vector planos
*/
Plano_de_voo* getPlano(int i){
return &this->planos[i];
}
/**
* delete every flight plan belonging to a airplane from a air company and launches a warning to th user
*@name delete_plane
*@param Companhia_aerea* companhia
*@param Aviao* aviao
*@return true if the flight was erased and false if not
**/
bool delete_plane(Companhia_aerea* companhia, Aviao* aviao);
/**
* check if there is at least a flight plan with the plane searched
* @name existe_pv_aviao
* @param Companhia_aerea* companhia
* @param Aviao* aviao
* @return true if there is in the vector companhia at least a flight plan with the air plane searched
*/
bool existe_pv_aviao(Companhia_aerea* companhia, Aviao* aviao);
/**
* erases the flight plan from the vector when searching for a specific air plane
* @name apaga_pv_aviao
* @param Companhia_aerea* companhia
* @param Aviao* aviao
* @ return true if it was deleted
*/
bool apaga_pv_aviao(Companhia_aerea* companhia, Aviao* aviao);
/**
* gives the name of all air companies
* @name apt_comp
* @return the vector companhias
*/
vector<Companhia_aerea> *apt_comp(){
return &companhias;
}
/**
* gives the name of a air company situated in a given position
* @name apt_companhia
* @param int i
* @return the name of the air company positioned in the position i of the vector companhias
*/
Companhia_aerea* apt_companhia(int i){
return &companhias[i];
}
/**
* gives to the user the name of a air company by inserting the air company sigla
* @name apt_companhia
* @param string sigla
* @return the name of the air company
*/
Companhia_aerea* apt_companhia(string sigla){
for(size_t i=0;i<companhias.size();i++){
if(companhias[i].getSigla()==sigla){
return &companhias[i];
}
}
}
/**
* gives the number of companies at that moment
* @name getNumeroComp
* @return the size of the vector companhias
*/
int getNumeroComp(){
return companhias.size();
}
/**
* adds a flight plan to the vector of flights plans
* @name add_plano
* @param Plano_de_voo & a
* @return true if the plan was added with success
*/
bool add_plano(Plano_de_voo & a);
/**
* deletes a air company
* @name del_companhia
* @param Companhia_aerea *a
* @return true if it was deleted with success
*/
bool del_companhia(Companhia_aerea *a);
/*
* gives the name to the user
* @name getNome
* @return nome
*/
string getNome(){
return nome;
}
/*
* sets the aircompany name
* @name SetNome
*/
void SetNome(string nome){
this->nome=nome;
}
/*
* returns the track
* @name get_pista1
* @return pista1
*/
Pista_aterragem get_pista1() const{
return this->pista1;
}
/*
* returns another track
* @name get_pista2
* @return pista2
*/
Pista_descolagem get_pista2() const{
return this->pista2;
}
/*
* takes an airplane from the priority queue
* @name descolar
* @param Plano_de_voo & a
*
*/
void descolar(Plano_de_voo & a){
for(vector<Plano_de_voo>::iterator it=this->planos.begin();it!=planos.end();it++){
if(*it==a){
it->set_arq(true);
this->arquivos.insert(*it);
this->pista2.levantou(a);
//cout<<"fim"<<endl;
break;
}
}
}
/*
* takes an airplane from the priority queue
* @name descolar
* @param Plano_de_voo & a
*
*/
void aterrou(Plano_de_voo & a){
for(vector<Plano_de_voo>::iterator it=this->planos.begin();it!=planos.end();it++){
if(*it==a){
it->set_arq(true);
this->arquivos.insert(*it);
this->pista1.aterrou(a);
//cout<<"fim"<<endl;
break;
}
}
}
/*
* returns an archive
* @name getArquivo
* @return Arquivo_de_voo
*/
Arquivo_de_voo getArquivo(){
return this->arquivos;
}
/*
* returns the rate
* @name getTaxa
* @return float taxas
*/
float getTaxa(){
return this->taxas;
}
/*
* sets the rate
* @name setTaxa
* @param float taxa
*/
void setTaxa(float taxa){
this->taxas=taxa;
}
/*
* returns the passengers
* @name getPassageiros
* @return passageiros
*/
Passageiro_tb getPassageiros(){
return this->passageiros;
}
/*
* adds a passenger to passenger table
* @name PassIn
* @param passageiro & a
*/
void PassIn(passageiro & a){
passageiros.insert(a);
}
/*
* deletes a passenger from the passenger table
* @name PassOut
* @param passageiro & a
*/
void PassOut(passageiro & a){
passageiros.deletep(a);
}
};
class Companhia_ja_existe{ //acabar implementacao
private:
string sigla, nme;
public:
/**
* class constructor for a already existing air company
* @name Companhia_ja_existe
* @param string & sigla
* @param string & nme
*
*/
Companhia_ja_existe(string & sigla, string & nme){
this->sigla=sigla;
this->nme=nme;
}
/**
* Allows the functions to display in the screen air companies acronyms
* @name <<
* @param ostream & out
* @param Companhia_ja_existe x
* @return a display in the screen of a air company acronym
*/
friend ostream & operator<<(ostream & out, Companhia_ja_existe x){
out<<"A companhia com a sigla "<<x.sigla<<" e nome "<<x.nme<<" ja existe na base de dados.";
return out;
}
};
}
#endif /* AEROPORTO_H_ */