Created
June 10, 2016 14:49
-
-
Save h3ct0rjs/1a83df9cd43da9932cb3048b88c29ea3 to your computer and use it in GitHub Desktop.
Ejemplo de Cuadro de Entrada.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import pygame, pygame.font, pygame.event, pygame.draw, string | |
from pygame.locals import * | |
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() | |
current_string = [] | |
display_box(screen, question + ": " + string.join(current_string,"")) | |
while 1: | |
inkey = get_key() | |
if inkey == K_BACKSPACE: | |
current_string = current_string[0:-1] | |
elif inkey == K_RETURN: | |
break | |
elif inkey == K_MINUS: | |
current_string.append("_") | |
elif inkey <= 127: | |
current_string.append(chr(inkey)) | |
display_box(screen, question + ": " + string.join(current_string,"")) | |
return string.join(current_string,"") | |
def main(): | |
screen = pygame.display.set_mode((320,240)) | |
print ask(screen, "Name") + " was entered" | |
if __name__ == '__main__': main() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#This line let you play sound. | |
pygame.mixer.music.load(os.path.join(curdir+"/enviroment/main", 'background.ogg')) #El sonido debe de ser .ogg creo | |
pygame.mixer.music.play(-1) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment