#lang scribble/doc @(require scribble/manual) @title{Tetris} @defmodule[(planet dvanhorn/tetris)] David Van Horn @scheme[(at dvanhorn (dot ccs neu edu))] This is a simple implementation of Tetris, developed using the design recipe of HtDP. To play the game in DrScheme, simply require the library: @scheme[(planet dvanhorn/tetris)] The play the game from the command line, run @tt{tetris}. Keyboard actions: @itemize{ @item{A - clockwise rotation} @item{S - counterclockwise rotation} @item{Left - move left} @item{Right - move right} @item{Down - jump down} } The game is currently written to include a "ghost peice" that shows where the current tetra would land.