Skip to content

Instantly share code, notes, and snippets.

@tcjr
Created December 25, 2020 22:35
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save tcjr/bf5859ad4adaff296f4b63a9498d8d2b to your computer and use it in GitHub Desktop.
Save tcjr/bf5859ad4adaff296f4b63a9498d8d2b to your computer and use it in GitHub Desktop.
Generated by XState Viz: https://xstate.js.org/viz
// Available variables:
// - Machine
// - interpret
// - assign
// - send
// - sendParent
// - spawn
// - raise
// - actions
// - XState (all XState exports)
const gameMachine = Machine({
id: 'cta',
initial: 'joining',
context: {
},
states: {
joining: {
on: {
JOIN: 'joining',
START: 'shuffling'
}
},
shuffling: {
on: {
SHUFFLED: 'dealing'
}
},
dealing: {
on: {
DEALT: 'trading'
}
},
trading: {
on: {
TRADE: 'trading',
DECKTRADE: 'showdown'
}
},
showdown: {
on:{
PAY: 'tallying'
}
},
tallying:{
on: {
NEXT_ROUND: 'shuffling',
DONE: 'done'
}
},
done: {
type: 'final'
}
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment