# @Time:2023/5/13 20:41
# @Author: 一只流浪的蚊子
# @File:game_functions.py
import sys
import pygame
from time import sleep
from bullet import Bullet
from alien import Alien
# from ship import Ship
from game_stats import GameStats
def check_events(ai_settings, bullets, screen, ship, stats, play_button):
"""响应按键和鼠标事件"""
for event in pygame.event.get():
if event.type == pygame.QUIT:
sys.exit()
elif event.type == pygame.KEYDOWN:
check_keydown_events(event, ai_settings, screen, ship, bullets)
elif event.type == pygame.KEYUP:
check_keyup_events(event, ship)
elif event.type == pygame.MOUSEBUTTONDOWN:
mouse_x, mouse_y = pygame.mouse.get_pos()
check_play_button(stats, play_button, mouse_x, mouse_y)
def check_play_button(stats, play_button, mouse_x, mouse_y):
"""在玩家单机Play时开始新游戏"""
if play_button.rect.collidepoint(mouse_x, mouse_y):
# 重置游戏统计信息
# stats.reset_stats()
stats.game_active = True
# # 清空外星人列表和子弹列表
# aliens.empty()
# bullets.empty()
# # 创建一群新的外星人, 并让飞船居中
# create_fleet(ai_settings, screen, ship, aliens)
# ship.center_ship()
def check_keydown_events(event, ai_settings, screen, ship, bullets):
"""响应按键"""
if event.key == pygame.K_RIGHT:
ship.moving_right = True
elif event.key == pygame.K_LEFT:
ship.moving_left = True
elif event.key == pygame.K_SPACE:
fire_bullets(ai_settings, screen, ship, bullets)
elif event.key == pygame.K_q:
sys.exit()
def check_keyup_events(event, ship):
"""响应松开"""
if event.key == pygame.K_RIGHT:
ship.moving_right = False
if event.key == pygame.K_LEFT:
ship.moving_left = False
def update_screen(ai_settings, screen, stats, ship, bullets, aliens, play_button):
"""更新屏幕上的图像,并切换到新屏幕"""
screen.fill(ai_settings.bg_color)
ship.blitme()
# 绘制所有子弹
for bullet in bullets.sprites():
bullet.draw_bullet()
aliens.draw(screen) # 绘制外星人
# 如果游戏处于非活动状态,绘制Play按钮
if not stats.game_active:
play_button.draw_button()
# 让最近绘制的屏幕可见
pygame.display.flip()
def update_bullets(aliens, ai_settings, screen, ship, bullets):
bullets.update()
# 删除已消失的子弹
for bullet in bullets.copy(): # 使用副本,避免在删除元素后迭代过程产生错误
if bullet.rect.bottom <= 0:
bullets.remove(bullet)
check_bullet_alien_collision(ai_settings, screen, ship, aliens, bullets)
def check_bullet_alien_collision(ai_settings, screen, ship, aliens, bullets):
# 检查是否有子弹击中了外星人,如果是则删除相应的子弹和外星人
collisions = pygame.sprite.groupcollide(bullets, aliens, True, True)
if len(aliens) == 0:
bullets.empty()
create_fleet(ai_settings, ship, screen, aliens)
def fire_bullets(ai_settings, screen, ship, bullets):
"""如果还没有到达极限,就发射一颗子弹"""
if len(bullets) < ai_settings.bullets_allowed:
new_bullet = Bullet(ai_settings, screen, ship)
bullets.add(new_bullet)
def create_fleet(ai_settings, ship, screen, aliens):
"""创建外星人群"""
alien = Alien(ai_settings, screen)
number_alien_x = get_number_aliens_x(ai_settings, alien.rect.width)
number_rows = get_number_rows(ai_settings, ship.rect.height, alien.rect.height)
# 创建第一行外星人
for row_number in range(number_rows):
for alien_number in range(number_alien_x):
create_alien(ai_settings, screen, aliens, alien_number, row_number)
def get_number_aliens_x(ai_settings, alien_width):
"""计算一行能容下多少外星人"""
available_space_x = ai_settings.screen_width - (2 * alien_width)
number_alien_x = available_space_x // (2 * alien_width) # 向下取整的整数除法
return number_alien_x
def get_number_rows(ai_settings, ship_height, alien_height):
"""计算可容纳多少行外星人"""
available_space_y = (ai_settings.screen_height - (3 * alien_height) - ship_height)
number_rows = int(available_space_y/(2 * alien_height))
return number_rows
def create_alien(ai_settings, screen, aliens, alien_number, row_number):
"""创建单个外星人"""
alien = Alien(ai_settings, screen)
alien_width = alien.rect.width
alien.x = alien_width + 2 * alien_width * alien_number
alien.rect.x = alien.x
alien.rect.y = alien.rect.height + 2 * alien.rect.height * row_number
aliens.add(alien)
def check_fleet_edges(ai_settings, aliens):
"""有外星人到达边缘时采取相应的措施"""
for alien in aliens.sprites():
if alien.check_edges():
change_fleet_direction(ai_settings, aliens)
break
def change_fleet_direction(ai_settings, aliens):
"""将整群外星人下移,并改变他们的方向"""
for alien in aliens.sprites():
alien.rect.y += ai_settings.fleet_drop_speed
ai_settings.fleet_direction *= -1
def update_aliens(ai_settings, ship, stats, screen, bullets, aliens):
"""检查是否有外星人位于屏幕边缘,更新重新调整外星人的位置"""
check_fleet_edges(ai_settings, aliens)
aliens.update()
# 检测外星人和飞船之间的碰撞
if pygame.sprite.spritecollideany(ship, aliens):
ship_hit(ai_settings, stats, ship, screen, aliens, bullets)
# 检查是否有外星人到达屏幕底端
check_aliens_bottom(ai_settings, stats, screen, ship, aliens, bullets)
def ship_hit(ai_settings, stats, ship, screen, aliens, bullets):
"""响应被外星人撞到的飞船"""
if stats.ship_left > 0:
# 将ship_left-1
stats.ship_left -= 1
# 清空外星人和子弹列表
aliens.empty()
bullets.empty()
# 创建一群新的外星人,并将飞船放到屏幕底端中央
create_fleet(ai_settings, ship, screen, aliens)
ship.center_ship()
# 暂停0.5秒
sleep(0.5)
else:
stats.game_active = False
def check_aliens_bottom(ai_settings, stats, screen, ship, aliens, bullets):
"""检查是否有外星人到达屏幕底端"""
screen_rect = screen.get_rect()
for alien in aliens.sprites():
if alien.rect.bottom >= screen_rect.bottom:
# 进行处理
ship_hit(ai_settings, stats, ship, screen, aliens, bullets)
break
python从入门到实践,外星人入侵pygame小项目源码
需积分: 0 128 浏览量
更新于2023-06-27
1
收藏 414KB ZIP 举报
Python编程语言以其简洁明了的语法和强大的功能深受程序员喜爱,尤其在教育和游戏开发领域。Pygame是Python的一个库,专门用于创建2D游戏,它包含了一系列处理图像、声音和用户输入的模块,使得游戏开发变得相对简单。本项目"外星人入侵pygame小项目"就是基于Python和Pygame库的实战应用,旨在帮助初学者从入门到实践,通过实际编写游戏代码来提升Python编程技能。
在"外星人入侵"项目中,我们将学习以下关键知识点:
1. **Python基础知识**:你需要对Python的基础语法有了解,包括变量、数据类型、条件语句、循环、函数和类等。这些是编写任何程序的基础。
2. **Pygame库**:Pygame库的导入和初始化是游戏开发的第一步。我们需要了解如何设置窗口、加载图像和音乐、处理事件(如键盘和鼠标输入)以及更新屏幕内容。
3. **游戏对象**:在Pygame中,游戏通常由多个对象组成,如玩家、外星人、子弹等。每个对象都是一个类的实例,包含其属性(如位置、速度、状态等)和方法(如移动、绘制、碰撞检测等)。
4. **游戏循环**:游戏的核心是主循环,它不断检查用户输入、更新对象状态并重绘屏幕。这种循环称为游戏循环或事件循环。
5. **图像与精灵**:Pygame中的Sprite类代表游戏中的可视对象,可以处理动画和碰撞检测。你需要学会创建精灵、管理精灵组和在屏幕上绘制精灵。
6. **碰撞检测**:为了使游戏有互动性,我们需要检测玩家的飞船与外星人、子弹与外星人之间的碰撞。Pygame提供了简单的碰撞检测方法,但可能需要自定义算法来实现更复杂的情况。
7. **声音与音乐**:Pygame可以播放背景音乐和音效,增强游戏体验。你需要学习如何加载和控制音频资源。
8. **得分与计时器**:在"外星人入侵"游戏中,得分系统和定时器非常重要。你可以用Pygame的时间模块来创建计时器,同时记录玩家得分。
9. **文件操作**:保存和读取游戏进度是提高用户体验的关键。Python提供了内置的文件操作功能,让你可以将游戏状态存储在文件中。
10. **错误处理**:良好的错误处理能确保程序在遇到问题时不会崩溃,而是给出有用的提示。学习如何使用try-except语句捕获和处理异常是必要的。
通过这个项目,你不仅能掌握Pygame库的使用,还能提升编程技巧,理解面向对象编程的概念,以及如何组织和结构化代码。实践中遇到的问题和解决方法会加深你对Python和游戏开发的理解。因此,无论你是Python新手还是寻求实战经验的开发者,"外星人入侵pygame小项目"都是一次宝贵的学习经历。开始编写代码,一步步地构建你的游戏世界吧!

王德发不懂C
- 粉丝: 0
最新资源
- 基于云计算通用访问控制模型设计与研究.docx
- 电子商务在电力物资管理工作中的运用1.docx
- 一个高性能的支持HTTP/2的代理服务器,专门设计用于使Cursor IDE的Composer能够使用DeepSeek和OpenRouter的l…
- JSP个人网站留言板课程设计方案.doc
- 互联网+形势下大学英语混合式教学模式探究.docx
- 湖南省岳阳市CDMA移动通信网无线规划(优化).doc
- 2017年度大数据时代的互联网信息安全试题答案.docx
- 单片机可调电源设计方案.doc
- 基于大数据技术的信息通信网络管控应用研究.docx
- 计算机系课程实施方案停车场管理.docx
- 大数据环境下的高校计算机教学改革研究.docx
- 无线网络的安全性研究.docx
- PLC水箱液位控制系统大学设计方案.doc
- 企业信息化建设探索.docx
- 基于IBM-FlashSystem的制造业解决方案.pdf
- 计算机考试介绍及考试大纲.doc