zizi 878ad3f7da feat(game-runtime): T1b-α集成段三门全PASS——SIZES九件全≤配额(全栈gz16.5KB),mini-desktop真浏览器证据(probe链/vfx像素哈希×3/CDP真输入),host-dev宿主页+参考件轮1计划
- 门①构建绿:all-plugins barrel+host-dev 双构建日志留档
- 门②SIZES增量实测:九件单件全≤配额,插件gz净增13263B(自律线60K),core基准gz 3222
- 门③浏览器证据:六锚点FNV-1a链verify.ok=true/burst-trail-drift三预设哈希×3重跑一致+几何命中+直方图非空/vignette-dither开关对照哈希互异/CDP dispatchTouchEvent真点击→probe第7条firstInput旁证
- 模板哲学红线被门③实证:particles不内置颜色致首版全黑,host作引擎供色后过——验证门逮住设计而非绕过
- α不接littlejsengine裁定留痕(host.js顶注/index.html/REPORT §4.1),受控面桩即引擎接缝点
- 遗留:probe前四锚tMono=0(冻结lane件,注入时钟拆分留β)
- games/wanglanmei-ref/LOOP-LOG.md:参考件内部预判轮1计划(五要素挂点/插件用法图/mmx资产单13次/红线五条)

Co-Authored-By: Claude Fable 5 <noreply@anthropic.com>
2026-06-12 12:39:15 +00:00

23 lines
1.2 KiB
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

/**
* host-dev/entry.js — host-dev 冒烟页的 esbuild 打包入口(集成段打成 iife → index.html 加载)
* ownerT1b-α 集成段 仅集成段mini-desktop用锁参打包本机不构建。
*
* 【定位】
* 把「core 协议 + 九件插件 + host 引导host.js 的 bootHostDev」汇成一个 iife 全局,
* 供 host-dev/index.html 以 <script> 加载。**α 阶段不接 littlejsengine**——发行版 v0 = core+插件,
* 引擎接线由参考件循环按需决定(裁定见 REPORT。故本入口只挂「受控面桩createHostDevContext+ 插件」,
* 引擎主循环用浏览器 RAF + bundle.tick 模拟host-dev 桩语义),不引入真引擎。
*
* 【全局导出】window.GameRuntimeHostDev = { bootHostDev, ...core 公开面 + 工厂,便于控制台调试)}
*/
'use strict';
import * as RT from '../src/all-plugins.js';
import { bootHostDev } from './host.js';
// 暴露到全局index.html 调 bootHostDev 启动;其余符号便于 DevTools 控制台手验。
// esbuild globalName 也会把本模块的默认/具名导出挂全局,这里再显式聚合一份语义清晰的入口。)
export { bootHostDev };
export const Runtime = RT;