This is an implementation of the NYT Game Wordle written with Java and the Swing GUI library. The game play only varies from the original when it comes to what words are included in the word list. It includes accessibility features meant for colorblind individuals. It complies with the Model View Control architecture.
https://www.youtube.com/watch?v=li7u5uKFKaU
- Rickey Ho (rvho@cpp.edu)
- Clone repository:
git clone https://github.com/RickeyHo/WordleClone
- Open in IntelliJ/Eclipse
- Run
WordleView.java
- Feature 1: Accessibility mode has been implemented, meaning that the Wordle view can be represented with shapes instead of colors.
- Feature 2: Games can be saved midway through and can be reloaded the next time the program is run.
- Type in your guess into the white text box below the Wordle view.
- Gson 2.13.2 (JSON parsing)
- JUnit 5.8.1 (testing)