kedoska / engine-blackjack

Javascript library to make blackjack engines
GNU General Public License v2.0
33 stars 29 forks source link

How to continue dealing from same deck? #67

Open dotgodly opened 4 years ago

dotgodly commented 4 years ago

Calling another deal after stage is 'done' does not work. Creating a new game with the state sent through does not work.

kedoska commented 4 years ago

hi @dotgodly, the library is designed to be implemented as a virtual game, for single players.

However, if you want to continue with the same deck, you can probably pass the deck to the initial state of the next game. Something like:

const game = new Game()
game.dispatch(actions.deal())
// ...
const {deck} = game.getState()
const nextGame = new Game({deck})