Advertisement
Chl_Snt

RPS

Mar 15th, 2025
307
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
Python 4.05 KB | None | 0 0
  1. import pygame
  2. import random
  3. import sys
  4.  
  5. # Константы
  6. SCREEN_WIDTH = 800
  7. SCREEN_HEIGHT = 600
  8. OBJECT_SIZE = 20
  9. MAX_OBJECTS = 150
  10. SPEED = 2
  11. FPS = 60
  12.  
  13. # Цвета для объектов
  14. COLORS = {
  15.     "Rock": (128, 128, 128),  # Серый
  16.     "Paper": (255, 255, 255),  # Белый
  17.     "Scissors": (255, 165, 0)  # Оранжевый
  18. }
  19.  
  20. # Правила превращения
  21. RULES = {
  22.     "Rock": "Scissors",
  23.     "Scissors": "Paper",
  24.     "Paper": "Rock"
  25. }
  26.  
  27. class GameObject:
  28.     def __init__(self, x, y, obj_type):
  29.         self.obj_type = obj_type
  30.         self.rect = pygame.Rect(x, y, OBJECT_SIZE, OBJECT_SIZE)
  31.         self.dx = random.choice([-SPEED, SPEED])
  32.         self.dy = random.choice([-SPEED, SPEED])
  33.  
  34.     def move(self):
  35.         self.rect.x += self.dx
  36.         self.rect.y += self.dy
  37.  
  38.         # Отскок от краев экрана
  39.         if self.rect.left < 0 or self.rect.right > SCREEN_WIDTH:
  40.             self.dx = -self.dx
  41.         if self.rect.top < 0 or self.rect.bottom > SCREEN_HEIGHT:
  42.             self.dy = -self.dy
  43.  
  44.     def draw(self, screen):
  45.         pygame.draw.rect(screen, COLORS[self.obj_type], self.rect)
  46.  
  47.     def check_collision(self, other):
  48.         return self.rect.colliderect(other.rect)
  49.  
  50.     def transform(self, new_type):
  51.         self.obj_type = new_type
  52.  
  53. class Game:
  54.     def __init__(self):
  55.         pygame.init()
  56.         self.screen = pygame.display.set_mode((SCREEN_WIDTH, SCREEN_HEIGHT))
  57.         pygame.display.set_caption("Rock Paper Scissors")
  58.         self.clock = pygame.time.Clock()
  59.         self.objects = []
  60.         self.create_initial_objects()
  61.  
  62.     def create_initial_objects(self):
  63.         for _ in range(100):  # Начальное количество объектов
  64.             x = random.randint(0, SCREEN_WIDTH - OBJECT_SIZE)
  65.             y = random.randint(0, SCREEN_HEIGHT - OBJECT_SIZE)
  66.             obj_type = random.choice(["Rock", "Paper", "Scissors"])
  67.             self.objects.append(GameObject(x, y, obj_type))
  68.  
  69.     def update(self):
  70.         for obj in self.objects:
  71.             obj.move()
  72.  
  73.         # Проверка столкновений
  74.         for i in range(len(self.objects)):
  75.             for j in range(i + 1, len(self.objects)):
  76.                 if self.objects[i].check_collision(self.objects[j]):
  77.                     self.resolve_collision(self.objects[i], self.objects[j])
  78.                     self.objects[i].dx = -self.objects[i].dx
  79.                     self.objects[i].dy = -self.objects[i].dy
  80.  
  81.  
  82.         # Проверка победы
  83.         counts = {"Rock": 0, "Paper": 0, "Scissors": 0}
  84.         for obj in self.objects:
  85.             counts[obj.obj_type] += 1
  86.         for obj_type, count in counts.items():
  87.             if count >= MAX_OBJECTS:
  88.                 self.show_winner(obj_type)
  89.                 return True
  90.         return False
  91.  
  92.     def resolve_collision(self, obj1, obj2):
  93.         if RULES[obj1.obj_type] == obj2.obj_type:
  94.             obj2.transform(obj1.obj_type)
  95.         elif RULES[obj2.obj_type] == obj1.obj_type:
  96.             obj1.transform(obj2.obj_type)
  97.  
  98.     def show_winner(self, winner_type):
  99.         font = pygame.font.Font(None, 74)
  100.         text = font.render(f"{winner_type} wins!", True, (255, 0, 0))
  101.         text_rect = text.get_rect(center=(SCREEN_WIDTH // 2, SCREEN_HEIGHT // 2))
  102.         self.screen.blit(text, text_rect)
  103.         pygame.display.flip()
  104.         pygame.time.wait(3000)  # Пауза перед завершением
  105.  
  106.     def run(self):
  107.         running = True
  108.         while running:
  109.             for event in pygame.event.get():
  110.                 if event.type == pygame.QUIT:
  111.                     running = False
  112.  
  113.             self.screen.fill((0, 0, 0))  # Очистка экрана
  114.  
  115.             for obj in self.objects:
  116.                 obj.draw(self.screen)
  117.  
  118.             if self.update():
  119.                 running = False
  120.  
  121.             pygame.display.flip()
  122.             self.clock.tick(FPS)
  123.  
  124.         pygame.quit()
  125.         sys.exit()
  126.  
  127. if __name__ == "__main__":
  128.     game = Game()
  129.     game.run()
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement