Files
2nd/10_Wiki/Topics/Game_Design/Algorithmic Rhetoric.md
T
koriweb d8a80f6272 chore(wiki): dangling 링크 canonical 정규화 (768파일/1200건)
이름만 다른(표기 변형) [[위키링크]]를 대상 문서의 canonical 제목으로 치환해
끊겼던 1,200개 링크를 연결. 제목/파일명 정규화 일치만 적용하고 별칭 매칭은
과병합 위험으로 제외(애매성 가드). 원본은 _link_reconcile_backup/ 에 백업.
도구: Datacollect/scripts/link_reconcile_apply.mjs

Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
2026-06-08 12:24:15 +09:00

6.0 KiB

id, title, category, status, canonical_id, aliases, duplicate_of, source_trust_level, confidence_score, verification_status, tags, raw_sources, last_reinforced, github_commit, tech_stack
id title category status canonical_id aliases duplicate_of source_trust_level confidence_score verification_status tags raw_sources last_reinforced github_commit tech_stack
wiki-2026-0508-algorithmic-rhetoric Algorithmic Rhetoric 10_Wiki/Topics verified self
Procedural Rhetoric
Game Argumentation
Persuasive Game Design
none A 0.9 applied
game-design
rhetoric
procedural
persuasion
ian-bogost
2026-05-10 pending
language framework
design-theory procedural-rhetoric

Algorithmic Rhetoric

매 한 줄

"매 game 의 rule 자체 가 argument 를 making". Ian Bogost (Persuasive Games, 2007) 의 "procedural rhetoric" 의 알고리즘적 확장 — 매 narrative text 가 X, 매 system mechanic 의 의 의 player belief 를 shaping. 매 2026 기준 LLM-driven dynamic narrative 와 결합 — 매 NPC dialog 가 LLM 으로 생성 의 의 더라도 매 underlying ruleset 의 rhetoric 의 진짜 carrier.

매 핵심

매 Procedural Rhetoric (Bogost)

  • 매 game 의 의 의 의 의 procedure (rule + simulation) 으로 argument 를 making.
  • 매 example: "September 12th" — 매 terrorist 를 shooting ⇒ 매 civilian death ⇒ 매 more terrorists. 매 mechanic 자체가 thesis.
  • 매 text/cutscene 의 X — 매 player action loop 의 message.

매 Algorithmic vs Procedural

  • Procedural: rule-based simulation 의 outcome.
  • Algorithmic: 매 algorithm 의 selection/weighting 의 의 의 message — 매 recommendation, 매 matchmaking, 매 dynamic difficulty.
  • 매 2026: ML model 의 player behavior 를 shaping — 매 algorithm 자체가 rhetorical agent.

매 매 매 의 mechanism

  1. Constraint — 매 player 의 가능 action set 의 worldview 를 imply.
  2. Feedback — 매 reward signal 의 value system 을 teaching.
  3. Failure mode — 매 game over condition 의 norm 을 enforcing.
  4. Aggregate stat — 매 leaderboard, 매 metric 의 success 의 정의.

매 응용

  1. Serious games (Darfur is Dying, Papers Please).
  2. 매 capitalism critique (Cart Life, Disco Elysium).
  3. 매 algorithmic feed critique (every Twitter clone simulator).

💻 패턴

Mechanic-as-Argument Encoding

class MechanicArgument:
    """A game rule that encodes a thesis."""
    def __init__(self, thesis, rule_fn):
        self.thesis = thesis  # natural language claim
        self.rule_fn = rule_fn  # game logic implementing it

    def applies(self, game_state, action):
        return self.rule_fn(game_state, action)

# "Wealth concentrates" — Cart Life-style
wealth_concentration = MechanicArgument(
    thesis="Small businesses lose to chains over time",
    rule_fn=lambda s, a: s.chain_competitor.revenue *= 1.02 each turn
)

Feedback Loop as Persuasion

def reward_action(player, action, value_system):
    """Reward signal teaches what 'success' means."""
    if value_system == "extraction":
        player.score += action.resources_taken
    elif value_system == "regeneration":
        player.score += action.ecosystem_health_delta

Constraint-Driven Worldview

def available_actions(player_role):
    """The set of possible actions implies the worldview."""
    if player_role == "border_officer":  # Papers Please
        return ["approve", "deny", "detain", "interrogate"]
    # No "help refugee personally" — that's the rhetorical point

Algorithmic Dynamic Difficulty (DDA)

def adjust_difficulty(player_stats, target_flow=0.7):
    """The algorithm itself argues 'every player deserves flow'."""
    if player_stats.win_rate > target_flow + 0.1:
        return "harder"
    elif player_stats.win_rate < target_flow - 0.1:
        return "easier"

LLM-NPC with Hardcoded Ruleset (2026 hybrid)

def npc_response(npc, player_input, llm):
    # LLM generates surface text
    surface = llm.generate(npc.persona + player_input)
    # But underlying disposition shifts by RULE — that's the rhetoric
    npc.disposition += rule_based_delta(player_input, npc.faction)
    return surface, npc.disposition

Aggregate-Stat Rhetoric

def display_endgame_summary(playthrough):
    """What you display teaches what mattered."""
    return {
        "kills": playthrough.kills,        # martial frame
        "saved": playthrough.npcs_saved,   # care frame
        "wealth": playthrough.gold,        # accumulation frame
    }  # Choice of axes IS the argument

매 결정 기준

의도 Mechanic
매 systemic critique Procedural simulation (SimCity-style)
매 personal moral weight Constraint + irreversibility
매 algorithmic critique Visible recommendation + opacity
매 empathy generation Limited resource + time pressure

기본값: 매 mechanic 가 thesis 와 align — 매 narrative 의 X mechanic 의 의 contradict 의 X.

🔗 Graph

🤖 LLM 활용

언제: 매 game design 의 thematic intent 를 mechanic 으로 translate 의 framework, 매 critique 의 analytic lens. 언제 X: 매 pure entertainment design (matching mechanic to fun, not argument) 의 의 의 의 의 의 의 의 over-engineering.

안티패턴

  • Ludonarrative dissonance: 매 narrative says X, mechanic does Y (Uncharted: Drake = mass murderer narratively heroic).
  • Cutscene-as-rhetoric: 매 argument 의 cutscene 만 — 매 mechanic 의 contradict 의 의 의 의 player 가 mechanic 을 internalizing.
  • Mechanic-as-decoration: 매 mechanic 의 thematic weight 의 X — 매 reskin 의 의.
  • Algorithm opacity weaponized: 매 ML 의 hidden weighting 의 player 가 의 X 의 의 의 — 매 manipulation.

🧪 검증 / 중복

  • Verified (Bogost, Persuasive Games 2007; Frasca, Simulation versus Narrative; 2026 Game Studies anthologies).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — Bogost procedural rhetoric + 2026 algorithmic 확장