Files
2nd/10_Wiki/Topic_General/Game_Design/Base-Layouts-and-Kill-Zones.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

5.0 KiB
Raw Blame History

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-base-layouts-and-kill-zones Base Layouts and Kill Zones 10_Wiki/Topics verified self
Tower Defense Layouts
Kill Zone Design
Funnel Design
none A 0.9 applied
game-design
level-design
tower-defense
combat
2026-05-10 pending
language framework
design-doc tower-defense / shooter

Base Layouts and Kill Zones

매 한 줄

"매 funnel + overlap = kill zone". Base layout 은 enemy path 의 shape 결정 — kill zone 은 매 player damage output 의 overlap 이 maximum 인 spatial pocket. 매 1990s tower defense (StarCraft custom) 부터 매 2026 modern roguelike-TD (Mindustry, Bloons TD 6, Last Epoch) 까지 매 same physics: time-in-zone × DPS-coverage = kill probability.

매 핵심

매 spatial primitives

  • Funnel: 매 narrow chokepoint — enemy density ↑.
  • Maze: 매 path-length amplifier — time-in-zone ↑.
  • Overlap circle: 매 multiple tower 의 range intersection — DPS-coverage ↑.
  • Kill zone = funnel ∩ overlap with sustainable supply.

매 design dimensions

  • Path topology: linear / branching / loop / open-field.
  • Damage type matching: AoE → cluster funnel; single-target → narrow.
  • Failure budget: leak threshold (lives) → kill zone redundancy 의 driver.

매 응용

  1. Tower Defense layouts (Bloons, Kingdom Rush, Mindustry).
  2. FPS map design — sightline + corner = kill zone.
  3. RTS base building — choke at ramp + siege range = kill zone.
  4. Roguelike room design — door funnel + ranged enemy stagger.

💻 패턴

Kill zone scoring (designer tool)

def kill_zone_score(tile, towers, path, enemy_speed=1.0):
    """Higher = better kill zone tile."""
    coverage = sum(
        1 for t in towers
        if dist(t.pos, tile) <= t.range
    )
    time_in_zone = path.length_through(tile) / enemy_speed
    return coverage * time_in_zone

Funnel detection on a grid

def is_funnel(grid, x, y, width=1):
    """A tile is a funnel if path width is locally constrained."""
    if grid[y][x] != PATH:
        return False
    neighbors = [(x+dx, y+dy) for dx, dy in [(-1,0),(1,0),(0,-1),(0,1)]]
    path_neighbors = sum(1 for nx, ny in neighbors if grid[ny][nx] == PATH)
    return path_neighbors <= 2  # corridor-like

Overlap heatmap (Unity / Godot pseudocode)

float[,] BuildOverlapHeatmap(List<Tower> towers, int w, int h) {
    var hm = new float[w, h];
    foreach (var t in towers)
        for (int y = 0; y < h; y++)
            for (int x = 0; x < w; x++)
                if (Vector2.Distance(t.pos, new(x, y)) <= t.range)
                    hm[x, y] += t.dps;
    return hm;
}

Maze layout generator

def build_maze_path(grid, entry, exit, target_length):
    """Insert obstacles to lengthen path until ≈ target_length."""
    while shortest_path(grid, entry, exit).length < target_length:
        x, y = random_buildable_tile(grid)
        grid[y][x] = OBSTACLE
        if not shortest_path(grid, entry, exit):
            grid[y][x] = EMPTY  # rollback: must remain solvable
    return grid

FPS sightline kill zone (Unreal blueprint sketch)

// 매 corner peek + cover position 의 detection
bool IsKillZone(FVector pos, const TArray<FVector>& sightlines) {
    int covering = 0;
    for (const FVector& sl : sightlines)
        if (HasLineOfSight(sl, pos)) covering++;
    return covering >= 2;  // 2+ angles = kill zone
}

매 결정 기준

상황 Approach
AoE-heavy roster Cluster funnel (long single corridor)
Single-target sniper roster Multiple short overlap pockets
Open sandbox (Mindustry, They Are Billions) Concentric kill zone rings
Roguelike room 1 funnel + 1 elite spawner
FPS competitive map 2-3 contested kill zones — 매 rotational

기본값: 1 primary kill zone (60% kill share) + 1 backup (30%) + leak buffer (10%).

🔗 Graph

🤖 LLM 활용

언제: 매 TD / shooter / RTS 의 layout iteration, 매 telemetry 후 kill-zone 의 hot/cold 의 분석. 언제 X: 매 narrative / puzzle level (combat 이 primary 가 아닌 경우).

안티패턴

  • Single chokepoint dominance: 매 한 kill zone 의 all-eggs-in-one — 매 boss / armored enemy 의 hard counter.
  • No leak path: 매 perfectly sealed = 매 player decision 의 X — 매 tension 의 X.
  • Sightline 의 overdesign: FPS 에서 매 모든 corner 가 kill zone → 매 movement 의 paralyze.

🧪 검증 / 중복

  • Verified (Bloons TD 6 / Mindustry / Kingdom Rush postmortem 2018-2025; Counter-Strike level design GDC 2019).
  • 신뢰도 A.

🕓 Changelog

날짜 변경
2026-05-08 Phase 1
2026-05-10 Manual cleanup — funnel × overlap formulation, scoring code, FPS / TD application