feat(ui): Phase 29 map visibility toggles
Tests · Go / test (push) Successful in 2m31s
Tests · UI / test (push) Failing after 8m7s

Adds the gear-icon popover on the map view with per-game persistence
of every category toggle plus the wrap-mode radio. Hide-by-id and
visibility-fog facilities land on the renderer so every flip applies
within one frame without a Pixi remount; the wrap-mode toggle keeps
its existing remount + camera-preserve path. A new server-side turn
force-resets every flag to defaults so a hidden category never makes
the player miss the next turn's news.

Also fixes the FligthDistance → FlightDistance typo in pkg/calc/race.go
(plus the single Go caller); the TS side keeps duplicating the formula
until a race-level WASM bridge lands.

Co-Authored-By: Claude Opus 4.7 (1M context) <noreply@anthropic.com>
This commit is contained in:
Ilia Denisov
2026-05-19 21:33:53 +02:00
parent 65c0fbb87d
commit 2bd1b54936
32 changed files with 3046 additions and 63 deletions
+19
View File
@@ -114,6 +114,25 @@ const ru: Record<keyof typeof en, string> = {
"game.shell.history.return_to_current": "Вернуться к текущему ходу",
"game.shell.history.current_badge": "текущий",
"game.view.map": "карта",
"game.map.toggles.open": "открыть меню видимости карты",
"game.map.toggles.close": "закрыть меню видимости карты",
"game.map.toggles.section.objects": "Объекты",
"game.map.toggles.section.planets": "Планеты",
"game.map.toggles.section.view": "Вид",
"game.map.toggles.hyperspace_groups": "группы в гиперпространстве",
"game.map.toggles.incoming_groups": "входящие группы",
"game.map.toggles.unidentified_groups": "неопознанные группы",
"game.map.toggles.cargo_routes": "грузовые маршруты",
"game.map.toggles.battle_markers": "метки сражений",
"game.map.toggles.bombing_markers": "метки бомбардировок",
"game.map.toggles.foreign_planets": "чужие планеты",
"game.map.toggles.uninhabited_planets": "необитаемые планеты",
"game.map.toggles.unidentified_planets": "неопознанные планеты",
"game.map.toggles.unreachable_planets": "показывать недостижимые планеты",
"game.map.toggles.visibility_fog": "туман видимости",
"game.map.toggles.wrap.label": "перенос карты",
"game.map.toggles.wrap.torus": "тор",
"game.map.toggles.wrap.no_wrap": "без переноса",
"game.view.table": "таблица",
"game.view.table.planets": "планеты",
"game.view.table.ship_classes": "классы кораблей",