Chapter 9 Quiz: Emergence


Multiple Choice

1. Emergence in game design is best defined as:

a) Randomly generated content that changes each playthrough
b) Complex behavior arising from the interaction of simple rules, producing outcomes the designer did not explicitly create
c) A scripting technique where designers write branching dialogue trees
d) The process of gradually revealing game mechanics to the player


2. Conway's Game of Life demonstrates emergence because:

a) It uses advanced artificial intelligence to simulate living organisms
b) Its four simple rules produce infinite complexity, including self-replicating patterns, without any intelligence or planning beyond the initial cell placement
c) It generates random patterns that are different every time
d) It was designed with hundreds of rules that interact in predictable ways


3. The design spectrum described in the chapter runs between which two poles?

a) Easy and difficult
b) 2D and 3D
c) Scripted (authored, controlled) and emergent (systemic, surprising)
d) Single-player and multiplayer


4. Which of the following best describes the interaction matrix?

a) A scoring rubric for evaluating game difficulty
b) A design tool that maps what happens when any two game systems meet, with each filled cell representing a potential source of emergence
c) A matrix of player skill levels used for matchmaking
d) A grid of all possible button inputs and their corresponding actions


5. According to the chapter, why does Minecraft produce such deep emergence despite having relatively simple mechanics?

a) Because the game uses procedural generation to create infinite worlds
b) Because blocks serve as both terrain and tool --- every block is simultaneously landscape and resource, making the entire world an interactive system
c) Because the game has hundreds of hidden crafting recipes
d) Because the multiplayer server code handles all the complexity


6. The chapter states that emergence requires constraints. Why?

a) Constraints make games harder, which makes them more fun
b) Without rules limiting what components can do, there is no pressure for components to interact in interesting ways --- unlimited capability produces noise, not complexity
c) Players prefer games with fewer options because they are less confusing
d) Constraints reduce development time and budget


7. Breath of the Wild's chemistry engine is based on two design principles. They are:

a) Graphics quality and frame rate optimization
b) Multiplicative design (few elements combining into many interactions) and consistent rules (same rule applies everywhere, no special cases)
c) Procedural generation and random loot distribution
d) Difficulty scaling and player progression


8. Emergent narrative differs from authored narrative in that:

a) Emergent narrative is always higher quality than authored narrative
b) Emergent narrative arises from simulated entities interacting according to their rules, producing stories that no writer scripted
c) Emergent narrative requires professional voice actors
d) Emergent narrative is only possible in multiplayer games


9. In the fire spread GDScript example, what makes the system emergent rather than scripted?

a) The fire is triggered by a random number generator
b) Each tile has the same simple rule (spread to nearby flammable tiles), and the complex spreading pattern emerges from the spatial arrangement of tiles rather than explicit scripting of the pattern
c) The designer manually placed each fire particle
d) The fire follows a predetermined path coded into the level layout


10. The chapter identifies three categories of emergent problems. Which of the following is NOT one of them?

a) Exploits (unintended advantages from system interaction abuse)
b) Degenerate strategies (optimal strategies that are boring)
c) Input lag (delay between player action and game response)
d) Emergent chaos (small perturbations cascading into catastrophic outcomes)


11. The Dwarf Fortress "tantrum spiral" is cited as an example of:

a) Excellent AI programming that creates realistic social dynamics
b) Emergent chaos where interconnected systems (emotion, social networks, combat) cascade small perturbations into catastrophic outcomes
c) A scripted narrative event designed by Tarn Adams
d) A bug that the developers have since fixed


12. According to the chapter's design rules, objects in an emergent system should be defined by:

a) Their specific interactions with other named objects ("this key opens that door")
b) Properties (flammable, heavy, conductive) that allow any object with the right properties to automatically participate in any relevant system
c) Their visual appearance and art style
d) Their position in the game's narrative


13. The chapter argues that feedback is essential for emergence because:

a) Without feedback effects, the game runs slower
b) Emergent behavior the player cannot observe is invisible, meaning they cannot learn the rules, predict outcomes, or use the systems creatively
c) Feedback makes the game look more professional
d) The Godot engine requires feedback nodes for physics to work


14. Dark Souls' message and invasion systems are cited as examples of:

a) Scripted narrative design
b) Emergent multiplayer --- systems where other players become the source of unpredictable, unscripted interactions
c) AI-driven NPC behavior
d) Procedural level generation


15. When testing emergent systems, why is exhaustive testing impossible?

