mirror of
https://github.com/unanmed/HumanBreak.git
synced 2025-04-05 03:17:36 +08:00
33 lines
1.1 KiB
TypeScript
33 lines
1.1 KiB
TypeScript
// 需要引入所有的插件
|
||
import pop from './plugin/pop';
|
||
import ui from './plugin/uiController';
|
||
import use from './plugin/use';
|
||
import animate from './plugin/animateController';
|
||
import utils from './plugin/utils';
|
||
import status from './plugin/ui/statusBar';
|
||
|
||
window.addEventListener('load', () => {
|
||
// 每个引入的插件都要在这里执行,否则不会被转发
|
||
const toForward: any[] = [pop(), ui(), use(), animate(), utils(), status()];
|
||
|
||
// 初始化所有插件,并转发到core上
|
||
(async function () {
|
||
for (const data of toForward) {
|
||
for (const name in data) {
|
||
const d = data[name as keyof typeof data];
|
||
if (!(name in core.plugin)) {
|
||
// @ts-ignore
|
||
core.plugin[name as keyof PluginDeclaration] = d;
|
||
}
|
||
if (!(d instanceof Function)) continue;
|
||
if (name in core) continue;
|
||
if (name.startsWith('_')) continue;
|
||
// @ts-ignore
|
||
core[name as ForwardKeys<PluginDeclaration>] = d;
|
||
}
|
||
}
|
||
|
||
console.log('插件转发完成!');
|
||
})();
|
||
});
|