Uses of Class
game.model.Card

Packages that use Card
bot   
bot.module.equity   
bot.module.th.shc   
bot.talk   
extmodule   
game   
game.gamestorage.texas   
game.gamestorage.texas.db   
util.sql   
 

Uses of Card in bot
 

Methods in bot with parameters of type Card
 void Bot.endLastRound(Card[][] cards)
           
 void IF_Bot_Talk.endLastRound(Card[][] holeCards)
           
private  void Bot.provideNewHoleCardsInformation(int player, Card[] cards)
           
private  void Bot.provideNewRoundInformation(int round, Card[] newCards)
           
 void Bot.setBoardCards(int round, Card[] cards)
          Updates
 void IF_Bot_Talk.setBoardCards(int round, Card[] cards)
           
 void Bot.setHoleCards(int player, Card[] cards)
          Sets the hole cards of the given player.
 

Uses of Card in bot.module.equity
 

Methods in bot.module.equity with parameters of type Card
 double[] SubjectiveAllinEquity.getEquity(int numHoleSamples, int numBoardSamples, Card[][] holeCards_in, Card[] boardCards_in, Card[] deadCards_in)
           
 double[] SubjectiveAllinEquity.getEquity(int numHoleSamples, int numBoardSamples, Card[][] holeCards_in, Card[] boardCards_in, Card[] deadCards_in)
           
 double[] SubjectiveAllinEquity.getEquity(int numHoleSamples, int numBoardSamples, Card[][] holeCards_in, Card[] boardCards_in, Card[] deadCards_in)
           
 double[] IF_Equity.getEquity(int numHoleSamples, int numBoardSamples, Card[][] holeCards_in, Card[] boardCards_in, Card[] deadCards_in)
          Returns the equity for each player.
 double[] IF_Equity.getEquity(int numHoleSamples, int numBoardSamples, Card[][] holeCards_in, Card[] boardCards_in, Card[] deadCards_in)
          Returns the equity for each player.
 double[] IF_Equity.getEquity(int numHoleSamples, int numBoardSamples, Card[][] holeCards_in, Card[] boardCards_in, Card[] deadCards_in)
          Returns the equity for each player.
 

Uses of Card in bot.module.th.shc
 

Methods in bot.module.th.shc with parameters of type Card
 int[] StartingHandChart.getProposal(Card[] holeCards, int activePlayers, int smallBlind, int bigBlind, int position, int calls, int raises)
           
 int[] IF_StartingHandChart.getProposal(Card[] holeCards, int activePlayers, int smallBlind, int bigBlind, int position, int calls, int raises)
          lookInTable and process proposal
private  int StartingHandChart.lookInTable(Card[] holeCards, int position, int calls, int raises)
          looks in the startinghandcharts table for its proposal
 

Uses of Card in bot.talk
 

Methods in bot.talk that return Card
private  Card[] Talk_ACPC.extractCards(java.lang.String cardString)
          Extracts the Cards from the given string and returns it.
 

Methods in bot.talk with parameters of type Card
private  void Talk_ACPC.initHand(int position, int hand, Card[] holeCards, Card[] boardCards)
          Initialize the hand.
private  void Talk_ACPC.initHand(int position, int hand, Card[] holeCards, Card[] boardCards)
          Initialize the hand.
 

Uses of Card in extmodule
 

Fields in extmodule declared as Card
private  Card[][] ExtProposalMC.holeCards
           
 

Fields in extmodule with type parameters of type Card
private  java.util.ArrayList<Card> ExtProposalMC.boardCards
           
 

Methods in extmodule with parameters of type Card
private  int ExtProposalMC.convertCard(Card card)
          Returns the given card converted into another format.
 

Uses of Card in game
 

Fields in game declared as Card
private  Card[] Round.boardCards
           
private  Card[] Player.holeCards
          Hole cards of the player if they are known
 

Methods in game that return Card
 Card[] Round.getBoardCards()
           
 Card[] State.getBoardCards()
           
 Card[] State.getDeadCards()
           
 Card[] Player.getHoleCards()
           
 

Methods in game with parameters of type Card
 void State.setBoardCards(int round, Card[] cards)
          Stores the revealed board cards of the given round.
 void Player.setHoleCards(Card[] cards)
           
 void State.setHoleCards(Card[][] holeCards)
           
 void State.setHoleCards(int player, Card[] cards)
           
 

Constructors in game with parameters of type Card
Round(Card[] boardCards)
           
 

Uses of Card in game.gamestorage.texas
 

Methods in game.gamestorage.texas with parameters of type Card
 void IF_SetGameStorageTH.setEndHand(int finalpot, int[] cashDelta, Card[][] enemyCards)
          Stores information of the ending hand (winner, revealed holeCards, ...).
 void IF_SetGameStorageTH.setEndRound(long timestamp, java.util.ArrayList<Action> betHistory, Card[] revealedBoardCards)
          Stores information of the ending round.
 void IF_SetGameStorageTH.setHand(int[] position, int sb, int bb, int ante, int[] cashInit, Card[] holeCards)
          Stores information of the started hand.
 

Uses of Card in game.gamestorage.texas.db
 

Methods in game.gamestorage.texas.db with parameters of type Card
 boolean SetterDBProjector.setCardOfPlayer(Card[] holeCards)
           
 boolean SetterDBProjector.setCommonCards(Card[] revealedBoardCards)
           
 void SetGameStorageTH_DB.setEndHand(int finalpot, int[] cashDelta, Card[][] holeCards)
           
 void SetGameStorageTH_DB.setEndRound(long timestamp, java.util.ArrayList<Action> betHistory, Card[] revealedBoardCards)
           
 void SetGameStorageTH_DB.setHand(int[] position, int sb, int bb, int ante, int[] cashInit, Card[] holeCards)
           
 boolean SetterDBProjector.setHoleCards(Card[][] enemyCards)
           
 

Uses of Card in util.sql
 

Methods in util.sql that return Card
static Card DBHelper.cardDBToCard(int cardDB)
          converts card db style to Card
static Card[] DBHelper.cardsDBToCardArr(int[] cardsDB)
          converts cards db style to Card[]