-
-
Notifications
You must be signed in to change notification settings - Fork 262
/
Copy pathkoala_speed_clicker.py
68 lines (52 loc) · 1.61 KB
/
koala_speed_clicker.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
# Koala Speed Clicker
import turtle
from threading import Timer
import glob
# set up the screen
t = turtle.Screen()
t.setup(1000, 589)
# import images from Images folder
images = glob.glob('Images/*.gif')
# set title and background picture
t.title("Speed Clicker Game")
t.bgpic(images[0])
# insert image
t.register_shape(images[1])
koala = turtle.Turtle()
koala.shape(images[1])
koala.speed(0)
# set up the pen or text
pen = turtle.Turtle()
pen.hideturtle()
pen.color("white")
pen.penup()
pen.goto(0, -250)
pen.write(f"Spam click the koala within 5 seconds", align="center", font=("Comic Sans MS", 30, "bold"))
# create a placeholder for number of clicks
clicks = 0
# function to increment the number of clicks
def clicked(x, y):
global clicks
clicks += 1
pen.clear()
pen.write(f"Koala clicks: {clicks}", align="center", font=("Comic Sans MS", 30, "bold"))
# function to display the total of clicks
def finish():
global clicks
koala.speed(0)
pen.clear()
if clicks >= 10:
pen.write(f"Wow, so fast! Total click(s): {clicks}\n Click to Exit", align="center",
font=("Comic Sans MS", 30, "bold"))
t.onscreenclick(end)
elif clicks < 10:
pen.write(f"Oof, too slow! Total click(s): {clicks}\n Click to Exit", align="center",
font=("Comic Sans MS", 30, "bold"))
t.onscreenclick(end)
# function to exit or quit the program
def end(x, y):
quit()
koala.onclick(clicked) # on click listener
s = Timer(5.0, finish) # set timer to 5 seconds
s.start() # start the timer
t.mainloop() # loop or keep the GUI window