diff --git a/README.md b/README.md index 3766016..47685ba 100644 --- a/README.md +++ b/README.md @@ -1,7 +1,37 @@ # 2048 + A school project -To build copy paste following -```bash + +To build, you need following developement dependencies: `meson`, `sdl2`, `sdl2_image`, `sdl2_ttf`, `ncurses`. +You can get these dependecies the following way: + +## Arch Linux + +```sh +sudo pacman -S meson sdl2 sdl2_image sdl2_ttf ncurses +``` + +## Ubuntu + +```sh +sudo apt install meson libsdl2-dev libsdl2-image-dev libsdl2-ttf-dev ncurses-dev +``` + +# Builing and Running + +To build, copy paste following: + +```sh meson builddir meson compile -C builddir ``` + +To run, run: + +```sh +./builddir/src/2048 +``` + +# Usage + +You can pass `--help` as an command line argument to print help message. You can force incomplete TUI mode that exist for a demonstration of portability and independence of SDL. This TUI mode is incomplete only because it's missing few UI elements and not because it is not feasible. You can also force other sizes of the game area. \ No newline at end of file diff --git a/src/2048.c b/src/2048.c index f3d03c6..66686a9 100644 --- a/src/2048.c +++ b/src/2048.c @@ -76,7 +76,7 @@ void game_move(Game *game, Direction direction) { } // make it so it can work with different directions - int directionality = b; // TODO: rename ugly name + int directionality = b; if (direction == Down) { directionality = a; }