Package 'twenty48'

Title: Play a Game of 2048 in the Console
Description: Generates a game of 2048 that can be played in the console. Supports grids of arbitrary sizes, undoing the last move, and resuming a game that was exited during the current session.
Authors: Alexander Rossell Hayes [aut, cre, cph]
Maintainer: Alexander Rossell Hayes <[email protected]>
License: MIT + file LICENSE
Version: 0.2.1
Built: 2024-10-02 02:41:04 UTC
Source: https://github.com/rossellhayes/twenty48

Help Index


Play 2048 in the console

Description

Interact with the game by typing commands into the console and pressing enter.

Usage

play_2048(size = 4, dynamic = rstudioapi::isAvailable())

resume_2048()

Arguments

size

An integer giving the grid's dimensions. Defaults to 4, which generates a 4-by-4 grid.

dynamic

If dynamic is TRUE, commands can be input without pressing enter, creating a more seamless game experience. Note that dynamic commands currently only work in RStudio.

Value

Generates an interactive game of 2048 in the console.

Examples

play_2048()
play_2048(size = 5)