Files
2nd/10_Wiki/Topic_General/Game_Design/BioShock-Critique.md
T
Antigravity Agent 9148c358d0 docs(10_Wiki): 위키 전체 재구성 — Topic_* 폴더를 4개 카테고리로 통합 + 대규모 중복 제거
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를
Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류.

- 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로
  자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거,
  동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거.
- 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming,
  Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business,
  Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로,
  나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는
  title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백).
  원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지.
- 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서.
- 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는
  지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지.
- Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경.
- 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
2026-07-05 00:33:48 +09:00

172 lines
6.3 KiB
Markdown

---
id: wiki-2026-0508-bioshock-critique
title: BioShock Critique
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [BioShock Analysis, Rapture Critique, Ken Levine BioShock]
duplicate_of: none
source_trust_level: A
confidence_score: 0.9
verification_status: applied
tags: [game-design, narrative, immersive-sim, critique]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: design-analysis
framework: immersive-sim
---
# BioShock Critique
## 매 한 줄
> **"매 'Would you kindly?' 매 player agency 의 illusion 을 해부한다"**. 매 2007 Ken Levine 의 BioShock 은 매 Rapture 의 Objectivist dystopia 매 setting 으로 매 ludonarrative dissonance, 매 choice illusion, 매 environmental storytelling 의 매 watershed 를 매 정의했다. 매 2026 perspective 에서는 매 후속 immersive sim (Prey 2017, System Shock Remake 2023, Atomic Heart 2023) 의 매 foundation.
## 매 핵심
### 매 Ludonarrative Dissonance (Hocking 2007)
- 매 narrative 는 매 self-interest critique (Ryan/Atlas 의 Objectivism) 매 제시.
- 매 mechanics 는 매 player 에게 매 ADAM hoarding, Little Sister harvesting 매 강요.
- 매 결과: 매 story 가 매 비판하는 매 행동을 매 game 이 매 보상.
### 매 "Would You Kindly" Twist
- 매 player 의 매 entire agency 가 매 mind-controlled 였다는 매 폭로.
- 매 medium-specific critique: 매 "press X to advance" 매 자체가 매 trigger phrase.
- 매 Andrew Ryan 의 매 "A man chooses, a slave obeys" — 매 player 는 매 slave.
### 매 Environmental Storytelling
- 매 audio diaries (Sander Cohen, Sofia Lamb).
- 매 corpse positioning, 매 graffiti, 매 Plasmid advertising.
- 매 Rapture 의 매 1960 art deco aesthetic 매 ideology 의 매 visual manifestation.
### 매 응용
1. Spec Ops: The Line (2012) — 매 ludonarrative critique 의 매 successor.
2. The Stanley Parable (2013) — 매 player agency 의 매 meta-deconstruction.
3. Disco Elysium (2019) — 매 ideology-as-mechanic 매 계승.
## 💻 패턴
### Pattern 1: Trigger Phrase as Agency Reveal
```python
# Pseudocode for narrative trigger system
class NarrativeAgent:
def __init__(self, trigger_phrase: str):
self.trigger = trigger_phrase # "Would you kindly"
self.compelled_actions = []
def issue_command(self, npc_dialogue: str, action: str):
if self.trigger in npc_dialogue:
# Player believes they chose; actually compelled
self.compelled_actions.append(action)
return ForcedAction(action, hidden=True)
return PlayerChoice(action)
def reveal(self):
# Andrew Ryan boss room
return f"You performed {len(self.compelled_actions)} compelled actions"
```
### Pattern 2: Moral Choice w/ Mechanical Weight
```typescript
// Little Sister harvest vs rescue
interface MoralChoice {
action: 'harvest' | 'rescue';
immediate_adam: number;
delayed_reward: Gift | null;
ending_flag: 'good' | 'bad' | 'neutral';
}
const harvestSister: MoralChoice = {
action: 'harvest',
immediate_adam: 160,
delayed_reward: null,
ending_flag: 'bad',
};
const rescueSister: MoralChoice = {
action: 'rescue',
immediate_adam: 80,
delayed_reward: { adam: 200, plasmid: 'rare' }, // Tenenbaum gift
ending_flag: 'good',
};
// Net ADAM ~equal — undermines "sacrifice" narrative
```
### Pattern 3: Audio Diary Discovery
```rust
struct AudioDiary {
speaker: String,
location: WorldPosition,
timestamp_in_lore: chrono::NaiveDate,
triggers_on_pickup: bool,
}
impl AudioDiary {
fn play(&self, player: &mut Player) {
// Non-blocking — player keeps moving
player.audio_queue.push(self.clone());
// Lore delivered via ambient consumption, not cutscene
}
}
```
### Pattern 4: Plasmid Combo System
```csharp
// Electro Bolt → water → multi-target stun
public class ElementalCombo {
public void OnHit(Target t, Plasmid p) {
if (t.IsWet && p == Plasmid.ElectroBolt) {
foreach (var nearby in t.GetWetNeighbors())
nearby.Stun(duration: 3.0f);
}
if (t.IsOiled && p == Plasmid.Incinerate)
SpreadFire(t.position, radius: 5.0f);
}
}
```
### Pattern 5: Vita-Chamber Death Loop
```python
# Respawn at nearest Vita-Chamber w/ enemy HP preserved
def on_death(player, world):
chamber = world.nearest_vita_chamber(player.last_pos)
player.respawn(chamber.position, hp=50)
# Enemies do NOT heal — attrition strategy possible
# Critique: removes stakes; can punch Big Daddy to death
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| 매 narrative theme 매 reinforce 하려면 | 매 mechanics 가 매 theme 에 매 align — 매 dissonance 회피 |
| 매 player agency 매 critique 하려면 | 매 hidden compulsion + 매 reveal moment (BioShock) |
| 매 setting depth 가 필요하면 | 매 audio diary + environmental storytelling (no cutscene dump) |
| 매 moral choice 매 weight 부여 | 매 mechanical asymmetry — 매 "good" path 가 매 충분히 매 rewarding |
**기본값**: 매 mechanic-narrative alignment 우선, 매 dissonance 는 매 의도된 critique 일 때만.
## 🔗 Graph
- 부모: [[Immersive-Sim-Genre]] · [[Ludo-narrative Dissonance|Ludonarrative-Dissonance]]
- Adjacent: [[Environmental-Storytelling]]
## 🤖 LLM 활용
**언제**: 매 narrative-mechanic alignment 분석, 매 immersive sim 매 design pattern reference, 매 player agency 매 deconstruction 학습.
**언제 X**: 매 pure gameplay loop 설계 (매 narrative weight 가 매 secondary 인 경우).
## ❌ 안티패턴
- **Tacked-on morality**: 매 binary choice 가 매 mechanical impact 없음 (매 Mass Effect Paragon/Renegade 후기).
- **Cutscene lore dump**: 매 environmental storytelling 회피하고 매 explicit exposition 의존.
- **Vita-Chamber removes stakes**: 매 BioShock 자체의 매 결함 — 매 death penalty 부재.
- **Forced "good ending" gating**: 매 100% rescue 만 매 good ending 매 허용 — 매 ambiguity 제거.
## 🧪 검증 / 중복
- Verified (Hocking 2007 ludonarrative essay, Levine GDC talks, Errant Signal critique).
- 신뢰도 A.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — BioShock 의 ludonarrative dissonance 와 trigger-phrase agency reveal 분석 |