-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathFacility.java
83 lines (76 loc) · 2.15 KB
/
Facility.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
/**
**
* The interface facility can represent any building
* For this project this will mean a warehouse or a shop
*
* @author Emmett O'Toole
* @version (4-23-17)
* Revised by Cameron Zurmuhl 4/30/2017 4:27
*/
public abstract class Facility implements Comparable <Facility>
{
protected int ID; //numerical id for the facility
protected Character letter; //character ID (W or S)
protected Location facilityLoc; //location of facility
/**
* Constructor for class Facility
* @param ID the ID for the Facility
* @param identifier the character identifier
*/
public Facility(int id, Character identifier)
{
this.ID = id;
letter = identifier;
}
/**
* Distance from method
*
* @param any A facility from which to calculate the distance
* @return the distance between the two facilities
*/
public abstract int distanceFrom(Facility any);
/**
* Get id method
* Every facility must be able to get a unique id for that facility
* @return the numberical ID of the facility
*/
public int getID()
{
return ID;
}
/**
* Get location method
* Every facility must be able to get it's location
* @return the location of the facility
*/
public abstract Location getLocation();
@Override
public int compareTo(Facility l)
{
if(this.letter.compareTo(l.letter) == 0){
if(this.ID < l.ID){
return -1;
} else if (this.ID > l.ID){
return 1;
} else {
return 0;
}
} else{
if(this.ID < l.ID){
return -1;
} else if (this.ID > l.ID){
return 1;
} else {
return this.letter.compareTo(l.letter);
}
}
}
/**
* Get char method
* Returns the char for a facility
* @return the letter that represents either a warehouse or a shop
*/
public Character getChar(){
return this.letter;
}
}