|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Card | |
|---|---|
| com.asdf.plugins.pokergames | In-built pokergame implementation. |
| com.asdf.plugins.pokergames.texasholdem.bots | |
| Uses of Card in com.asdf.plugins.pokergames |
|---|
| Methods in com.asdf.plugins.pokergames that return Card | |
|---|---|
Card |
Deck.dealCard()
Removes the bottom card from the deck. |
Card |
Hand.getCard(int pos)
|
Card |
Deck.getCard(int index)
Gets the card in the given index. |
| Methods in com.asdf.plugins.pokergames that return types with arguments of type Card | |
|---|---|
java.util.ArrayList<Card> |
Hand.getCards()
|
| Methods in com.asdf.plugins.pokergames with parameters of type Card | |
|---|---|
void |
Hand.addCard(Card card1)
add given card to the hand |
void |
GameModel.addCardToBoard(Card card1)
adds the given card to be the last in the board cards |
int |
Card.compareTo(Card a)
Compares this card to another card. |
boolean |
Hand.containsCard(Card crd)
|
void |
Deck.extractCard(Card c)
Extracts known card from the deck. |
boolean |
Card.lessThan(Card anotherCard)
Comparator function. |
void |
Player.showdownEvent(int arg0,
Card arg1,
Card arg2)
from GameObserver, Player pos has shown two cards. |
void |
OurPlayer.showdownEvent(int pos,
Card c1,
Card c2)
|
void |
Card.swap(Card a)
Swaps the contents of two cards |
| Method parameters in com.asdf.plugins.pokergames with type arguments of type Card | |
|---|---|
void |
Hand.setCards(java.util.ArrayList<Card> cards)
Put the given list of cards to be this hand |
void |
StatisticsHand.setCards(java.util.List<Card> cards_)
Set board cards. |
| Uses of Card in com.asdf.plugins.pokergames.texasholdem.bots |
|---|
| Methods in com.asdf.plugins.pokergames.texasholdem.bots with parameters of type Card | |
|---|---|
static double |
SimplePFTable.calcValue(Card c1,
Card c2)
|
double |
HandEvaluator.handRank(Card c1,
Card c2,
Hand board,
int opps)
Calculates the probability of having the best hand against random opponents |
double |
HandEvaluator.potential(Card c1,
Card c2,
Hand bd,
boolean positive)
|
int |
HandEvaluator.rankHand(Card c1,
Card c2,
Hand board)
Gives a numerical ranking of the hand |
void |
SuperBot.showdownEvent(int arg0,
Card arg1,
Card arg2)
|
void |
KillerBot.showdownEvent(int arg0,
Card arg1,
Card arg2)
|
void |
Bananabot.showdownEvent(int seat,
Card c1,
Card c2)
A showdown has occurred. |
|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||