所以我在编程一个游戏,这是我第一次使用类。我有一个类,它对背景的不同方面有不同的字段,对不同的背景有不同的对象。 我有一个while循环用于开始屏幕。但是当我点击play时它会将start设为False并停止循环但当我按下它时,它会被设为False然后直接返回True继续循环。我使用print来查看布尔值。 I difine start = True在代码的顶部
import pygame
import sys
pygame.init()
start = True
screen_width = 900
screen_height = 507
center_x = screen_width/2
center_y = screen_height/2
screen = pygame.display.set_mode((screen_width, screen_height))
clock = pygame.time.Clock()
FPS = 100
WHITE = (255,255,255)
bgx = 0
bgx2 = screen_width
main_bg = pygame.image.load("mainmenu.jpg")
main_bg2 = pygame.image.load("mainmenu.jpg")
first_bg = pygame.image.load("firstlvl.png")
first_bg2 = pygame.image.load("firstlvl.png")
second_bg = pygame.image.load("secondlvl.jpg")
second_bg2 = pygame.image.load("secondlvl.jpg")
third_bg = pygame.image.load("thirdlvl.jpg")
third_bg2 = pygame.image.load("thirdlvl.jpg")
#for i in range(1,7):
#pygame.mixer.music.load("music"+str(i)+".mp3")
class layout:
#""" This class makes the layout of each screen (including buttons, music and background)"""
def __init__(self, background, background2, back_button, pause_button, play_button):
self.bg = background
self.bg2 = background2
self.backbut = back_button
self.pausebut = pause_button
self.playbut = play_button
def create_screen(self):
screen.fill(WHITE)
global bgx, bgx2
bgx -= 3
bgx2 -= 3
screen.blit(self.bg, [bgx,0])
screen.blit(self.bg2, [bgx2,0])
if bgx + screen_width == 0:
bgx = screen_width
elif bgx2 + screen_width == 0:
bgx2 = screen_width
if self.playbut == True:
butimg = pygame.image.load("playbutton.png")
butrect = pygame.Rect(center_x-(358/2),center_y-(146/2),358,146)
for event in pygame.event.get():
if event.type == pygame.MOUSEBUTTONDOWN:
if butrect.collidepoint(event.pos):
start = False
print (start)
screen.blit(butimg,butrect)
if self.backbut == True:
butimg2 = pygame.image.load("backbut.png")
butimg2 = pygame.transform.scale(butimg2, (62, 62))
butrect2 = pygame.Rect(10,screen_height-72,62,62)
for event in pygame.event.get():
if event.type == pygame.MOUSEBUTTONDOWN:
if butrect2.collidepoint(event.pos):
pass
screen.blit(butimg2,butrect2)
if self.pausebut == True:
pass
pygame.display.flip()
main_screen = layout(main_bg, main_bg2, False, False, True)
icon_select = layout(main_bg, main_bg2, True, False, False)
lvl_select = layout(main_bg, main_bg2, True, False, True)
lvl_1 = layout(first_bg, first_bg2, False, True, False)
lvl_2 = layout(second_bg, second_bg2, False, True, False)
lvl_3 = layout(third_bg, third_bg2, False, True, False)
while start:
print (start)
for event in pygame.event.get():
if event.type == pygame.QUIT:
start = False
pygame.quit()
sys.exit()
main_screen.create_screen()
clock.tick(FPS)
pygame.quit()
sys.exit
enter code here
问题来源StackOverflow 地址:/questions/59384941/why-does-my-boolean-for-my-loop-keep-being-set-back-to-true
版权声明:本文内容由阿里云实名注册用户自发贡献,版权归原作者所有,阿里云开发者社区不拥有其著作权,亦不承担相应法律责任。具体规则请查看《阿里云开发者社区用户服务协议》和《阿里云开发者社区知识产权保护指引》。如果您发现本社区中有涉嫌抄袭的内容,填写侵权投诉表单进行举报,一经查实,本社区将立刻删除涉嫌侵权内容。