a) Because emergent games have too many levels to play through
b) Because the combination space of system interactions grows exponentially with the number of systems and objects, making it impossible to test every possible sequence
c) Because players are not available for testing
d) Because game engines have memory limitations


16. The chapter recommends that a first emergent game should have:

a) As many interacting systems as possible for maximum emergence
b) Three to four interacting systems --- enough for rich interactions without the combinatorial explosion that makes testing impossible
c) Only one system to keep things simple
d) At least ten systems to compete with Breath of the Wild


17. The chapter's design rule "give the player tools, not scripts" means:

a) The player should write their own code
b) Instead of providing specific solutions to problems, provide components with properties that allow the player to invent their own solutions through system interactions
c) The game should not have a tutorial
d) Players should design their own levels


18. Which statement best captures the chapter's conclusion about the relationship between emergence and scripted design?

a) Emergence is always superior to scripted design
b) Scripted design is always superior to emergence
c) They are complementary tools --- scripted design provides control, pacing, and emotional precision; emergence provides surprise, player agency, and replayability
d) A game should use either one or the other, never both


Short Answer

19. The chapter describes a scenario where a player knocks a torch off a wall, the fire spreads to grass, which ignites a wooden crate containing explosives, and the explosion breaks a weak wall. Explain why this sequence is emergent rather than scripted. Identify the individual rules that produced this sequence and explain why the designer did not need to write specific code for "torch causes wall to break." Then discuss one risk of this kind of emergence --- a specific unintended outcome this same system could produce that would be negative for the player experience.


20. Compare the emergence approaches of Minecraft and Dwarf Fortress. Both produce extraordinary emergent behavior from simple rules, but they do so through fundamentally different mechanisms. Explain what each game simulates, how its emergence manifests, what kind of player experiences it produces, and what tradeoffs each approach makes. Which approach is more applicable to the kind of game you are building in your progressive project, and why?


Answer Key

1. b) Complex behavior arising from the interaction of simple rules, producing outcomes the designer did not explicitly create. The chapter emphasizes that emergence is not randomness (which is a slot machine) but deterministic complexity from component interaction --- given the same starting conditions, the same outcomes result.

2. b) Its four simple rules produce infinite complexity, including self-replicating patterns, without any intelligence or planning beyond the initial cell placement. The chapter uses Conway's Game of Life as the purest illustration of emergence: four rules, no intelligence, no design beyond initial placement, and yet gliders, oscillators, guns, and even self-replicating patterns emerge.

3. c) Scripted (authored, controlled) and emergent (systemic, surprising). The chapter describes scripted games (The Last of Us, Uncharted) as designer-as-filmmaker experiences and emergent games (Minecraft, Dwarf Fortress) as designer-as-world-builder experiences, with most games sitting between the poles.

4. b) A design tool that maps what happens when any two game systems meet, with each filled cell representing a potential source of emergence. The chapter presents a detailed interaction matrix for Fire, Water, Wind, Physics, AI, and Terrain, and recommends aiming for 50-70% cell coverage.

5. b) Because blocks serve as both terrain and tool --- every block is simultaneously landscape and resource, making the entire world an interactive system. The chapter identifies this dual role as the key to Minecraft's emergence: "Every interaction with the environment is simultaneously destruction and creation."

6. b) Without rules limiting what components can do, there is no pressure for components to interact in interesting ways --- unlimited capability produces noise, not complexity. The chapter uses chess as the example: each piece's strict, limited movement rule forces pieces into relationships, and it is those relationships that produce the game's depth.

7. b) Multiplicative design (few elements combining into many interactions) and consistent rules (same rule applies everywhere, no special cases). The chapter cites the GDC 2017 presentation by Fujibayashi and Dohta, explaining that universal rules (fire ignites anything with the flammable property, not just specific objects) are the foundation of genuine emergence.

8. b) Emergent narrative arises from simulated entities interacting according to their rules, producing stories that no writer scripted. The chapter cites Dwarf Fortress, Rimworld, Crusader Kings III, and The Sims as examples, and distinguishes emergent narrative from authored narrative: the former provides surprise and ownership, the latter provides structure and emotional precision.

9. b) Each tile has the same simple rule (spread to nearby flammable tiles), and the complex spreading pattern emerges from the spatial arrangement of tiles rather than explicit scripting of the pattern. The fire does not follow a designed path. It follows the topology of flammable objects, stopping at gaps and bridging through connected materials.

