bot
Interface IF_Bot_Talk

All Known Implementing Classes:
Bot, DroolsBot, HSBremen1, HSBremen2, RandomBot

public interface IF_Bot_Talk

Specifies the methods that can be called by a Talk object to trigger the bot to update the state.

Author:
Witthold/Korol

Method Summary
 void addAction(int round, char action)
           
 void addAction(int round, char action, int finalInPot)
           
 void endLastRound(Card[][] holeCards)
           
 void gameOver()
           
 int getBuyin()
           
 java.lang.String getName()
           
 void handleStateChange()
           
 boolean newGame(Gamedef gamedef)
           
 void newRound()
           
 void setBlinds()
           
 void setBoardCards(int round, Card[] cards)
           
 void showdown(int[] winsPerPlayer)
           
 void showdown(java.lang.String[] winner, int[] amount)
           
 

Method Detail

getName

java.lang.String getName()

getBuyin

int getBuyin()

newGame

boolean newGame(Gamedef gamedef)

handleStateChange

void handleStateChange()

newRound

void newRound()

setBlinds

void setBlinds()

setBoardCards

void setBoardCards(int round,
                   Card[] cards)

endLastRound

void endLastRound(Card[][] holeCards)

showdown

void showdown(java.lang.String[] winner,
              int[] amount)

showdown

void showdown(int[] winsPerPlayer)

addAction

void addAction(int round,
               char action)

addAction

void addAction(int round,
               char action,
               int finalInPot)

gameOver

void gameOver()