经过一天多的奋战,查阅文献,参考别人的代码等等,完成了第一个面向对象的小项目,也深深体会到面向对象编程思想在游戏编程中所扮演的角色。
附上代码,参考了别人的代码,以及对他们代码的完善,又加上了自己的一些东西,收获颇深。
import pygame import sys import time from pygame.locals import * from random import randint MOVE_SLEEP = 0.01 class MyTank: width = 600 heights = 500 speed = 10 screen = 0 myshells = [] enemylist = [] enemyshells = [] grade = 0 life = 3 cnt = 0 def startgame(self): pygame.init() self.screen = pygame.display.set_mode((self.width,self.heights),0,32) pygame.display.set_caption("bit tank") self.tank = Tank(self.screen,275,450) for i in range(6): self.enemylist.append(EnmeyTank(self.screen)) while True: key = pygame.key.get_pressed() self.screen.fill((0,0,0)) if key[K_LEFT]: self.tank.move('L') elif key[K_RIGHT]: self.tank.move('R') elif key[K_UP]: self.tank.move('U') elif key[K_DOWN]: self.tank.move('D') self.get_event() for shell in self.myshells: if shell.move() == True: self.myshells.remove(shell) shell.display() a = shell.hitTank() #子弹碰撞 if a == True: if self.life >0: self.myshells.remove(shell) self.grade += 1 #mytank碰撞 if self.tank.live == True: if self.tank.hitTank(): self.life -= 1 if self.life <=0: self.tank.live =False else:self.tank = Tank(self.screen,275,450) #mytanke 碰撞子弹 if self.tank.live == True: if self.tank.hitShell(): self.life -= 1 if self.life <=0: self.tank.live = False else:self.tank=Tank(self.screen,275,450) #敌方子弹击中我方坦克 # 游戏结束 if self.life <=0: self.gotGamePrint() for enemy in self.enemylist: enemy.move() print('move') enemy.display() # 添加敌方子弹 self.cnt += 1 if self.cnt % 100 ==0: for enemy in self.enemylist: self.enemyshells.append(enemy.fire()) #判断敌方子弹碰撞 for enemyshell in self.enemyshells: f = enemyshell.move() enemyshell.display() if f: self.enemyshells.remove(enemyshell) if len(self.enemylist)<6: self.enemylist.append(EnmeyTank(self.screen)) self.screen.blit(self.getGrade(),(5,5)) self.tank.display() pygame.display.update() time.sleep(0.02) def get_event(self): for event in pygame.event.get(): if event.type == KEYDOWN: if event.key == K_SPACE: self.myshells.append(self.tank.fire()) if event.key == K_ESCAPE: pass def getGrade(self): text = pygame.font.Font('./font/msyhbd.ttc',20).render("分数:{} 生命:{}".format(self.grade,self.life),True,(0,255,0)) return text def gotGamePrint(self): text = pygame.font.Font('./font/msyh.ttc',70).render('game over!',True,(0,255,0)) self.screen.blit(text,(100,200)) class Shell: width = 48 height = 48 live = True speed = 3 def __init__(self,screen,tank): self.screen = screen self.image = pygame.image.load('./images/3.png') self.direction = tank.direction self.rect = self.image.get_rect() self.rect.left = tank.rect.left + (tank.width-self.width)/2.0+18 # print(tank.rect.left,tank.width,self.width) self.rect.top = tank.rect.top + (tank.height - self.height)/2.0 self.live = True def move(self): tag = self.isObstacle() if self.live == True: if self.direction == 'L' and self.direction not in tag: self.rect.left -= self.speed elif self.direction == 'R' and self.direction not in tag: self.rect.left += self.speed elif self.direction == 'U' and self.direction not in tag: self.rect.top -= self.speed elif self.direction == 'D' and self.direction not in tag: self.rect.top += self.speed else: pass if self.direction in tag: return True else: return False else: pass def display(self): # print(self.rect.left,self.rect.top) if self.live == True: self.screen.blit(self.image,self.rect) def isObstacle(self): tag = [] if self.rect.left <=0:tag.append('L') if self.rect.left + self.width >= MyTank.width:tag.append('R') if self.rect.top <=0:tag.append('U') if self.rect.top + self.height >=MyTank.heights:tag.append('D') return tag def hitTank(self): hitList = pygame.sprite.spritecollide(self,MyTank.enemylist,False) for e in hitList: e.live = False MyTank.enemylist.remove(e) self.live = False return True return False def hitMytank(self): hitList = pygame.sprite.spritecollide(self,MyTank.tank,False) for e in hitList: e.live = False MyTank.life -= 1 return True class BaseTank: width = 50 height = 50 direction = 'U' live = True time = 0 images = {} def __init__(self,screen,left,top): self.screen = screen self.images['L'] = pygame.image.load("images/04.jpg") self.images['R'] = pygame.image.load("images/02.jpg") self.images['U'] = pygame.image.load("images/01.jpg") self.images['D'] = pygame.image.load("images/03.jpg") self.image = self.images[self.direction] self.rect = self.image.get_rect() self.rect.left = left self.rect.top = top self.live = True # 坦克是否被消灭 def isObstacle(self): tag = [] if self.rect.left <= 0: tag.append('L') if self.rect.left + self.width >= MyTank.width: tag.append('R') if self.rect.top <= 0: tag.append('U') if self.rect.top + self.height >= MyTank.heights: tag.append('D') return tag def display(self): if self.live == True: self.image = self.images[self.direction] self.screen.blit(self.image, self.rect) def fire(self): m = Shell(self.screen,self) return m class Tank(BaseTank): images = {} def __init__(self,screen,left,top): super().__init__(screen,275,450) self.screen = screen self.speed = 2 self.images['L'] = pygame.image.load('./images/4.jpg') self.images['R'] = pygame.image.load('./images/2.jpg') self.images['U'] = pygame.image.load('./images/1.jpg') self.images['D'] = pygame.image.load('./images/3.jpg') self.image = self.images[self.direction] self.rect = self.image.get_rect() self.rect.top = top self.rect.left = left def move(self, direction): if self.live == True: tag = self.isObstacle() if direction == self.direction: if self.direction == 'L' and self.direction not in tag: self.rect.left -= self.speed elif self.direction == 'R' and self.direction not in tag: self.rect.left += self.speed elif self.direction == 'U' and self.direction not in tag: self.rect.top -= self.speed elif self.direction == 'D' and self.direction not in tag: self.rect.top += self.speed else: pass else: self.direction = direction def hitTank(self): hitList = pygame.sprite.spritecollide(self,MyTank.enemylist,False) for e in hitList: self.live = False return True return False def hitShell(self): hitlist = pygame.sprite.spritecollide(self, MyTank.enemyshells, False) for e in hitlist: self.live = False return True return False class EnmeyTank(BaseTank): speed = 1 def __init__(self,screen): super().__init__(screen,randint(1,5)*100,0) self.getdirection() self.step = 0 def getdirection(self): self.direction = ['L','R','U','D'][randint(0,3)] def move(self): if self.live == True: if self.step == 0 or (self.direction in self.isObstacle()): self.getdirection() self.step = randint(0, 200) else: tag = self.isObstacle() if self.direction == 'L' and self.direction not in tag: self.rect.left -= self.speed elif self.direction == 'R' and self.direction not in tag: self.rect.left += self.speed elif self.direction == 'U' and self.direction not in tag: self.rect.top -= self.speed elif self.direction == 'D' and self.direction not in tag: self.rect.top += self.speed else: pass self.step -= 1 if __name__ == '__main__': main = MyTank() main.startgame()
文件主要有10张图片和2个字体文件,主坦克的四个形态,敌方坦克的四个形态,以及子弹等,10张图片。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
华山资源网 Design By www.eoogi.com
广告合作:本站广告合作请联系QQ:858582 申请时备注:广告合作(否则不回)
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
免责声明:本站资源来自互联网收集,仅供用于学习和交流,请遵循相关法律法规,本站一切资源不代表本站立场,如有侵权、后门、不妥请联系本站删除!
华山资源网 Design By www.eoogi.com
暂无评论...
《魔兽世界》大逃杀!60人新游玩模式《强袭风暴》3月21日上线
暴雪近日发布了《魔兽世界》10.2.6 更新内容,新游玩模式《强袭风暴》即将于3月21 日在亚服上线,届时玩家将前往阿拉希高地展开一场 60 人大逃杀对战。
艾泽拉斯的冒险者已经征服了艾泽拉斯的大地及遥远的彼岸。他们在对抗世界上最致命的敌人时展现出过人的手腕,并且成功阻止终结宇宙等级的威胁。当他们在为即将于《魔兽世界》资料片《地心之战》中来袭的萨拉塔斯势力做战斗准备时,他们还需要在熟悉的阿拉希高地面对一个全新的敌人──那就是彼此。在《巨龙崛起》10.2.6 更新的《强袭风暴》中,玩家将会进入一个全新的海盗主题大逃杀式限时活动,其中包含极高的风险和史诗级的奖励。
《强袭风暴》不是普通的战场,作为一个独立于主游戏之外的活动,玩家可以用大逃杀的风格来体验《魔兽世界》,不分职业、不分装备(除了你在赛局中捡到的),光是技巧和战略的强弱之分就能决定出谁才是能坚持到最后的赢家。本次活动将会开放单人和双人模式,玩家在加入海盗主题的预赛大厅区域前,可以从强袭风暴角色画面新增好友。游玩游戏将可以累计名望轨迹,《巨龙崛起》和《魔兽世界:巫妖王之怒 经典版》的玩家都可以获得奖励。
更新日志
2024年11月17日
2024年11月17日
- 【雨果唱片】中国管弦乐《鹿回头》WAV
- APM亚流新世代《一起冒险》[FLAC/分轨][106.77MB]
- 崔健《飞狗》律冻文化[WAV+CUE][1.1G]
- 罗志祥《舞状元 (Explicit)》[320K/MP3][66.77MB]
- 尤雅.1997-幽雅精粹2CD【南方】【WAV+CUE】
- 张惠妹.2007-STAR(引进版)【EMI百代】【WAV+CUE】
- 群星.2008-LOVE情歌集VOL.8【正东】【WAV+CUE】
- 罗志祥《舞状元 (Explicit)》[FLAC/分轨][360.76MB]
- Tank《我不伟大,至少我能改变我。》[320K/MP3][160.41MB]
- Tank《我不伟大,至少我能改变我。》[FLAC/分轨][236.89MB]
- CD圣经推荐-夏韶声《谙2》SACD-ISO
- 钟镇涛-《百分百钟镇涛》首批限量版SACD-ISO
- 群星《继续微笑致敬许冠杰》[低速原抓WAV+CUE]
- 潘秀琼.2003-国语难忘金曲珍藏集【皇星全音】【WAV+CUE】
- 林东松.1997-2039玫瑰事件【宝丽金】【WAV+CUE】