Skip to content

Latest commit

 

History

History
50 lines (29 loc) · 1.34 KB

README.md

File metadata and controls

50 lines (29 loc) · 1.34 KB

2048 Drop

2048 Drop is a fast-paced, speed-play oriented fan remake of the Coolmath Games title Number Drop, where two all-time classic puzzle games combine, Tetris and 2048.

Drop tiles next to tiles of the same value and they will merge into a higher value tile, freeing up space to drop more tiles and increase your score.

Instructions

Use and to position the active tile.

Use SPACE to hard drop the tile.

Use the Q W E SPACE I O P keys to speed drop into one of the 7 columns instantly (if the tile can still make it there).

Use ESC to pause/unpause.

Use R to reset when the game is paused or stopped.

Installation

Clone the repo and if you are using an M1/M2 based Mac or Windows simply run the .app or .exe file in dist. Otherwise see below for source building instructions or running with python.

Building using pyinstaller

Install pyinstaller using pip

pip install -U pyinstaller

cd into the cloned directory and run the following:

MacOS

pyinstaller main.py -F -w -i 2048drop_icon.icns

Windows (untested)

pyinstaller main.py -F -w -i 2048drop_icon_64.ico

Running using Python

Alternativley, just run main.py like any other python script. Ensure the following are available and installed:

  • pygame
  • numpy