函数调用python(pygame)

时间:2013-10-16 18:51:27

标签: python pygame

所以我想要做的是有一组方法,我可以添加对象,如字符,使其移动,并在同一窗口显示一些文本。这就是我所拥有的

import pygame,sys
from pygame.locals import *

def get_font():
    game_font = pygame.font.Font(None,30)

def screen(width,height,name):
    pygame.init()
    pygame.font.init()
    screen=pygame.display.set_mode((width,height))
    pygame.display.update()
    return window

def name(name="", array=[]):
    pygame.init()
    pygame.font.init()
    myfont = pygame.font.SysFont(None, 15)
    label = myfont.render(name, 1, (255,255,0))
    result=screen(640,480,name).blit(label, (100, 100))
    array.append(name)
    pygame.display.update()
    return name

def drawCharacter(array=[]):
    initialise()
    character = pygame.image.load("resources/images/character.png")
    drawcharacter = window(640,480,character).blit(character, (100, 400))
    array.append(character)
    pygame.display.update()
    return drawcharacter



name("akunama tata pig")
drawCharacter()

while True:
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                pygame.quit()
                sys.exit(0)
     pygame.display.update()

这里只显示角色,没有文字,但我不明白为什么。我已经尝试将它们添加到数组并显示它们。但没有用。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

我自己解决了这个问题:我定义了

screen=pygame.display.set_mode((400,400)) 

一开始就重复使用。