2048 | |
---|---|
Developer(s) | Gabriele Cirulli |
Publisher(s) | Solebon llc |
Platform(s) | Web browser, iOS, Nintendo 3DS, Android, Apple TV, KaiOS |
Release | Web: 9 March 2014 [1] |
Genre(s) | Puzzle |
Mode(s) | Single-player |
2048 is a single-player sliding tile puzzle video game written by Italian web developer Gabriele Cirulli and published on GitHub. [2] The objective of the game is to slide numbered tiles on a grid to combine them to create a tile with the number 2048; however, one can continue to play the game after reaching the goal, creating tiles with larger numbers. It was originally written in JavaScript and CSS over a weekend, and released on 9 March 2014 as free and open-source software subject to the MIT License. Versions for iOS and Android followed in May 2014.
2048 was intended to be an improved version of two other games, both of which were clones of the iOS game Threes released a month earlier. Cirulli himself described 2048 as being "conceptually similar" to Threes. [3] The release of 2048 resulted in the rapid appearance of many similar games, akin to the flood of Flappy Bird variations from 2013. The game received generally positive reviews from critics, with it being described as "viral" and "addictive".
2048 is played on a plain 4×4 grid, with numbered tiles that slide when a player moves them using the four arrow keys. [4] The game begins with two tiles already in the grid, having a value of either 2 or 4, and another such tile appears in a random empty space after each turn. [5] Tiles with a value of 2 appear 90% of the time, and tiles with a value of 4 appear 10% of the time. [6] Tiles slide as far as possible in the chosen direction until they are stopped by either another tile or the edge of the grid. If two tiles of the same number collide while moving, they will merge into a tile with the total value of the two tiles that collided. [7] [8] The resulting tile cannot merge with another tile again in the same move. Higher-scoring tiles emit a soft glow; [5] the largest possible tile is 131,072. [9]
If a move causes three consecutive tiles of the same value to slide together, only the two tiles farthest along the direction of motion will combine. If all four spaces in a row or column are filled with tiles of the same value, a move parallel to that row/column will combine the first two and last two. [10] A scoreboard on the upper-right keeps track of the user's score. The user's score starts at zero, and is increased whenever two tiles combine, by the value of the new tile. [5]
The game is won when a tile with a value of 2048 appears on the board. Players can continue beyond that to reach higher scores. [11] [12] [13] When the player has no legal moves (there are no empty spaces and no adjacent tiles with the same value), the game ends. [3] [14]
Strategies in 2048 include keeping the largest tile in a specific corner with other large tiles filling the row (either vertically or horizontally). If the row remains filled, the player can then move in three different directions while still keeping the largest tile in the preferred corner. As a general rule, no small tiles should be separated from other small tiles by a large tile. [15] [16]
Nineteen-year-old Gabriele Cirulli created the game in a single weekend as a test to see if he could program a game from scratch. [17] "It was a way to pass the time", he said. [11] He described it as being "conceptually similar" to the recently released iOS game Threes , [3] [18] and a clone of another game, 1024. [11] Developed by Veewo Studio, [19] 1024 is itself a clone of Threes, with its App Store description once reading "no need to pay for Threes". [20] Cirulli's README for 2048 cites another 1024 clone as influence: the homonymous but slightly different in terms of mechanics 2048 by Saming. [21]
Cirulli was surprised when his weekend project received over 4 million visitors in less than a week. [4] [22] The game is free to play, Cirulli having said that he was unwilling to make money "from a concept that [he] didn't invent". [23] He released ports for iOS and Android in May 2014. [24]
The simple controls allowed it to be used in a promo video for the Myo gesture control armband, [25] and the availability of the code underneath allowed it to be used as a teaching aid for programming. [26] The second-place winner of a coding contest at Matlab Central Exchange was an AI system that would play 2048 on its own. [27] As the source code is available, many additions to the original game, including a score leaderboard, an undo feature, and improved touchscreen playability have been written by other people. All are available to the public. [4] [26]
Spinoffs have been released online and include versions with elements from the Doge meme, Doctor Who , [28] Flappy Bird and Tetris . There has also been a 3D version [29] and versions with bigger or smaller grids. [8] Cirulli sees these spinoffs as "part of the beauty of open source software" [7] and does not object to them "as long as they add new, creative modifications to the game". [30] In 2014, an unofficial clone of the game was published in the iOS App Store by Ketchapp, monetized with advertising. [31] [32] An unofficial clone was also released for the Nintendo 3DS. [33]
The game has been described by The Wall Street Journal as "almost like Candy Crush for math geeks", [7] and Business Insider called it "Threes on steroids". [1] Caitlin Dewey of The Washington Post called it "a nerdy, minimalist, frustrating game", [12] while The Independent called it "addictive". [20] The phenomenon of 2048 has been compared to that of Flappy Bird by several commentators. Both games' success, and their simplicity, led to the rapid creation of many variants, and both games have been described as "viral" and "very addictive". [5]
James Vincent of The Independent labeled 2048 as "a clone of a clone". [20] In April 2014, Pocket Gamer reported that 15 new clones of Threes were released daily in the App Store. [34] When asked if he was concerned that his situation would end up as stressed as that of Nguyễn Hà Đông, the creator of Flappy Bird , Cirulli said that he had "already gone through that phase" on a smaller scale, and that once he had decided against monetizing 2048, he "stopped feeling awkward." [3]
In response to rampant cloning, the creators of Threes published a log of how the game evolved over its 14-month development cycle. They said they had tried and dismissed 2048's tile merging variant, because it made the game too easy. [35] In a 2014 Wired article, they claimed to have each beaten 2048 on their first play. [35]
The mathematical nature of 2048 has made the game of interest to researchers of artificial intelligence. As of 2022, AI achieved [36] over 95% (likely over 98%, but the measurement has noise) probability of making a 16384 tile, over 75% (likely over 80%) probability of making a 32768 tile, and over 3% probability of making a 65536 tile (improving over the results in previous papers [37] [38] ). Due to randomness and lack of spare room, the optimal probability of making a 65536 tile is expected to be low; this is supported by optimal solutions for constrained boards. [36] [39]
2048 AI strategy uses expectimax search up to a certain (variable) depth, plus transposition tables to avoid duplication. Analogously to endgame tablebases, tables are used to estimate success (for building a large enough tile without destroying the configuration) in appropriate positions with many large tiles. A position evaluation function can favor empty squares, having a large number of merge possibilities, placement of larger tiles at the edge, and monotonicity for tile sizes, especially for larger tiles. [40] [41] The parameters are optimized by a search for better parameter values; some papers [37] [38] used temporal difference reinforcement learning.
Puzzle Bobble, internationally known as Bust-A-Move, is a 1994 tile-matching puzzle arcade game developed and published by Taito. It is based on the 1986 arcade game Bubble Bobble, featuring characters and themes from that game. Its characteristically cute Japanese animation and music, along with its play mechanics and level designs, made it successful as an arcade title and spawned several sequels and ports to home gaming systems.
Puzzle video games make up a broad genre of video games that emphasize puzzle solving. The types of puzzles can test problem-solving skills, including logic, pattern recognition, sequence solving, spatial recognition, and word completion. Many puzzle games involve a real-time element and require quick thinking, such as Tetris (1985) and Lemmings (1991).
The X68000 is a home computer created by Sharp Corporation. It was first released in 1987 and sold only in Japan.
A video game clone is either a video game or a video game console very similar to, or heavily inspired by, a previous popular game or console. Clones are typically made to take financial advantage of the popularity of the cloned game or system, but clones may also result from earnest attempts to create homages or expand on game mechanics from the original game. An additional motivation unique to the medium of games as software with limited compatibility, is the desire to port a simulacrum of a game to platforms that the original is unavailable for or unsatisfactorily implemented on.
Pac-Attack, also known as Pac-Panic, is a 1993 falling-tile puzzle video game developed and published by Namco for the Super Nintendo Entertainment System and Sega Genesis. Versions for the Game Boy, Game Gear and Philips CD-i were also released. The player is tasked with clearing out blocks and ghosts without them stacking to the top of the playfield — blocks can be cleared by matching them in horizontal rows, while ghosts can be cleared by placing down a Pac-Man piece that can eat them. It is the first game in the Pac-Man series to be released exclusively for home platforms.
Flappy is a puzzle video game by dB-Soft in the same vein as the Eggerland series and Sokoban that is obscure outside Japan. It stars Flappy, a somewhat mole-like character who must complete each level by pushing a blue stone from its starting place to the blue tile destination.
A tile-matching video game is a type of puzzle video game where the player manipulates tiles in order to make them disappear according to a matching criterion. In many tile-matching games, that criterion is to place a given number of tiles of the same type so that they adjoin each other. That number is often three, and these games are called match-three games.
Flappy Bird is a 2013 casual mobile game developed by Vietnamese video game artist and programmer Dong Nguyen, under his game development company .Gears. The game is a side-scroller where the player controls a bird, Faby, attempting to fly between columns of green pipes without hitting them. The player's score is determined by the number of pipes they pass. Nguyen created the game over a period of several days, using the bird from a cancelled game made in 2012.
Threes is a puzzle video game by Sirvo, an independent development team consisting of game designer Asher Vollmer, illustrator Greg Wohlwend, and composer Jimmy Hinson. The game was released on February 6, 2014, for iOS devices and later ported to Android, Xbox One, Windows Phone, and Windows. In Threes, the player slides numbered tiles on a grid to combine addends and multiples of three. The game ends when there are no moves left on the grid and the tiles are counted for a final score.
Asher Vollmer is an American indie video game developer. He created Puzzlejuice and Threes. Vollmer also worked on Guildlings and Beast Breaker.
Blek is a 2013 puzzle video game for iOS and Android by kunabi brother, a team of brothers Denis and Davor Mikan. The player draws a snakelike black line that recurs in pattern and velocity across the screen to remove colored dots and avoid black dots. It is minimalist in design, features excerpts of Erin Gee, and takes inspiration from Golan Levin, the Bauhaus, and Japanese calligraphy. The brothers designed the game as a touchscreen adaptation of the Snake concept and worked on the game for over six months. It was released in December 2013 for iPad, and was later released for other iOS devices and Android.
Fragger is a popular trajectory-based puzzle game created and developed by Harold Brenes and released in 2009 for the Internet. After achieving popularity on the Internet, being played more than 100 million times, it was licensed and ported by Miniclip to iPhone in 2010, and to Android and PlayJam in 2012. By August 2014 it had become the second-placed paid app for iPhone and third overall top-grossing app in Apple's App Store. The gameplay is similar to Angry Birds. The game has had "generally favourable reviews", garnering a Metacritic score of 86% based on 5 critic reviews.
Angry Birds POP! is a tile matching game co-developed by Rovio Entertainment and Outplay Entertainment that was soft launched for iOS in Canada in December 2014 and released worldwide for iOS and Android devices in March 2015.
Ketchapp SARL is a French video game publisher based in Paris, specializing in the mobile games market. Founded in 2014 by brothers Antoine and Michel Morcos, the company first came into the public eye later that year, through its port of the open-source game 2048. Ketchapp has been accused of cloning popular casual games by other developers. When Ketchapp was acquired by Ubisoft in September 2016, the company had more than 700 million downloads across their portfolio of games.
The KDE Gear is a set of applications and supporting libraries that are developed by the KDE community, primarily used on Linux-based operating systems but mostly multiplatform, and released on a common release schedule.
Vue.js is an open-source model–view–viewmodel front end JavaScript framework for building user interfaces and single-page applications. It was created by Evan You and is maintained by him and the rest of the active core team members.
Bee Leader is a game about collecting the most nectar and turning it into honey before the sun sets. It was released by Flightless.
Wordle is a web-based word game created and developed by Welsh software engineer Josh Wardle. Players have six attempts to guess a five-letter word, with feedback given for each guess in the form of coloured tiles indicating when letters match or occupy the correct position. Wordle has a single daily solution, with all players attempting to guess the same word. During 2023, Wordle was played 4.8 billion times.