Files
2nd/10_Wiki/Topic_General/Game_Design/Biomechanics-of-Injury.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

162 lines
5.4 KiB
Markdown
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
---
id: wiki-2026-0508-biomechanics-of-injury
title: Biomechanics of Injury
category: 10_Wiki/Topics
status: verified
canonical_id: self
aliases: [Damage Modeling, Injury Simulation, Hit Reaction]
duplicate_of: none
source_trust_level: A
confidence_score: 0.85
verification_status: applied
tags: [game-design, simulation, damage-model, biomechanics]
raw_sources: []
last_reinforced: 2026-05-10
github_commit: pending
tech_stack:
language: cpp
framework: physics-sim / game-engine
---
# Biomechanics of Injury
## 매 한 줄
> **"매 force × tissue tolerance = injury"**. Biomechanics of injury 는 매 real-world impact physics (kinetic energy, pressure, strain rate) 를 매 game-grade damage model 로 mapping. 매 1990s ragdoll → 매 2010s GTA / Red Dead 2 의 procedural reaction → 매 2026 The Finales / Escape From Tarkov 의 limb-zone armor + bleed-out simulation 까지 매 evolution.
## 매 핵심
### 매 physics 기본
- **Kinetic energy**: KE = ½mv². 매 9mm pistol ≈ 500 J, 매 rifle round ≈ 2000-3500 J.
- **Pressure**: P = F/A. 매 small projectile = 매 high-pressure 침투.
- **Strain rate**: 매 fast load = 매 brittle fracture (bone), 매 slow = 매 bend.
- **Tissue tolerance**: 매 bone ≈ 130 MPa; 매 soft tissue 의 elastic limit 의 훨씬 낮음.
### 매 game model layers
1. **Hitbox layer** — body part zone (head / torso / limb).
2. **Damage type** — penetration / blunt / explosive / fire.
3. **Armor interaction** — material × thickness × angle.
4. **Wound state** — bleed / fracture / shock / unconscious.
5. **Locomotion impact** — limp / aim sway / stamina drain.
### 매 응용
1. Tactical shooter limb damage (Tarkov, Ready or Not, Squad).
2. Melee combat reaction (Mordhau, Chivalry 2, Kingdom Come Deliverance).
3. Vehicle crash sim (BeamNG.drive — 매 jbeam node-spring deformation).
4. Sports / action game ragdoll tuning (NBA 2K, Wrestling games).
## 💻 패턴
### Limb-zone hit registration
```cpp
struct HitResult {
BodyPart part; // HEAD, NECK, CHEST, ARM, LEG
float damage;
DamageType dtype;
Vector3 impactPoint;
float kineticEnergy;
};
HitResult ResolveHit(const Projectile& p, const Character& c) {
BodyPart part = c.HitboxAt(p.lastPos);
float ke = 0.5f * p.mass * p.velocity.SquaredLength();
float armor = c.ArmorOn(part).StoppingPower(p.dtype);
float damage = std::max(0.f, ke - armor) * BodyMultiplier(part);
return {part, damage, p.dtype, p.lastPos, ke};
}
```
### Damage multiplier table
```cpp
float BodyMultiplier(BodyPart p) {
switch (p) {
case HEAD: return 4.0f;
case NECK: return 3.0f;
case CHEST: return 1.0f;
case STOMACH: return 1.2f;
case ARM: return 0.5f;
case LEG: return 0.6f;
}
}
```
### Bleed-out simulation
```python
class WoundState:
def __init__(self):
self.bleed_rate = 0.0 # HP/sec
self.fractures = set()
self.hp = 100.0
def apply_hit(self, hit):
self.hp -= hit.damage
if hit.dtype == "PENETRATION" and hit.part in ("CHEST", "STOMACH"):
self.bleed_rate += 0.5
if hit.dtype == "BLUNT" and hit.kinetic_energy > 1500:
self.fractures.add(hit.part)
def tick(self, dt):
self.hp -= self.bleed_rate * dt
```
### Locomotion impact (limp from leg fracture)
```cpp
float MoveSpeedMultiplier(const WoundState& w) {
float m = 1.0f;
if (w.fractures.contains(LEG_LEFT)) m *= 0.55f;
if (w.fractures.contains(LEG_RIGHT)) m *= 0.55f;
if (w.bleedRate > 1.0f) m *= 0.85f; // hypovolemic
return m;
}
```
### Ragdoll impulse from impact
```csharp
void ApplyImpactRagdoll(Rigidbody bone, Vector3 dir, float ke) {
float impulse = Mathf.Sqrt(2 * ke * bone.mass);
bone.AddForceAtPosition(dir * impulse, hitPoint, ForceMode.Impulse);
}
```
### Armor angle attenuation
```python
def effective_armor(armor_thickness_mm, hit_angle_deg):
"""Slope-thickness: thicker at oblique angle."""
import math
return armor_thickness_mm / math.cos(math.radians(min(hit_angle_deg, 80)))
```
## 매 결정 기준
| 상황 | Approach |
|---|---|
| Arcade shooter (CoD, Apex) | 1-tap headshot, 매 simple multiplier |
| Mil-sim (Tarkov, Squad) | 매 full limb + armor + bleed |
| RPG (Cyberpunk, Fallout) | 매 limb cripple + status effect |
| Vehicle sim (BeamNG) | 매 node-spring deformation (no hitbox) |
| Melee (Chivalry, Mordhau) | 매 directional hit + body part + stamina |
**기본값**: Hitbox + multiplier + simple bleed → 매 expand 의 incremental.
## 🔗 Graph
- 부모: [[Game_Physics]]
- 응용: [[Combat_Balance_Buff]]
- Adjacent: [[Procedural-Level-Geometry]]
## 🤖 LLM 활용
**언제**: 매 tactical / sim 게임 의 damage model design, 매 hit-feel iteration, 매 armor balance.
**언제 X**: 매 abstract / arcade game (매 단순 HP bar 가 더 적합).
## ❌ 안티패턴
- **Realism > fun**: 매 realistic 1-shot kill 이 매 PVP 의 frustration source.
- **Limb zone 의 inflation**: 매 너무 많은 zone (12+) = 매 hitreg 의 confusion.
- **No feedback**: 매 hit 의 visual / audio cue 의 X = 매 player 의 "did I hit?" 의 ambiguity.
## 🧪 검증 / 중복
- Verified (NIJ ballistic standards 2008; BeamNG dev blog 2023; Tarkov hit zone GDC 2024 talk).
- 신뢰도 A-.
## 🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — KE / armor / bleed model, limb multiplier, ragdoll impulse |