Skip to content

Latest commit

 

History

History
35 lines (23 loc) · 1.34 KB

README.md

File metadata and controls

35 lines (23 loc) · 1.34 KB

(Golfed) Game of Tron

This code is based on the javascript game of tron in 219 bytes prepared as Refactoring Kata in different programming languages.

Game of Tron

The usual "Game of Tron" refers to the Light Cycles race from the Tron video game which is a variant of the Snake video game.

Game Rules

The particular game follows these rules:

  1. The Tron starts in the centre, facing any direction.
  2. The game controls are 'i', 'j', 'k', 'l'.
  3. When the Tron hits it's trail or an edge, "game over" is shown to the user.

javascript game of tron in 219 bytes

The javascript game of tron in 219 bytes by Alok Menghrajani is the smallest possible game of Tron in Javascript (an exercise known as Javascript golfing).

Refactoring Kata

I expanded some (of the more extreme) golfing tricks to make the code more readable. The code is compact and lacks proper names and abstractions. I added some basic tests and the tests all pass. Now it is time to refactor! Tidy up the code and add some design.

License

New BSD License, see license.txt in repository.