Merge pull request 'refactor: refactor state logic' (!106) from refactor/state-logic into main
All checks were successful
Release / Release (push) Successful in 49s
All checks were successful
Release / Release (push) Successful in 49s
Reviewed-on: #106
This commit is contained in:
commit
4e8530c861
5 changed files with 22 additions and 14 deletions
|
@ -7,6 +7,6 @@ Content-Type: application/json
|
||||||
}
|
}
|
||||||
|
|
||||||
###
|
###
|
||||||
POST http://localhost:8080/blackjack/202/hit
|
POST http://localhost:8080/blackjack/54/hit
|
||||||
Authorization: Bearer {{token}}
|
Authorization: Bearer {{token}}
|
||||||
|
|
||||||
|
|
|
@ -46,7 +46,7 @@ public class BlackJackGameController {
|
||||||
return ResponseEntity.badRequest().body(errorResponse);
|
return ResponseEntity.badRequest().body(errorResponse);
|
||||||
}
|
}
|
||||||
|
|
||||||
return ResponseEntity.ok(blackJackService.hit(game));
|
return ResponseEntity.ok(blackJackService.hit(game, user));
|
||||||
}
|
}
|
||||||
|
|
||||||
@PostMapping("/blackjack/start")
|
@PostMapping("/blackjack/start")
|
||||||
|
|
|
@ -42,14 +42,7 @@ public class BlackJackService {
|
||||||
dealerCard.setCardType(CardType.DEALER);
|
dealerCard.setCardType(CardType.DEALER);
|
||||||
game.getDealerCards().add(dealerCard);
|
game.getDealerCards().add(dealerCard);
|
||||||
|
|
||||||
BlackJackState state = getState(game);
|
BlackJackState state = handleState(game, user);
|
||||||
if (state == BlackJackState.PLAYER_BLACKJACK) {
|
|
||||||
BigDecimal blackjackWinnings = betAmount.multiply(new BigDecimal("1.5"));
|
|
||||||
user.setBalance(user.getBalance().add(blackjackWinnings));
|
|
||||||
} else {
|
|
||||||
user.setBalance(user.getBalance().subtract(betAmount));
|
|
||||||
}
|
|
||||||
|
|
||||||
game.setState(state);
|
game.setState(state);
|
||||||
|
|
||||||
userRepository.save(user);
|
userRepository.save(user);
|
||||||
|
@ -58,12 +51,12 @@ public class BlackJackService {
|
||||||
return game;
|
return game;
|
||||||
}
|
}
|
||||||
|
|
||||||
public BlackJackGameEntity hit(BlackJackGameEntity game) {
|
public BlackJackGameEntity hit(BlackJackGameEntity game, UserEntity user) {
|
||||||
CardEntity drawnCard = drawCardFromDeck(game);
|
CardEntity drawnCard = drawCardFromDeck(game);
|
||||||
drawnCard.setCardType(CardType.PLAYER);
|
drawnCard.setCardType(CardType.PLAYER);
|
||||||
game.getPlayerCards().add(drawnCard);
|
game.getPlayerCards().add(drawnCard);
|
||||||
|
|
||||||
game.setState(getState(game));
|
game.setState(handleState(game, user));
|
||||||
|
|
||||||
return blackJackGameRepository.save(game);
|
return blackJackGameRepository.save(game);
|
||||||
}
|
}
|
||||||
|
@ -91,12 +84,25 @@ public class BlackJackService {
|
||||||
return game.getDeck().removeFirst();
|
return game.getDeck().removeFirst();
|
||||||
}
|
}
|
||||||
|
|
||||||
private BlackJackState getState(BlackJackGameEntity game) {
|
private BlackJackState handleState(BlackJackGameEntity game, UserEntity user) {
|
||||||
int playerHandValue = calculateHandValue(game.getPlayerCards());
|
int playerHandValue = calculateHandValue(game.getPlayerCards());
|
||||||
|
|
||||||
if (playerHandValue == 21) {
|
if (playerHandValue == 21) {
|
||||||
return BlackJackState.PLAYER_BLACKJACK;
|
CardEntity hole = drawCardFromDeck(game);
|
||||||
|
hole.setCardType(CardType.DEALER);
|
||||||
|
game.getDealerCards().add(hole);
|
||||||
|
|
||||||
|
int dealerHandValue = calculateHandValue(game.getDealerCards());
|
||||||
|
|
||||||
|
if (dealerHandValue == 21) {
|
||||||
|
return BlackJackState.STANDOFF;
|
||||||
|
} else {
|
||||||
|
BigDecimal blackjackWinnings = game.getBet().multiply(new BigDecimal("1.5"));
|
||||||
|
user.setBalance(user.getBalance().add(blackjackWinnings));
|
||||||
|
return BlackJackState.PLAYER_BLACKJACK;
|
||||||
|
}
|
||||||
} else if (playerHandValue > 21) {
|
} else if (playerHandValue > 21) {
|
||||||
|
user.setBalance(user.getBalance().subtract(game.getBet()));
|
||||||
return BlackJackState.PLAYER_LOST;
|
return BlackJackState.PLAYER_LOST;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -4,4 +4,5 @@ public enum BlackJackState {
|
||||||
IN_PROGRESS,
|
IN_PROGRESS,
|
||||||
PLAYER_BLACKJACK,
|
PLAYER_BLACKJACK,
|
||||||
PLAYER_LOST,
|
PLAYER_LOST,
|
||||||
|
STANDOFF,
|
||||||
}
|
}
|
||||||
|
|
|
@ -31,6 +31,7 @@ public class CardEntity {
|
||||||
private Rank rank;
|
private Rank rank;
|
||||||
|
|
||||||
@Enumerated(EnumType.STRING)
|
@Enumerated(EnumType.STRING)
|
||||||
|
@JsonIgnore
|
||||||
private CardType cardType;
|
private CardType cardType;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Add table
Reference in a new issue