Folge dem Video um zu sehen, wie unsere Website als Web-App auf dem Startbildschirm installiert werden kann.
Anmerkung: Diese Funktion ist in einigen Browsern möglicherweise nicht verfügbar.
public void bewegespielfigur() {
InputStreamReader isr = new InputStreamReader ( System.in );
BufferedReader stdin = new BufferedReader ( isr );
while(beenden==0){
try {
input = stdin.readLine();
} catch (IOException e) {
e.printStackTrace();
}
if(input.equals("w")){
x=x-1;
array[x][y]=169;
for(int i=0; i<=8; i++){
System.out.println();
}
for(k=0; k<10; k++){
for(j=0; j<40; j++){
System.out.print((char)array[k][j]);
}
System.out.println();
}
}
else if(input.equals("a")){
y=y-1;
array[x][y]=169;
for(int i=0; i<=8; i++){
System.out.println();
}
for(k=0; k<10; k++){
for(j=0; j<40; j++){
System.out.print((char)array[k][j]);
}
System.out.println();
}
}
else if(input.equals("s")){
x=x+1;
array[x][y]=169;
for(int i=0; i<=8; i++){
System.out.println();
}
for(k=0; k<10; k++){
for(j=0; j<40; j++){
System.out.print((char)array[k][j]);
}
System.out.println();
}
}
else if(input.equals("d")){
y=y+1;
array[x][y]=169;
for(int i=0; i<=8; i++){
System.out.println();
}
for(k=0; k<10; k++){
for(j=0; j<40; j++){
System.out.print((char)array[k][j]);
}
System.out.println();
}
}
else if(input.equals("e")){
System.out.println("ende");
beenden = beenden + 1;
}
}
if(array[x][y]==array[8][26]){
System.out.println("Sie haben Gewonnen!");
}
}