Commit 2262fb2c by BellCodeEditor

save project

parent eef38fc5
Showing with 20 additions and 3 deletions
......@@ -25,6 +25,14 @@ class Block(pygame.sprite.Sprite):
self.rect=self.image.get_rect()
self.rect.x=1000
self.rect.y=500-self.rect.height
class player(pygame.sprite.Sprite):
def __init__(self,image):
super().__init__()
self.image=image
self.rect=self.image.get_rect()
self.rect.x=150
self.rect.y=400
index = 0
y = 400
jumpState = "runing"
......@@ -37,6 +45,7 @@ obstacle=Block(bush, stone, cacti)
block_list=pygame.sprite.Group()
time=0
num=0
game=True
while True:
for event in pygame.event.get():
if event.type == locals.QUIT:
......@@ -46,7 +55,7 @@ while True:
if jumpState == "runing":
if event.key == locals.K_SPACE:
jumpState = "up"
if game==True:
if jumpState == "up": # 起跳状态
if t > 0:
y -= t
......@@ -62,7 +71,7 @@ while True:
t =30
# 悟空造型
wukong = hero[index]
wukong = player(hero[index])
if jumpState == "runing": # 跑步状态下
index += 1
if index >= 5:
......@@ -78,7 +87,7 @@ while True:
road_x = 0
screen.blit(road, (road_x, 500))
# +++++++++++++++++++++++
screen.blit(wukong, (150, y)) # 悟空
screen.blit(wukong.image, (150, y)) # 悟空
time+=1
if time > 30:
time=0
......@@ -91,6 +100,13 @@ while True:
for sprite in block_list:
sprite.rect.x -= 32
screen.blit(sprite.image, (sprite.rect.x, sprite.rect.y))
if sprite.rect.x<=0-sprite.rect.width:
sprite.kill
if pygame.sprite.collide_rect(wukong,sprite):
gameover=pygame.image.load("gameover.png")
screen.blit(gameover, (400, 200))
game=False
# 刷新画面
pygame.display.update()
FPS.tick(30)
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment