Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
B
Blackjack
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Pascal Engeler
Blackjack
Commits
3689c6fd
Commit
3689c6fd
authored
2 years ago
by
Pascal Engeler
Browse files
Options
Downloads
Patches
Plain Diff
client may check broke-ness
parent
b6356377
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
source/general/game_state/player.cpp
+4
-5
4 additions, 5 deletions
source/general/game_state/player.cpp
source/general/game_state/player.hpp
+2
-2
2 additions, 2 deletions
source/general/game_state/player.hpp
with
6 additions
and
7 deletions
source/general/game_state/player.cpp
+
4
−
5
View file @
3689c6fd
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
source/general/game_state/player.hpp
+
2
−
2
View file @
3689c6fd
...
...
@@ -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
();
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment