未开启扩展不执行代码

This commit is contained in:
kuangthree 2024-01-22 21:12:19 +08:00
parent 83d7d2937b
commit 52600363c4
1 changed files with 33 additions and 0 deletions

View File

@ -35,6 +35,10 @@ export const importMode = generateImportFunction('mode', (name) => `../../mode/$
function generateImportFunction(type, pathParser) { function generateImportFunction(type, pathParser) {
return async (name) => { return async (name) => {
const path = pathParser(name); const path = pathParser(name);
if(type == 'extension' && !game.hasExtension(name)){
await game.import(type,createEmptyExtension(name));
return;
}
// 通过浏览器自带的script标签导入可直接获取报错信息且不会影响JS运行 // 通过浏览器自带的script标签导入可直接获取报错信息且不会影响JS运行
// 此时代码内容也将缓存在浏览器中故再次import后将不会重新执行代码内容测试下来如此 // 此时代码内容也将缓存在浏览器中故再次import后将不会重新执行代码内容测试下来如此
const [status, script] = await new Promise((resolve) => { const [status, script] = await new Promise((resolve) => {
@ -53,3 +57,32 @@ function generateImportFunction(type, pathParser) {
await game.import(type, modeContent.default); await game.import(type, modeContent.default);
} }
} }
function createEmptyExtension(name){
return {name:name,content:function(config,pack){},precontent:function(){},config:{},help:{},package:{
character:{
character:{
},
translate:{
},
},
card:{
card:{
},
translate:{
},
list:[],
},
skill:{
skill:{
},
translate:{
},
},
intro:"扩展《"+name+"》尚未开启,请开启后查看信息。",
author:"未知",
diskURL:"",
forumURL:"",
version:"1.0",
},files:{"character":[],"card":[],"skill":[],"audio":[]}}
}