Back to Home

Build a Space Game Part 4: Adding A Laser and Detect Collisions

Pre-Lecture Quiz

Pre-lecture quiz Think about the moment in Star Wars when Luke’s proton torpedoes hit the Death Star’s exhaust port. That precise collision detection changed the fate of the galaxy! In games, collision detection works the same way - it determines when objects interact and what happens next. In this lesson, you’ll add laser weapons to your space game and implement collision detection. Just like NASA’s mission planners calculate spacecraft trajectories to avoid debris, you’ll learn to detect when game objects intersect. We’ll break this down into manageable steps that build on each other. By the end, you’ll have a functioning combat system where lasers destroy enemies and collisions trigger game events. These same collision principles are used in everything from physics simulations to interactive web interfaces. ✅ Do a little research on the very first computer game ever written. What was its functionality?

Collision detection

Collision detection works like the proximity sensors on the Apollo lunar module - it constantly checks distances and triggers alerts when objects get too close. In games, this system determines when objects interact and what should happen next. The approach we’ll use treats every game object as a rectangle, similar to how air traffic control systems use simplified geometric shapes to track aircraft. This rectangular method might seem basic, but it’s computationally efficient and works well for most game scenarios.

Rectangle representation

Every game object needs coordinate boundaries, similar to how the Mars Pathfinder rover mapped its location on the Martian surface. Here’s how we define these boundary coordinates: Let’s break this down: - Top edge: That’s just where your object starts vertically (its y position) - Left edge: Where it starts horizontally (its x position) - Bottom edge: Add the height to the y position - now you know where it ends! - Right edge: Add the width to the x position - and you’ve got the complete boundary

Intersection algorithm

Detecting rectangle intersections uses logic similar to how the Hubble Space Telescope determines if celestial objects are overlapping in its field of view. The algorithm checks for separation: The separation test works like radar systems: - Is rectangle 2 completely to the right of rectangle 1? - Is rectangle 2 completely to the left of rectangle 1? - Is rectangle 2 completely below rectangle 1? - Is rectangle 2 completely above rectangle 1? If none of these conditions are true, the rectangles must be overlapping. This approach mirrors how radar operators determine if two aircraft are at safe distances.

Managing object lifecycles

When a laser hits an enemy, both objects need to be removed from the game. However, deleting objects mid-loop can cause crashes - a lesson learned the hard way in early computer systems like the Apollo Guidance Computer. Instead, we use a “mark for deletion” approach that safely removes objects between frames. Here’s how we mark something for removal: Why this approach works: - We mark the object as “dead” but don’t delete it right away - This lets the current game frame finish safely - No crashes from trying to use something that’s already gone! Then filter out marked objects before the next render cycle: What this filtering does: - Creates a fresh list with only the “living” objects - Tosses out anything marked as dead - Keeps your game running smoothly - Prevents memory bloat from accumulating destroyed objects

Implementing laser mechanics

Laser projectiles in games work on the same principle as photon torpedoes in Star Trek - they’re discrete objects that travel in straight lines until they hit something. Each spacebar press creates a new laser object that moves across the screen. To make this work, we need to coordinate a few different pieces: Key components to implement: - Create laser objects that spawn from the hero’s position - Handle keyboard input to trigger laser creation - Manage laser movement and lifecycle - Implement visual representation for the laser projectiles

Implementing firing rate control

Unlimited firing rates would overwhelm the game engine and make gameplay too easy. Real weapon systems face similar constraints - even the USS Enterprise’s phasers needed time to recharge between shots. We’ll implement a cooldown system that prevents rapid-fire spamming while maintaining responsive controls: How the cooldown works: - When created, the weapon starts “hot” (can’t fire yet) - After the timeout period, it becomes “cool” (ready to fire) - Before firing, we check: “Is the weapon cool?” - This prevents spam-clicking while keeping controls responsive ✅ Refer to lesson 1 in the space game series to remind yourself about cooldowns.

Building the collision system

You’ll extend your existing space game code to create a collision detection system. Like the International Space Station’s automated collision avoidance system, your game will continuously monitor object positions and respond to intersections. Starting from your previous lesson’s code, you’ll add collision detection with specific rules that govern object interactions.

Collision rules to implement

Game mechanics to add: 1. Laser hits enemy: Enemy object is destroyed when struck by a laser projectile 2. Laser hits screen boundary: Laser is removed when reaching the top edge of the screen 3. Enemy and hero collision: Both objects are destroyed when they intersect 4. Enemy reaches bottom: Game over condition when enemies reach the screen bottom

🔄 Pedagogical Check-in

Collision Detection Foundation: Before implementing, ensure you understand: - ✅ How rectangle boundaries define collision zones - ✅ Why separation testing is more efficient than intersection calculation - ✅ The importance of object lifecycle management in game loops - ✅ How event-driven systems coordinate collision responses Quick Self-Test: What would happen if you deleted objects immediately instead of marking them? Answer: Mid-loop deletion could cause crashes or skip objects in iteration Physics Understanding: You now grasp: - Coordinate Systems: How position and dimensions create boundaries - Intersection Logic: Mathematical principles behind collision detection - Performance Optimization: Why efficient algorithms matter in real-time systems - Memory Management: Safe object lifecycle patterns for stability

