added echoes to the Gap class

This commit is contained in:
Kjistóf 2016-03-29 00:10:55 +02:00
parent a8ff7df705
commit ab26f85f0d
1 changed files with 19 additions and 2 deletions

View File

@ -1,13 +1,30 @@
package cicaprojekt;
import com.sun.xml.internal.rngom.parse.host.Base;
public class Gap extends cicaprojekt.Tile
{
@Override
public void spawnStargate(cicaprojekt.Stargate stargate, Direction direction) {
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Gap.spawnStargate(stargate" + direction.name() + ")");
adjacentTile.get(direction).spawnStargate(stargate, direction);
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Gap.spawnStargate()");
Menu.removeTab();
}
public void onEntry() {}
public void onEntry() {
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Gap.onEntry()");
this.removeItemFromTile().destroy();
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Gap.onEntry()");
Menu.removeTab();
}
public void onExit() {}
public void onExit() {
Menu.addTab();
System.out.println(">" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Gap.onExit()");
System.out.println("<" + "[" + ":" + this.getClass().getSimpleName() + "]" + Menu.tabulator + "Gap.onExit()");
Menu.removeTab();
}
}