9148c358d0
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 폴더 제거.
6.0 KiB
6.0 KiB
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-자원-로지스틱스-resource-logistics | 자원 로지스틱스(Resource Logistics) | 10_Wiki/Topics | verified | self |
|
none | A | 0.9 | applied |
|
2026-05-10 | pending |
|
자원 로지스틱스(Resource Logistics)
매 한 줄
"매 source → transport → buffer → consumer 매 chain 매 game 의 의 backbone". 매 Factorio (2016 → 2.0 Space Age 2024) 매 belt-bot-train 매 trinity, Dyson Sphere Program (2021), Satisfactory (1.0 2024) 매 매 매 동일한 design pillar — 매 player 매 logistics 의 의 의 의 의 의 problem 의 의 의 solving.
매 핵심
매 logistics primitives
- Source (생산): miner / extractor / spawn point.
- Transport (수송): belt, pipe, train, drone, teleport.
- Buffer (저장): chest, tank, warehouse.
- Consumer (소비): assembler, smelter, ship, player.
- Throttle / 제어: priority splitter, circuit network, request gate.
매 transport 매 axis tradeoffs
- belt: cheap, infinite, slow, density-bound.
- pipe: fluid only, pressure-aware (DSP, Satisfactory 1.0).
- train: high-throughput, high-latency, expensive.
- drone / bot: flexible routing, energy-intensive.
- teleport / portal: 매 endgame, breaks classical logistics tension.
매 응용
- Factorio main bus 의 vs city-block layout.
- Satisfactory 의 train network + drone hops.
- Dyson Sphere Program 의 logistics tower 의 interplanetary supply.
- Anno 1800 의 trade route + warehouse.
- RimWorld 의 stockpile priority + pawn hauling AI.
💻 패턴
Belt throughput simulation
interface BeltSegment {
capacity: number; // items / sec (Factorio yellow=15, red=30, blue=45)
current: number;
upstream?: BeltSegment;
}
function tickBelt(seg: BeltSegment, dt: number) {
const incoming = Math.min(seg.upstream?.current ?? 0, seg.capacity * dt);
seg.current += incoming;
if (seg.upstream) seg.upstream.current -= incoming;
// saturation = bottleneck visible to player
return { saturation: seg.current / (seg.capacity * dt) };
}
Producer/consumer rate matching
function balanceRatio(producerRate: number, consumerRate: number): number {
return producerRate / consumerRate;
// ratio = 1.0 → balanced
// < 1 → consumer starves (add producers)
// > 1 → buffer overflow (add consumers / storage)
}
// Factorio classic: 1 stone furnace = 0.3125 plate/s
// 1 yellow belt = 15 items/s → needs 48 furnaces to saturate
Train scheduling (priority + fuel)
type Station = { id: string; demand: number; supply: number };
function dispatchTrain(stations: Station[]): { from: string; to: string } | null {
const supplier = stations.filter(s => s.supply > 0)
.sort((a, b) => b.supply - a.supply)[0];
const consumer = stations.filter(s => s.demand > 0)
.sort((a, b) => b.demand - a.demand)[0];
if (!supplier || !consumer) return null;
return { from: supplier.id, to: consumer.id };
}
Drone routing (cost-aware)
function chooseDrone(drones: Drone[], from: Vec2, to: Vec2): Drone | null {
return drones
.filter(d => d.battery > distance(from, to) * d.energyPerTile)
.sort((a, b) => distance(a.pos, from) - distance(b.pos, from))[0];
}
Stockpile priority (RimWorld-style)
interface Stockpile {
id: string;
priority: 1 | 2 | 3 | 4 | 5; // 5 = highest
acceptedTags: string[];
capacity: number;
current: number;
}
function chooseStockpile(piles: Stockpile[], item: Item): Stockpile | null {
return piles
.filter(p => p.acceptedTags.includes(item.tag))
.filter(p => p.current < p.capacity)
.sort((a, b) => b.priority - a.priority)[0] ?? null;
}
Bottleneck detector (ECS / Bevy-style pseudo)
// Bevy system that flags saturated belts for player visualization
fn detect_bottlenecks(
mut belts: Query<(&BeltSegment, &mut MaterialColor)>,
) {
for (belt, mut color) in &mut belts {
let sat = belt.current / belt.capacity;
color.0 = if sat > 0.95 { RED } else if sat > 0.7 { YELLOW } else { GREEN };
}
}
매 결정 기준
| 상황 | transport |
|---|---|
| 매 short distance, low rate | belt |
| 매 long distance, high rate | train |
| 매 fluid | pipe |
| 매 sparse / mobile target | drone |
| 매 cross-planet / cross-zone | logistics tower / portal |
기본값: 매 early-game belt → mid-game train → late-game drone+train hybrid → endgame logistics network.
🔗 Graph
- 부모: Game Economy
- 응용: 프리미엄 통화 브릿지(Premium Currency Bridge)
- Adjacent: Operations Research
🤖 LLM 활용
언제: 매 factory builder / RTS / colony sim 매 design, 매 production-chain balance 의 의 system 의 build 시. 언제 X: 매 narrative-only / linear adventure — 매 logistics 매 systems-driven design 의 의 의 매 fit.
❌ 안티패턴
- 매 infinite buffer: 매 buffer 매 size 매 ∞ 시 매 logistics tension 매 의 의 disappears.
- 매 zero friction: 매 instant teleport 매 baseline → 매 layout 매 의 의 의 의 의 trivial.
- 매 over-coupled: 매 single bottleneck 매 chain 의 의 의 의 의 cascade — 매 player frustration.
- 매 invisible bottleneck: 매 saturation visualization 매 X → 매 player 매 의 의 root cause 의 의 의 X.
🧪 검증 / 중복
- Verified (Wube Software dev blogs Factorio FFF series, Coffee Stain Studios Satisfactory talks, GDC factory-builder 의 talks 2023-2025).
- 신뢰도 A.
🕓 Changelog
| 날짜 | 변경 |
|---|---|
| 2026-05-08 | Phase 1 |
| 2026-05-10 | Manual cleanup — logistics primitives + transport tradeoffs + working belt/train/drone code |