engine 0.4 rev2 (preflop part 1)

This commit is contained in:
floty
2007-03-09 03:53:39 +00:00
parent fd461383da
commit 29b29ec42e
10 changed files with 382 additions and 221 deletions
+7 -1
View File
@@ -78,11 +78,14 @@ public:
void setActivePlayersCounter(const int& theValue) { activePlayersCounter = theValue; }
int getActivePlayersCounter() const { return activePlayersCounter; }
void setBettingRoundsPlayed(const int& theValue) { bettingRoundsPlayed = theValue; }
int getBettingRoundsPlayed() const { return bettingRoundsPlayed; }
void assignButtons();
void highlightRoundLabel();
void switchRounds();
@@ -109,9 +112,12 @@ private:
int actualRound; //0 = preflop, 1 = flop, 2 = turn, 3 = river
int smallBlind;
int startCash;
int activePlayersCounter;
int activePlayersCounter;
bool allInCondition;
// hier steht bis zu welcher bettingRound der human player gespielt hat: 0 - nur Preflop, 1 - bis Flop, ...
int bettingRoundsPlayed;
};
#endif