python基于pygame實(shí)現(xiàn)飛機(jī)大作戰(zhàn)小游戲
基于pygame的飛機(jī)大作戰(zhàn)小游戲,適合新手,不能直接運(yùn)行,只能在命令行進(jìn)入當(dāng)前游戲目錄,輸入python game.py才能夠運(yùn)行,尚不知道是什么原因。
游戲截圖如下,我們用黃色的圓圈代表敵機(jī):
代碼如下
import pygame,sys,time,random,math def init(): pygame.init() size = width, height =600,600 screen =pygame.display.set_mode(size) plx=270 ply=528 beijing =pygame.image.load("beijing.jpg") main_role =pygame.image.load("main_role.jpg") font=pygame.font.SysFont("arial",60) return screen,[plx,ply],main_role,beijing,font def mainloop(screen,pl,main_role,beijing,shots,ms,ecs): #每刷新一次,調(diào)用一次 for event in pygame.event.get(): if event.type == pygame.QUIT: pygame.quit() elif event.type ==pygame.KEYDOWN: if event.key ==pygame.K_LEFT: ms=[0,pl] #move(0,pl) elif event.key ==pygame.K_RIGHT: ms=[1,pl] #move(1,pl) elif event.key == pygame.K_UP: ms=[2,pl] #move(2,pl) elif event.key ==pygame.K_DOWN: ms=[3,pl] #move(3,pl) elif event.key==pygame.K_SPACE: ecope(pl,ecs) elif event.type ==pygame.KEYUP: ms=[-1,-1] screen.blit(beijing,(0,0)) for i in range(len(shots)): pygame.draw.circle(screen,(255,255,0),shots[i],25,5) for i in range(len(ecs)): pygame.draw.circle(screen,(255,0,255),ecs[i],5,5) screen.blit(main_role,(pl[0],pl[1])) return ms def ecope(pl,ecs): ecs.append([pl[0]+30,pl[1]]) def move(key,pl): if key==0:pl[0]=pl[0]-10 elif key==1:pl[0]=pl[0]+10 elif key==2:pl[1]=pl[1]-10 elif key==3:pl[1]=pl[1]+10 if pl[0]<0:pl[0]=0 if pl[0]>540:pl[0]=540 if pl[1]<0:pl[1]=0 if pl[1]>528:pl[1]=528 def update_shot(shots,m,ms,ecs): if m==60: x=random.randint(0,59)*10 y=0 shots.append([x,y]) t=[] t2=[] if m%2==0: for i in range(len(ecs)): ecs[i][1]=ecs[i][1]-6 if ecs[i][1]<0: t2.append(i) for i in range(len(t2)): ecs.pop(t2[i]) for i in range(len(shots)): shots[i][1]=shots[i][1]+5 if shots[i][1]>600: t.append(i) for i in range(len(t)): shots.pop(t[i]) if ms!=[-1,-1]: move(ms[0],ms[1]) def block_detect(pl,shots): #pl[x,y] ''' shots [ [sx0,sy0], [sx1,sy1], ....... ] ''' for i in range(len(shots)): nx,ny=shots[i][0],shots[i][1] x,y=pl[0]+30,pl[1]+36 s=math.sqrt((nx-x)**2+(ny-y)**2) if s<55: return True return False def attack_detect(ecs,shots,score): h=[] h1=[] h2=[] for i in range(len(ecs)): for j in range(len(shots)): lx,ly=ecs[i][0],ecs[i][1] cx,cy=shots[j][0],shots[j][1] d=math.sqrt((lx-cx)**2+(ly-cy)**2) if d<30: h.append([i,j]) for i in range(len(h)): h1.append(h[i][0]) h2.append(h[i][1]) h1=list(set(h1)) h2=list(set(h2)) for i in range(len(h1)): ecs.pop(h1[i]) for i in range(len(h2)): shots.pop(h2[i]) return score+len(h) if __name__=="__main__": screen,pl,main_role,beijing,font=init() shots=[] ecs=[] score=0 temp=time.time() m=0 ms=[-1,-1] while True : text=font.render(str(score),True,(255,255,255)) rect=text.get_rect() rect.center=(250,30) if (time.time()-temp)>0.03: m=m+1 temp=time.time() update_shot(shots,m,ms,ecs) if m==60: m=0 ms=mainloop(screen,pl,main_role,beijing,shots,ms,ecs) screen.blit(text,rect) score=attack_detect(ecs,shots,score) pygame.display.update() if block_detect(pl,shots): pygame.quit()
游戲素材
更多有趣的python游戲請(qǐng)點(diǎn)擊專題: 《python小游戲》學(xué)習(xí)
以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。
相關(guān)文章
淺談python函數(shù)調(diào)用返回兩個(gè)或多個(gè)變量的方法
今天小編就為大家分享一篇淺談python函數(shù)調(diào)用返回兩個(gè)或多個(gè)變量的方法,具有很好的參考價(jià)值,希望對(duì)大家有所幫助。一起跟隨小編過來看看吧2019-01-01Python辦公自動(dòng)化之JSOM數(shù)據(jù)處理與SQL Server數(shù)據(jù)庫操作
這篇文章主要為大家詳細(xì)介紹了Python辦公自動(dòng)化中JSOM數(shù)據(jù)處理與SQL Server數(shù)據(jù)庫操作的相關(guān)知識(shí),文中的示例代碼簡(jiǎn)潔易懂,有需要的小伙伴可以參考下2024-01-01python2.7實(shí)現(xiàn)郵件發(fā)送功能
這篇文章主要為大家詳細(xì)介紹了python2.7實(shí)現(xiàn)郵件發(fā)送功能包,含文本、附件、正文圖片等,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-12-12python實(shí)現(xiàn)淘寶秒殺聚劃算搶購自動(dòng)提醒源碼
這篇文章主要為大家詳細(xì)介紹了Python實(shí)現(xiàn)淘寶秒殺聚劃算搶購自動(dòng)提醒源碼,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下2018-02-02Python中字符串的基礎(chǔ)介紹及常用操作總結(jié)
字符串輸出格式與輸入的樣子相同,都是用撇號(hào)包裹,撇號(hào)和其它特殊字符用用反斜杠轉(zhuǎn)義。如果字符串中有單撇號(hào)而沒有雙撇號(hào)則用雙撇號(hào)包裹,否則應(yīng)該用單撇號(hào)包裹。后面要介紹的print語句可以不帶撇號(hào)或轉(zhuǎn)義輸出字符串2021-09-09