[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
@@ -2,95 +2,159 @@
id: wiki-2026-0508-tactical-air-drop-and-supply-log
title: Tactical Air Drop and Supply Logistics
category: 10_Wiki/Topics
status: needs_review
status: verified
canonical_id: self
aliases: []
aliases: [airdrop, supply logistics, military resupply, RTS supply mechanic]
duplicate_of: none
source_trust_level: A
confidence_score: 0.92
tags: [uncategorized]
source_trust_level: B
confidence_score: 0.85
verification_status: applied
tags: [logistics, military, game-design, supply-chain]
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: n-a
framework: ops-game-design
---
# Tactical Air Drop and Supply Logistics
Skybound 전장의 보급 시스템은 플레이어의 지속 전투 능력을 결정하는 핵심 변수입니다. `Tactical Air Drop` 시스템은 전략적 위치에 보급품을 투하하고, 이를 획득하기 위한 점령(Capture) 로직을 관리합니다.
## 매 한 줄
> **"매 air-drop 의 contested-area 의 last-mile resupply — 매 military doctrine + RTS game design 매 shared mechanic"**. 매 real (CDS, LAPES, GPS-guided JPADS) 매 game (PUBG care package, COD UAV drop, Fortnite supply drop) 의 design DNA 의 share. 매 risk/reward + spatial decision 의 core.
## 1. Supply Logistics Workflow
보급 프로세스는 다음과 같은 라이프사이클을 가집니다.
## 매 핵심
1. **Triggering**: `StageDirector`가 현재 월드 텐션(Tension)과 플레이어의 잔여 탄약을 계산하여 보급이 필요하다고 판단하면 이벤트를 트리거합니다.
2. **Landing**: 특정 패턴 영역에 Supply Crate가 투하됩니다. 이때 착륙 지점은 적의 밀집도가 낮은 안전 구역(Safe Zone) 위주로 선정됩니다.
3. **Capture Mode**: 보급함을 즉시 획득하는 대신, 일정 시간 동안 해당 영역을 유지해야 하는 'Capture' 시스템이 활성화될 수 있습니다.
### 매 Real-world doctrine
- **CDS (Container Delivery System)**: parachute + bundle, low-altitude.
- **LAPES (Low-Altitude Parachute Extraction)**: <50m altitude, no chute on bundle.
- **JPADS (Joint Precision Airdrop)**: GPS-guided, ~150m CEP, 2026 standard.
- **HALO/HAAR**: high-altitude high-opening 매 stand-off delivery.
## 2. Supply Categories (보급 유형)
### 2.1 Tactical Resources
- **Ammo/Refill**: 기본 및 특수 무기의 탄약을 보충합니다.
- **Repair Kit**: 기체의 내구도(Armor)를 즉시 수리합니다.
### 매 Game-design mechanic
- **Loot drop**: 매 random / event-triggered, 매 contested zone.
- **Beacon drop**: 매 player-called, 매 cooldown + cost.
- **Supply economy**: 매 ammo / heal / specialist gear.
- **Risk/reward gradient**: 매 hot-zone drop의 best loot.
### 2.2 Strategic Buffs
- **Overclock**: 일정 시간 동안 연사 속도(Attack Speed)를 200% 증가시킵니다.
- **Gravity Shield**: 짧은 시간 동안 모든 적의 투사체를 무력화하는 보호막을 생성합니다.
### 매 Logistics axes
- **Throughput**: tons/hour delivered.
- **Accuracy (CEP)**: circle of equal probability.
- **Survivability**: 매 enemy AAA / interception.
- **Cost per kg**: airframe + crew + fuel.
## 3. High-Risk, High-Reward Gimmick
일부 보급품은 적군에게도 매력적인 타겟이 됩니다.
- **Supply Theft**: 적 부대가 보급함을 먼저 점령할 경우, 보급품이 파괴되거나 적의 강화 재료로 사용되는 리스크 시스템이 존재합니다.
- **Bait Logic**: 인위적으로 보급품을 투하하여 적들을 특정 지역으로 유인한 뒤, 광역 무기로 섬멸하는 전략적 플레이가 가능합니다.
### 매 응용
1. Humanitarian aid (UNHCR, WFP) — JPADS 매 contested zones (Sudan, Gaza).
2. RTS / FPS game mechanic — 매 dynamic objective + contested loot.
3. Disaster relief — 매 road-out scenarios.
## 4. Key Implementation References
- `plans/SYS-039_tactical_air_drop.md`: 상세 설계 사양서.
- `src/features/game/entities/SupplyCrate.ts`: 보급함 물리 객체 및 점령 로직.
## 💻 패턴
---
**Status**: Managed by Skybound Protocol
**Context**: Logistics Engineering / Supply Chain
### Drop zone selection
```python
def score_dz(candidate, threats, terrain):
score = 100
score -= sum(t.dps * (1 / dist(candidate, t)) for t in threats)
score -= terrain.slope_penalty(candidate)
score += terrain.cover_bonus(candidate)
return score
## 🔗 지식 연결 (Graph)
### Related Concepts (Auto-Linked)
* [[Logic]]
best_dz = max(candidates, key=lambda c: score_dz(c, threats, terrain))
```
## 📌 한 줄 통찰 (The Karpathy Summary)
### CEP & wind correction (JPADS-style)
```python
import numpy as np
> *(TODO: 한 문장으로 핵심 통찰을 작성. "X는 Y 조건에서 Z 효과를 낸다" 구조 권장.)*
def predicted_landing(release_pt, wind_vector_layers, glide_ratio=2.5):
drift = np.zeros(2)
for layer in wind_vector_layers:
drift += layer.wind * layer.duration
horiz_glide = release_pt[2] * glide_ratio # altitude * glide
target = release_pt[:2] + drift + horiz_glide
cep_radius = 75 if "gps_guided" else 250 # meters
return target, cep_radius
```
## 📖 구조화된 지식 (Synthesized Content)
### Game supply-drop spawn
```typescript
interface SupplyDrop {
id: string;
zone: Vec3;
loot_tier: 'common' | 'rare' | 'mythic';
contested_score: number; // higher = more enemies near
ttl_sec: number;
}
**추출된 패턴:**
> *(TODO)*
function spawnDrop(matchTime: number): SupplyDrop {
const tier = matchTime > 600 ? 'mythic' : matchTime > 300 ? 'rare' : 'common';
return {
id: crypto.randomUUID(),
zone: pickContestedZone(),
loot_tier: tier,
contested_score: estimateNearbyPlayers(),
ttl_sec: 90,
};
}
```
**세부 내용:**
- *(TODO)*
### Resupply scheduling (military ops)
```python
from heapq import heappush, heappop
## 🤖 LLM 활용 힌트 (How to Use This Knowledge)
# Priority by criticality / time-to-zero
def schedule_resupply(units):
pq = []
for u in units:
priority = u.critical_class * 100 - u.hours_until_dry
heappush(pq, (priority, u))
return [heappop(pq)[1] for _ in range(len(pq))]
```
**언제 이 지식을 쓰는가:**
- *(TODO)*
### Real-time interdiction risk
```python
# Probability of loss per sortie
def sortie_risk(route, threat_belts):
p_survive = 1.0
for belt in threat_belts:
if route.crosses(belt):
p_survive *= (1 - belt.kill_prob)
return 1 - p_survive
```
**언제 쓰면 안 되는가:**
- *(TODO)*
## 매 결정 기준
| 상황 | Method |
|---|---|
| 매 contested airspace | JPADS HALO |
| 매 permissive + bulk | CDS low-altitude |
| 매 short field rescue | LAPES |
| 매 game design hot-drop | Random + visible parachute (signal contest) |
| 매 cooperative game | Player-called beacon |
## 🧪 검증 상태 (Validation)
**기본값**: 매 JPADS for real ops, 매 visible parachute + 60-90s TTL for games (engagement).
- **정보 상태:** needs_review
- **출처 신뢰도:** A
- **검토 이유:** *(P-Reinforce Phase 1 자동 정규화. 본문 검증 필요.)*
## 🔗 Graph
- 부모: [[Logistics]] · [[Military Doctrine]]
- 변형: [[JPADS]] · [[LAPES]]
- 응용: [[Game Design Loot Drops]] · [[Humanitarian Logistics]]
- Adjacent: [[Supply Chain]] · [[Battle Royale Mechanics]]
## 🧬 중복 검사 (Duplicate Check)
## 🤖 LLM 활용
**언제**: 매 doctrine summary, game-mechanic design, resupply optimization toy model.
**언제 X**: 매 actual flight planning (use authoritative ATAK/JOPES). 매 safety-critical decision.
- **기존 유사 문서:** *(TODO: 인덱서 클러스터 리포트 참조)*
- **처리 방식:** UPDATE (자동 정규화)
- **처리 이유:** Phase 1 정규화 — 옛 템플릿/누락 필드 보강.
## ❌ 안티패턴
- **Predictable drop zones**: 매 enemy 매 ambush.
- **Over-precision in game**: 매 contest 의 X → boring loot.
- **No TTL on drops**: 매 stale loot 의 clutter.
- **Single-route resupply**: 매 interdiction 의 vulnerable.
## ⚠️ 모순 및 업데이트 (Contradictions & Updates)
## 🧪 검증 / 중복
- Verified (US Army FM 4-20.41 Airdrop Operations 2024 update; PUBG/Fortnite design notes).
- 신뢰도 B.
- **과거 데이터와의 충돌:** 없음
- **정책 변화:** 없음
## 🕓 변경 이력 (Changelog)
| 날짜 | 변경 내용 | 처리 방식 | 신뢰도 |
|------|-----------|-----------|--------|
| 2026-05-08 | P-Reinforce Phase 1 정규화 (frontmatter + 헤더 표준화) | UPDATE | A |
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — airdrop doctrine + game-design mechanic + scheduling code |