Advertisement
Chl_Snt

Шутер ООП

Mar 5th, 2025
148
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 5.47 KB | None | 0 0
  1. import tkinter as tk
  2. import random
  3. import math
  4. from random import randint
  5.  
  6. # Константы
  7. WIDTH, HEIGHT = 800, 600
  8. PLAYER_SIZE = 20
  9. ENEMY_SIZE = 20
  10. BULLET_SIZE = 5
  11. PLAYER_SPEED = 3
  12. ENEMY_SPEED = 4
  13. BULLET_SPEED = 10
  14.  
  15.  
  16. class Game:
  17.     def __init__(self):
  18.         self.root = tk.Tk()
  19.         self.root.title("Стрелялка")
  20.         self.canvas = tk.Canvas(self.root, width=WIDTH, height=HEIGHT, bg="black")
  21.         self.canvas.pack()
  22.  
  23.         self.player = Player(self)
  24.         self.enemies: list[Enemy] = []
  25.         self.bullets = []
  26.         self.score = 0
  27.  
  28.         self.root.bind("<B3-Motion>", self.player.move)
  29.         self.root.bind("<B1-Motion>", self.shoot)
  30.         # self.root.bind("<1>", self.shoot)
  31.  
  32.         self.spawn_enemy()
  33.         self.game_loop()
  34.         self.root.mainloop()
  35.  
  36.     def shoot(self, event):
  37.         bullet = Bullet(self, event.x, event.y)
  38.         self.bullets.append(bullet)
  39.  
  40.     def spawn_enemy(self):
  41.         boss = True if randint(0, 5) == 0 else False
  42.         if boss:
  43.             speed = ENEMY_SPEED / 2
  44.             color = "green"
  45.             enemy = Enemy(self, color, speed, 40)
  46.             enemy.hp = 5
  47.         else:
  48.             enemy = Enemy(self, None, None, None)
  49.         self.enemies.append(enemy)
  50.         self.root.after(1240, self.spawn_enemy)
  51.  
  52.     def update_bullets(self):
  53.         for bullet in self.bullets[:]:
  54.             if not bullet.update():
  55.                 self.bullets.remove(bullet)
  56.  
  57.     def update_enemies(self):
  58.         for enemy in self.enemies[:]:
  59.             if not enemy.update():
  60.                 try:
  61.                     self.enemies.remove(enemy)
  62.                 except:
  63.                     pass
  64.  
  65.     def game_loop(self):
  66.         self.update_bullets()
  67.         self.update_enemies()
  68.         self.root.title(f"Счёт: {self.score}")
  69.         self.root.after(40, self.game_loop)
  70.  
  71.     def game_over(self):
  72.         self.canvas.create_text(WIDTH // 2, HEIGHT // 2, text="GAME OVER", font=("Arial", 50), fill="white")
  73.         self.root.after_cancel(self.game_loop)
  74.  
  75.  
  76. class Player:
  77.     def __init__(self, game):
  78.         self.game = game
  79.         self.body = game.canvas.create_oval(
  80.             WIDTH // 2 - PLAYER_SIZE, HEIGHT // 2 - PLAYER_SIZE,
  81.             WIDTH // 2 + PLAYER_SIZE, HEIGHT // 2 + PLAYER_SIZE,
  82.             fill="blue"
  83.         )
  84.  
  85.     def move(self, event):
  86.         self.game.canvas.coords(
  87.             self.body,
  88.             event.x - PLAYER_SIZE, event.y - PLAYER_SIZE,
  89.             event.x + PLAYER_SIZE, event.y + PLAYER_SIZE
  90.         )
  91.  
  92.  
  93. class Bullet:
  94.     def __init__(self, game, target_x, target_y):
  95.         self.game = game
  96.         x, y, _, _ = game.canvas.coords(game.player.body)
  97.         self.body = game.canvas.create_oval(
  98.             x - BULLET_SIZE, y - BULLET_SIZE,
  99.             x + BULLET_SIZE, y + BULLET_SIZE,
  100.             fill="yellow"
  101.         )
  102.         self.angle = math.atan2(target_y - y, target_x - x)
  103.  
  104.     def update(self):
  105.         self.game.canvas.move(
  106.             self.body, BULLET_SPEED * math.cos(self.angle), BULLET_SPEED * math.sin(self.angle)
  107.         )
  108.         x, y, _, _ = self.game.canvas.coords(self.body)
  109.         if x < 0 or x > WIDTH or y < 0 or y > HEIGHT:
  110.             self.game.canvas.delete(self.body)
  111.             return False
  112.         return True
  113.  
  114.  
  115. class Enemy:
  116.     def __init__(self, game, color, speed, size):
  117.         self.game = game
  118.         self.speed = speed if speed else ENEMY_SPEED
  119.         self.color = color if color else 'red'
  120.         self.hp = 2
  121.         self.size = size if size else ENEMY_SIZE
  122.         side = random.choice(["top", "bottom", "left", "right"])
  123.         if side == "top":
  124.             self.x, self.y = random.randint(0, WIDTH), 0
  125.         elif side == "bottom":
  126.             self.x, self.y = random.randint(0, WIDTH), HEIGHT
  127.         elif side == "left":
  128.             self.x, self.y = 0, random.randint(0, HEIGHT)
  129.         else:
  130.             self.x, self.y = WIDTH, random.randint(0, HEIGHT)
  131.  
  132.         self.body = game.canvas.create_rectangle(
  133.             self.x - self.size, self.y - self.size,
  134.             self.x + self.size, self.y + self.size,
  135.             fill=self.color
  136.         )
  137.  
  138.     def update(self):
  139.         px, py, _, _ = self.game.canvas.coords(self.game.player.body)
  140.         ex, ey, _, _ = self.game.canvas.coords(self.body)
  141.         angle = math.atan2(py - ey, px - ex)
  142.         self.game.canvas.move(self.body, self.speed * math.cos(angle), self.speed * math.sin(angle))
  143.  
  144.         # Проверка столкновения с игроком
  145.         if (px - ex) ** 2 + (py - ey) ** 2 < (PLAYER_SIZE + self.size) ** 2:
  146.             self.game.game_over()
  147.             return False
  148.  
  149.         # Проверка столкновения с пулями
  150.         for bullet in self.game.bullets[:]:
  151.             bx, by, _, _ = self.game.canvas.coords(bullet.body)
  152.             if (bx - ex) ** 2 + (by - ey) ** 2 < (BULLET_SIZE + self.size) ** 2:
  153.                 if self.hp > 1:
  154.                     self.hp -= 1
  155.                     self.game.canvas.delete(bullet.body)
  156.                     self.game.bullets.remove(bullet)
  157.                 else:
  158.                     self.game.canvas.delete(self.body)
  159.                     self.game.enemies.remove(self)
  160.                     self.game.canvas.delete(bullet.body)
  161.                     self.game.bullets.remove(bullet)
  162.                     self.game.score += 1
  163.                     return False
  164.         return True
  165.  
  166.  
  167. if __name__ == "__main__":
  168.     Game()
  169.  
  170.  
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement