Skip to content

petewilkins/multiplayer-snake

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

73 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Multiplayer-snake

Collaborators

Problem Statement

  • To learn how to build a web application that enables a real-time interaction between multiple clients

MVP 1

  • For one client to move one square across a screen and for another client to see this action on his own computer

Further Builds

  • Multiple players control their own snake.
  • For players to die when they collide with the wall.
  • For a winner to be declared once all other players have died.
  • For each snake to grow as it moves.

MLP (Minimum Lovable Product)

Technologies Integrated

  • JavaScript - This application was written completely in JavaScript.
  • NodeJS - An event-driven I/O server-side JavaScript environment that is ideal for real-time web applications such as ours.
  • Express - Quick and minimilist framework for node. Selected for its robust routing and speed.
  • Sockets -
  • P5 - JavaScript library that provides pre-defined methods for the construction of shapes. This enabled the canvas and blocks of the 'snake' to be drawn more efficiently.
  • MochaJS - JavaScript test framework for node that enabled us to TDD this application
  • Chai - TDD assertion library for node. Chosen as it can easily pair with any javascript testing framework(i.e. Mocha). Allowed the use of matchers such as 'should' and 'expect', which improved the readability of our tests.

User Stories:

1.  As a user,
    So that I can play a game of snake,
    I want to be able to control my own snake.

2.  As a user,
    So that I can play against others,
    I want other people on other computers to control their own snake.

3.  As a user,
    So that I can win/lose a game of snake,
    I want the snake to be declared dead when I collide with a wall.

4.  As a user,
    So that a winner can be determined,
    I want the last surviving snake to be declared the winner.

About

A real-time online version of the classic snake game

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •