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
70b5fb8c
Commit
70b5fb8c
authored
2 years ago
by
Flavia Taras
Browse files
Options
Downloads
Plain Diff
Merge remote-tracking branch 'origin/main'
parents
47113c6b
6cea5678
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
source/client/panels/MainGamePanel.cpp
+43
-21
43 additions, 21 deletions
source/client/panels/MainGamePanel.cpp
source/general/game_state/hand.hpp
+1
-1
1 addition, 1 deletion
source/general/game_state/hand.hpp
unit-tests/hand.cpp
+57
-0
57 additions, 0 deletions
unit-tests/hand.cpp
with
101 additions
and
22 deletions
source/client/panels/MainGamePanel.cpp
+
43
−
21
View file @
70b5fb8c
...
@@ -131,32 +131,32 @@ void MainGamePanel::buildOthers(game_state* gameState, player* otherPlayer, doub
...
@@ -131,32 +131,32 @@ void MainGamePanel::buildOthers(game_state* gameState, player* otherPlayer, doub
}
}
else
{
else
{
// STATUS
// STATUS
if
(
otherPlayer
->
get_hand
()
->
is_over_21
(
err
)){
std
::
string
status_message
=
"Status: "
;
this
->
buildStaticText
(
"Status: LOST ROUND"
,
if
(
otherPlayer
->
get_hand
()
->
is_over_21
(
err
))
labelPosition
+
wxSize
(
-
100
,
-
18
),
status_message
+=
"LOST ROUND"
;
wxSize
(
200
,
18
),
else
if
(
gameState
->
everyone_finished
()){
textAlignment
std
::
string
err
;
);
int
pp
=
otherPlayer
->
get_hand
()
->
get_points
(
err
);
}
int
dp
=
gameState
->
get_dealers_hand
()
->
get_points
(
err
);
else
if
(
gameState
->
get_current_player
()
==
otherPlayer
&&
!
gameState
->
everyone_finished
())
if
(
pp
<
dp
)
status_message
+=
"LOST ROUND"
;
{
else
if
(
pp
>
dp
)
status_message
+=
"WON ROUND"
;
this
->
buildStaticText
(
else
status_message
+=
"DRAW WITH DEALER"
;
"Status: Playing"
,
labelPosition
+
wxSize
(
-
100
,
-
18
),
wxSize
(
200
,
18
),
textAlignment
);
}
}
else
if
(
gameState
->
get_current_player
()
==
otherPlayer
&&
!
gameState
->
everyone_finished
())
status_message
+=
"PLAYING"
;
else
else
{
status_message
+=
"WAITING"
;
this
->
buildStaticText
(
"Status: Waiting"
,
this
->
buildStaticText
(
status_message
,
labelPosition
+
wxSize
(
-
100
,
-
18
),
labelPosition
+
wxSize
(
-
100
,
-
18
),
wxSize
(
200
,
18
),
wxSize
(
200
,
18
),
textAlignment
textAlignment
);
);
}
// MONEY
// MONEY
this
->
buildStaticText
(
this
->
buildStaticText
(
"Money:"
+
std
::
to_string
(
otherPlayer
->
get_money
())
+
"$"
,
"Money:"
+
std
::
to_string
(
otherPlayer
->
get_money
())
+
"$"
,
...
@@ -330,7 +330,29 @@ void MainGamePanel::buildThisPlayer(game_state* gameState, player* me) {
...
@@ -330,7 +330,29 @@ void MainGamePanel::buildThisPlayer(game_state* gameState, player* me) {
// if our player already played, we display that as status
// if our player already played, we display that as status
// TODO from has_folded make has_played
// TODO from has_folded make has_played
if
(
me
->
has_finished_turn
())
{
if
(
gameState
->
everyone_finished
()){
std
::
string
err
;
std
::
string
status_message
;
int
pp
=
me
->
get_hand
()
->
get_points
(
err
);
int
dp
=
gameState
->
get_dealers_hand
()
->
get_points
(
err
);
if
(
me
->
get_hand
()
->
is_over_21
(
err
))
status_message
+=
"YOU LOST THIS ROUND"
;
else
if
(
pp
<
dp
)
status_message
+=
"YOU LOST THIS ROUND"
;
else
if
(
pp
>
dp
)
status_message
+=
"YOU WON THIS ROUND"
;
else
status_message
+=
"YOU TIED WITH THE DEALER"
;
wxStaticText
*
playerStatus
=
buildStaticText
(
status_message
,
wxDefaultPosition
,
wxSize
(
200
,
32
),
wxALIGN_CENTER
);
innerLayout
->
Add
(
playerStatus
,
0
,
wxALIGN_CENTER
|
wxBOTTOM
,
8
);
}
else
if
(
me
->
has_finished_turn
())
{
wxStaticText
*
playerStatus
=
buildStaticText
(
wxStaticText
*
playerStatus
=
buildStaticText
(
"You finished your turn"
,
"You finished your turn"
,
wxDefaultPosition
,
wxDefaultPosition
,
...
...
This diff is collapsed.
Click to expand it.
source/general/game_state/hand.hpp
+
1
−
1
View file @
70b5fb8c
...
@@ -31,7 +31,7 @@ public:
...
@@ -31,7 +31,7 @@ public:
bool
add_card
(
card
*
card
,
std
::
string
&
err
);
//checked
bool
add_card
(
card
*
card
,
std
::
string
&
err
);
//checked
int
get_points
(
std
::
string
&
err
);
//checked
int
get_points
(
std
::
string
&
err
);
//checked
bool
is_over_21
(
std
::
string
&
err
);
//
TODO
bool
is_over_21
(
std
::
string
&
err
);
//
checked
std
::
vector
<
card
*>::
iterator
get_card_iterator
();
std
::
vector
<
card
*>::
iterator
get_card_iterator
();
};
};
...
...
This diff is collapsed.
Click to expand it.
unit-tests/hand.cpp
+
57
−
0
View file @
70b5fb8c
...
@@ -259,4 +259,61 @@ TEST_F(HandTest, SetupRoundManyCardsWithDuplicates) {
...
@@ -259,4 +259,61 @@ TEST_F(HandTest, SetupRoundManyCardsWithDuplicates) {
player_hand
.
setup_round
(
err
);
player_hand
.
setup_round
(
err
);
std
::
vector
<
card
*>
expected_hand
=
{};
std
::
vector
<
card
*>
expected_hand
=
{};
EXPECT_EQ
(
expected_hand
,
player_hand
.
get_cards
());
EXPECT_EQ
(
expected_hand
,
player_hand
.
get_cards
());
}
// An empty hand will not have a score of over 21
TEST_F
(
HandTest
,
IsOver21NoCards
)
{
EXPECT_FALSE
(
player_hand
.
is_over_21
(
err
));
}
// A hand with only one card will not have a score of over 21
TEST_F
(
HandTest
,
IsOver21OneCard
)
{
EXPECT_FALSE
(
player_hand
.
is_over_21
(
err
));
}
// A hand with less than 21 points will not have a score of over 21
TEST_F
(
HandTest
,
IsOver21ManyCardsFalse
)
{
player_hand
.
add_card
(
cards
[
2
][
0
],
err
);
player_hand
.
add_card
(
cards
[
7
][
0
],
err
);
player_hand
.
add_card
(
cards
[
9
][
0
],
err
);
EXPECT_FALSE
(
player_hand
.
is_over_21
(
err
));
}
// A hand (including an ace) with less than 21 points will not have a score of over 21
TEST_F
(
HandTest
,
IsOver21ManyCardsWithAceFalse
)
{
player_hand
.
add_card
(
cards
[
1
][
0
],
err
);
player_hand
.
add_card
(
cards
[
7
][
0
],
err
);
player_hand
.
add_card
(
cards
[
9
][
0
],
err
);
EXPECT_FALSE
(
player_hand
.
is_over_21
(
err
));
}
// A hand of 21 points will not have a score of over 21
TEST_F
(
HandTest
,
IsOver21Exactly
)
{
player_hand
.
add_card
(
cards
[
4
][
0
],
err
);
player_hand
.
add_card
(
cards
[
7
][
0
],
err
);
player_hand
.
add_card
(
cards
[
10
][
0
],
err
);
EXPECT_FALSE
(
player_hand
.
is_over_21
(
err
));
}
// A hand of 21 points (one ace and a face card) will not have a score of over 21
TEST_F
(
HandTest
,
IsOver21ExactlyWithAce
)
{
player_hand
.
add_card
(
cards
[
1
][
0
],
err
);
player_hand
.
add_card
(
cards
[
13
][
0
],
err
);
EXPECT_FALSE
(
player_hand
.
is_over_21
(
err
));
}
// A hand of over 21 points will return true for is_over_21()
TEST_F
(
HandTest
,
IsOver21ManyCardsTrue
)
{
player_hand
.
add_card
(
cards
[
10
][
0
],
err
);
player_hand
.
add_card
(
cards
[
4
][
0
],
err
);
player_hand
.
add_card
(
cards
[
13
][
0
],
err
);
EXPECT_TRUE
(
player_hand
.
is_over_21
(
err
));
}
// A hand of over 21 points (with ace) will return true for is_over_21()
TEST_F
(
HandTest
,
IsOver21TrueWithAce
)
{
player_hand
.
add_card
(
cards
[
1
][
0
],
err
);
player_hand
.
add_card
(
cards
[
7
][
0
],
err
);
player_hand
.
add_card
(
cards
[
13
][
0
],
err
);
player_hand
.
add_card
(
cards
[
5
][
0
],
err
);
EXPECT_TRUE
(
player_hand
.
is_over_21
(
err
));
}
}
\ No newline at end of file
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