-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathController.java
More file actions
79 lines (69 loc) · 1.78 KB
/
Controller.java
File metadata and controls
79 lines (69 loc) · 1.78 KB
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
public abstract class Controller
{
protected int numberOfFloors;
protected Elevator[] elevators;
protected boolean[] pushedUp;
protected boolean[] pushedDown;
/**
* Editor: Elijah Smith
* initialized size of new pushed fields.
*/
protected Controller(int numberOfFloors, int numberOfElevators)
{
this.numberOfFloors = numberOfFloors;
this.elevators = new Elevator[numberOfElevators];
for(int loop = 0; loop < numberOfElevators; loop++)
{
this.elevators[loop] = new Elevator(numberOfFloors);
}
pushedUp = new boolean[numberOfFloors + 1];
pushedDown = new boolean[numberOfFloors + 1];
}
public abstract void next();
public int pushTrue()
{
int counter = 0;
for(int loop = 0; loop < pushedUp.length; loop++)
{
if(pushedUp[loop] || pushedDown[loop])
counter++;
}
return counter;
}
/**
* Editor: Elijah Smith
* Issue #108 moving this method from Elevator
*/
public void pushUp(int currentFloor) {
pushedUp[currentFloor] = true;
}
/**
* Editor: Elijah Smith
* Issue #108 moving this method from Elevator
*/
public void pushDown(int currentFloor) {
pushedDown[currentFloor] = true;
}
public int getNumberOfFloors()
{
return numberOfFloors;
}
public Elevator[] getElevators()
{
return elevators;
}
/**
* Author: Elijah Smith
* accessor for boolean array pushedUp[]
*/
public boolean[] getPushedUpArray() {
return this.pushedUp;
}
/**
* Author: Elijah Smith
* accessor for boolean array pushedDown[]
*/
public boolean[] getPushedDownArray() {
return this.pushedDown;
}
}