Setting up your development environment

Good news - we’ve already set up most of the groundwork for you! All your game assets and basic structure are waiting in the your-work subfolder, ready for you to add the cool collision features.

Project structure

Understanding the file structure: - Contains all sprite images needed for the game objects - Includes the main HTML document and JavaScript application file - Provides package configuration for local development server

Starting the development server

Navigate to your project folder and start the local server: This command sequence: - Changes directory to your working project folder - Starts a local HTTP server on http://localhost:5000 - Serves your game files for testing and development - Enables live development with automatic reloading Open your browser and navigate to http://localhost:5000 to see your current game state with the hero and enemies rendered on screen.

Step-by-step implementation

Like the systematic approach NASA used to program the Voyager spacecraft, we’ll implement collision detection methodically, building each component step by step.

1. Add rectangle collision bounds

First, let’s teach our game objects how to describe their boundaries. Add this method to your GameObject class: This method accomplishes: - Creates a rectangle object with precise boundary coordinates - Calculates bottom and right edges using position plus dimensions - Returns an object ready for collision detection algorithms - Provides a standardized interface for all game objects

2. Implement intersection detection

Now let’s create our collision detective - a function that can tell when two rectangles are overlapping: This algorithm works by: - Tests four separation conditions between rectangles - Returns false if any separation condition is true - Indicates collision when no separation exists - Uses negation logic for efficient intersection testing

3. Implement laser firing system

Here’s where things get exciting! Let’s set up the laser firing system.

Message constants

First, let’s define some message types so different parts of our game can talk to each other: These constants provide: - Standardizes event names throughout the application - Enables consistent communication between game systems - Prevents typos in event handler registration

Keyboard input handling

Add space key detection to your key event listener: This input handler: - Detects space key presses using keyCode 32 - Emits a standardized event message - Enables decoupled firing logic

Event listener setup

Register firing behavior in your initGame() function: This event listener: - Responds to space key events - Checks firing cooldown status - Triggers laser creation when allowed Add collision handling for laser-enemy interactions: This collision handler: - Receives collision event data with both objects - Marks both objects for removal - Ensures proper cleanup after collision

4. Create the Laser class

Implement a laser projectile that moves upward and manages its own lifecycle: This class implementation: - Extends GameObject to inherit basic functionality - Sets appropriate dimensions for the laser sprite - Creates automatic upward movement using setInterval() - Handles self-destruction when reaching screen top - Manages its own animation timing and cleanup

5. Implement collision detection system

Create a comprehensive collision detection function: This collision system: - Filters game objects by type for efficient testing - Tests every laser against every enemy for intersections - Emits collision events when intersections are detected - Cleans up destroyed objects after collision processing

6. Add cooldown system to Hero class

Enhance the Hero class with firing mechanics and rate limiting: Understanding the enhanced Hero class: - Initializes cooldown timer at zero (ready to fire) - Creates laser objects positioned above the hero ship - Sets cooldown period to prevent rapid firing - Decrements cooldown timer using interval-based updates - Provides firing status check through canFire() method

🔄 Pedagogical Check-in

Complete System Understanding: Verify your mastery of the collision system: - ✅ How do rectangle boundaries enable efficient collision detection? - ✅ Why is object lifecycle management critical for game stability? - ✅ How does the cooldown system prevent performance issues? - ✅ What role does event-driven architecture play in collision handling? System Integration: Your collision detection demonstrates: - Mathematical Precision: Rectangle intersection algorithms - Performance Optimization: Efficient collision testing patterns - Memory Management: Safe object creation and destruction - Event Coordination: Decoupled system communication - Real-time Processing: Frame-based update cycles Professional Patterns: You’ve implemented: - Separation of Concerns: Physics, rendering, and input separated - Object-Oriented Design: Inheritance and polymorphism - State Management: Object lifecycle and game state tracking - Performance Optimization: Efficient algorithms for real-time use

Testing your implementation

Your space game now features complete collision detection and combat mechanics. 🚀 Test these new capabilities: - Navigate with arrow keys to verify movement controls - Fire lasers with the spacebar - notice how the cooldown prevents spam-clicking - Observe collisions when lasers hit enemies, triggering removal - Verify cleanup as destroyed objects disappear from the game You’ve successfully implemented a collision detection system using the same mathematical principles that guide spacecraft navigation and robotics.

⚡ What You Can Do in the Next 5 Minutes

journey
    title Your Collision Detection Journey
    section Physics Foundation
      Understand rectangles: 3: Student
      Learn intersection math: 4: Student
      Grasp coordinate systems: 4: Student
    section Game Mechanics
      Implement laser firing: 4: Student
      Add object lifecycle: 5: Student
      Create collision rules: 5: Student
    section System Integration
      Build collision detection: 5: Student
      Optimize performance: 5: Student
      Test interaction systems: 5: Student
Example:

Follow the lesson from Microsoft Web-Dev-For-Beginners course

Tags: web,development