Skip to content

Latest commit

 

History

History
12 lines (9 loc) · 590 Bytes

README.md

File metadata and controls

12 lines (9 loc) · 590 Bytes

Desktop_2048

A copy of the famous 2048 Android app adapted as a graphical desktop app, keeping the same appearance and game logic. The field cells are stored as a 2D array. As an addition, random move and auto move were added.

Auto move constructs all possible Game states which could be gotten from the current Game state (Taking into account all possible moves), determines the best one, and takes the first move which is required to get there.

Uses:

  1. MVC pattern
  2. JPanel
  3. SOLID principles
  4. Intelligent movement prediction

*This project was originally developed for JavaRush