Summary

A design pattern in which a goal is defined by learning the layout of a game world, or by locating specific elements within an unknown territory. Exploration goals are inherently open — the player knows that something important exists somewhere, but the exact location or the full nature of what is sought is not known at the outset (Björk & Holopainen 2004, see source-patterns-in-game-design).

Exploration is the primary driver of discovery and novelty in games. It is the formal pattern underlying open-world design, Metroidvania structure, adventure games, and the majority of RPG world traversal.

Implementation

Requirements: Exploration requires non-linear movement — the player must be able to choose direction rather than following a single prescribed path. If the path is fixed, the experience is Traverse (getting from A to B) rather than Exploration (discovering what is out there). The two can overlap: a game can require players to reach a goal while leaving the route open.

World design options:

  • Predetermined map — the game world is fixed; the designer controls exactly what can be discovered and where. Supports Narrative Structure and deliberate Surprises but limits Replayability
  • Procedurally generated map — the game world is created by algorithm or randomness at the start of each session (or as the player moves). Supports Replayability; the designer controls statistical properties but not specific discoveries
  • Player-constructed world — another player or the game master creates the area being explored (e.g. tabletop dungeon-delving). Supports social play and emergent narrative

Populating the exploration space: Good exploration design requires landmarks and incentives distributed through the unknown space:

  • Resources and Resource Generators — the known existence of things worth finding (materials, upgrades, lore) motivates moving into unknown territory; in real-time strategy games, knowing Resource Generators exist is a primary driver
  • Outstanding Features — visually or narratively distinctive elements that reward discovery with aesthetic pleasure
  • Clues and Traces — partial information that guides the player toward a target without revealing it fully; creates a Supporting Goal layer within the Exploration goal
  • Obstacles — elements that deny access and create InaccessibleAreas; these are returned to once the player has the relevant ability (the core Metroidvania loop)
  • Enemies and Deadly Traps — create Optional Goals and increase Tension at specific points; also signal that a reward is nearby
  • Easter Eggs — extra-game rewards for thorough exploration; reinforce the behaviour of looking everywhere

Exploration vs Reconnaissance: These are distinct but related patterns. Exploration involves unknown area boundaries — the player does not know the shape or contents of the territory. Reconnaissance involves moving through known territory to gather current intelligence about dynamic elements (enemy positions). In practice both occur in the same game: the map is explored once (boundaries become known) and then reconnoitred repeatedly (current unit positions remain uncertain). fog-of-war enables both simultaneously.

Exploration and fog-of-war: Fog of War is the spatial implementation of Exploration’s information gap. The two patterns are deeply intertwined: Fog of War creates the condition of unknown territory; Exploration is the goal that emerges from it. A game with Fog of War almost necessarily has Exploration goals; a game with Exploration goals usually benefits from some form of information hiding.

Memorising and Game State Overview: Exploration requires players to either memorise what they have found (cognitive load) or have access to a Game State Overview (map) that records it. Map design is a sub-discipline: what the map shows, when it reveals itself, and how it represents terrain vs contents are all significant decisions. Metroid Dread’s map, which reveals room layout but not item locations, is a specific design position within this space.

Trade-offs

Open explorationGuided exploration
Player agency; sense of discoveryPacing control; reduced disorientation
Higher potential for wonderMore consistent narrative delivery
Replayability if procedurally generatedPredictable once known
Risk of the player missing key contentDesigner can ensure critical content is encountered
Higher cognitive load (memorising)Lower cognitive load

Conflict with Replayability: Exploration goals lose value once the territory is known. Predetermined maps reduce replayability because the sense of discovery cannot be recaptured. Procedural generation addresses this but sacrifices designer control over specific experiences.

Conflict with Narrative Structure: Strong narrative structure requires that the player encounter specific content in a specific order. Exploration gives the player freedom to go anywhere, potentially encountering content out of narrative sequence. Open-world RPGs manage this tension with soft sequencing (level-gated areas, quest markers, narrative nudges) rather than hard gates.

Connection to systemic-depth-elegance: The best exploration design produces systemic depth from relatively simple rules — a coherent set of rules for how the world operates that the player learns to read and exploit. Second-order design applies here: designers create the space; players discover what it contains.

Examples

  • Civilisation series — players begin knowing only their starting area; early exploration is both an economic necessity (find Resources and City locations) and a military intelligence task
  • Metroid / Super Metroid — canonical Metroidvania exploration structure: InaccessibleAreas marked on the map, new abilities unlock previously blocked routes; the entire game world is a single exploration puzzle
  • The Legend of Zelda: Breath of the Wild — open exploration from the beginning of the game; almost no mandatory path; discovery and curiosity are the primary engagement drivers
  • Spelunky — procedurally generated levels; each run is a new exploration problem; the tension between speed (time limit) and thorough exploration is the core design
  • No Man’s Sky — planetary and system exploration at scale; the promise of unique discovery on every new planet; Outstanding Features (structures, fauna, terrain) reward thorough survey
  • Tabletop dungeon-delving (D&D, OSR) — the Game Master-constructed dungeon as unexplored territory; the map the players draw as they play is an Exploration artefact

fog-of-war | level-design | hierarchy-of-goals | second-order-design | open-world | risk-reward | closure-points | meaningful-decisions | systemic-depth-elegance | source-patterns-in-game-design