Upgrade to Pro — share decks privately, control downloads, hide ads and more …

The Danger Crew: Lessons Learned From Making a Video Game in React

Drew Conley
August 26, 2016
160

The Danger Crew: Lessons Learned From Making a Video Game in React

React Rally 2016

Drew Conley

August 26, 2016
Tweet

Transcript

  1. This game needs to be a “FULLY FEATURED” game, with

    a deep experience and adventure The Vision
  2. 3 STEP CYCLE 1. Players submit Actions
 2. Actions are

    processed by Rules -> new Game State is created
 3. Players are notified of new Game State Repeat until winner is declared in new Game State
  3. Actions are submitted p1 submits Action A p2 submits Action

    B { damage: 30, accuracy: 80% } { damage: 20, accuracy: 99% }
  4. Rollout [
 “Player A used Action A!”,
 “But it missed!!!”,


    
 “Player B used Action B!”,
 “It did some damage!”
 ]
  5. Benefits • Game state is perfectly recreatable • Saving/Loading •

    Easy to iterate on levels design, puzzles
 storytelling