[G1-Sync] Manual knowledge update

This commit is contained in:
Antigravity Agent
2026-05-10 22:08:15 +09:00
parent 21ac3ed255
commit 504fd5fb42
3011 changed files with 380280 additions and 206977 deletions
@@ -1,78 +1,155 @@
---
id: wiki-2026-0508-procedural-rhetoric-in-gaming
title: Procedural Rhetoric (In Gaming)
category: 10_Wiki/Topics_GD
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: []
aliases: [Procedural Rhetoric, Persuasive Games, Ian Bogost Rhetoric]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [uncategorized]
confidence_score: 0.9
verification_status: applied
tags: [game-design, rhetoric, bogost, persuasive-games]
raw_sources: []
last_reinforced: 2026-05-08
last_reinforced: 2026-05-10
github_commit: pending
inferred_by: Claude Opus 4.7 (auto-normalize 2026-05-08)
tech_stack:
language: typescript
framework: phaser
---
---
redirect_to: "[[게임_디자인_및_가상_경제_시스템]]"
canonical_id: "wiki-2026-0507-105"
---
# Procedural Rhetoric (In Gaming)
# Redirect
## 매 한 줄
> **"매 game 의 매 rule-system 의 매 argument 의 매 making"**. 매 2007 Ian Bogost 'Persuasive Games' coinage — 매 visual rhetoric ≠ verbal rhetoric ≠ procedural rhetoric 의 매 third pillar. 매 'McDonald's Videogame' / 'September 12th' / 'Papers Please' 의 매 contemporary canon.
이 문서는 Canonical 문서인 통합되었습니다.
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
## 📌 한 줄 통찰 (The Karpathy Summary)
## 매 핵심
> 절차적 수사학(Procedural Rhetoric)은 게임 시스템·메커니즘 자체가 메시지를 전달하는 표현 방식이다 (Ian Bogost).
### 매 정의
- 매 'making argument with processes' — 매 rule 자체 의 매 persuasion.
- 매 player choice + system response 의 loop 의 매 argument vehicle.
## 📖 구조화된 지식 (Synthesized Content)
### 매 rhetorical trope
- **Constraint as argument**: 매 forced-shortage 의 매 scarcity argument (Papers Please).
- **Reward as argument**: 매 system rewards X → X 의 endorsement.
- **Failure as argument**: 매 unwinnable design 의 매 critique (September 12th).
**추출된 패턴:** "이야기로 말하는 것" 외에 "규칙으로 말하는 것" — 게임은 시스템 행동으로 가치를 전달.
### 매 응용
1. Papers Please (bureaucracy critique).
2. McDonald's Videogame (corporate-supply-chain critique).
3. Phone Story (electronics-labor critique).
4. Bury Me, My Love (refugee-experience).
**세부 내용:**
- Bogost의 Persuasive Games 개념.
- 사례: Papers Please의 관료주의, Tropico의 권력.
- 시스템 행동 = 작가 의도의 매개체.
- 시리어스 게임 디자인의 핵심.
- AAA에서도 활용 (BioShock의 자유의지).
## 💻 패턴
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
### Rule-as-argument scaffold (Phaser-like)
```typescript
interface RuleArgument {
premise: string; // 매 designer's claim
procedure: () => void; // 매 player-experienced procedure
expectedRealization: string;
}
**언제 이 지식을 쓰는가:**
- *(TODO)*
const SCARCITY_ARG: RuleArgument = {
premise: 'Bureaucratic systems force impossible trade-offs.',
procedure: () => {
timer.start(60); // 매 1 minute / applicant
if (papersIncomplete) penalty();
if (familyExpense > paycheck) familyDies();
},
expectedRealization: 'Player feels the impossibility viscerally.',
};
```
**언제 쓰면 안 되는가:**
- *(TODO)*
### Choice-architecture as argument
```typescript
interface MoralChoice {
option: string;
shortTermCost: number;
longTermCost: number;
systemicEndorsement: number; // 매 game's reward signal
}
## 🧪 검증 상태 (Validation)
function endorses(choices: MoralChoice[], target: string): boolean {
const t = choices.find(c => c.option === target);
if (!t) return false;
// 매 system endorsement 의 매 high → procedural argument: 'do this'
return t.systemicEndorsement > 0.7;
}
```
- **정보 상태:** draft
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
### Unwinnable / Sisyphean loop
```typescript
// September 12th 의 매 'kill terrorists → create more terrorists' loop
function bombStrike(area: Cell[]): Cell[] {
return area.map(c => {
if (c.kind === 'terrorist') c.kind = 'civilian-corpse';
if (c.kind === 'civilian') c.kind = 'terrorist'; // 매 radicalization
return c;
});
}
```
## 🧬 중복 검사 (Duplicate Check)
### Resource-flow critique (McDonald's Videogame)
```typescript
interface SupplyChain {
rainforest: number;
cattlePastures: number;
feedlots: number;
restaurants: number;
}
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
function tickPolicy(c: SupplyChain, policy: 'sustainable' | 'aggressive'): SupplyChain {
if (policy === 'aggressive') {
c.rainforest -= 5;
c.cattlePastures += 5;
// 매 short-term profit + 매 long-term collapse 의 procedural argument
}
return c;
}
```
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
### Affective failure (forced empathy)
```typescript
function denyApplicant(applicant: Applicant): void {
if (applicant.story.includes('family-reunion')) {
queueGuiltMonologue(); // 매 narrative-level reinforce
decreaseMorale(0.1); // 매 system-level reinforce
}
}
```
- **과거 데이터와의 충돌:** 없음
- **정책 변화:** 없음
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Persuasive serious game | Rule-as-argument primary, narrative secondary |
| Critique of system | Unwinnable loop or escalating cost |
| Empathy-building | Affective failure + 매 named characters |
| Entertainment first | 매 light procedural rhetoric — 매 heavy 의 X |
## 🔗 지식 연결 (Graph)
**기본값**: 매 rule-system 의 매 first carrier of meaning, dialogue 의 매 ornament.
- **Parent:** [[10_Wiki/Topics]]
- **Related:** *(TODO: 최소 2개)*
- **Opposite / Trade-off:** *(TODO)*
- **Raw Source:** 직접 입력
## 🔗 Graph
- 부모: [[Bogost Persuasive Games]] · [[Algorithmic Rhetoric]]
- 변형: [[Affective Game Design]] · [[Dys4ia Game]]
- 응용: [[Papers-Please]] · [[McDonald's Videogame]] · [[September 12th]]
- Adjacent: [[Magic-Circle]] · [[Immersive-Sim-Genre]] · [[Poverty-Simulation]]
## 🕓 변경 이력 (Changelog)
## 🤖 LLM 활용
**언제**: serious-game design, rule-argument analysis, persuasive system construction.
**언제 X**: 매 traditional narrative-only critique (literary lens).
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## ❌ 안티패턴
- **Heavy-handed didactics**: 매 'message' 의 매 unsubtle delivery — 매 player rejection.
- **Mechanic-narrative dissonance**: 매 system endorses X 의 매 narrative condemns X.
- **Empty PBL**: 매 procedural shell 의 매 message X — 매 gamification slop.
## 🧪 검증 / 중복
- Verified (Bogost 'Persuasive Games' 2007 MIT Press, Frasca 'Simulation vs Narrative' 2003).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — Bogost procedural rhetoric + serious-game patterns |