-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathalien_invasion.py
More file actions
57 lines (48 loc) · 1.74 KB
/
Copy pathalien_invasion.py
File metadata and controls
57 lines (48 loc) · 1.74 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
import sys
import pygame
from src.setings import Settings
from src.game_stats import GameStats
from src.scoreboard import Scoreboard
from src.button import Button
from src.ship import Ship
from src.alien import Alien
import src.game_functions as gf
from pygame.sprite import Group
def run_game():
"""
Parameters
----------
Returns
-------
"""
# Инициализирует pygame, setings and screen's object
pygame.init()
ai_settings = Settings()
screen = pygame.display.set_mode((ai_settings.screen_width, ai_settings.screen_height))
pygame.display.set_caption("Alien Invasion")
# Play button creating
play_button = Button(ai_settings, screen, "Play")
# Ship creating
ship = Ship(ai_settings, screen)
# Creating group for bullets
bullets = Group()
# Creating aliens' group
aliens = Group()
# Creating rows of aliens
gf.create_fleet(ai_settings, screen, ship, aliens)
# Цвет фона
bg_color = (230, 230, 230)
# Creating an alien
alien = Alien(ai_settings, screen)
# Creating an example for saving game statistics and score
stats = GameStats(ai_settings)
sb = Scoreboard(ai_settings, screen, stats)
# Запуск основного цикла игры
while True:
gf.check_events(ai_settings, screen, stats, sb, play_button, ship, aliens, bullets)
if stats.game_active:
ship.update()
gf.update_bullets(ai_settings, screen, stats, sb, ship, aliens, bullets)
gf.update_aliens(ai_settings, screen, stats, sb, ship, aliens, bullets)
gf.update_screen(ai_settings, screen, stats, sb, ship, aliens, bullets, play_button)
run_game()