-
Notifications
You must be signed in to change notification settings - Fork 0
/
Rute.java
60 lines (50 loc) · 1.16 KB
/
Rute.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
abstract class Rute{
protected String farge;
protected char tegn;
abstract char tilTegn();
protected final int x, y;
protected Labyrint labyrint;
boolean harVartInnom = false;
public Rute(int x, int y){
this.x = x;
this.y = y;
}
public void settRuter(Labyrint labyrint){
this.labyrint = labyrint;
nord = labyrint.getRute(x-1, y);
syd = labyrint.getRute(x + 1, y);
vest = labyrint.getRute(x, y-1);
oest = labyrint.getRute(x, y+1);
}
Rute nord;
Rute syd;
Rute vest;
Rute oest;
public void gaa(Rute komFra, String utvei){
if(harVartInnom) return;
harVartInnom = true;
utvei += this.getPos() + " -->";
if (komFra != nord){
nord.gaa(this, utvei);
}
if (komFra != syd){
syd.gaa(this, utvei);
}
if (komFra != oest){
oest.gaa(this, utvei);
}
if (komFra != vest){
vest.gaa(this, utvei);
}
harVartInnom = false;
}
public void finnUtvei(){
this.gaa(this, null);
}
public String getPos(){
String tmpX = x + 1+"";
String tmpY = y+ 1 +"";
String posisjon = "(" + tmpY +"," + tmpX +")";
return posisjon;
}
}