gpt4 book ai didi

python - 遍历自定义类中的对象列表

转载 作者:行者123 更新时间:2023-12-04 08:55:13 26 4
gpt4 key购买 nike

我正在写一个国际象棋游戏,我遇到了一个问题。
我已经创建了图形类(Pawn、Tower、Jumper、Runner、King 和 Queen),现在我正在尝试添加一些功能,以便程序识别鼠标光标何时位于图形上,这就是我的问题开始的地方。
显然,如果我手动为一个类的每个单个实例(例如 16 pawn)写一个检查,我可以使它工作,如下所示:
[通知 Pawn 是我的类(class)名称 ]

mouse_x, mouse_y = pygame.mouse.get_pos()
if pawn1.start_x <= mouse_x <= pawn1.start_x + 86 and pawn1.start_y + 84 >= mouse_y >= pawn1.start_y:
print('Pawn 1 was clicked')
这很乏味,我想遍历所有现有 pawn 的列表;
pawn_list = [pawn1, pawn2, pawn3, pawn4, pawn5, pawn6, pawn7, pawn8, pawn9, pawn10, pawn11, pawn12, pawn12, pawn14, pawn15, pawn16]
我的问题是我该怎么做?
到目前为止,我想出了以下几点:
    mouse_x, mouse_y = pygame.mouse.get_pos()

for Pawn in pawn_list:
if pawn_list[Pawn].start_x <= pawn_list[Pawn].start_x + 86 and pawn_list[Pawn].start_y + 84 >= mouse_y >= pawn_list[Pawn].start_y:
print('The mouse is over the pawn no:' + str(Pawn))
但后来我收到以下错误: TypeError: list indices must be integers or slices, not Pawn使用不同的变量名也没有帮助我:
for _ in range(len(pawn_list)):
if pawn_list[_].start_x <= pawn_list[_].start_x + 86 and pawn_list[_].start_y + 84 >= mouse_y >= pawn_list[_].start_y:
print('The mouse is over the pawn no:' + str(_))
感谢所有帮助,谢谢!!!

最佳答案

您已经在遍历列表,那么为什么要再次从列表中获取 Pawn 索引?这可能是不正确的。
正确的说法应该是:

for objPawn in pawn_list:
if objPawn.start_x <= objPawn.start_x + 86 and objPawn.start_y + 84 >= mouse_y >= objPawn.start_y:
print('The mouse is over the pawn no:' + str(Pawn))

关于python - 遍历自定义类中的对象列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/63860412/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com