fork download
  1. import pygame
  2. import random
  3.  
  4. # กำหนดสีที่ใช้ในเกม
  5. WHITE = (255, 255, 255)
  6. BLACK = (0, 0, 0)
  7. RED = (255, 0, 0)
  8. BLUE = (0, 0, 255)
  9.  
  10. # ขนาดหน้าจอ
  11. WIDTH = 800
  12. HEIGHT = 600
  13.  
  14. # สร้างหน้าจอเกม
  15. pygame.init()
  16. screen = pygame.display.set_mode((WIDTH, HEIGHT))
  17. pygame.display.set_caption("เกมยิงปืนเด็ก")
  18.  
  19. # ตั้งค่า FPS (เฟรมต่อวินาที)
  20. clock = pygame.time.Clock()
  21.  
  22. # สร้างตัวละคร (เด็ก) และลูกบอล
  23. player_width = 50
  24. player_height = 50
  25. player_x = WIDTH // 2 - player_width // 2
  26. player_y = HEIGHT - player_height - 10
  27. player_speed = 5
  28.  
  29. bullet_width = 10
  30. bullet_height = 20
  31. bullet_speed = 7
  32. bullets = []
  33.  
  34. target_width = 50
  35. target_height = 50
  36. target_x = random.randint(0, WIDTH - target_width)
  37. target_y = random.randint(0, HEIGHT // 2)
  38. target_speed = 3
  39.  
  40. # คะแนน
  41. score = 0
  42. font = pygame.font.SysFont('Arial', 30)
  43.  
  44. def draw_player(x, y):
  45. pygame.draw.rect(screen, BLUE, (x, y, player_width, player_height))
  46.  
  47. def draw_bullet(bullet):
  48. pygame.draw.rect(screen, RED, (bullet[0], bullet[1], bullet_width, bullet_height))
  49.  
  50. def draw_target(x, y):
  51. pygame.draw.rect(screen, GREEN, (x, y, target_width, target_height))
  52.  
  53. def display_score(score):
  54. score_text = font.render(f"คะแนน: {score}", True, BLACK)
  55. screen.blit(score_text, (10, 10))
  56.  
  57. def main():
  58. global player_x, bullets, score, target_x, target_y
  59. running = True
  60. while running:
  61. screen.fill(WHITE)
  62.  
  63. # ตรวจสอบอีเวนต์
  64. for event in pygame.event.get():
  65. if event.type == pygame.QUIT:
  66. running = False
  67.  
  68. # เคอร์เซอร์
  69. keys = pygame.key.get_pressed()
  70. if keys[pygame.K_LEFT] and player_x > 0:
  71. player_x -= player_speed
  72. if keys[pygame.K_RIGHT] and player_x < WIDTH - player_width:
  73. player_x += player_speed
  74. if keys[pygame.K_SPACE]:
  75. # ยิงลูกบอล
  76. bullets.append([player_x + player_width // 2 - bullet_width // 2, player_y])
  77.  
  78. # อัพเดทตำแหน่งลูกบอล
  79. for bullet in bullets[:]:
  80. bullet[1] -= bullet_speed
  81. if bullet[1] < 0:
  82. bullets.remove(bullet)
  83.  
  84. # อัพเดทตำแหน่งเป้าหมาย
  85. target_y += target_speed
  86. if target_y > HEIGHT:
  87. target_y = random.randint(0, HEIGHT // 2)
  88. target_x = random.randint(0, WIDTH - target_width)
  89.  
  90. # ตรวจสอบการยิงโดนเป้า
  91. for bullet in bullets[:]:
  92. if (bullet[0] > target_x and bullet[0] < target_x + target_width and
  93. bullet[1] > target_y and bullet[1] < target_y + target_height):
  94. bullets.remove(bullet)
  95. score += 10
  96. target_y = random.randint(0, HEIGHT // 2)
  97. target_x = random.randint(0, WIDTH - target_width)
  98.  
  99. # วาดสิ่งต่างๆ
  100. draw_player(player_x, player_y)
  101. for bullet in bullets:
  102. draw_bullet(bullet)
  103. draw_target(target_x, target_y)
  104. display_score(score)
  105.  
  106. # อัพเดทหน้าจอ
  107. pygame.display.update()
  108.  
  109. # ตั้งค่า FPS
  110. clock.tick(60)
  111.  
  112. pygame.quit()
  113.  
  114. if __name__ == "__main__":
  115. main()
Success #stdin #stdout 0.03s 25724KB
stdin
Standard input is empty
stdout
import pygame
import random

# กำหนดสีที่ใช้ในเกม
WHITE = (255, 255, 255)
BLACK = (0, 0, 0)
RED = (255, 0, 0)
BLUE = (0, 0, 255)

# ขนาดหน้าจอ
WIDTH = 800
HEIGHT = 600

# สร้างหน้าจอเกม
pygame.init()
screen = pygame.display.set_mode((WIDTH, HEIGHT))
pygame.display.set_caption("เกมยิงปืนเด็ก")

# ตั้งค่า FPS (เฟรมต่อวินาที)
clock = pygame.time.Clock()

# สร้างตัวละคร (เด็ก) และลูกบอล
player_width = 50
player_height = 50
player_x = WIDTH // 2 - player_width // 2
player_y = HEIGHT - player_height - 10
player_speed = 5

bullet_width = 10
bullet_height = 20
bullet_speed = 7
bullets = []

target_width = 50
target_height = 50
target_x = random.randint(0, WIDTH - target_width)
target_y = random.randint(0, HEIGHT // 2)
target_speed = 3

# คะแนน
score = 0
font = pygame.font.SysFont('Arial', 30)

def draw_player(x, y):
    pygame.draw.rect(screen, BLUE, (x, y, player_width, player_height))

def draw_bullet(bullet):
    pygame.draw.rect(screen, RED, (bullet[0], bullet[1], bullet_width, bullet_height))

def draw_target(x, y):
    pygame.draw.rect(screen, GREEN, (x, y, target_width, target_height))

def display_score(score):
    score_text = font.render(f"คะแนน: {score}", True, BLACK)
    screen.blit(score_text, (10, 10))

def main():
    global player_x, bullets, score, target_x, target_y
    running = True
    while running:
        screen.fill(WHITE)

        # ตรวจสอบอีเวนต์
        for event in pygame.event.get():
            if event.type == pygame.QUIT:
                running = False

        # เคอร์เซอร์
        keys = pygame.key.get_pressed()
        if keys[pygame.K_LEFT] and player_x > 0:
            player_x -= player_speed
        if keys[pygame.K_RIGHT] and player_x < WIDTH - player_width:
            player_x += player_speed
        if keys[pygame.K_SPACE]:
            # ยิงลูกบอล
            bullets.append([player_x + player_width // 2 - bullet_width // 2, player_y])

        # อัพเดทตำแหน่งลูกบอล
        for bullet in bullets[:]:
            bullet[1] -= bullet_speed
            if bullet[1] < 0:
                bullets.remove(bullet)

        # อัพเดทตำแหน่งเป้าหมาย
        target_y += target_speed
        if target_y > HEIGHT:
            target_y = random.randint(0, HEIGHT // 2)
            target_x = random.randint(0, WIDTH - target_width)

        # ตรวจสอบการยิงโดนเป้า
        for bullet in bullets[:]:
            if (bullet[0] > target_x and bullet[0] < target_x + target_width and
                bullet[1] > target_y and bullet[1] < target_y + target_height):
                bullets.remove(bullet)
                score += 10
                target_y = random.randint(0, HEIGHT // 2)
                target_x = random.randint(0, WIDTH - target_width)

        # วาดสิ่งต่างๆ
        draw_player(player_x, player_y)
        for bullet in bullets:
            draw_bullet(bullet)
        draw_target(target_x, target_y)
        display_score(score)

        # อัพเดทหน้าจอ
        pygame.display.update()

        # ตั้งค่า FPS
        clock.tick(60)

    pygame.quit()

if __name__ == "__main__":
    main()