[G1-Sync] Manual knowledge update
This commit is contained in:
@@ -1,78 +1,134 @@
|
||||
---
|
||||
id: wiki-2026-0508-magic-circle
|
||||
title: Magic Circle
|
||||
category: 10_Wiki/Topics_GD
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: []
|
||||
aliases: [Magic Circle, Huizinga Magic Circle, Game Frame]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.92
|
||||
tags: [uncategorized]
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [game-theory, philosophy, salen-zimmerman, huizinga]
|
||||
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: none
|
||||
---
|
||||
|
||||
---
|
||||
redirect_to: "[[게임_디자인_및_가상_경제_시스템]]"
|
||||
canonical_id: "wiki-2026-0507-105"
|
||||
---
|
||||
# Magic Circle
|
||||
|
||||
# Redirect
|
||||
## 매 한 줄
|
||||
> **"매 game 의 매 voluntary entered 의 매 separate reality"**. 매 1938 Huizinga 'Homo Ludens' coinage → 매 2003 Salen-Zimmerman 'Rules of Play' 의 매 game-design canonization → 매 2024 metaverse / VR 의 매 boundary-blur 의 매 contemporary debate. 매 'inside ≠ outside' 의 매 philosophical container.
|
||||
|
||||
이 문서는 Canonical 문서인 통합되었습니다.
|
||||
모든 최신 지식과 세부 내용은 위 링크를 참조하십시오.
|
||||
## 📌 한 줄 통찰 (The Karpathy Summary)
|
||||
## 매 핵심
|
||||
|
||||
> 매직 서클은 게임이라는 인공 공간으로, 일상의 규칙과 다른 게임 내 규칙·의미가 작동하는 심리적·문화적 영역이다.
|
||||
### 매 정의 (Salen-Zimmerman)
|
||||
- 매 player 의 매 voluntary entry.
|
||||
- 매 internal rules ≠ external reality 의 매 separation.
|
||||
- 매 temporary / spatial 의 매 boundedness.
|
||||
|
||||
## 📖 구조화된 지식 (Synthesized Content)
|
||||
### 매 boundary type
|
||||
- **Spatial**: 매 board / arena / VR space.
|
||||
- **Temporal**: 매 match-clock / session.
|
||||
- **Conceptual**: 매 IP-rule / 매 'pretend' frame.
|
||||
|
||||
**추출된 패턴:** 매직 서클 안에선 일상에서 비합리적인 행동도 "의미 있음" — 게임 디자인은 이 경계를 만들고 유지하는 일.
|
||||
### 매 응용
|
||||
1. 매 LARP 의 매 explicit boundary ritual.
|
||||
2. 매 Among Us 의 매 'meeting' reset 의 magic-circle pulse.
|
||||
3. 매 ARG 의 매 deliberate boundary-blur (TINAG = This Is Not A Game).
|
||||
|
||||
**세부 내용:**
|
||||
- Huizinga의 'Homo Ludens' 원전.
|
||||
- 게임 규칙 = 매직 서클의 경계.
|
||||
- 외부 가치(돈)가 들어오면 매직 서클 약화 (P2W).
|
||||
- 디지털 게임은 물리적 경계 대신 심리적 경계.
|
||||
- 메타게임·ARG가 매직 서클 확장.
|
||||
## 💻 패턴
|
||||
|
||||
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
|
||||
### Magic-circle state model
|
||||
```typescript
|
||||
enum CircleState { Outside, Entering, Inside, Exiting }
|
||||
|
||||
**언제 이 지식을 쓰는가:**
|
||||
- *(TODO)*
|
||||
interface PlayerSession {
|
||||
id: string;
|
||||
state: CircleState;
|
||||
enteredAt: number | null;
|
||||
rulesContext: 'social' | 'game';
|
||||
}
|
||||
|
||||
**언제 쓰면 안 되는가:**
|
||||
- *(TODO)*
|
||||
function enterCircle(s: PlayerSession): PlayerSession {
|
||||
if (s.state !== CircleState.Outside) return s;
|
||||
return { ...s, state: CircleState.Inside, enteredAt: Date.now(), rulesContext: 'game' };
|
||||
}
|
||||
|
||||
## 🧪 검증 상태 (Validation)
|
||||
function exitCircle(s: PlayerSession): PlayerSession {
|
||||
return { ...s, state: CircleState.Outside, enteredAt: null, rulesContext: 'social' };
|
||||
}
|
||||
```
|
||||
|
||||
- **정보 상태:** draft
|
||||
- **출처 신뢰도:** A
|
||||
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
|
||||
### Rule-context switcher
|
||||
```typescript
|
||||
type Action = { kind: 'kill' | 'steal' | 'lie' | 'cooperate' };
|
||||
|
||||
## 🧬 중복 검사 (Duplicate Check)
|
||||
function isPermitted(a: Action, ctx: 'social' | 'game'): boolean {
|
||||
if (ctx === 'game') return true; // 매 inside circle: 매 rules 의 game's
|
||||
return a.kind === 'cooperate';
|
||||
}
|
||||
```
|
||||
|
||||
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
|
||||
- **처리 방식:** UPDATE (자동 정규화)
|
||||
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
|
||||
### Bleed-detection (LARP)
|
||||
```typescript
|
||||
interface PlayerEmotion { inGame: number; outGame: number; }
|
||||
function bleedScore(e: PlayerEmotion): number {
|
||||
return Math.abs(e.inGame - e.outGame);
|
||||
}
|
||||
```
|
||||
|
||||
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
|
||||
### TINAG / ARG boundary obfuscation
|
||||
```typescript
|
||||
interface ARGEvent { channel: 'phone' | 'website' | 'realLetter' | 'inGame'; diegetic: boolean; }
|
||||
function isMagicCircleBlurred(events: ARGEvent[]): boolean {
|
||||
const realChannels = events.filter(e => e.channel !== 'inGame' && e.diegetic);
|
||||
return realChannels.length / events.length > 0.3;
|
||||
}
|
||||
```
|
||||
|
||||
- **과거 데이터와의 충돌:** 없음
|
||||
- **정책 변화:** 없음
|
||||
### Consent-gate
|
||||
```typescript
|
||||
interface ConsentForm { physicalContact: boolean; emotionalIntensity: 'low' | 'medium' | 'high'; safeWord: string; }
|
||||
function canEnterCircle(form: ConsentForm): boolean {
|
||||
return form.safeWord.length > 0;
|
||||
}
|
||||
```
|
||||
|
||||
## 🔗 지식 연결 (Graph)
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| Competitive multiplayer | Strict spatial+temporal circle |
|
||||
| LARP / immersive | Pre-game ritual + safe-word + bleed-management |
|
||||
| ARG | Deliberate boundary-blur + ethical guard-rail |
|
||||
| F2P mobile | Lighter circle — 매 monetization cross-boundary |
|
||||
|
||||
- **Parent:** [[10_Wiki/Topics]]
|
||||
- **Related:** *(TODO: 최소 2개)*
|
||||
- **Opposite / Trade-off:** *(TODO)*
|
||||
- **Raw Source:** 직접 입력
|
||||
**기본값**: Explicit entry+exit ritual + 매 safe-word — 매 ethics-first design.
|
||||
|
||||
## 🕓 변경 이력 (Changelog)
|
||||
## 🔗 Graph
|
||||
- 부모: [[Game Theory]] · [[Huizinga Homo Ludens]]
|
||||
- 변형: [[Lusory Attitude]] · [[TINAG (This Is Not A Game)]]
|
||||
- 응용: [[LARP]] · [[Among Us]] · [[Alternate Reality Game]]
|
||||
- Adjacent: [[Procedural Rhetoric (In Gaming)]] · [[Player-Experience-Modeling]] · [[Gamification-Theory]]
|
||||
|
||||
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|
||||
|------|-----------|-----------|--------|
|
||||
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
|
||||
## 🤖 LLM 활용
|
||||
**언제**: game-design philosophy, LARP boundary modeling, ARG narrative design.
|
||||
**언제 X**: 매 deep ethnographic field study (researcher-led).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **No exit ritual**: 매 bleed accumulation 의 매 player burnout.
|
||||
- **Forced TINAG**: 매 player consent 의 X — 매 ethical breach.
|
||||
- **Monetization breach**: 매 P2W 의 매 in-game value 의 out-of-game money 의 매 seepage.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified (Huizinga 1938, Salen-Zimmerman 2003 'Rules of Play', Stenros 2014).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — magic-circle theory + state model |
|
||||
|
||||
Reference in New Issue
Block a user