感谢您抽时间阅读。我正在尝试使用 pygame 创建一个非常基本的瓷砖游戏系统。我不是最擅长 pygame,所以我可能遗漏了一些相当明显的东西。到目前为止,我将所有内容都放在一个文件中。我现在所拥有的似乎真的很草率,并且可能有一种更有效的方法,但现在我只是使用二维数组,其数字等于特定类型的瓷砖(草、水等)。为此,我正在使用 numpy,因为这是有人向我推荐的。虽然我不知道我是否喜欢这种方法,因为如果将来我有一些不仅仅是图形的图块,并且有更具体的属性怎么办?例如宝箱或陷阱?你会如何构建这个?
但无论如何,我的问题是现在屏幕只是黑色的,并且没有绘制草砖。
这是代码:
import numpy
import pygame
import sys
from pygame.locals import *
pygame.init()
fpsClock = pygame.time.Clock()
windowWi = 800
windowHi = 608
mapWi = 50 # *16 = 800, etc
mapHi = 38
# ----- all of the images ------------------------------
grass1 = pygame.image.load('pictures\(Grass\grass1.png')
#-------------------------------------------------------
screen = pygame.display.set_mode((windowWi, windowHi))
pygame.display.set_caption("Tile Testing!")
gameRunning = True
groundArray = numpy.ones((mapWi,mapHi))
def drawMapArray(maparray):
for x in range(mapWi,1):
for y in range(mapHi,1):
#Determines tile type.
if maparray[y,x] == 1:
screen.blit(grass1, (x*16, y*16))
else:
print "Nothing is here!"
while gameRunning:
drawMapArray(groundArray)
for event in pygame.event.get():
if event.type == "QUIT":
pygame.quit()
sys.exit()
#Updates display and then sets FPS to 30 FPS.
pygame.display.update()
fpsClock.tick(30)
请随时引导我朝着更好的结构方向发展,因为我对游戏设计非常陌生,希望得到任何反馈!
谢谢,瑞安
编辑:我已经尝试过了,这在逻辑上是有道理的,但是我得到了一个超出范围的索引错误。
def drawMapArray(maparray):
for x in range(0,mapWi,1):
for y in range(0,mapHi,1):
#Determines tile type.
if maparray[y,x] == 1:
screen.blit(grass1, (x*16, y*16))
else:
print "Nothing is here!"