Please enable JavaScript.
Coggle requires JavaScript to display documents.
how to make a wordle clone in python - Coggle Diagram
how to make a wordle clone in python
pygame
colours: white, yellow, grey, black, green, light green
font: Helvetica Neue
key commands
quit, k_return, k_backspace
functionality
versatile on all platforms
make sure the user has pygame installed
has pycharm installed
player's profile
personal streak
store cumulative 'attempt' variable and sort in ascending order
personal statistics
store individual 'attempt' variable and sort in ascending order
leaderboard with everyone that has played the game
store 'attempt' variable and sort in ascending order
user interface
start menu
pygame intro + pygame window opens
make sure user can play once a day
display personal streak, stats, leaderboard (refer to functionality)
data input
personal data
display personal streak, stats, leaderboard (refer to functionality)
guess
if guess < 5
then guess is not true
if guess = 5
guess is valid
if guess > 5
then guess is not true
if guess does not = word in wordsList.txt
then guess is not true