-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathclasses.h
89 lines (81 loc) · 2.23 KB
/
classes.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
#ifndef classs
#define classes
#include <iostream>
#include <fstream>
#include <sstream>
#include <vector>
using namespace std;
// 4:29
//-----------------------passnger class
class Passenger {
public:
char event;
int id;
string type;
int time;
int min;
int startStation;
int endStation;
string sp_type;
};
//-------------------------Bus class
class Bus {
public:
int count;
int capacity;
int BC;
int checkup;
int checkuptime;
};
//--------------------------station class
class station {
public :
int number;
bool main;
vector<Passenger> inpassngers;
vector<Passenger> inwpassngers;
void addPassenger(const vector<Passenger>& passengers, int stationNum) {
for (const auto& pass : passengers) {
if (pass.startStation == stationNum) {
if (pass.type == "WP") {
inwpassngers.push_back(pass);
}
else {
inpassngers.push_back(pass);
}
}
}
}
void printStationInfo() const {
cout << "Station Number: " << number << endl;
cout << "Is Main Station: " << (main ? "Yes" : "No") << endl;
cout << "\nIn Passengers:" << endl;
for (const auto& passenger : inpassngers) {
cout << "ID: " << passenger.id << ", Type: " << passenger.type << ", Event: " << passenger.event << endl;
}
cout << "\nIn WPassengers:" << endl;
for (const auto& passenger : inwpassngers) {
cout << "ID: " << passenger.id << ", Type: " << passenger.type << ", Event: " << passenger.event << endl;
}
}
};
//--------------------------- similationinfo class
class SimulationInfo {
public:
int numStations;
int timeBetweenStations;
Bus wheelBus;
Bus mixedBus;
int numTripsBeforeCheckup;
int checkupTimeW;
int checkupTimeM;
int maxWaitingTime;
int getOnOffTime;
int numEvents;
SimulationInfo() : numStations(0), timeBetweenStations(0), numTripsBeforeCheckup(0), checkupTimeW(0), checkupTimeM(0), maxWaitingTime(0), getOnOffTime(0), numEvents(0) {}
};
//---------------------------company
class company {};
//--------------------------UI
class UI {};
#endif