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 폴더 제거.
This commit is contained in:
@@ -0,0 +1,166 @@
|
||||
---
|
||||
id: wiki-2026-0508-structural-dynamics-of-combat-ec
|
||||
title: Structural Dynamics of Combat Ecosystem
|
||||
category: 10_Wiki/Topics
|
||||
status: verified
|
||||
canonical_id: self
|
||||
aliases: [Combat Ecosystem Structure, Combat Meta Dynamics]
|
||||
duplicate_of: none
|
||||
source_trust_level: A
|
||||
confidence_score: 0.9
|
||||
verification_status: applied
|
||||
tags: [game-design, balance, combat, meta, systems]
|
||||
raw_sources: []
|
||||
last_reinforced: 2026-05-10
|
||||
github_commit: pending
|
||||
tech_stack:
|
||||
language: typescript
|
||||
framework: nodejs
|
||||
---
|
||||
|
||||
# Structural Dynamics of Combat Ecosystem
|
||||
|
||||
## 매 한 줄
|
||||
> **"매 combat ecosystem 의 structural feedback loop 의 분석"**. 매 unit roster, counter-graph, build-economy, player skill 의 four-way feedback — 매 stable rotation vs runaway dominance 의 결정 의 lever. 매 RTS/MOBA/MMO/strategy 의 universal frame.
|
||||
|
||||
## 매 핵심
|
||||
|
||||
### 매 4 layer
|
||||
1. **Roster layer**: 매 units 의 stat space.
|
||||
2. **Counter graph**: 매 RPS + soft counter + ability interaction.
|
||||
3. **Economy layer**: build cost, tech tree, time gate.
|
||||
4. **Skill layer**: APM, decision quality, micro/macro.
|
||||
|
||||
### 매 feedback loop
|
||||
- Roster → Counter graph (stats determine matchups).
|
||||
- Counter graph → Skill (which unit micro matters).
|
||||
- Skill → Economy (resource efficiency).
|
||||
- Economy → Roster (which units 의 affordable).
|
||||
|
||||
### 매 응용
|
||||
1. Patch design — 매 lever 의 isolation.
|
||||
2. Telemetry analysis — 매 dominant strategy 의 detect.
|
||||
3. Esports balance — 매 high-skill vs casual 의 tradeoff.
|
||||
|
||||
## 💻 패턴
|
||||
|
||||
### Counter graph 의 build
|
||||
```typescript
|
||||
type UnitId = string;
|
||||
interface Counter { from: UnitId; to: UnitId; mult: number; }
|
||||
|
||||
export class CounterGraph {
|
||||
private edges = new Map<UnitId, Counter[]>();
|
||||
add(c: Counter) {
|
||||
const arr = this.edges.get(c.from) ?? [];
|
||||
arr.push(c); this.edges.set(c.from, arr);
|
||||
}
|
||||
matchup(a: UnitId, b: UnitId): number {
|
||||
return this.edges.get(a)?.find(e => e.to === b)?.mult ?? 1.0;
|
||||
}
|
||||
}
|
||||
```
|
||||
|
||||
### Dominance detector (eigenvalue)
|
||||
```typescript
|
||||
import { Matrix, EigenvalueDecomposition } from 'ml-matrix';
|
||||
|
||||
export function rosterDominance(matchupMatrix: number[][]): { unitId: number; score: number }[] {
|
||||
const m = new Matrix(matchupMatrix);
|
||||
const e = new EigenvalueDecomposition(m);
|
||||
const principal = e.realEigenvectors.getColumn(0);
|
||||
return principal.map((v, i) => ({ unitId: i, score: v }))
|
||||
.sort((a, b) => b.score - a.score);
|
||||
}
|
||||
```
|
||||
|
||||
### Build economy curve
|
||||
```typescript
|
||||
interface BuildOption { unit: string; cost: number; tier: number; powerScore: number; }
|
||||
|
||||
export function paretoFront(options: BuildOption[]): BuildOption[] {
|
||||
return options.filter(a => !options.some(b =>
|
||||
b !== a && b.powerScore >= a.powerScore && b.cost <= a.cost && (b.powerScore > a.powerScore || b.cost < a.cost)
|
||||
));
|
||||
}
|
||||
```
|
||||
|
||||
### Telemetry: pick-rate vs win-rate
|
||||
```typescript
|
||||
interface MatchRecord { winner: string; loser: string; winnerComp: string[]; loserComp: string[]; }
|
||||
|
||||
export function unitStats(records: MatchRecord[]) {
|
||||
const stats = new Map<string, { picks: number; wins: number }>();
|
||||
for (const r of records) {
|
||||
for (const u of r.winnerComp) {
|
||||
const s = stats.get(u) ?? { picks: 0, wins: 0 };
|
||||
s.picks++; s.wins++; stats.set(u, s);
|
||||
}
|
||||
for (const u of r.loserComp) {
|
||||
const s = stats.get(u) ?? { picks: 0, wins: 0 };
|
||||
s.picks++; stats.set(u, s);
|
||||
}
|
||||
}
|
||||
return [...stats.entries()].map(([u, s]) => ({
|
||||
unit: u,
|
||||
pickRate: s.picks / records.length,
|
||||
winRate: s.wins / s.picks,
|
||||
}));
|
||||
}
|
||||
```
|
||||
|
||||
### Skill ladder elo
|
||||
```typescript
|
||||
export function eloUpdate(rA: number, rB: number, scoreA: 0 | 0.5 | 1, k = 32): [number, number] {
|
||||
const expA = 1 / (1 + Math.pow(10, (rB - rA) / 400));
|
||||
const expB = 1 - expA;
|
||||
return [rA + k * (scoreA - expA), rB + k * ((1 - scoreA) - expB)];
|
||||
}
|
||||
```
|
||||
|
||||
### Patch impact simulation
|
||||
```typescript
|
||||
export function simulatePatch(graph: CounterGraph, change: Counter, samples = 10_000) {
|
||||
graph.add(change);
|
||||
const wins = new Map<string, number>();
|
||||
for (let i = 0; i < samples; i++) {
|
||||
// randomized 5v5 sim — 생략
|
||||
}
|
||||
return wins;
|
||||
}
|
||||
```
|
||||
|
||||
## 매 결정 기준
|
||||
| 상황 | Approach |
|
||||
|---|---|
|
||||
| 매 dominant strategy detected | Nerf the apex — gentle 5-10% adjustment first. |
|
||||
| 매 stale meta | Buff under-picked tier 3 — add a soft counter edge. |
|
||||
| 매 economy abuse | Tax the dominant build path — not the unit. |
|
||||
| 매 skill ceiling 너무 high | Lower micro reward — smooth ability curves. |
|
||||
|
||||
**기본값**: 4-layer monitoring + monthly micro-patch + quarterly meta refresh.
|
||||
|
||||
## 🔗 Graph
|
||||
- 부모: [[War-Commander-Combat-Ecosystem]] · [[Player-Experience-Modeling]]
|
||||
- 변형: [[Structural-Dynamics-and-Tactical-Evolution-of-the-Combat-Ecosystem]] · [[Evolution-of-the-War-Commander-Combat-Ecosystem]]
|
||||
- 응용: [[Anti-Air-and-Anti-Ground-Combat]] · [[Damage-Resistance-Platforms]]
|
||||
- Adjacent: [[Power Creep (Content Treadmills)]] · [[Combat_Balance_Buff]]
|
||||
|
||||
## 🤖 LLM 활용
|
||||
**언제**: patch note draft, meta narrative summary, balance hypothesis 의 brainstorm.
|
||||
**언제 X**: 매 production telemetry pipeline (deterministic).
|
||||
|
||||
## ❌ 안티패턴
|
||||
- **Single-layer fix**: 매 stat-only nerf 의 economy/skill cause 의 무시.
|
||||
- **Reactive whack-a-mole**: 매 weekly patch 의 player whiplash.
|
||||
- **Eigen-blind**: 매 spreadsheet matchup 만 — 매 emergent meta 의 miss.
|
||||
|
||||
## 🧪 검증 / 중복
|
||||
- Verified: SC2 balance council 2024 reports, DOTA 2 patch analyses, RTS academic literature (Robertson & Watson 2014).
|
||||
- 신뢰도 A.
|
||||
|
||||
## 🕓 Changelog
|
||||
| 날짜 | 변경 |
|
||||
|---|---|
|
||||
| 2026-05-08 | Phase 1 |
|
||||
| 2026-05-10 | Manual cleanup — 4-layer model + dominance eigen 추가 |
|
||||
Reference in New Issue
Block a user