@polycode-projects/the-mechanical-code-talker 5.0.3 → 5.0.4
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/corpus/worlds/manifest.json +9 -9
- package/corpus/worlds/shards/town-square-chapel.jsonl.gz +0 -0
- package/corpus/worlds/shards/town-square-market.jsonl.gz +0 -0
- package/corpus/worlds/shards/town-square.jsonl.gz +0 -0
- package/corpus/worlds/src/town-square-chapel.jsonl +1 -1
- package/corpus/worlds/src/town-square-market.jsonl +1 -1
- package/corpus/worlds/src/town-square.jsonl +1 -1
- package/data/mudiii-assets.json +11 -6
- package/package.json +1 -1
- package/src/domain/game-config.mjs +3 -1
- package/src/domain/spider-fly-world.mjs +11 -13
- package/src/services/mudiii-scene.mjs +131 -39
- package/src/services/mudiii-turn.mjs +82 -1
- package/src/services/mudiii-viz.mjs +16 -6
- package/src/services/spider-fly-viz.mjs +57 -60
- package/src/surfaces/web/memory-ask-browser.bundle.js +64 -64
- package/src/surfaces/web/mudiii-browser-entry.mjs +3 -3
|
@@ -144,9 +144,9 @@ export async function createMudiiiSession(worldPayload, { agents = [], epoch = 0
|
|
|
144
144
|
|
|
145
145
|
/** ONE whole-world step (`runTownSquareTick`) — every live agent moves,
|
|
146
146
|
* the ecology pass runs, and the result names what happened this turn.
|
|
147
|
-
*
|
|
148
|
-
*
|
|
149
|
-
async function tick(
|
|
147
|
+
* The engine counts the turns; the result's own `turn` is what a page
|
|
148
|
+
* displays. */
|
|
149
|
+
async function tick() {
|
|
150
150
|
return runTownSquareTick(memoryDir, { layout });
|
|
151
151
|
}
|
|
152
152
|
|