Uses of Class
poker.Action

Packages that use Action
poker   
 

Uses of Action in poker
 

Methods in poker that return Action
static Action Action.actionFilter(Action a, int seat, Card c1, Card c2, GameInfo gi)
          Do some basic checks to change the action if game conditions warrant it.
static Action Action.allInPassAction()
           
static Action Action.betAction(double amountToRaise)
           
static Action Action.bigBlindAction(double toPost)
           
static Action Action.callAction(double toCall)
           
static Action Action.checkAction()
           
static Action Action.checkOrFoldAction(double toCall)
           
static Action Action.foldAction(double toCall)
           
 Action Player.getAction()
          Requests an Action from the player Called when it is the Player's turn to act.
static Action Action.getAction(int a, double toCall, double amount)
          Create an action from classic values.
static Action Action.muckAction()
           
static Action Action.postAnte(double toPost)
           
static Action Action.postBlindAction(double toPost)
           
static Action Action.raiseAction(double toCall, double amountToRaise)
           
static Action Action.smallBlindAction(double toPost)
           
 

Methods in poker with parameters of type Action
 void GameObserver.actionEvent(int pos, Action act)
          A player can override this method to recieve events for each action made by a player.
static Action Action.actionFilter(Action a, int seat, Card c1, Card c2, GameInfo gi)
          Do some basic checks to change the action if game conditions warrant it.
 boolean Action.equivalent(Action a)