10. c) Input lag (delay between player action and game response). Input lag is a feedback/control issue discussed in Chapter 8, not an emergence problem. The three categories the chapter identifies are exploits, degenerate strategies, and emergent chaos.

11. b) Emergent chaos where interconnected systems (emotion, social networks, combat) cascade small perturbations into catastrophic outcomes. The chapter describes the spiral: one dwarf's unhappiness causes a fight, the fight injures bystanders, bystanders' friends become upset, and the cascade escalates until the entire fortress is in conflict.

12. b) Properties (flammable, heavy, conductive) that allow any object with the right properties to automatically participate in any relevant system. The chapter's first design rule: "Define by properties, not by interactions." Properties compose; explicit interactions do not. Adding a new system (electricity) automatically includes every object with the "conductive" property.

13. b) Emergent behavior the player cannot observe is invisible, meaning they cannot learn the rules, predict outcomes, or use the systems creatively. The chapter states: "Emergence without feedback is a hidden system. Hidden systems are wasted systems." The interaction matrix defines the systems; the feedback layer teaches them to the player.

14. b) Emergent multiplayer --- systems where other players become the source of unpredictable, unscripted interactions. Messages create asynchronous communication (teaching, warning, trolling). Invasions create emergent cat-and-mouse encounters. Both produce unscripted moments through player-to-player system interaction.

15. b) Because the combination space of system interactions grows exponentially with the number of systems and objects, making it impossible to test every possible sequence. The chapter provides the math: 10 systems with 5 states each produce ~10 million combinations. At 30 seconds per test, exhaustive testing takes about 10 years.

16. b) Three to four interacting systems --- enough for rich interactions without the combinatorial explosion that makes testing impossible. The chapter advises starting with fire, physics, AI, and one material property (flammable/conductive/breakable) to produce enough emergence for a rich experience while keeping the testing space manageable.

17. b) Instead of providing specific solutions to problems, provide components with properties that allow the player to invent their own solutions through system interactions. The chapter contrasts placing a "bridge button" (script) with placing wood, wind, and ice and letting the player discover they can freeze water, stack planks, or glide with wind (tools).

18. c) They are complementary tools --- scripted design provides control, pacing, and emotional precision; emergence provides surprise, player agency, and replayability. The chapter explicitly states that emergence is not "better" than scripted design: "A tightly scripted narrative game like What Remains of Edith Finch achieves things emergence never could."

19. The sequence is emergent because the designer wrote four independent rules, not a sequence:

  • Rule 1: Torches produce fire.
  • Rule 2: Fire ignites any object with the "flammable" property.
  • Rule 3: Explosive objects explode when ignited, producing area-of-effect force.
  • Rule 4: Weakened walls break when hit by sufficient force.

No code connects "torch" to "wall." The connection is emergent: the torch's fire output becomes the grass's ignition input, the burning grass's fire output becomes the crate's ignition input, the crate's explosion output becomes the wall's force input. Each system has simple, independent rules. The chain arises from proximity and property matching.

Risk example: The same fire system could spread uncontrollably, burning objects the designer intended the player to use later --- such as burning a key item or destroying a required NPC. The fire does not distinguish between "important" and "unimportant" flammable objects because it operates on properties, not design intent. The designer must either make critical objects non-flammable or ensure the player cannot trigger fire near them without reversibility.

20. Minecraft's emergence comes from material interaction: blocks have physical and chemical properties (flammable, flowable, conductive), and the player manipulates these materials through placement and removal. The emergence manifests as construction and engineering --- players build structures, machines, and systems. The experience is creative, constructive, and architectural. The tradeoff: Minecraft produces little narrative emergence because blocks do not have desires, relationships, or emotions. Stories happen to the player, not to the world.

Dwarf Fortress's emergence comes from entity simulation: dwarves have personalities, relationships, skills, moods, and physical bodies. The emergence manifests as narrative --- stories of love, betrayal, madness, and triumph arise from the simulation. The experience is dramatic, unpredictable, and emotionally resonant. The tradeoff: Dwarf Fortress's systems are so complex and interconnected that they frequently produce incoherent, broken, or frustrating outcomes (tantrum spirals, pathfinding failures). The designer sacrifices control and stability for depth.

For the progressive project (2D action-adventure), Minecraft's material-interaction approach is more applicable. The game has physical objects, terrain, and environmental systems (fire, physics) that interact through properties. The player experiences emergence through creative problem-solving and environmental manipulation rather than through narrative simulation. The simpler scope of material interaction is also more implementable within the project's timeline.