Package soc.qase.info

Examples of soc.qase.info.User


/*-------------------------------------------------------------------*/
/**  Default constructor. Creates the agent using default parameters. */
/*-------------------------------------------------------------------*/
  public BasicBot()
  {
    user = new User("QASE_Bot", "female/athena", 65535, 1, 90, User.HAND_RIGHT, "");
    commonSetup(false, true);
  }
View Full Code Here


@param botName name of the character during game session
@param botSkin specifies the character's in-game appearance */
/*-------------------------------------------------------------------*/
  public BasicBot(String botName, String botSkin)
  {
    user = new User((botName == null ? "QASE_BasicBot" : botName), (botSkin == null ? "female/athena" : botSkin), 65535, 1, 90, User.HAND_RIGHT, "");
    commonSetup(false, true);
  }
View Full Code Here

@param botSkin specifies the character's in-game appearance
@param trackInv if true, the agent will manually track its inventory */
/*-------------------------------------------------------------------*/
  public BasicBot(String botName, String botSkin, boolean trackInv)
  {
    user = new User((botName == null ? "QASE_BasicBot" : botName), (botSkin == null ? "female/athena" : botSkin), 65535, 1, 90, User.HAND_RIGHT, "");
    commonSetup(false, trackInv);
  }
View Full Code Here

@param highThreadSafety if true, enables high thread safety mode
@param trackInv if true, the agent will manually track its inventory */
/*-------------------------------------------------------------------*/
  public BasicBot(String botName, String botSkin, boolean highThreadSafety, boolean trackInv)
  {
    user = new User((botName == null ? "QASE_BasicBot" : botName), (botSkin == null ? "female/athena" : botSkin), 65535, 1, 90, User.HAND_RIGHT, "");
    commonSetup(highThreadSafety, trackInv);
  }
View Full Code Here

@param highThreadSafety if true, enables high thread safety mode
@param trackInv if true, the agent will manually track its inventory */
/*-------------------------------------------------------------------*/
  public BasicBot(String botName, String botSkin, String password, boolean highThreadSafety, boolean trackInv)
  {
    user = new User((botName == null ? "QASE_BasicBot" : botName), (botSkin == null ? "female/athena" : botSkin), 65535, 1, 90, User.HAND_RIGHT, password);
    commonSetup(highThreadSafety, trackInv);
  }
View Full Code Here

@param highThreadSafety if true, enables high thread safety mode
@param trackInv if true, the agent will manually track its inventory */
/*-------------------------------------------------------------------*/
  public BasicBot(String botName, String botSkin, int recvRate, int msgLevel, int fov, int hand, String password, boolean highThreadSafety, boolean trackInv)
  {
    user = new User((botName == null ? "QASE_BasicBot" : botName), (botSkin == null ? "female/athena" : botSkin), (recvRate < 0 ? 65535 : recvRate), (msgLevel < 0 ? 1 : msgLevel), (fov < 0 ? 90 : fov), (hand < 0 ? User.HAND_RIGHT : hand), (password == null ? "" : password));
    commonSetup(highThreadSafety, trackInv);
  }
View Full Code Here

TOP

Related Classes of soc.qase.info.User

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.