-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy path020_AlternativeRunnerFor_019.py
67 lines (55 loc) · 1.92 KB
/
020_AlternativeRunnerFor_019.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
# This line imports the local module runpgzero.py in the current directory
from runpgzero import *
# Import our color module, this time we do not need to catch the exception
# because we invoke our script directly with the python3 command. This also
# means it is executable via a GUI
from colors import *
# Define our 800x600 screen
WIDTH = 800
HEIGHT = 600
# This will literally put a rectangle with certain properties into the variable BOX
BOX1 = Rect((0,0), (0,0))
BOX2 = Rect((20,20), (100,100))
# As we know, we need the draw function to put stuff on the screen
def draw():
# What if we do not clear the screen?
screen.clear()
# Needs to be define before we use growMin and growMax
mouseFont = fontNormalized(mousePos[1])
# We simply draw, to the screen, the variable BOX with the color in RED
screen.draw.rect(BOX1, RED)
screen.draw.rect(BOX2, BLUE)
# 2 Lines to show when we stop growing our font
screen.draw.line((0,growMin), (WIDTH, growMin),(GREEN),3)
screen.draw.line((0,growMax), (WIDTH, growMax),(GREEN10),3)
# Draw some text on the screen to give an idea where our mouse is at
screen.draw.text(
'mouseX: {0} mouseY: {1}'.format(mousePos[0], mousePos[1]),
center=((WIDTH/2), 20),
fontsize=48,
color=YELLOW,
)
screen.draw.text(
'{}'.format(mousePos),
center=mousePos,
fontsize=mouseFont,
color=PINK,
)
def on_mouse_move(pos):
global mousePos
x, y = pos
BOX1.size = (x, y)
BOX2.center = (x, y)
mousePos = pos
def fontNormalized(posY):
global growMin
global growMax
growMin = 40
growMax = 100
if posY < growMin:
return growMin
elif posY > growMax:
return growMax
else:
return posY
run_pgzero()