Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
94 changes: 94 additions & 0 deletions Color_game_tkinter_gui.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,94 @@
from tkinter import *
import tkinter.font as font
import random

colors=["Red", "Orange", "White", "Black", "Green", "Blue", "Brown", "Purple", "Cyan", "Yellow", "Pink", "Magenta"]
timer=60
score=0
displayed_word_color=''


# This function will be called when start button is clicked
def startGame():
global displayed_word_color

if timer==60:
startCountDown()
displayed_word_color=random.choice(colors).lower()
display_words.config(text=random.choice(colors), fg=displayed_word_color)
color_entry.bind('<Return>', displayNextWord)

# This function is to reset the game
def resetGame():
global timer, score, displayed_word_color
timer=60
score=0
displayed_word_color=''
game_score.config(text="Your Score : "+str(score))
display_words.config(text='')
time_left.config(text="Game Ends in : -")
color_entry.delete(0, END)

# This function will start count down
def startCountDown():
global timer
if timer>=0:
time_left.config(text="Game Ends in : "+str(timer)+"s")
timer-=1
time_left.after(1000,startCountDown)
if timer==-1:
time_left.config(text="Game Over!!!")


# This function to display random words
def displayNextWord(event):
global displayed_word_color
global score
if timer>0:
if displayed_word_color==color_entry.get().lower():
score+=1
game_score.config(text="Your Score : "+str(score))
color_entry.delete(0, END)
displayed_word_color=random.choice(colors).lower()
display_words.config(text=random.choice(colors), fg=displayed_word_color)


root=Tk()
root.title("Color Game")
root.geometry("500x200")
root.iconbitmap("game-console.ico")

app_font=font.Font(family='Helvetica', size=12)

game_desp="Game Description: Enter the color of the words displayed below. \n And Keep in mind not to enter the " \
"word text itself "
myFont=font.Font(family='Helvetica')

game_description=Label(root, text=game_desp,font=app_font, fg="grey")
game_description.pack()

game_score=Label(root, text="Your Score : "+str(score), font=(font.Font(size=16)), fg="green")
game_score.pack()

display_words=Label(root,font=(font.Font(size=28)), pady=10)
display_words.pack()

time_left=Label(root,text="Game Ends in : -", font=(font.Font(size=14)), fg="orange")
time_left.pack()

color_entry=Entry(root, width=30)
color_entry.pack(pady=10)

btn_frame=Frame(root, width=80, height=40, bg='red')
btn_frame.pack(side=BOTTOM)

start_button=Button(btn_frame, text="Start", width=20, fg="black", bg="pink", bd=0, padx=20, pady=10,command=startGame)
start_button.grid(row=0, column=0)

reset_button=Button(btn_frame, text="Reset",width=20, fg="black",bg="light blue", bd=0, padx=20, pady=10, command=resetGame)
reset_button.grid(row=0, column=1)

root.geometry('600x300')
root.mainloop()