python打地鼠游戏完整代码
时间: 2023-12-25 09:29:30 浏览: 159
以下是一个简单的Python打地鼠游戏的完整代码示例:
```python
import pygame
import random
# 初始化游戏
pygame.init()
# 设置游戏窗口大小
window_width = 800
window_height = 600
window = pygame.display.set_mode((window_width, window_height))
pygame.display.set_caption("打地鼠游戏")
# 加载背景图片
background_image = pygame.image.load("background.jpg")
# 加载地鼠图片
mole_image = pygame.image.load("mole.png")
# 设置地鼠的初始位置
mole_x = random.randint(0, window_width - mole_image.get_width())
mole_y = random.randint(0, window_height - mole_image.get_height())
# 游戏主循环
running = True
while running:
# 处理事件
for event in pygame.event.get():
if event.type == pygame.QUIT:
running = False
# 绘制背景
window.blit(background_image, (0, 0))
# 绘制地鼠
window.blit(mole_image, (mole_x, mole_y))
# 更新屏幕
pygame.display.flip()
# 退出游戏
pygame.quit()
```
阅读全文