Chapter 6 Quiz: The Core Loop
Multiple Choice
1. Which of the following best describes a core loop?
a) The main storyline of a game from beginning to end
b) The smallest repeating cycle of player action where the output of one cycle feeds the input of the next
c) The programming loop that runs the game engine at 60 frames per second
d) The marketing cycle of announce, release, patch, and update
2. In Diablo's core loop (kill --> loot --> equip --> kill stronger), what makes the loop self-sustaining rather than linear?
a) The game's dark fantasy aesthetic
b) The multiplayer component
c) Escalation --- equipping better gear enables fighting harder enemies that drop even better gear
d) The auction house
3. The "thirty-second test" for evaluating a core loop asks:
a) Whether the game's tutorial can be completed in thirty seconds
b) What cycle the player repeats in a typical thirty-second slice of gameplay
c) Whether the game loads in under thirty seconds
d) How many inputs the player makes in thirty seconds
4. A "Dead End" loop failure occurs when:
a) The game has a boss that is too difficult to defeat
b) The loop's output does not feed back into its input, leaving the player with no reason to continue
c) The game runs out of content
d) The player character dies permanently
5. Which of the following is the correct ordering of nested loop levels from smallest to largest?
a) Core loop, micro loop, meta loop
b) Meta loop, core loop, micro loop
c) Micro loop, core loop, meta loop
d) Core loop, meta loop, micro loop
6. In the context of core loop design, "escalation" refers to:
a) Making the game progressively more difficult until the player gives up
b) The change that occurs between cycles so that each repetition of the loop differs from the last
c) Adding new features in post-launch updates
d) Increasing the game's price during sales events
7. Stardew Valley's farming loop (plant --> tend --> harvest --> sell --> buy --> plant) is best described as which interlocking loop pattern?
a) Parallel loops --- all loops run independently
b) Sequential loops --- loops unlock in order
c) Hub and spoke --- the farming loop feeds all other loops through its currency output
d) Flat loops --- all loops produce the same reward
8. A "Parasitic Loop" failure occurs when:
a) The game has a bug that crashes the application
b) The optimal strategy and the fun strategy diverge, and players choose the boring but efficient path
c) The game is too short
d) Two players exploit the same resource
9. When designing a core loop, the chapter recommends starting with:
a) The narrative premise
b) The visual aesthetic
c) The verb --- the specific action the player performs
d) The reward system
10. Which Self-Determination Theory need does the micro loop (moment-to-moment, 3-30 seconds) most directly serve?
a) Autonomy
b) Competence
c) Relatedness
d) Achievement
11. Civilization's "one more turn" compulsion is a result of:
a) The game's aggressive monetization strategy
b) Multiple payoffs being staggered so there is always something about to complete
c) The game forcing the player to finish before saving
d) Competitive multiplayer pressure
12. A "Flat Loop" failure is characterized by:
a) A loop that repeats without escalation --- same difficulty, same rewards, no change
b) A loop that is too fast
c) A loop that spans too many systems
d) A loop that only works in 2D games
13. In the GameManager.gd script presented in the chapter, what happens when apply_upgrade() is called successfully?
a) The game saves to disk
b) Resources are spent, player power increases, and the phase transitions back to EXPLORE
c) A new level is loaded
d) The enemy count is reset to zero
14. The chapter argues that the most dangerous loop failure is when:
a) The loop is too short
b) The loop has too many phases
c) The optimal strategy and the fun strategy diverge
d) The game has no meta loop
15. Which of the following games does the chapter cite as an example of a game whose core loop operates on curiosity-driven exploration?
a) Diablo III
b) Candy Crush
c) Breath of the Wild
d) Tetris
Short Answer
16. Explain the difference between the micro loop, the core loop, and the meta loop. For each level, provide the approximate timescale and one specific example from a game discussed in the chapter. Then explain how each level feeds the one above it.
17. The chapter identifies five common core loop failure patterns. Choose any two and explain them in detail. For each, describe the failure, give one game example (from the chapter or your own experience), and propose one specific design change that would fix the failure without changing the game's core identity.
18. Compare the core loops of Diablo (kill --> loot --> equip --> kill stronger) and Stardew Valley (plant --> tend --> harvest --> sell --> buy --> plant). How do they differ in cycle time, escalation type, and the SDT needs they serve? Despite these differences, what structural principle do both loops share?
19. The chapter describes three patterns for interlocking loops: Hub and Spoke, Parallel, and Sequential. Explain each pattern in one sentence and identify one advantage and one risk for each. Then state which pattern the progressive project (explore --> fight --> collect --> upgrade) is most likely to follow as more systems are added in later chapters, and explain your reasoning.
20. The chapter argues that a core loop must be designed before it is coded, using a six-step process: state the fantasy, identify the verb, map the cycle, verify the feed, add escalation, and define the session arc. Choose a game concept of your own (not one from the chapter) and walk through all six steps, producing a complete core loop design. Include a simple diagram.
Answer Key
1. b) The smallest repeating cycle of player action where the output of one cycle feeds the input of the next. This is the chapter's central definition of a core loop.
2. c) Escalation --- equipping better gear enables fighting harder enemies that drop even better gear. Without escalation, the loop would terminate once the player had adequate gear. Escalation is what turns a linear sequence into a self-sustaining cycle.
3. b) What cycle the player repeats in a typical thirty-second slice of gameplay. The thirty-second test is a diagnostic tool for identifying the core loop: if the thirty-second slice is compelling, the game has a chance; if it is boring, nothing else matters.
4. b) The loop's output does not feed back into its input, leaving the player with no reason to continue. The chapter cites early Destiny (2014) as an example: the loot phase was broken because drops were too rare to sustain the loop.
5. c) Micro loop, core loop, meta loop. The micro loop (3-30 seconds) is the smallest, the core loop (2-30 minutes) structures sessions, and the meta loop (hours to months) drives long-term retention.
6. b) The change that occurs between cycles so that each repetition of the loop differs from the last. Escalation can be power-based, skill-based, complexity-based, narrative-based, or scope-based.
7. c) Hub and spoke --- the farming loop feeds all other loops through its currency output. Farming produces money, and money is the currency that enables the mining loop, relationship loop, combat loop, and crafting loop.
8. b) The optimal strategy and the fun strategy diverge, and players choose the boring but efficient path. The chapter cites Skyrim's exploitation of spell-casting and the alchemy-enchanting loop as examples.
9. c) The verb --- the specific action the player performs. The chapter's three-step process is verb first, feedback second, escalation third. Theme, narrative, and aesthetics come after the loop is designed.
10. b) Competence. Each successful micro-loop action (landing a jump, defeating an enemy, matching tiles) produces an immediate feeling of capability. The core loop serves autonomy (choices within the session), and the meta loop serves relatedness and purpose.
11. b) Multiple payoffs being staggered so there is always something about to complete. At any given turn, the player has a city one turn from finishing a wonder, a unit two turns from reaching a destination, and a technology three turns from completing. There is always a reason not to stop.
12. a) A loop that repeats without escalation --- same difficulty, same rewards, no change. The chapter describes this as the "number go up" trap when escalation is purely numerical without gameplay changes.
13. b) Resources are spent, player power increases, and the phase transitions back to EXPLORE. The apply_upgrade() function checks resource cost, deducts resources, increases player_power, and calls transition_to(Phase.EXPLORE) to close the loop.
14. c) The optimal strategy and the fun strategy diverge. When the fastest path to progress is also the most boring, players will choose efficiency over enjoyment and then blame the designer for a boring game. Aligning optimal and fun strategies is "one of the hardest problems in game design."
15. c) Breath of the Wild. The chapter describes its thirty-second slice as "See something interesting in the distance, move toward it, encounter an obstacle or distraction, solve it or engage it, discover something unexpected."
16. The three nested loop levels are: Micro loop (3-30 seconds): the smallest repeating action, such as one enemy encounter in Dark Souls (approach, read pattern, dodge, attack, evaluate) or one match in Candy Crush (scan, swap, clear). It must feel satisfying every single time. Core loop (2-30 minutes): the cycle that structures a play session, such as one run in Hades (hub, choose weapon, fight through rooms, die, return, spend resources). It provides the rhythm of tension and release. Meta loop (hours to months): the long-arc progression that brings the player back across sessions, such as Hades' permanent upgrades, story progression, and relationship development. Each level feeds the one above: micro loops accumulate into core loops (twenty room encounters compose one Hades run), and core loops accumulate into meta loops (each run produces permanent resources that advance the overarching story and upgrade systems).
17. (Answers will vary. Any two of the five patterns are acceptable.) For example: Dead End occurs when the loop's output does not connect to its input, breaking the cycle. Early Destiny exemplified this: the loot phase was broken because drop rates were so low that most runs produced no meaningful reward, causing players to lose motivation to repeat the loop. Fix: implement a pity timer or guaranteed minimum loot quality that ensures every run produces at least one item worth evaluating, restoring the output-to-input connection. Bottleneck occurs when one phase of the loop is disproportionately slow, killing the loop's rhythm. Diablo III's launch-era auction house exemplified this: instead of equipping drops directly, players spent long periods browsing an economic interface, breaking the demon-slaying fantasy. Fix: remove the external market and make drops equippable immediately (which Blizzard eventually did), eliminating the slow phase and restoring the loop's intended pacing.
18. Diablo's loop has a cycle time of roughly 1-5 minutes (one dungeon floor or encounter), uses power escalation (bigger numbers, harder enemies, rarer loot), and primarily serves competence (the player feels their power increasing). Stardew Valley's loop has a cycle time of 10-20 minutes (one in-game day), uses scope and complexity escalation (new crops, new areas, new systems), and primarily serves autonomy (the player chooses how to spend each day) and relatedness (the farming loop feeds the relationship loop). Despite these differences, both loops share the same structural principle: the output of each cycle feeds the input of the next. In Diablo, loot enables harder fights that produce better loot. In Stardew Valley, harvests produce money that buys better seeds that produce larger harvests. Both are self-sustaining spirals, not flat circles.
19. Hub and Spoke: One primary loop feeds all others (e.g., Stardew Valley's farming loop produces currency for all other loops). Advantage: clear hierarchy and player orientation. Risk: if the hub loop becomes tedious, the entire game collapses. Parallel: Multiple loops coexist independently (e.g., Breath of the Wild's exploration, combat, cooking, and shrine loops). Advantage: high player autonomy. Risk: potential directionlessness. Sequential: Loops unlock in order as the game progresses (e.g., Factorio's progression from manual mining to full automation). Advantage: gradual complexity introduction. Risk: later loops may be less enjoyable than earlier ones. The progressive project will most likely follow the Hub and Spoke pattern, with the explore-fight-collect-upgrade loop as the hub and later systems (combat depth, narrative, economy, progression) branching from it via shared resource currencies and progression gates.
20. (Answers will vary. Full credit requires all six steps completed and a diagram drawn. The loop must be self-sustaining: the output of each phase must clearly feed the input of the next. Escalation must change the gameplay experience, not just the numbers. The session arc must specify a cycle time and a natural stopping point.)