forked from Elsie4ever/DpmTeam2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
StartCorner.java
76 lines (74 loc) · 1.91 KB
/
StartCorner.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
/*
* @author Sean Lawlor
* @date November 3, 2011
* @class ECSE 211 - Design Principle and Methods
*
* Modified by F.P. Ferrie
* February 28, 2014
* Changed parameters for W2014 competition
*/
package trotty02;
public enum StartCorner {
BOTTOM_LEFT(1, 0, 0, "BL"), BOTTOM_RIGHT(2, 300, 0, "BR"), TOP_RIGHT(3, 300, 300, "TR"), TOP_LEFT(4, 0, 300,
"TL"), NULL(0, 0, 0, "NULL");
private int id, x, y;
private String name;
/**
* Constructor for StartCorner, which determines which corner of the board the robot starts at
* @param id id argument represents the chosen corner
* @param x the start value on the x axis
* @param y the start value on the y axis
* @param name argument that identifies which role the robot will have during the game
*/
private StartCorner(int id, int x, int y, String name) {
this.id = id;
this.x = x;
this.y = y;
this.name = name;
}
/**
* acquires the name in a readable string format
*/
public String toString() {
return this.name;
}
/**
* gets the coordinates
* @return the x and the y values in an int array
*/
public int[] getCoordinates() {
return new int[] { this.x, this.y };
}
/**
* gets the x value and returns it as an int
* @return the x value
*/
public int getX() {
return this.x;
}
/**
* gets the y values and returns it as an int
* @return
*/
public int getY() {
return this.y;
}
/**
* gets the role identification information and returns it as an int
* @return the id value received
*/
public int getId() {
return this.id;
}
/**
* Ensures that the corner values correspond to the corner information received
* @param cornerId the corner information received
* @return void
*/
public static StartCorner lookupCorner(int cornerId) {
for (StartCorner corner : StartCorner.values())
if (corner.id == cornerId)
return corner;
return NULL;
}
}