Skip to content
Snippets Groups Projects
Commit 3689c6fd authored by Pascal Engeler's avatar Pascal Engeler
Browse files

client may check broke-ness

parent b6356377
No related branches found
No related tags found
No related merge requests found
......@@ -82,6 +82,10 @@ void player::set_finished_turn() {
this->_finished_turn->set_value(true);
}
bool player::is_broke() {
return _money->get_value() + _bet_size->get_value() <= 0;
}
#ifdef BLACKJACK_SERVER
void player::setup_round(std::string& err) {
......@@ -128,11 +132,6 @@ bool player::make_bet(int bet_size, std::string &err) {
return true;
}
bool player::is_broke() {
return _money->get_value() + _bet_size->get_value() <= 0;
}
void player::won_round() {
int winnings = this->get_bet_size();
int holdings = this->get_money();
......
......@@ -20,7 +20,7 @@ private:
serializable_value<int>* _money;
serializable_value<bool>* _finished_turn;
hand* _player_hand;
#ifdef BLACKJACK_SERVER // is this macro needed?
std::string _game_id;
......@@ -55,6 +55,7 @@ public:
hand* get_hand() const noexcept;
std::string get_player_name() const noexcept;
void set_finished_turn();
bool is_broke();
#ifdef BLACKJACK_SERVER
// state update functions
......@@ -65,7 +66,6 @@ public:
bool make_bet(int bet_size, std::string &err);
// helper functions for game_state
bool is_broke();
// helper functions to calculate winnings
void won_round();
void lost_round();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment