Editing
Narrative vs. Gameplay (Ludonarrative)
Jump to navigation
Jump to search
Warning:
You are not logged in. Your IP address will be publicly visible if you make any edits. If you
log in
or
create an account
, your edits will be attributed to your username, along with other benefits.
Anti-spam check. Do
not
fill this in!
<div style="background-color: #4B0082; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> {{BloomIntro}} Narrative vs. Gameplay (Ludonarrative) is the "Study of the Conflict"βthe investigation of the "Tension" between the "Story" (The Narrative) and the "Actions" (The Ludology) in games. While "Movies" (see Article 103) are "Watched," **Games** are "Played." This field explores how "Meaning" is "Co-created" by the "Writer" and the "Player." From "Ludonarrative Dissonance" (The 'Clash') to "Environmental Storytelling" and "Branching Narratives," this field explores the "Future of Drama." It is the science of "Interactive Storytelling," explaining why "Choice" is the "Most Powerful Tool" in the writer's arsenalβand how "Systems" (see Article 602) can "Tell a Story" without "Words." </div> __TOC__ <div style="background-color: #000080; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Remembering</span> == * '''Ludology''' β The "Study of Games" as "Systems" of "Rules" and "Mechanics." * '''Narratology''' β The "Study of Stories" and their "Structure" (Borrowed from 'Literature' and 'Cinema'). * '''Ludonarrative Dissonance''' β A term coined by Clint Hocking to describe a "Conflict" between a game's "Story" and its "Gameplay" (e.g. 'A hero who saves the world in cutscenes but loots corpses in gameplay'). * '''Ludonarrative Harmony''' β When "Gameplay" and "Story" "Support" each other (e.g. 'In a survival game, you feel hungry in the story and must find food in the mechanics'). * '''Environmental Storytelling''' β "Telling a Story" through the "Design" of the "World" (e.g., 'A skeleton holding a letter,' 'Blood on a wall,' 'A messy room') rather than through 'Dialogue.' * '''Emergent Narrative''' β A "Story" that "Happens" during play that was "Not Written" by a designer (e.g., 'The story of how you barely escaped a dragon with 1 HP'). * '''Branching Narrative''' β A "Story Structure" where the player makes "Choices" that "Change" the "Ending" or the "Path." * '''Cutscene''' (Cinematic) β A "Non-Interactive" sequence in a game used to "Advance the Plot" (The 'Movies' inside the game). * '''Procedural Narrative''' β A "Story" "Generated by an Algorithm" (see Article 156) based on player actions. * '''Flavor Text''' β "Short Descriptions" on items or in menus that "Add Lore" without "Changing Mechanics." </div> <div style="background-color: #006400; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Understanding</span> == The narrative/gameplay relationship is understood through '''Agency''' and '''Cohesion'''. '''1. The "Power" of the Player (Agency)''': Games are the only art form where you can **"Fail."** * In a "Book," the "Hero" always makes the "Decision" the "Writer" wants. * In a **Game**, the "Player" is the **"Co-Author."** * If the player "Chooses" to "Save the Villain," the "Writer" must "React." * This "Agency" (see Article 602) is what makes game stories "Deeply Personal." '''2. The "Dissonance" of the Sword (Conflict)''': Why do we "Stop Believing" in the game? * **Ludonarrative Dissonance** happens when the "Rules" don't match the "Identity." * If the "Story" says "You are a peaceful monk," but the "Mechanic" says "Press X to decapitate," the **"Magic Circle"** (see Article 601) is "Broken." * It feels **"Fake."** * Modern design seeks to **"Integrate"** the "Action" into the "Character." '''3. The "Silent" Storyteller (Environment)''': Show, don't tell. * **Environmental Storytelling** uses the "Eye" of the player. * Instead of a "Long Dialogue," the player "Finds" a "Broken Toy" in a "Ruined House." * The **"Narrative"** is "Built" in the **"Player's Mind."** * This is the "Purest" form of "Game Narrative" because it "Requires" "Exploration" and "Interactivity." ''' 'BioShock' (2007)''' β The "Masterclass" of Ludonarrative. It "Integrated" the "Mechanics of Choice" into a "Philosophical Story" about "Free Will." It proved that a "Game" could "Comment on its own Nature" while "Telling a Great Tale." </div> <div style="background-color: #8B0000; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Applying</span> == '''Modeling 'The Narrative Branch' (Simulating a 'Choice' System):''' <syntaxhighlight lang="python"> def handle_player_choice(choice_type): """ Shows how 'Narrative' branches. """ game_state = {"WorldStatus": "Stable", "PlayerMorality": 0} if choice_type == "Save the Town": game_state["WorldStatus"] = "Prosperous" game_state["PlayerMorality"] += 10 return f"NARRATIVE: You are a Hero. {game_state}" elif choice_type == "Take the Gold": game_state["WorldStatus"] = "Decaying" game_state["PlayerMorality"] -= 10 return f"NARRATIVE: You are a Mercenary. {game_state}" else: return "NARRATIVE: The status quo continues." # Case: A player chooses 'The Gold' over 'The Town' print(handle_player_choice("Take the Gold")) </syntaxhighlight> ; Narrative Landmarks : '''The 'Choice' in 'The Walking Dead' (Telltale)''' β A game where "Every Choice" has "Emotional Consequences," "Proving" that "Character" is more important than "Combat." : ''' 'Dark Souls' Lore''' β A "Fragmented Narrative" where the "Story" is "Hidden" in "Item Descriptions" and "Architecture," "Rewarding" the "Active Reader." : '''The 'Stanley Parable' ''' β A "Meta-Narrative" that "Laughs" at "Player Choice" and "Game Tropes," "Revealing" the "Artificiality" of the medium. : ''' 'Journey' ''' β A "Non-Verbal Narrative": a story of "Ascension" told entirely through "Movement," "Visuals," and "Music," "Transcending" language. </div> <div style="background-color: #8B4500; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Analyzing</span> == {| class="wikitable" |+ Story vs. System ! Feature !! Story (Narrative) !! System (Ludology) |- | Driver || "The Writer's Hand" || "The Player's Choice" |- | Medium || "Dialogue / Text / Video" || "Rules / Physics / Input" |- | View of Time || "Fixed / Dramatic" || "Dynamic / Real-Time" |- | Goal || "Emotional Arc" || "Functional Victory" |- | Analogy || A 'Novel' || A 'Sport' |} '''The Concept of "Transmedia Storytelling"''': Analyzing "The Expansion." Modern stories (like 'Star Wars' or 'The Witcher') "Exist" across "Books," "Movies," and "Games." Each medium "Tells" a "Different Part" of the "Whole." The "Game" provides the **"Interactive Depth"** that the "Movie" lacks. We live in an age of **"Total Narrative."** </div> <div style="background-color: #483D8B; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Evaluating</span> == Evaluating Game Narrative: # '''Freedom''': Can a "Story" be "Truly Good" if the "Player" can "Mess it up"? (The 'Artistic Control' vs 'Player Freedom' debate). # '''Cutscenes''': Are "Cutscenes" "Bad Design"? (Should 'Everything' be 'Interactive'?). # '''Ethics''': Does "Choosing" to "Be Evil" in a game "Reflect" the "Player's Real Character"? # '''Impact''': How does "Interactive Empathy" (feeling like you 'are' the character) "Change" how we "Understand" "Social Issues"? </div> <div style="background-color: #2F4F4F; color: #FFFFFF; padding: 20px; border-radius: 8px; margin-bottom: 15px;"> == <span style="color: #FFFFFF;">Creating</span> == Future Frontiers: # '''The 'Infinite' AI-Writer''': An AI that "Generates" "New Dialogue and Quests" in "Real-Time" based on "Everything the Player says," "Ending" the "Repetitive NPC." # '''Neural 'Emotion' Sync''': A "Device" that "Reads your Stress" (see Article 561) and "Changes the Plot" to "Challenge" your "Personal Fears." # '''Global 'Collective' Stories''': A "Game" where **1 Million People** "Make One Decision" that "Changes the Lore" for "Everyone Forever." # '''The 'Dream' Narrative''': Using "Sleep Research" (see Article 126) to "Insert" "Game Stories" into your "Dreams," "Creating" "Total Narrative Immersion." [[Category:Arts]] [[Category:Game Design]] [[Category:Ludology]] [[Category:Literature]] [[Category:Psychology]] [[Category:Philosophy]] </div>
Summary:
Please note that all contributions to BloomWiki may be edited, altered, or removed by other contributors. If you do not want your writing to be edited mercilessly, then do not submit it here.
You are also promising us that you wrote this yourself, or copied it from a public domain or similar free resource (see
BloomWiki:Copyrights
for details).
Do not submit copyrighted work without permission!
Cancel
Editing help
(opens in new window)
Template used on this page:
Template:BloomIntro
(
edit
)
Navigation menu
Personal tools
Not logged in
Talk
Contributions
Create account
Log in
Namespaces
Page
Discussion
English
Views
Read
Edit
View history
More
Search
Navigation
Main page
Recent changes
Random page
Help about MediaWiki
Tools
What links here
Related changes
Special pages
Page information