Package tud.gamecontroller.auxiliary

Examples of tud.gamecontroller.auxiliary.ChangeableBoolean


 
  private long messageReceiveTime;
 
  public HumanPlayer(String name) {
    super(name, GDLVersion.v2);
    confirmed = new ChangeableBoolean(false);
    currentLegalMoves = null;
    logger.info("HumanPlayer("+name+")");
    legalMovesAvailable = new ChangeableBoolean(false);
    quickConfirm = false;
    move = null;
  }
View Full Code Here


  public long getDeadLine() {
    return deadline;
  }
 
  public void start(){
    connectionEstablished=new ChangeableBoolean(false);
    deadlineSet=new ChangeableBoolean(false);
    // make another thread that waits until the message is sent and sets the deadline for this thread
    new Thread(){
      public void run() {
        waitUntilConnectionIsEstablished();
      }
View Full Code Here

TOP

Related Classes of tud.gamecontroller.auxiliary.ChangeableBoolean

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.