aboutsummaryrefslogtreecommitdiff
path: root/mkdocs.yml
blob: 0f2fa418d5c923492429fe4b5cd6921cbcb1d0ad (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
# Project information
site_name: FParkan
site_url: https://fparkan.popov.link/
site_author: Valentin Popov
site_description: >-
  Техническая книга о восстановлении игрового движка Iron3D из Parkan: Iron Strategy.

# Repository
repo_name: valentineus/fparkan
repo_url: https://github.com/valentineus/fparkan

# Copyright
copyright: Copyright © 2023 — 2026 Valentin Popov

# Configuration
theme:
  name: material
  language: ru
  features:
    - navigation.instant
    - navigation.sections
    - navigation.indexes
    - navigation.top
    - toc.follow
    - search.highlight
    - search.suggest
  palette:
    - media: "(prefers-color-scheme: light)"
      scheme: default
      primary: indigo
      accent: deep orange
    - media: "(prefers-color-scheme: dark)"
      scheme: slate
      primary: indigo
      accent: deep orange

markdown_extensions:
  - admonition
  - attr_list
  - def_list
  - md_in_html
  - toc:
      permalink: true
  - pymdownx.details
  - pymdownx.highlight
  - pymdownx.superfences
  - pymdownx.tabbed:
      alternate_style: true

plugins:
  - search:
      lang:
        - ru
        - en

# Navigation
nav:
  - Начало: index.md
  - Книга:
      - I. Путеводитель и методика: tomes/01-guide.md
      - II. Запуск, архитектура и игровой цикл: tomes/02-architecture.md
      - III. Ресурсная система и форматы: tomes/03-resources.md
      - IV. Мир, миссии и игровой runtime: tomes/04-world.md
      - V. Геометрия, материалы и рендер: tomes/05-render.md
      - VI. Поведение, управление, звук и сеть: tomes/06-behavior.md
      - VII. Руководство по полной реализации: tomes/07-implementation.md
      - VIII. Справочник и доказательная база: tomes/08-evidence.md
  - Справочник:
      - NRes: reference/nres.md
      - RsLi: reference/rsli.md
      - TMA: reference/tma.md
      - MSH: reference/msh.md
      - WEAR и MAT0: reference/materials.md
      - Texm: reference/texm.md
      - Render frame: reference/render-frame.md
  - Приложения:
      - Глоссарий: appendices/glossary.md
      - Границы знания: appendices/knowledge-boundaries.md

# Additional configuration
extra:
  social:
    - icon: fontawesome/brands/github
      link: https://github.com/valentineus/fparkan