基于Python实现天天酷跑功能
程序员文章站
2022-06-22 09:05:00
感觉上次写的植物大战僵尸与俄罗斯方块的反应还不错,这次这个文章就更有动力了这次就写一个天天酷跑吧写出来的效果图就是这样了下面就更新一下全部的代码吧还是老样子先定义import pygame,sysim...
感觉上次写的植物大战僵尸与俄罗斯方块的反应还不错,这次这个文章就更有动力了
这次就写一个天天酷跑吧
写出来的效果图就是这样了
下面就更新一下全部的代码吧
还是老样子先定义
import pygame,sys import random
写一下游戏配置
width = 1200 #窗口宽度 height = 508 #窗口高度 size = width, height score=none #分数 myfont=myfont1=none #字体 surobject=none #障碍物图片 surgameover=none #游戏结束图片 bg=none #背景对象 role=none #人物对象 object=none #障碍物对象 objectlist=[] #障碍物对象数组 clock=none #时钟 gamestate=none #游戏状态(0,1)表示(游戏中,游戏结束)
写人物
class role: #人物 def __init__(self,surface=none,y=none): self.surface=surface self.y=y self.w=(surface.get_width())/12 self.h=surface.get_height()/2 self.currentframe=-1 self.state=0 #0代表跑步状态,1代表跳跃状态,2代表连续跳跃 self.g=1 #重力加速度 self.vy=0 #y轴速度 self.vy_start=-20 #起跳开始速度 def getrect(self): return (0,self.y+12,self.w,self.h)
写障碍物
class object: #障碍物 def __init__(self,surface,x=0,y=0): self.surface=surface self.x=x self.y=y self.w=surface.get_width() self.h=surface.get_height() self.currentframe=random.randint(0,6) self.w = 100 self.h = 100 def getrect(self): return (self.x,self.y,self.w,self.h) def collision(self,rect1,rect2): #碰撞检测 if (rect2[0]>=rect1[2]-20) or (rect1[0]+40>=rect2[2])or (rect1[1]+rect1[3]<rect2[1]+20) or (rect2[1]+rect2[3]<rect1[1]+20): return false return true
写背景
class bg: #背景 def __init__(self,surface): self.surface=surface self.dx=-10 self.w=surface.get_width() self.rect=surface.get_rect()
def initgame(): global bg,role,clock,gamestate,surobject,surgameover,score,myfont,myfont1,objectlist #分数初始化 score=0 #初始化 objectlist=[] #加载字体 myfont=pygame.font.font("./freesansbold.ttf",32) myfont1=pygame.font.font("./freesansbold.ttf",64) # 创建时钟对象 (可以控制游戏循环频率) clock = pygame.time.clock() #初始化游戏状态 gamestate=0 #游戏背景 surbg=pygame.image.load("image/bg.bmp").convert_alpha() bg=bg(surbg) #结束画面 surgameover=pygame.image.load("image/gameover.bmp").convert_alpha() #人物图片 surrole=pygame.image.load("image/role.png").convert_alpha() role=role(surrole,508-85) #障碍物图片 surobject=pygame.image.load("image/object.png").convert_alpha() def addobject(): global surobject,object,objectlist,object rate=4 #是否生成障碍物 if not random.randint(0,300)<rate: return y=random.choice([height-100,height-200,height-300,height-400]) object=object(surobject,width+40,y) objectlist.append(object) def updatelogic(): global gamestate,score #键盘事件处理 for event in pygame.event.get(): if event.type == pygame.quit: sys.exit() elif event.type==pygame.keydown: #空格键跳跃 if gamestate==0: if event.key==pygame.k_space: if role.state==0: role.state=1 role.vy=role.vy_start elif role.state==1: role.state=2 role.vy=role.vy_start elif gamestate==1: if event.key==pygame.k_space: #重新开始游戏 initgame() if gamestate==0: #背景的移动 bg.dx+=10 if bg.dx==1200: bg.dx=0 #人物的移动 if role.state==0: role.currentframe+=1 if role.currentframe==12: role.currentframe=0 else: role.y+=role.vy role.vy+=role.g if role.y>=508-85: role.y=508-85 role.state=0 #障碍物的移动 addobject() for object in objectlist: object.x-=10 #障碍物移动 # 障碍物超出屏幕,移除障碍物 if object.x+object.w<=0: objectlist.remove(object) score+=10 #避开障碍物,加10分 print("移除了一个目标") #碰撞检测 if object.collision(role.getrect(),object.getrect()): if(object.currentframe==6): objectlist.remove(object) score+=100 #吃金币加100分 print(score) print("吃了一个金币") else: gamestate=1 #游戏失败 print("发生了碰撞!")
ok啦,这就是这个天天酷跑的全部代码啦,有问题可以留言,我看到都会回的。
到此这篇关于基于python实现天天酷跑功能的文章就介绍到这了,更多相关python写天天酷跑内容请搜索以前的文章或继续浏览下面的相关文章希望大家以后多多支持!