-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPerson.java
101 lines (86 loc) · 2.32 KB
/
Person.java
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
import java.util.Stack;
import com.oocourse.elevator3.PersonRequest;
import com.oocourse.elevator3.Request;
public class Person {
private int id;
private int curFloor;
private int destFloor;
private Stack<Integer> path = null;
private int mapVersion = -1;
public Person(Request request) {
try {
PersonRequest personRequest = (PersonRequest) request;
this.id = personRequest.getPersonId();
this.curFloor = personRequest.getFromFloor() - 1;
this.destFloor = personRequest.getToFloor() - 1;
} catch (ClassCastException e) {
System.err.println(e.getMessage());
}
}
public int getMapVersion() {
return mapVersion;
}
public int getId() {
return id;
}
public int getCurFloor() {
return curFloor;
}
public int getDestFloor() {
return destFloor;
}
public void setCurFloor(int curFloor) {
this.curFloor = curFloor;
if (!path.empty()) {
path.pop();
}
}
public boolean upStair() {
return this.curFloor < this.destFloor;
}
public int getTempDest() {
return path.peek();
}
public void setPath(Stack<Integer> path, int mapVersion) {
if (this.mapVersion != mapVersion) {
this.mapVersion = mapVersion;
this.path = path;
}
}
@Override
public int hashCode() {
final int prime = 31;
int result = 1;
result = prime * result + id;
result = prime * result + curFloor;
result = prime * result + destFloor;
return result;
}
@Override
public boolean equals(Object obj) {
if (this == obj) {
return true;
}
if (obj == null) {
return false;
}
if (getClass() != obj.getClass()) {
return false;
}
Person other = (Person) obj;
if (id != other.id) {
return false;
}
if (curFloor != other.curFloor) {
return false;
}
if (destFloor != other.destFloor) {
return false;
}
return true;
}
@Override
public String toString() {
return String.format("Person %d on Floor %d to Floor %d", id, curFloor, destFloor);
}
}