Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/rstacks/wordy
My CSCE 314 final project: a recreation of Wordle with JavaFX.
https://github.com/rstacks/wordy
gui-application java javafx linux windows
Last synced: 2 months ago
JSON representation
My CSCE 314 final project: a recreation of Wordle with JavaFX.
- Host: GitHub
- URL: https://github.com/rstacks/wordy
- Owner: rstacks
- Created: 2024-07-04T23:18:07.000Z (7 months ago)
- Default Branch: main
- Last Pushed: 2024-07-16T22:16:51.000Z (6 months ago)
- Last Synced: 2024-10-18T06:41:48.855Z (3 months ago)
- Topics: gui-application, java, javafx, linux, windows
- Homepage:
- Size: 38.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Wordy (Wordle Clone with JavaFX)
Wordy is a recreation of the online game [Wordle](https://www.nytimes.com/games/wordle/index.html) using JavaFX. This was my final project for CSCE 314: Programming Languages at Texas A&M University. Since this was a school project, I can't share my source code with you, but you are welcome to download the game and try it out yourself!
## Features
- **Load & Save**: Pick up where you left off after quitting a game in progress.
- **Responsive Virtual Keyboard**: Letters you've guessed will be color coded, and if they are not present in the correct word, the button will be disabled.
- **Statistics Tracking**: Various personal stats, such as your guess distribution and streak, are tracked across all of your playthroughs.## Requirements
This project requires **JDK 17** or later, which you can find here:
[Download JDK](https://www.oracle.com/java/technologies/downloads/)
Select the version that matches your OS and architecture. I recommend downloading the latest version of JDK. After downloading, follow the instructions
to install it.## Download
Windows: [wordy-windows.zip](https://github.com/rstacks/wordy/raw/main/wordy-windows.zip)
Linux: [wordy-linux.tar.gz](https://github.com/rstacks/wordy/raw/main/wordy-linux.tar.gz)
## Instructions for Running the Game
- Extract the contents of the zip file or tarball to a known location. For Linux users, run this command from the directory that contains your download:
```
$ tar -xzf wordy-linux.tar.gz
```- **Make sure that the**
wordy-1.0.jar
**file is in the same directory as all four text files.**
- On Windows, simply double-click on the jar file to start the game. Linux users should run the following command from the directory of the extracted files (this should also work for Windows users):```
$ java -jar wordy-1.0.jar
```## How to Play
- Check out [Wordle](https://www.nytimes.com/games/wordle/index.html) to find out how to play the game.
- Guess the correct word by clicking on the keyboard buttons on screen.
- Letters you've guessed that are not in the correct word will be disabled, similar to Wordle's "Hard Mode."
- Start a new game with a new word at any time by clicking the **Reset** button.