ゲーム物理学には、ゲームをよりリアルで魅力的なものにするために現実世界の物理学をシミュレートすることが含まれます。速度、加速度、重力などの基本的な物理原理により、ゲーム内の動きやインタラクションが自然に感じられます。
例: ベロシティを使った基本的な動き
import pygame # Initialize Pygame pygame.init() # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Basic Movement with Velocity") # Colors white = (255, 255, 255) black = (0, 0, 0) # Player setup player = pygame.Rect(375, 275, 50, 50) velocity = pygame.Vector2(0, 0) # Main game loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Keyboard input for movement keys = pygame.key.get_pressed() if keys[pygame.K_LEFT]: velocity.x = -5 elif keys[pygame.K_RIGHT]: velocity.x = 5 else: velocity.x = 0 if keys[pygame.K_UP]: velocity.y = -5 elif keys[pygame.K_DOWN]: velocity.y = 5 else: velocity.y = 0 # Update player position player.move_ip(velocity) # Clear screen screen.fill(white) # Draw player pygame.draw.rect(screen, black, player) # Update display pygame.display.flip() pygame.quit()
Gravity は、オブジェクトを下に引っ張り、地球上の重力の影響をシミュレートすることで、ゲームにリアリズムを加えます。
例: 落下物に重力を加える
import pygame # Initialize Pygame pygame.init() # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Gravity Simulation") # Colors white = (255, 255, 255) black = (0, 0, 0) # Object setup object = pygame.Rect(375, 50, 50, 50) gravity = 0.5 velocity_y = 0 # Main game loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Apply gravity velocity_y = gravity object.y = velocity_y # Reset object position if it falls off-screen if object.y > 600: object.y = 50 velocity_y = 0 # Clear screen screen.fill(white) # Draw object pygame.draw.rect(screen, black, object) # Update display pygame.display.flip() pygame.quit()
動的なゲームを作成するには、多くの場合、壁から跳ね返るボールなど、跳ねるオブジェクトをシミュレートする必要があります。
例: バウンドボールシミュレーション
import pygame # Initialize Pygame pygame.init() # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Bouncing Ball") # Colors white = (255, 255, 255) black = (0, 0, 0) # Ball setup ball = pygame.Rect(375, 275, 50, 50) velocity = pygame.Vector2(4, 4) # Main game loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Move ball ball.move_ip(velocity) # Bounce off walls if ball.left = 800: velocity.x = -velocity.x if ball.top = 600: velocity.y = -velocity.y # Clear screen screen.fill(white) # Draw ball pygame.draw.ellipse(screen, black, ball) # Update display pygame.display.flip() pygame.quit()
目標: ボールが画面内で跳ね返り、壁に当たると方向が変わるゲームを作成します。
import pygame # Initialize Pygame pygame.init() # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Bouncing Ball") # Colors white = (255, 255, 255) black = (0, 0, 0) # Ball setup ball = pygame.Rect(375, 275, 50, 50) velocity = pygame.Vector2(4, 4) # Main game loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Move ball ball.move_ip(velocity) # Bounce off walls if ball.left = 800: velocity.x = -velocity.x if ball.top = 600: velocity.y = -velocity.y # Clear screen screen.fill(white) # Draw ball pygame.draw.ellipse(screen, black, ball) # Update display pygame.display.flip() pygame.quit()
例: 効果音を追加する
import pygame # Initialize Pygame pygame.init() # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Bouncing Ball") # Colors white = (255, 255, 255) black = (0, 0, 0) # Ball setup ball = pygame.Rect(375, 275, 50, 50) velocity = pygame.Vector2(4, 4) # Main game loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Move ball ball.move_ip(velocity) # Bounce off walls if ball.left = 800: velocity.x = -velocity.x if ball.top = 600: velocity.y = -velocity.y # Clear screen screen.fill(white) # Draw ball pygame.draw.ellipse(screen, black, ball) # Update display pygame.display.flip() pygame.quit()
例: BGM を追加する
import pygame # Initialize Pygame pygame.init() # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Bouncing Ball") # Colors white = (255, 255, 255) black = (0, 0, 0) # Ball setup ball = pygame.Rect(375, 275, 50, 50) velocity = pygame.Vector2(4, 4) # Main game loop running = True while running: for event in pygame.event.get(): if event.type == pygame.QUIT: running = False # Move ball ball.move_ip(velocity) # Bounce off walls if ball.left = 800: velocity.x = -velocity.x if ball.top = 600: velocity.y = -velocity.y # Clear screen screen.fill(white) # Draw ball pygame.draw.ellipse(screen, black, ball) # Update display pygame.display.flip() pygame.quit()
例: サウンドメモリーゲーム
パイソン pygameをインポートする ランダムにインポート # Pygame と Mixer を初期化する pygame.init() pygame.mixer.init() # サウンドをロードする サウンド = [pygame.mixer.Sound(f"sound{i}.wav") for i in range(4)] # 画面設定 screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("サウンドメモリーゲーム") # 色 白 = (255, 255, 255) 黒 = (0, 0, 0) # ランダムなサウンドシーケンスを生成する sequence = [random.choice(sounds) for _ in range(5)] 現在のステップ = 0 # メインゲームループ 実行中 = True 実行中:python import pygame import random # Initialize Pygame and Mixer pygame.init() pygame.mixer.init() # Load sounds sounds = [pygame.mixer.Sound(f"sound{i}.wav") for i in range(4)] # Screen setup screen = pygame.display.set_mode((800, 600)) pygame.display.set_caption("Sound Memory Game") # Colors white = (255, 255, 255) black = (0, 0, 0) # Generate random sequence of sounds sequence = [random.choice(sounds) for _ in range(5)] current_step = 0 # Main game loop running = True while running:
免責事項: 提供されるすべてのリソースの一部はインターネットからのものです。お客様の著作権またはその他の権利および利益の侵害がある場合は、詳細な理由を説明し、著作権または権利および利益の証拠を提出して、電子メール [email protected] に送信してください。 できるだけ早く対応させていただきます。
Copyright© 2022 湘ICP备2022001581号-3