当前位置:   article > 正文

python小游戏——怀念经典坦克大战代码_怀旧游戏代码

怀旧游戏代码

♥️作者:小刘在这里

♥️每天分享云计算网络运维课堂笔记,努力不一定有回报,但一定会有收获加油!一起努力,共赴美好人生!

♥️夕阳下,是最美的,绽放,愿所有的美好,再疫情结束后如约而至。

目录

一.效果呈现

二,主代码

三.cfg

四.README


一.效果呈现

 

二,主代码

  1. '''
  2. Function:
  3. 经典坦克大战小游戏
  4. Author:
  5. Charles
  6. 微信公众号:
  7. Charles的皮卡丘
  8. '''
  9. import os
  10. import cfg
  11. import pygame
  12. from modules import *
  13. '''主函数'''
  14. def main(cfg):
  15. # 游戏初始化
  16. pygame.init()
  17. pygame.mixer.init()
  18. screen = pygame.display.set_mode((cfg.WIDTH, cfg.HEIGHT))
  19. pygame.display.set_caption(cfg.TITLE)
  20. # 加载游戏素材
  21. sounds = {}
  22. for key, value in cfg.AUDIO_PATHS.items():
  23. sounds[key] = pygame.mixer.Sound(value)
  24. sounds[key].set_volume(1)
  25. # 开始界面
  26. is_dual_mode = gameStartInterface(screen, cfg)
  27. # 关卡数
  28. levelfilepaths = [os.path.join(cfg.LEVELFILEDIR, filename) for filename in sorted(os.listdir(cfg.LEVELFILEDIR))]
  29. # 主循环
  30. for idx, levelfilepath in enumerate(levelfilepaths):
  31. switchLevelIterface(screen, cfg, idx+1)
  32. game_level = GameLevel(idx+1, levelfilepath, sounds, is_dual_mode, cfg)
  33. is_win = game_level.start(screen)
  34. if not is_win: break
  35. is_quit_game = gameEndIterface(screen, cfg, is_win)
  36. return is_quit_game
  37. '''run'''
  38. if __name__ == '__main__':
  39. while True:
  40. is_quit_game = main(cfg)
  41. if is_quit_game:
  42. break

三.cfg

# Introduction
https://mp.weixin.qq.com/s/1xXULpT36P7LTO5HDbjptg

# Environment
```
OS: Windows10
Python: Python3.5+(have installed necessary dependencies)
```

# Usage
```
Step1:
pip install -r requirements.txt
Step2:
run "python Game5.py"
```

# Game Display
![giphy](demonstration/running.gif)

四.README

# Introduction
https://mp.weixin.qq.com/s/1xXULpT36P7LTO5HDbjptg

# Environment
```
OS: Windows10
Python: Python3.5+(have installed necessary dependencies)
```

# Usage
```
Step1:
pip install -r requirements.txt
Step2:
run "python Game5.py"
```

# Game Display
![giphy](demonstration/running.gif)

♥️关注,就是我创作的动力

♥️点赞,就是对我最大的认可

♥️这里是小刘,励志用心做好每一篇文章,谢谢大家

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/weixin_40725706/article/detail/215773
推荐阅读
相关标签
  

闽ICP备14008679号