-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathReturnAction.java
43 lines (37 loc) · 1016 Bytes
/
ReturnAction.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
public class ReturnAction extends Action {
// Der Grund, wieso diese Klasse applicable nicht definiert, ist, dass es aus der onEnter-Aktivierung sowieso nicht wieder zurückkehrt.
@Override
protected void play() {
returnTo.interact=false;
}
private String description;
private Scene returnTo;
private boolean auto;
/**
* Über diesen Konstruktor wird eine nicht-automatische ReturnAction erstellt (mit onEnter() = false)
* @param returnTo
* @param description
*/
public ReturnAction(Scene returnTo, String description) {
this.description=description;
this.returnTo=returnTo;
this.auto=false;
}
/**
* Über diesen Konstruktor wird eine automatische ReturnAction erstellt (mit onEnter() = true)
* @param returnTo
*/
public ReturnAction(Scene returnTo) {
this.description=null;
this.returnTo=returnTo;
this.auto=true;
}
@Override
public boolean onEnter() {
return auto&&super.applicable();
}
@Override
public String getDescription() {
return description;
}
}