所以我一直在尝试编写我很久以前制作的桌面游戏 - 我现在正在处理图形部分,我正在尝试使用嵌套的 For 循环绘制 9x7 平铺地图:
我正在为我的二维数组使用 numpy 库
gameboard = array( [[8, 8, 8, 7, 7, 7, 8, 8, 8],
[8, 3, 6, 7, 7, 7, 6, 3, 8],
[0, 1, 1, 6, 6, 6, 1, 1, 0],
[0, 5, 4, 0, 0, 0, 4, 5, 0],
[0, 3, 2, 0, 0, 0, 2, 3, 0],
[8, 8, 1, 0, 0, 0, 1, 8, 8],
[8, 8, 8, 6, 6, 6, 8, 8, 8]] )
def mapdraw():
for x in [0, 1, 2, 3, 4, 5, 6, 7, 8]:
for y in [0, 1, 2, 3, 4, 5, 6]:
if gameboard[(x, y)] == 1:
#insert tile 1 at location
elif gameboard[(x, y)] == 2:
#insert tile 2 at location
elif gameboard[(x, y)] == 3:
#insert tile 3 at location
#this continues for all 8 tiles
#graphics update
当我运行这个程序时,我在“if gameboard[(x,y)] == 1:”“IndexError: index (7) out of range (0<=index<7) in dimension 0”这一行得到一个错误
我已经寻找了几个小时来找到这个错误的含义,并尝试了许多不同的方法来修复它:任何帮助将不胜感激。