-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCar.hpp
46 lines (40 loc) · 1.09 KB
/
Car.hpp
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
#include <vector>
#include "Floor.hpp"
#include "Person.hpp"
using namespace std;
#ifndef _Car_Guard
#define _Car_Guard
class Car : public Container {
// private members
private:
enum State {
IDLE,
MOVING,
LOADING,
UNLOADING,
// OPENING,
// CLOSING,
// CLOSED
}; // whatever states you want
// public members
public:
int id; // set in constructor
int floor;
int capacity; // don't let more than 10 ppl on
State state;
Dir dir; // 0 is down, 1 is up
int nfloors;
// initialize with id and # of floors;
// initilize state, dir, and buttons
Car(int i, int f);
string toString();
void printSymbolic(); // print something like "CAR0[3]^"
// this is where all the logic goes...
void update(vector<Floor>& floors, int iter, vector<Person>& allPersons);
// it is important to get these functions right...
void embark(Floor& floor, int iter);
void disembark(Floor floor, int iter, vector<Person>& allPersons);
static bool withinRange(int floor, int move, int nfloors);
void summary();
};
#endif // guard for Car