h2048 alternatives and similar packages
Based on the "Game" category.
Alternatively, view h2048 alternatives based on common mentions on social networks and blogs.
-
LambdaHack
Haskell game engine library for roguelike dungeon crawlers; please offer feedback, e.g., after trying out the sample game with the web frontend at -
haskanoid
A free and open source breakout clone in Haskell using SDL and FRP, with Wiimote and Kinect support. -
Allure
Allure of the Stars is a near-future Sci-Fi roguelike and tactical squad combat game written in Haskell; please offer feedback, e.g., after trying out the web frontend version at -
gloss-game
A convenience wrapper around the Gloss library to make writing games in Haskell even easier -
Ninjas
Haskell game where multiple players attempt to blend in with computer controlled characters while being first to visit the key locations on the board. -
battleship
Battleship... Pure.. Functional... Haskell + MongoDB + TypeScript + React... https://battleship-fp.com/ -
Liquorice
Haskell embedded domain-specific language (eDSL) for the algorithmic construction of maps for the computer game "Doom"
Nutrient – The #1 PDF SDK Library, trusted by 10K+ developers

* Code Quality Rankings and insights are calculated and provided by Lumnify.
They vary from L1 to L5 with "L5" being the highest.
Do you think we are missing an alternative of h2048 or a related project?
README
h2048
A haskell implementation of Game 2048. Including:
- a library for experimenting game strategies for Game 2048.
- a simple program that provides the basic interaction with the game.
- a CUI implemented using brick.
Based on 2048
Screenshots
Simple version
brick-based version
Build and run
With stack
h2048 comes with stack configuration, if you are building from source code, change directory to the project root and run:
stack build
# to run the brick version
stack exec -- h2048-brick
# to run the simple version
stack exec -- h2048-simple
With cabal
h2048
is now available on hackage.
If you have Cabal installed, you can use the following command to install this project:
cabal update
cabal install h2048
The binaries are h2048-simple
for simple CUI version, h2048-brick
for CUI version
implemented using brick
.
How to play
keys:
q
: quiti
: upk
: downj
: leftl
: right
If you are using h2048-brick
, you can also use arrow keys.