package otetris
Install
Dune Dependency
Authors
Maintainers
Sources
sha256=c64a26c00e017a3c6123904e32476079e2af1e58f2f1ffde4de1c10e470ce834
md5=5079edf459afc28a77df226dc178c03d
README.md.html
OCaml Tetris
Simple Tetris game written in OCaml language.
Graphics mode:
Text mode:
Tetris game model is followig Tetris Guidelines from http://tetris.wikia.com/
"Super Rotation System": http://tetris.wikia.com/wiki/SRS
"Tetris Random Generator": http://tetris.wikia.com/wiki/Random_Generator
"Original Nintendo Scoring System": http://tetris.wikia.com/wiki/Scoring
It is written in pure-functional style, whenever possible and not designed for efficiency but rather as OCaml learning excericse.
Install
via OPAM
The easiest way to install is via:
$ opam install otetris
Manuall install
You need to fetch and install some dependencies:
https://github.com/diml/lambda-term
http://batteries.forge.ocamlcore.org/
http://ocamlsdl.sourceforge.net/home.html
To install dependencies on Mac (using macports
and opam
):
$ sudo port install libsdl2 libsdl2_image libsdl2_mixer libsdl2_net libsdl2_ttf
$ opam install jbuilder conf-sdl2-image conf-sdl2-mixer conf-sdl2-net conf-sdl2-ttf ocamlsdl
To build:
$ jbuilder build
To install:
$ jbuilder install
Misc
If you feel nostalgic, you should try to play using this terminal emulator:
https://github.com/Swordfish90/cool-retro-term
For example chose IBM 3278 mode and make sure your font is scaled down to 50% so it would allow 80 columns and 25 rows.
TODO
The following features are not implmented yet:
Wall kicks
Soft Drop
Leveling up and speed increase
T-Spin bonus
Lock delay (but perhaps we have an implicit one due to fixed timer)
Optional display of next-coming tetrominoes
Optional ghost (shadow) piece display
Author
Vadim Zaliva lord@crocodile.org
License
The MIT License (MIT)
Copyright (c) 2015 Vadim Zaliva
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.