-
Notifications
You must be signed in to change notification settings - Fork 0
/
inputbox.py
77 lines (62 loc) · 2.26 KB
/
inputbox.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
69
70
71
72
73
74
75
76
77
# by Timothy Downs, inputbox written for my map editor
# This program needs a little cleaning up
# It ignores the shift key
# And, for reasons of my own, this program converts "-" to "_"
# A program to get user input, allowing backspace etc
# shown in a box in the middle of the screen
# Called by:
# import inputbox
# answer = inputbox.ask(screen, "Your name")
#
# Only near the center of the screen is blitted to
import pygame, pygame.font, pygame.event, pygame.draw, string
from pygame.locals import *
import re
def get_key():
while 1:
event = pygame.event.poll()
if event.type == KEYDOWN:
return event.key
else:
pass
def display_box(screen, message):
"Print a message in a box in the middle of the screen"
fontobject = pygame.font.Font(None, 18)
pygame.draw.rect(screen, (0, 0, 0),
((screen.get_width() / 2) - 100,
(screen.get_height() / 2) - 10,
200, 20), 0)
pygame.draw.rect(screen, (255, 255, 255),
((screen.get_width() / 2) - 102,
(screen.get_height() / 2) - 12,
204, 24), 1)
if len(message) != 0:
screen.blit(fontobject.render(message, 1, (255, 255, 255)),
((screen.get_width() / 2) - 100, (screen.get_height() / 2) - 10))
pygame.display.flip()
def ask(screen, question):
"ask(screen, question) -> answer"
pygame.font.init()
global current_string
current_string = []
display_box(screen, question + ": " + string.join(current_string, ""))
counter = 20
while True:
inkey = get_key()
if inkey == K_BACKSPACE:
current_string = current_string[0:-1]
counter += 2
elif inkey == K_RETURN:
break
elif inkey == K_MINUS:
current_string.append("-")
elif inkey <= 127:
if counter > 0:
current_string.append(chr(inkey))
display_box(screen, question + ": " + string.join(current_string, ""))
counter -= 1
return '{:_^15}'.format(string.join(current_string, ""))[:15]
def main():
screen = pygame.display.set_mode((800, 800))
print ask(screen, "Name") + " was entered"
if __name__ == '__main__': main()