失眠网,内容丰富有趣,生活中的好帮手!
失眠网 > python小游戏——塔防小游戏代码开源

python小游戏——塔防小游戏代码开源

时间:2019-09-05 12:08:46

相关推荐

python小游戏——塔防小游戏代码开源

♥️作者:小刘在这里

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

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

目录

一.效果呈现

二.主代码

三.cfg

四.README

一.效果呈现

二.主代码

'''Function:塔防游戏源码基地:#959755565#'''import cfgimport pygamefrom modules import *'''主函数'''def main():pygame.init()pygame.mixer.init()pygame.mixer.music.load(cfg.AUDIOPATHS['bgm'])pygame.mixer.music.play(-1, 0.0)pygame.mixer.music.set_volume(0.25)screen = pygame.display.set_mode(cfg.SCREENSIZE)pygame.display.set_caption("保卫基地——塔防游戏 ")# 调用游戏开始界面start_interface = StartInterface(cfg)is_play = start_interface.update(screen)if not is_play:return# 调用游戏界面while True:choice_interface = ChoiceInterface(cfg)map_choice, difficulty_choice = choice_interface.update(screen)game_interface = GamingInterface(cfg)game_interface.start(screen, map_path=cfg.MAPPATHS[str(map_choice)], difficulty_path=cfg.DIFFICULTYPATHS[str(difficulty_choice)])end_interface = EndInterface(cfg)end_interface.update(screen)'''run'''if __name__ == '__main__':main()

三.cfg

# Introduction

https://mp./s/mcnN3dF5tzWlRg91cnWTEw

# Environment

```

OS: Windows10

Python: Python3.5+(have installed necessary dependencies)

```

# Usage

```

Step1:

pip install -r requirements.txt

Step2:

run "python Game8.py"

```

# Game Display

![giphy](demonstration/running.gif)

四.README

# Introduction

https://mp./s/mcnN3dF5tzWlRg91cnWTEw

# Environment

```

OS: Windows10

Python: Python3.5+(have installed necessary dependencies)

```

# Usage

```

Step1:

pip install -r requirements.txt

Step2:

run "python Game8.py"

```

# Game Display

![giphy](demonstration/running.gif)

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

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

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

如果觉得《python小游戏——塔防小游戏代码开源》对你有帮助,请点赞、收藏,并留下你的观点哦!

本内容不代表本网观点和政治立场,如有侵犯你的权益请联系我们处理。
网友评论
网友评论仅供其表达个人看法,并不表明网站立场。