-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathSite.java
More file actions
69 lines (61 loc) · 1.46 KB
/
Site.java
File metadata and controls
69 lines (61 loc) · 1.46 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
import java.util.*;
/**
* Represents a site in the dungeon.
*/
public class Site {
private int i;
private int j;
private Dungeon dungeon;
/**
* Initializes a new site with the given coordinates.
* @param i The row index.
* @param j The column index.
*/
public Site(int i, int j) {
this.i = i;
this.j = j;
}
/**
* Gets the row index of the site.
* @return The row index.
*/
public int i() {
return i;
}
/**
* Gets the column index of the site.
* @return The column index.
*/
public int j() {
return j;
}
/**
* Checks if this site is equal to another object.
* @param obj The object to compare with.
* @return True if equal, false otherwise.
*/
@Override
public boolean equals(Object obj) {
if (this == obj) return true;
if (obj == null || getClass() != obj.getClass()) return false;
Site site = (Site) obj;
return i == site.i && j == site.j;
}
/**
* Generates a hash code for this site.
* @return The hash code.
*/
@Override
public int hashCode() {
int result = Integer.hashCode(i);
result = 31 * result + Integer.hashCode(j);
return result;
}
/**
* Returns a string representation of this site.
* @return The string representation.
*/
public String toString() {
return "(" + i + ", " + j + ")";
}
}