@polycode-projects/the-mechanical-code-talker 2.7.23 → 2.7.24
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +23 -0
- package/package.json +1 -1
- package/src/adapters/toml-config.mjs +8 -0
- package/src/domain/game-config.mjs +90 -0
- package/src/domain/spider-fly-world.mjs +5 -2
- package/src/services/adventure-viz.mjs +140 -13
- package/src/services/adventure.mjs +45 -3
- package/src/services/chat-session.mjs +9 -1
- package/src/services/chat.mjs +49 -27
- package/src/services/spider-fly-turn.mjs +11 -10
- package/src/services/spider-fly-viz.mjs +53 -0
- package/src/services/spider-fly.mjs +56 -36
- package/src/surfaces/web/adventure-browser-entry.mjs +56 -19
- package/src/surfaces/web/memory-ask-browser.bundle.js +42 -0
|
@@ -19,6 +19,7 @@ import { appendFacts, loadMemory, readFactRows } from "../adapters/memory/core.m
|
|
|
19
19
|
import { worldProvenanceTag } from "../domain/worlds-pack.mjs";
|
|
20
20
|
import { mulberry32 } from "../domain/seeded-random.mjs";
|
|
21
21
|
import { fnv1a32 } from "../domain/hash.mjs";
|
|
22
|
+
import { DEFAULT_GAME_CONFIG } from "../domain/game-config.mjs";
|
|
22
23
|
|
|
23
24
|
// ---- tunable constants (starting values, not fixed — the vision radius and
|
|
24
25
|
// mass economy all want checking against a real playable board) -------------
|
|
@@ -187,18 +188,20 @@ export function gridApplyActions(factRows) {
|
|
|
187
188
|
export const spiderPathStateKey = (state) => cellId(state.x, state.y);
|
|
188
189
|
|
|
189
190
|
/** Whether (x, y) is currently webbed — the static home zone (always active)
|
|
190
|
-
* OR a live spider-built web (mgx:web-built-at-turn +
|
|
191
|
+
* OR a live spider-built web (mgx:web-built-at-turn + webDurationTurns >
|
|
191
192
|
* turn). The one predicate every eat precondition and the fly's movement
|
|
192
193
|
* gate consult, so the static zone and dynamic webs are ONE concept. `state`
|
|
193
194
|
* may be omitted (or carry no `webs` map) — the static-zone check alone
|
|
194
195
|
* still answers correctly, just blind to dynamic webs; every real caller
|
|
195
|
-
* threads the folded state through.
|
|
196
|
-
|
|
196
|
+
* threads the folded state through. `webDurationTurns` defaults to the
|
|
197
|
+
* shipped WEB_DURATION_TURNS; a caller holding a resolved game config passes
|
|
198
|
+
* its own webDurationTurns instead. */
|
|
199
|
+
export function hasActiveWebAt(x, y, state, turn, webDurationTurns = WEB_DURATION_TURNS) {
|
|
197
200
|
if (isInWebBlock(x, y)) return true;
|
|
198
201
|
if (!state?.webs?.size) return false;
|
|
199
202
|
const target = cellId(x, y);
|
|
200
203
|
for (const { cell, builtAtTurn } of state.webs.values()) {
|
|
201
|
-
if (cell === target && builtAtTurn +
|
|
204
|
+
if (cell === target && builtAtTurn + webDurationTurns > turn) return true;
|
|
202
205
|
}
|
|
203
206
|
return false;
|
|
204
207
|
}
|
|
@@ -210,11 +213,12 @@ export function hasActiveWebAt(x, y, state, turn) {
|
|
|
210
213
|
* only on the fixed target), so this returns null — an honest "no path to
|
|
211
214
|
* an eat" rather than a path toward a cell that would never satisfy the eat
|
|
212
215
|
* condition. Null also covers "no believed target at all." `state`/`turn`
|
|
213
|
-
* are optional, defaulting to "static web zone only" (see hasActiveWebAt).
|
|
214
|
-
|
|
216
|
+
* are optional, defaulting to "static web zone only" (see hasActiveWebAt).
|
|
217
|
+
* `webDurationTurns` forwards to hasActiveWebAt unchanged. */
|
|
218
|
+
export function planSpiderPath(spiderCell, believedFlyCell, applyActions, state, turn, webDurationTurns = WEB_DURATION_TURNS) {
|
|
215
219
|
if (!believedFlyCell) return null;
|
|
216
220
|
const isGoal = (s) =>
|
|
217
|
-
s.x === believedFlyCell.x && s.y === believedFlyCell.y && hasActiveWebAt(s.x, s.y, state, turn);
|
|
221
|
+
s.x === believedFlyCell.x && s.y === believedFlyCell.y && hasActiveWebAt(s.x, s.y, state, turn, webDurationTurns);
|
|
218
222
|
return findActionPath(spiderCell, isGoal, applyActions, { stateKey: spiderPathStateKey });
|
|
219
223
|
}
|
|
220
224
|
|
|
@@ -362,10 +366,17 @@ function mostRecentEaterSpider(state, eatenDeltaBySpider) {
|
|
|
362
366
|
* never starve-checked, so callers that don't track spider mass, e.g. older
|
|
363
367
|
* tests, see no behavior change). `state` is the PRE-move fold (for history:
|
|
364
368
|
* prior flies-eaten counts, prior eggs, prior eaten turns, live webs).
|
|
369
|
+
* `config` (default DEFAULT_GAME_CONFIG.spiderFly) supplies every tunable
|
|
370
|
+
* this pass reads: the initial masses a fallback/hatch/spawn mints, the
|
|
371
|
+
* eggs-eaten lay threshold, the hatch delay, the spawn interval, and the web
|
|
372
|
+
* duration the eat precondition checks against.
|
|
365
373
|
* Returns `{ writes, events }` — writes to append alongside the turn's
|
|
366
374
|
* movement facts, events for the tick's own return payload. Pure.
|
|
367
375
|
*/
|
|
368
|
-
export function runEcologyPass({
|
|
376
|
+
export function runEcologyPass({
|
|
377
|
+
state, postMovePlacements, postMoveMassByFly, postMoveMassBySpider = new Map(), turn,
|
|
378
|
+
config = DEFAULT_GAME_CONFIG.spiderFly,
|
|
379
|
+
}) {
|
|
369
380
|
const k = turn;
|
|
370
381
|
const writes = [];
|
|
371
382
|
const events = { eaten: [], starved: [], laid: null, hatched: [], spawned: null, spawnedCell: null, massAfterEating: new Map() };
|
|
@@ -381,7 +392,7 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
381
392
|
const eatenMassBySpider = new Map();
|
|
382
393
|
for (const spiderId of spiders) {
|
|
383
394
|
const sCell = postMovePlacements.get(spiderId);
|
|
384
|
-
if (!hasActiveWebAt(sCell.x, sCell.y, state, k)) continue;
|
|
395
|
+
if (!hasActiveWebAt(sCell.x, sCell.y, state, k, config.webDurationTurns)) continue;
|
|
385
396
|
for (const flyId of flies) {
|
|
386
397
|
if (claimedFlies.has(flyId)) continue;
|
|
387
398
|
const fCell = postMovePlacements.get(flyId);
|
|
@@ -396,7 +407,7 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
396
407
|
for (const [spiderId, delta] of eatenDeltaBySpider) {
|
|
397
408
|
const newCount = (state.fliesEaten.get(spiderId)?.value ?? 0) + delta;
|
|
398
409
|
writes.push({ subject: `${spiderId}@turn${k}`, predicate: "mgx:flies-eaten", object: String(newCount) });
|
|
399
|
-
const priorSpiderMass = postMoveMassBySpider.get(spiderId) ?? (state.mass.get(spiderId)?.value ??
|
|
410
|
+
const priorSpiderMass = postMoveMassBySpider.get(spiderId) ?? (state.mass.get(spiderId)?.value ?? config.spiderInitialMass);
|
|
400
411
|
const newSpiderMass = priorSpiderMass + (eatenMassBySpider.get(spiderId) ?? 0);
|
|
401
412
|
writes.push({ subject: `${spiderId}@turn${k}`, predicate: "mgx:mass", object: String(newSpiderMass) });
|
|
402
413
|
events.massAfterEating.set(spiderId, newSpiderMass);
|
|
@@ -427,7 +438,7 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
427
438
|
const liveEggId = [...state.laidAtTurn.keys()].find((id) => !state.removed.has(id));
|
|
428
439
|
if (!liveEggId) {
|
|
429
440
|
const sinceTurn = mostRecentEggLaidTurn(state);
|
|
430
|
-
const threshold = sinceTurn === -1 ? 1 :
|
|
441
|
+
const threshold = sinceTurn === -1 ? 1 : config.eggsEatenThreshold;
|
|
431
442
|
let eatsSince = events.eaten.length;
|
|
432
443
|
for (const { turn: eatenTurn } of state.eatenBy.values()) if (eatenTurn > sinceTurn) eatsSince += 1;
|
|
433
444
|
if (eatsSince >= threshold) {
|
|
@@ -442,18 +453,18 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
442
453
|
}
|
|
443
454
|
}
|
|
444
455
|
|
|
445
|
-
// 4. Hatch — any live egg laid exactly
|
|
456
|
+
// 4. Hatch — any live egg laid exactly config.eggHatchDelayTurns turns ago.
|
|
446
457
|
const liveEggIds = [...state.laidAtTurn.keys()].filter((id) => !state.removed.has(id)).sort();
|
|
447
458
|
let nextSpiderNum = 1 + maxIdSuffix(state.placements.keys(), /^spider-(\d+)$/);
|
|
448
459
|
for (const eggId of liveEggIds) {
|
|
449
460
|
const laidTurn = state.laidAtTurn.get(eggId).value;
|
|
450
|
-
if (laidTurn +
|
|
461
|
+
if (laidTurn + config.eggHatchDelayTurns !== k) continue;
|
|
451
462
|
const eggCell = state.placements.get(eggId)?.cell;
|
|
452
463
|
if (!eggCell) continue;
|
|
453
464
|
const newSpiderId = `spider-${nextSpiderNum}`;
|
|
454
465
|
nextSpiderNum += 1;
|
|
455
466
|
writes.push({ subject: `${newSpiderId}@turn${k}`, predicate: "mgx:currently-in", object: eggCell });
|
|
456
|
-
writes.push({ subject: `${newSpiderId}@turn${k}`, predicate: "mgx:mass", object: String(
|
|
467
|
+
writes.push({ subject: `${newSpiderId}@turn${k}`, predicate: "mgx:mass", object: String(config.spiderInitialMass) });
|
|
457
468
|
writes.push({ subject: `${eggId}@turn${k}`, predicate: "mgx:hatched-into", object: newSpiderId });
|
|
458
469
|
events.hatched.push({ egg: eggId, spider: newSpiderId, cell: eggCell });
|
|
459
470
|
}
|
|
@@ -461,7 +472,7 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
461
472
|
// 5. Spawn — every third turn, a new fly at a seeded pick among the
|
|
462
473
|
// currently-uncontested perimeter cells (never Math.random — see
|
|
463
474
|
// seededPick's own header comment).
|
|
464
|
-
if (k %
|
|
475
|
+
if (k % config.flySpawnIntervalTurns === 0) {
|
|
465
476
|
const occupied = new Set();
|
|
466
477
|
for (const spiderId of spiders) { const c = postMovePlacements.get(spiderId); occupied.add(cellId(c.x, c.y)); }
|
|
467
478
|
for (const flyId of flies) {
|
|
@@ -479,7 +490,7 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
479
490
|
const newFlyId = `fly-${1 + maxIdSuffix(state.placements.keys(), /^fly-(\d+)$/)}`;
|
|
480
491
|
const cell = seededPick(uncontested, `${WORLD_NAME}:${k}:${newFlyId}:spawn`);
|
|
481
492
|
writes.push({ subject: `${newFlyId}@turn${k}`, predicate: "mgx:currently-in", object: cell });
|
|
482
|
-
writes.push({ subject: `${newFlyId}@turn${k}`, predicate: "mgx:mass", object: String(
|
|
493
|
+
writes.push({ subject: `${newFlyId}@turn${k}`, predicate: "mgx:mass", object: String(config.flyInitialMass) });
|
|
483
494
|
events.spawned = newFlyId;
|
|
484
495
|
events.spawnedCell = cell;
|
|
485
496
|
}
|
|
@@ -494,15 +505,16 @@ export function runEcologyPass({ state, postMovePlacements, postMoveMassByFly, p
|
|
|
494
505
|
* board perimeter — a fresh session's own starting state, never part of
|
|
495
506
|
* the shipped (reusable, static) world pack itself. A no-op when spider-1
|
|
496
507
|
* already exists (idempotent — safe to call from a caller unsure whether
|
|
497
|
-
* the game has already started).
|
|
498
|
-
|
|
508
|
+
* the game has already started). `config` (default
|
|
509
|
+
* DEFAULT_GAME_CONFIG.spiderFly) supplies the starting masses. */
|
|
510
|
+
export async function startSpiderFlyGame(memoryDir, { flyCount = 1, config = DEFAULT_GAME_CONFIG.spiderFly } = {}) {
|
|
499
511
|
const state = foldSpiderFlyState(readFactRows(await loadMemory(memoryDir)));
|
|
500
512
|
if (state.placements.has("spider-1")) return { started: false, facts: [] };
|
|
501
513
|
|
|
502
514
|
const perimeter = perimeterCells();
|
|
503
515
|
const facts = [
|
|
504
516
|
{ subject: "spider-1", predicate: "mgx:currently-in", object: cellId(WEB_HOME.x, WEB_HOME.y) },
|
|
505
|
-
{ subject: "spider-1", predicate: "mgx:mass", object: String(
|
|
517
|
+
{ subject: "spider-1", predicate: "mgx:mass", object: String(config.spiderInitialMass) },
|
|
506
518
|
];
|
|
507
519
|
const occupied = new Set([cellId(WEB_HOME.x, WEB_HOME.y)]);
|
|
508
520
|
for (let i = 0; i < flyCount; i += 1) {
|
|
@@ -511,7 +523,7 @@ export async function startSpiderFlyGame(memoryDir, { flyCount = 1 } = {}) {
|
|
|
511
523
|
const cell = seededPick(uncontested.length ? uncontested : perimeter, `${WORLD_NAME}:0:${flyId}:spawn`);
|
|
512
524
|
occupied.add(cell);
|
|
513
525
|
facts.push({ subject: flyId, predicate: "mgx:currently-in", object: cell });
|
|
514
|
-
facts.push({ subject: flyId, predicate: "mgx:mass", object: String(
|
|
526
|
+
facts.push({ subject: flyId, predicate: "mgx:mass", object: String(config.flyInitialMass) });
|
|
515
527
|
}
|
|
516
528
|
await appendFacts(memoryDir, facts.map((f) => ({ ...f, provenance: worldProvenanceTag(WORLD_NAME) })));
|
|
517
529
|
return { started: true, facts };
|
|
@@ -534,11 +546,13 @@ function goalLineFor(subject, believed, arrived, kind) {
|
|
|
534
546
|
* web(s) minted THIS tick before they've been written/read back), as a
|
|
535
547
|
* plain array of { id, cell, builtAtTurn, expiresAtTurn }. Excludes the
|
|
536
548
|
* always-on static home zone (that's WEB_HOME/WEB_RADIUS, drawn separately —
|
|
537
|
-
* this is only the spider-built kind), for a renderer to draw distinctly.
|
|
538
|
-
|
|
549
|
+
* this is only the spider-built kind), for a renderer to draw distinctly.
|
|
550
|
+
* `webDurationTurns` defaults to the shipped WEB_DURATION_TURNS; a caller
|
|
551
|
+
* holding a resolved game config passes its own webDurationTurns instead. */
|
|
552
|
+
export function liveWebs(websMap, turn, webDurationTurns = WEB_DURATION_TURNS) {
|
|
539
553
|
const out = [];
|
|
540
554
|
for (const [id, { cell, builtAtTurn }] of websMap) {
|
|
541
|
-
if (builtAtTurn +
|
|
555
|
+
if (builtAtTurn + webDurationTurns > turn) out.push({ id, cell, builtAtTurn, expiresAtTurn: builtAtTurn + webDurationTurns });
|
|
542
556
|
}
|
|
543
557
|
return out;
|
|
544
558
|
}
|
|
@@ -560,9 +574,15 @@ export function liveWebs(websMap, turn) {
|
|
|
560
574
|
* eaten/starved/laid/hatched/spawned event summary; `activeWebs` is every
|
|
561
575
|
* currently-live dynamic web (static home zone excluded — that's fixed grid
|
|
562
576
|
* geometry, not runtime state), for a renderer to draw distinctly.
|
|
577
|
+
*
|
|
578
|
+
* `opts.config` (default DEFAULT_GAME_CONFIG.spiderFly) supplies every
|
|
579
|
+
* tunable this tick reads: the vision radius, both agents' starting/decrement
|
|
580
|
+
* masses, and the web duration, and is forwarded unchanged into
|
|
581
|
+
* runEcologyPass.
|
|
563
582
|
*/
|
|
564
583
|
export async function runSpiderFlyTick(memoryDir, opts = {}) {
|
|
565
|
-
const {
|
|
584
|
+
const { toldFacts = [], config = DEFAULT_GAME_CONFIG.spiderFly } = opts;
|
|
585
|
+
const visionRadius = config.visionRadius;
|
|
566
586
|
const rows = readFactRows(await loadMemory(memoryDir));
|
|
567
587
|
const state = foldSpiderFlyState(rows);
|
|
568
588
|
const k = state.turnCount + 1;
|
|
@@ -581,8 +601,8 @@ export async function runSpiderFlyTick(memoryDir, opts = {}) {
|
|
|
581
601
|
|
|
582
602
|
for (const spiderId of spiders) {
|
|
583
603
|
const spiderCell = parseCellId(state.placements.get(spiderId).cell);
|
|
584
|
-
const priorMass = state.mass.get(spiderId)?.value ??
|
|
585
|
-
const newMass = Math.max(0, priorMass -
|
|
604
|
+
const priorMass = state.mass.get(spiderId)?.value ?? config.spiderInitialMass;
|
|
605
|
+
const newMass = Math.max(0, priorMass - config.spiderMassDecrementPerTurn);
|
|
586
606
|
postMoveMassBySpider.set(spiderId, newMass);
|
|
587
607
|
|
|
588
608
|
// Priority 1: avoid any OTHER live spider believed visible.
|
|
@@ -599,7 +619,7 @@ export async function runSpiderFlyTick(memoryDir, opts = {}) {
|
|
|
599
619
|
const target = nearestBelievedTarget(spiderId, spiderCell, flies, state, { visionRadius, toldFacts });
|
|
600
620
|
if (target) {
|
|
601
621
|
nextCell = spiderCell;
|
|
602
|
-
const path = planSpiderPath(spiderCell, target.cell, applyActions, state, k);
|
|
622
|
+
const path = planSpiderPath(spiderCell, target.cell, applyActions, state, k, config.webDurationTurns);
|
|
603
623
|
if (path) {
|
|
604
624
|
if (path.actions.length) { nextCell = path.states[1]; plan = path.actions; }
|
|
605
625
|
} else {
|
|
@@ -611,14 +631,14 @@ export async function runSpiderFlyTick(memoryDir, opts = {}) {
|
|
|
611
631
|
// already at its closest reachable cell but still a step away
|
|
612
632
|
// (Chebyshev-adjacent isn't co-located; has-exit-* edges have no
|
|
613
633
|
// diagonal hop).
|
|
614
|
-
const arrived = nextCell.x === target.cell.x && nextCell.y === target.cell.y && hasActiveWebAt(nextCell.x, nextCell.y, state, k);
|
|
634
|
+
const arrived = nextCell.x === target.cell.x && nextCell.y === target.cell.y && hasActiveWebAt(nextCell.x, nextCell.y, state, k, config.webDurationTurns);
|
|
615
635
|
goal = goalLineFor(spiderId, target, arrived, "spider");
|
|
616
636
|
} else {
|
|
617
637
|
// Priority 3: hold position, and build/refresh a web there unless an
|
|
618
638
|
// unexpired web already covers this exact cell.
|
|
619
639
|
nextCell = spiderCell;
|
|
620
640
|
const heldCellId = cellId(spiderCell.x, spiderCell.y);
|
|
621
|
-
if (!hasActiveWebAt(spiderCell.x, spiderCell.y, state, k)) {
|
|
641
|
+
if (!hasActiveWebAt(spiderCell.x, spiderCell.y, state, k, config.webDurationTurns)) {
|
|
622
642
|
const webId = `web-${nextWebNum}`;
|
|
623
643
|
nextWebNum += 1;
|
|
624
644
|
tickWebs.set(webId, { cell: heldCellId, builtAtTurn: k });
|
|
@@ -640,19 +660,19 @@ export async function runSpiderFlyTick(memoryDir, opts = {}) {
|
|
|
640
660
|
for (const flyId of flies) {
|
|
641
661
|
const flyCell = parseCellId(state.placements.get(flyId).cell);
|
|
642
662
|
const believedSpider = nearestBelievedTarget(flyId, flyCell, spiders, state, { visionRadius, toldFacts });
|
|
643
|
-
const webbed = hasActiveWebAt(flyCell.x, flyCell.y, state, k);
|
|
663
|
+
const webbed = hasActiveWebAt(flyCell.x, flyCell.y, state, k, config.webDurationTurns);
|
|
644
664
|
const nextCell = webbed ? flyCell : greedyFlyMove(flyCell, believedSpider?.cell ?? null, applyActions, k, flyId);
|
|
645
665
|
postMovePlacements.set(flyId, nextCell);
|
|
646
666
|
movementWrites.push({ subject: `${flyId}@turn${k}`, predicate: "mgx:currently-in", object: cellId(nextCell.x, nextCell.y) });
|
|
647
|
-
const priorMass = state.mass.get(flyId)?.value ??
|
|
648
|
-
const newMass = Math.max(0, priorMass -
|
|
667
|
+
const priorMass = state.mass.get(flyId)?.value ?? config.flyInitialMass;
|
|
668
|
+
const newMass = Math.max(0, priorMass - config.flyMassDecrementPerTurn);
|
|
649
669
|
postMoveMassByFly.set(flyId, newMass);
|
|
650
670
|
movementWrites.push({ subject: `${flyId}@turn${k}`, predicate: "mgx:mass", object: String(newMass) });
|
|
651
671
|
const goal = webbed ? "trapped in an active web — can't move." : goalLineFor(flyId, believedSpider, true, "fly");
|
|
652
672
|
agents[flyId] = { cell: cellId(nextCell.x, nextCell.y), goal, mass: newMass };
|
|
653
673
|
}
|
|
654
674
|
|
|
655
|
-
const ecology = runEcologyPass({ state, postMovePlacements, postMoveMassByFly, postMoveMassBySpider, turn: k });
|
|
675
|
+
const ecology = runEcologyPass({ state, postMovePlacements, postMoveMassByFly, postMoveMassBySpider, turn: k, config });
|
|
656
676
|
// Every agent's goal was assigned during movement, before this same tick's
|
|
657
677
|
// ecology pass resolves eating/starving — so a THIRD agent's goal can name
|
|
658
678
|
// a subject that dies in this exact tick just as easily as the dying
|
|
@@ -705,14 +725,14 @@ export async function runSpiderFlyTick(memoryDir, opts = {}) {
|
|
|
705
725
|
// though the very same tick's event text already announces it, only
|
|
706
726
|
// catching up the following tick once the fold picks it up naturally.
|
|
707
727
|
for (const h of ecology.events.hatched) {
|
|
708
|
-
agents[h.spider] = { cell: h.cell, goal: "just hatched — no goal yet.", plan: null, mass:
|
|
728
|
+
agents[h.spider] = { cell: h.cell, goal: "just hatched — no goal yet.", plan: null, mass: config.spiderInitialMass };
|
|
709
729
|
}
|
|
710
730
|
if (ecology.events.spawned && ecology.events.spawnedCell) {
|
|
711
|
-
agents[ecology.events.spawned] = { cell: ecology.events.spawnedCell, goal: "just arrived — no goal yet.", mass:
|
|
731
|
+
agents[ecology.events.spawned] = { cell: ecology.events.spawnedCell, goal: "just arrived — no goal yet.", mass: config.flyInitialMass };
|
|
712
732
|
}
|
|
713
733
|
const writes = [...movementWrites, ...ecology.writes];
|
|
714
734
|
const provenance = `${worldProvenanceTag(WORLD_NAME)}:turn${k}`;
|
|
715
735
|
await appendFacts(memoryDir, writes.map((f) => ({ ...f, provenance })));
|
|
716
736
|
|
|
717
|
-
return { turn: k, writes, agents, ecology: ecology.events, activeWebs: liveWebs(tickWebs, k) };
|
|
737
|
+
return { turn: k, writes, agents, ecology: ecology.events, activeWebs: liveWebs(tickWebs, k, config.webDurationTurns) };
|
|
718
738
|
}
|
|
@@ -13,30 +13,39 @@
|
|
|
13
13
|
// rationale) — the bootstrap below then just appends it, exactly the shape
|
|
14
14
|
// openAdventure() itself writes for a real chat session.
|
|
15
15
|
//
|
|
16
|
-
// This session exposes
|
|
17
|
-
//
|
|
18
|
-
//
|
|
19
|
-
//
|
|
20
|
-
//
|
|
21
|
-
//
|
|
22
|
-
//
|
|
23
|
-
//
|
|
24
|
-
//
|
|
25
|
-
//
|
|
26
|
-
//
|
|
16
|
+
// This session exposes a raw autoplay tick, a read-only snapshot, AND
|
|
17
|
+
// (mirroring createSpiderFlySession's own `turn(line)`) a full chat-dock
|
|
18
|
+
// entry point: `turn(line)` runs the exact same runTurn the CLI and every
|
|
19
|
+
// other viz page's chat dock run, over this session's own memoryDir/graph/
|
|
20
|
+
// lexicon, threading `focus`/`last`/`planState` across calls the same way a
|
|
21
|
+
// real chat session does. `planState` and `autoplayTick`'s own `planHolder`
|
|
22
|
+
// share ONE mutable holder here, so a manual chat command and an auto-play
|
|
23
|
+
// tick can never disagree about whether the adventure is still open, mid a
|
|
24
|
+
// number game, etc. — whichever ran last leaves the holder as the other's
|
|
25
|
+
// starting point. `planHolder.state` starts as adventureTurn's own opened-
|
|
26
|
+
// world shape, so BOTH entry points treat every call as a live, already-open
|
|
27
|
+
// world rather than a fresh opening line: ordinary in-game commands (look/
|
|
28
|
+
// go/take/open/talk/examine/...) dispatch through adventure.mjs's own
|
|
29
|
+
// adventureTurn exactly as autoplayTick's calls already do, and anything not
|
|
30
|
+
// game-shaped falls through to the ordinary conversational layer, exactly
|
|
31
|
+
// like a real CLI session.
|
|
32
|
+
import { runTurn } from "../../services/chat.mjs";
|
|
27
33
|
import {
|
|
28
34
|
createInMemoryStore, appendFacts, appendRule, loadMemory, readFactRows,
|
|
29
35
|
} from "../../adapters/memory/core.mjs";
|
|
30
|
-
import {
|
|
36
|
+
import { parseEntities } from "../../domain/codegraph.mjs";
|
|
37
|
+
import { loadLexicon } from "../../domain/grammar/lexicon.mjs";
|
|
38
|
+
import { foldWorldState, worldDigestRows, roomAffordances } from "../../services/adventure.mjs";
|
|
31
39
|
import { runAdventureAutoplayTick } from "../../services/adventure-autoplay.mjs";
|
|
32
40
|
import { resolveSpriteForClass, SPRITE_REGISTRY } from "../../domain/sprite-map.mjs";
|
|
33
41
|
|
|
34
|
-
/** A live in-memory adventure this page's ticker
|
|
35
|
-
*
|
|
42
|
+
/** A live in-memory adventure this page's ticker AND chat dock can both
|
|
43
|
+
* drive. Returns `{ memoryDir, autoplayTick, turn, snapshot }`.
|
|
36
44
|
* `worldPayload.facts`/`.rules` seed the store exactly the way
|
|
37
45
|
* openAdventure() itself does for a real session; `planHolder.state` is set
|
|
38
|
-
* the same way, so adventureTurn treats every subsequent call
|
|
39
|
-
* already-open world rather than
|
|
46
|
+
* the same way, so adventureTurn treats every subsequent call — auto-play's
|
|
47
|
+
* own or a visitor's typed one — as a live, already-open world rather than
|
|
48
|
+
* a fresh opening line. */
|
|
40
49
|
export async function createAdventureSession(worldPayload) {
|
|
41
50
|
const memoryDir = createInMemoryStore();
|
|
42
51
|
const tag = `world:${worldPayload.name}`;
|
|
@@ -54,6 +63,11 @@ export async function createAdventureSession(worldPayload) {
|
|
|
54
63
|
const openingHere = foldWorldState(openingRows).placements.get("player")?.object ?? null;
|
|
55
64
|
if (openingHere) exposedRoomIds = new Set([openingHere]);
|
|
56
65
|
|
|
66
|
+
const graph = parseEntities({ individuals: [], objectProperties: [] });
|
|
67
|
+
const lexicon = loadLexicon();
|
|
68
|
+
let focus = null;
|
|
69
|
+
let last = null;
|
|
70
|
+
|
|
57
71
|
return {
|
|
58
72
|
memoryDir,
|
|
59
73
|
|
|
@@ -69,8 +83,30 @@ export async function createAdventureSession(worldPayload) {
|
|
|
69
83
|
return result;
|
|
70
84
|
},
|
|
71
85
|
|
|
86
|
+
/** One dispatched chat turn — the SAME runTurn the CLI and every other
|
|
87
|
+
* viz page's own chat dock run, over this session's own memoryDir. A
|
|
88
|
+
* throwing runTurn must never kill the session — the page has no other
|
|
89
|
+
* chance to show this turn's answer. */
|
|
90
|
+
async turn(line) {
|
|
91
|
+
let result;
|
|
92
|
+
try {
|
|
93
|
+
result = await runTurn(line, {
|
|
94
|
+
config: null, source: null, graph, focus, last, memoryDir, sessionId,
|
|
95
|
+
env: {}, lexicon, vocabHint: "", planState: planHolder.state,
|
|
96
|
+
});
|
|
97
|
+
} catch (e) {
|
|
98
|
+
const message = e instanceof Error ? e.message : String(e);
|
|
99
|
+
return { answer: `Something went wrong answering that (${message}). Try rephrasing, or /help.`, end: false, record: null, plan: null };
|
|
100
|
+
}
|
|
101
|
+
focus = result.focus;
|
|
102
|
+
last = result.last;
|
|
103
|
+
if ("planState" in result) planHolder.state = result.planState;
|
|
104
|
+
return { answer: result.answer, end: Boolean(result.end), record: result.record ?? null, plan: result.plan ?? null };
|
|
105
|
+
},
|
|
106
|
+
|
|
72
107
|
/** A read-only fold of the current room — no engine advance — for the
|
|
73
|
-
* page's own redraw after boot
|
|
108
|
+
* page's own redraw after boot, after every tick, and after every
|
|
109
|
+
* manual chat turn. */
|
|
74
110
|
async snapshot() {
|
|
75
111
|
const rows = readFactRows(await loadMemory(memoryDir));
|
|
76
112
|
const state = foldWorldState(rows);
|
|
@@ -81,8 +117,9 @@ export async function createAdventureSession(worldPayload) {
|
|
|
81
117
|
}
|
|
82
118
|
|
|
83
119
|
// Re-exported so the page's own rendering script (adventure-viz.mjs) never
|
|
84
|
-
// has to duplicate sprite resolution
|
|
120
|
+
// has to duplicate sprite resolution, the digest reader, or the room
|
|
121
|
+
// affordances the chat dock's own pills read from — the same posture
|
|
85
122
|
// spider-fly-browser-entry.mjs's own globalThis.tmctSpiderFly re-export takes.
|
|
86
123
|
globalThis.tmctAdventure = {
|
|
87
|
-
createAdventureSession, resolveSpriteForClass, SPRITE_REGISTRY, worldDigestRows,
|
|
124
|
+
createAdventureSession, resolveSpriteForClass, SPRITE_REGISTRY, worldDigestRows, roomAffordances,
|
|
88
125
|
};
|
|
@@ -23587,6 +23587,48 @@ ${JSON.stringify(envelope, null, 2)}`;
|
|
|
23587
23587
|
init_core();
|
|
23588
23588
|
init_hash();
|
|
23589
23589
|
|
|
23590
|
+
// src/domain/game-config.mjs
|
|
23591
|
+
var DEFAULT_GAME_CONFIG = Object.freeze({
|
|
23592
|
+
spiderFly: Object.freeze({
|
|
23593
|
+
spiderInitialMass: 15,
|
|
23594
|
+
spiderMassDecrementPerTurn: 0.5,
|
|
23595
|
+
flyInitialMass: 10,
|
|
23596
|
+
flyMassDecrementPerTurn: 1,
|
|
23597
|
+
visionRadius: 4,
|
|
23598
|
+
eggHatchDelayTurns: 3,
|
|
23599
|
+
flySpawnIntervalTurns: 3,
|
|
23600
|
+
eggsEatenThreshold: 2,
|
|
23601
|
+
webDurationTurns: 10
|
|
23602
|
+
}),
|
|
23603
|
+
guessNumber: Object.freeze({
|
|
23604
|
+
defaultLo: 1,
|
|
23605
|
+
defaultHi: 100,
|
|
23606
|
+
maxBound: 1e9
|
|
23607
|
+
}),
|
|
23608
|
+
planning: Object.freeze({
|
|
23609
|
+
maxDepth: 300
|
|
23610
|
+
})
|
|
23611
|
+
});
|
|
23612
|
+
var SPIDER_FLY_KEY_MAP = Object.freeze({
|
|
23613
|
+
spider_initial_mass: "spiderInitialMass",
|
|
23614
|
+
spider_mass_decrement_per_turn: "spiderMassDecrementPerTurn",
|
|
23615
|
+
fly_initial_mass: "flyInitialMass",
|
|
23616
|
+
fly_mass_decrement_per_turn: "flyMassDecrementPerTurn",
|
|
23617
|
+
vision_radius: "visionRadius",
|
|
23618
|
+
egg_hatch_delay_turns: "eggHatchDelayTurns",
|
|
23619
|
+
fly_spawn_interval_turns: "flySpawnIntervalTurns",
|
|
23620
|
+
eggs_eaten_threshold: "eggsEatenThreshold",
|
|
23621
|
+
web_duration_turns: "webDurationTurns"
|
|
23622
|
+
});
|
|
23623
|
+
var GUESS_NUMBER_KEY_MAP = Object.freeze({
|
|
23624
|
+
default_lo: "defaultLo",
|
|
23625
|
+
default_hi: "defaultHi",
|
|
23626
|
+
max_bound: "maxBound"
|
|
23627
|
+
});
|
|
23628
|
+
var PLANNING_KEY_MAP = Object.freeze({
|
|
23629
|
+
max_depth: "maxDepth"
|
|
23630
|
+
});
|
|
23631
|
+
|
|
23590
23632
|
// src/services/spider-fly-turn.mjs
|
|
23591
23633
|
init_core();
|
|
23592
23634
|
var SPIDER_FLY_TOLD_RE = new RegExp(
|