-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathPosition.java
141 lines (124 loc) · 3.43 KB
/
Position.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
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
/**
* This class can be used to make position objects which can store an entities
* x,y coordinates.
* This class comes with methods for moving a position in each of 4 basic
* compass direcitons: N,S,E,W.
*
* @author Ross Petridis | [email protected] | 1080249
*/
public class Position { // ENTITY HAS ALL THESE PUBLIC THINGS - including the movings.
private int x;
private int y;
private int DEFAULT_X = 1;
private int DEFAULT_Y = 1;
/**
* position constructor from integer input
*
* @param x The x coordinate for this position
* @param y The y coordinate for this position
*/
public Position(int x, int y) {
this.x = x;
this.y = y;
}
/**
* copy constructor, used in getPosition() methods for high level entities
* since we desire to return a copy of position for encapsulation reasons.
*
* @param position - The positon object to construct a copy of.
*/
public Position(Position position) {
this.x = position.x;
this.y = position.y;
}
/**
* Default constructor for this class
*/
public Position() {
x = DEFAULT_X;
y = DEFAULT_Y;
}
/**
* @param x
* @param y
* @return Returns true if the inputted coordinates match this objects position
*/
public boolean positionEquals(int x, int y) {
// returns true if inputted x and y equal this position objhects x and y
return (this.x == x && this.y == y);
}
/**
* @param position
* @return Returns true if the inputted position object matches this object.
*/
public boolean positionEquals(Position position) {
// returns true if inputted x and y equal this position objhects x and y
return (this.x == position.x && this.y == position.y);
}
/**
* Sets the coordinates of this position
*
* @param x # value for x coordianate
* @param y # value for y coordianate
*/
public void setPosition(int x, int y) {
this.x = x;
this.y = y;
}
public void setPosition(Position position) {
this.x = position.getX();
this.y = position.getY();
}
/**
* Custom toString for help in debugging
*/
@Override
public String toString() {
return "(" + x + "," + y + ")";
}
/**
* Get the cell distance between two positions
*
* @param pos1
* @param pos2
* @return (int) the cell distance between 2 positions, diagnals counting as 1.
*/
public static int cellDistance(Position pos1, Position pos2) {
return Math.max(
Math.abs(pos1.getX() - pos2.getX()),
Math.abs(pos1.getY() - pos2.getY()));
}
/**
* Moves position North (up)
*/
public void moveNorth() {
y -= 1;
}
/**
* Moves position South (down)
*/
public void moveSouth() {
y += 1;
}
/**
* Moves position East (right)
*/
public void moveEast() {
x += 1;
}
/**
* Moves position West (left)
*/
public void moveWest() {
x -= 1;
}
public int getX() {
return x;
}
public int getY() {
return y;
}
public Position getPosition() {
return new Position(x, y);
}
}