Skip to content
Techniques & Technology

Destructible Terrain

Worms' secret weapon

The technique of modifying bitmap landscapes in real-time, famously used in Worms to create satisfying explosions that reshape the battlefield.

Amigacross-platform graphicsgameplaywormsbitmap

Overview

Destructible terrain is a technique where the game landscape is stored as a bitmap that can be modified in real-time—explosions carve holes, weapons reshape ground, and the battlefield evolves through play. Popularised by Lemmings and perfected by Worms, this technique creates satisfying visual feedback and emergent gameplay.

Fast Facts

  • Famous use: Worms (1995)
  • Earlier use: Scorched Earth (1991)
  • Method: Bitmap manipulation
  • Appeal: Satisfying destruction
  • Implementation: Circle fill operations

How It Works

StepAction
1Store terrain as bitmap
2Detect explosion location
3Fill circle with background
4Update collision data
5Redraw affected area

The Worms Implementation

Andy Davidson’s approach:

  • Terrain stored as bitmap
  • Explosions draw circles in “empty” colour
  • Collision detection reads pixel colours
  • Worms can fall through new holes
  • Water fills lowest areas

Why It’s Satisfying

Destructible terrain provides:

ElementEffect
Visual feedbackSee damage happen
Emergent gameplayCreate new paths
StrategyTerrain as resource
VarietyNo two games same

Technical Requirements

Implementation needs:

  • Bitmap graphics mode
  • Fast fill routines
  • Collision detection
  • Efficient redraw
  • Memory for terrain

Blitz Basic Efficiency

In compiled BASIC:

' Pseudo-code
Circle X, Y, Radius, BackgroundColour
' Blitter fills circle fast
' Collision checks pixel colour

Earlier Examples

GameYearApproach
Scorched Earth1991Artillery classic
Lemmings1991Digging, bashing
Worms1995Perfected formula

Design Implications

Destructible terrain creates:

  • Tactical positioning matters
  • Defensive play viable
  • Comeback mechanics
  • Match evolution

Legacy

Destructible terrain became a genre staple—from artillery games to platformers to modern shooters. The technique proved that simple bitmap operations could create deep, emergent gameplay that kept players engaged through unpredictability.

See Also