游戏重构

This commit is contained in:
xsl
2026-05-18 23:00:14 +08:00
parent b2a3d20761
commit b90238975f
7 changed files with 703 additions and 995 deletions
+6 -24
View File
@@ -1,13 +1,5 @@
// main.js — 游戏入口
// 开发模式(URL加?dev):时间线缩短为1/10
const DEV_MODE = new URLSearchParams(location.search).has('dev');
if (DEV_MODE) {
// 直接缩短所有消息的触发时间
MESSAGES.forEach(m => { m.triggerAt = Math.floor(m.triggerAt / 10); });
document.title = '林夏 [DEV x10]';
}
let engine = null;
let gestures = null;
@@ -17,30 +9,25 @@ async function main() {
// 初始化音频(必须在用户手势后)
await Snd.init();
// 预加载关键短音效
await Promise.allSettled([
Snd.preload('sfx_keyboard', `${SFX}/sfx_keyboard_slow_v1.mp3`),
Snd.preload('sfx_chime', `${SFX}/sfx_ending_chime_v1.mp3`),
]);
// 请求屏幕常亮(Android Chrome 支持)
// 请求屏幕常亮
try {
if ('wakeLock' in navigator) {
window._wakeLock = await navigator.wakeLock.request('screen');
}
} catch(_) {}
} catch (_) {}
// 绑定手势到游戏区域
// 绑定手势
const gameEl = document.getElementById('game');
gestures = new GestureDetector(gameEl);
// 创建并启动游戏引擎
// 创建并启动引擎
engine = new GameEngine();
engine.init(gestures);
await engine.start();
if (DEV_MODE) {
if (DEV) {
document.getElementById('dbg').style.display = 'block';
document.title = '林夏 [DEV]';
}
}
@@ -66,8 +53,3 @@ document.getElementById('start').addEventListener('click', async function onClic
// 防止页面滚动/缩放
document.addEventListener('touchmove', e => e.preventDefault(), { passive: false });
document.addEventListener('gesturestart', e => e.preventDefault());
// 页面隐藏时停止打字音效
document.addEventListener('visibilitychange', () => {
if (document.hidden && Snd) Snd.stopTyping();
});