-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cladire.cpp
141 lines (113 loc) · 3.74 KB
/
Cladire.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
#include "Cladire.h"
Cladire::Cladire()
{
// Citim numar etaje si numar lifturi
intrari.open("intrari.txt");
intrari >> nrEtaje >> nrLifturi;
intrari.close();
// Cream obiectele lift
for (int i=0;i < nrLifturi; i++) {
lifturi[i] = new Lift(i+1, nrEtaje);
}
}
Cladire::~Cladire()
{
//dtor
}
void Cladire::comanda(int etajComanda, int etajDestinatie)
{
Lift * aux;
int bestTime = nrEtaje;
int calcul;
string directia;
if (etajComanda < etajDestinatie) directia = "URCARE";
else directia = "COBORARE";
for (int i=0; i < nrLifturi; i++) {
// Daca liftul este stationat la etajul comandat
if ((lifturi[i]->getNivelCurent() == etajComanda) && (lifturi[i]->getStare() == "STATIONARE")) {
lifturi[i]->adaugareComanda(etajComanda, etajDestinatie);
return;
} else {
// Daca liftul este stationat la alt etaj
if (lifturi[i]->getStare() == "STATIONARE") {
calcul = abs(lifturi[i]->getNivelCurent() - etajComanda);
if (calcul < bestTime) {
bestTime = calcul;
aux = lifturi[i]; }
// Daca liftul este in miscare
} else {
if (((directia == "COBORARE") && (lifturi[i]->getStare() == "COBORARE") && (lifturi[i]->getNivelCurent() > etajComanda))) {
calcul = abs(lifturi[i]->getNivelCurent() - etajComanda);
if (calcul < bestTime) {
bestTime = calcul;
aux = lifturi[i]; }
} else if (((directia == "URCARE") && (lifturi[i]->getStare() == "URCARE") && (lifturi[i]->getNivelCurent() < etajComanda))) {
calcul = abs(lifturi[i]->getNivelCurent() - etajComanda);
if (calcul < bestTime) {
bestTime = calcul;
aux = lifturi[i]; }
}
// Daca liftul este oprit la un etaj
else {
calcul = abs(lifturi[i]->getTimpPanaLaUltimaComanda() + lifturi[i]->getUltimaComanda() - etajComanda);
if (calcul < bestTime) {
bestTime = calcul;
aux = lifturi[i]; }
}
}
}
}
aux->adaugareComanda(etajComanda,etajDestinatie);
}
bool Cladire::unulDintreLifturiAreComanda()
{
for (int i=0;i<nrLifturi;i++) {
if (lifturi[i]->areComenzi() == true) return true;
}
return false;
}
bool Cladire::toateLifturileSuntStationate()
{
for (int i=0;i<nrLifturi;i++) {
if (lifturi[i]->getStare() != "STATIONARE") return false;
}
return true;
}
void Cladire::avanseazaEtaj()
{
for (int i=0; i < nrLifturi; i++) {
lifturi[i]->afisare();
lifturi[i]->avansare();
}
}
void Cladire::ruleazaLifturi()
{
int t, etajComanda, etajDestinatie, timp = 0;
string line;
intrari.open("intrari.txt");
getline(intrari, line);
bool start = true;
do
{
intrari >> t >> etajComanda >> etajDestinatie;
do {
cout << "t=" << timp << endl;
avanseazaEtaj();
timp++;
cout << "\n";
} while (t != timp && (!intrari.eof()));
if (t == timp) comanda(etajComanda, etajDestinatie);
if ( intrari.eof()) {
intrari.close();
do {
cout << "t=" << timp << endl;
avanseazaEtaj();
timp++;
cout << "\n";
} while (unulDintreLifturiAreComanda() || !toateLifturileSuntStationate());
cout << "t=" << timp << endl;
avanseazaEtaj();
start = false;
}
} while (start);
}