feat: 调整初始化逻辑 添加core/ext加载路径
This commit is contained in:
parent
c28b2f93aa
commit
bc51852c46
7
pom.xml
7
pom.xml
@ -17,6 +17,9 @@
|
|||||||
<resources>
|
<resources>
|
||||||
<resource>
|
<resource>
|
||||||
<directory>src/main/resources</directory>
|
<directory>src/main/resources</directory>
|
||||||
|
<excludes>
|
||||||
|
<exclude>plugins/**.js</exclude>
|
||||||
|
</excludes>
|
||||||
<filtering>true</filtering>
|
<filtering>true</filtering>
|
||||||
</resource>
|
</resource>
|
||||||
</resources>
|
</resources>
|
||||||
@ -49,7 +52,7 @@
|
|||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>
|
</plugin>
|
||||||
<!--<plugin>
|
<plugin>
|
||||||
<groupId>com.github.wvengen</groupId>
|
<groupId>com.github.wvengen</groupId>
|
||||||
<artifactId>proguard-maven-plugin</artifactId>
|
<artifactId>proguard-maven-plugin</artifactId>
|
||||||
<version>2.0.13</version>
|
<version>2.0.13</version>
|
||||||
@ -71,7 +74,7 @@
|
|||||||
</configuration>
|
</configuration>
|
||||||
</execution>
|
</execution>
|
||||||
</executions>
|
</executions>
|
||||||
</plugin>-->
|
</plugin>
|
||||||
</plugins>
|
</plugins>
|
||||||
</build>
|
</build>
|
||||||
<ciManagement>
|
<ciManagement>
|
||||||
|
@ -28,12 +28,6 @@ var disable;
|
|||||||
init(root);
|
init(root);
|
||||||
} catch (ex) {
|
} catch (ex) {
|
||||||
ex.printStackTrace();
|
ex.printStackTrace();
|
||||||
} finally {
|
|
||||||
disable = function () {
|
|
||||||
if (disablePlugins && typeof(disablePlugins) === "function") {
|
|
||||||
disablePlugins();
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -2,15 +2,21 @@
|
|||||||
var global = this;
|
var global = this;
|
||||||
/*global base*/
|
/*global base*/
|
||||||
|
|
||||||
|
(function (global) {
|
||||||
// noinspection JSUnusedLocalSymbols
|
// noinspection JSUnusedLocalSymbols
|
||||||
function init(root) {
|
global.init = function init(root) {
|
||||||
global.root = root;
|
global.root = root;
|
||||||
global.noop = function () {};
|
global.noop = function () {};
|
||||||
loadCore();
|
loadCore();
|
||||||
loadRequire();
|
loadRequire();
|
||||||
loadPatch();
|
try{
|
||||||
|
loadExt();
|
||||||
loadServerLib();
|
loadServerLib();
|
||||||
loadPlugins();
|
loadPlugins();
|
||||||
|
} catch (ex) {
|
||||||
|
console.console("§4初始化插件基础系统库错误:§c", ex);
|
||||||
|
console.ex(ex);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -36,9 +42,20 @@ function loadRequire() {
|
|||||||
/**
|
/**
|
||||||
* 加载补丁
|
* 加载补丁
|
||||||
*/
|
*/
|
||||||
function loadPatch() {
|
function loadExt() {
|
||||||
|
var fs = require('core/fs');
|
||||||
|
fs.list(fs.file(root, 'core/ext')).forEach(function (path) {
|
||||||
|
console.log('加载扩展类库', path);
|
||||||
|
try{
|
||||||
|
load(path.toFile());
|
||||||
|
} catch (ex) {
|
||||||
|
console.ex(ex);
|
||||||
|
}
|
||||||
|
})
|
||||||
// 加载补丁和扩展
|
// 加载补丁和扩展
|
||||||
load(root + '/core/patch.js');
|
// load(root + '/core/patch.js');
|
||||||
|
// 加载underscore类库
|
||||||
|
// load('https://cdn.bootcss.com/underscore.js/1.8.3/underscore-min.js');
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
@ -66,11 +83,11 @@ function loadServerLib() {
|
|||||||
function loadPlugins() {
|
function loadPlugins() {
|
||||||
// 初始化本体插件
|
// 初始化本体插件
|
||||||
global.manager = require('api/plugin');
|
global.manager = require('api/plugin');
|
||||||
if (manager) {
|
if (global.manager) {
|
||||||
manager.init('plugins');
|
global.manager.init('plugins');
|
||||||
// 只有当在正式环境运行的时候才加载
|
// 只有当在正式环境运行的时候才加载
|
||||||
manager.load();
|
global.manager.load();
|
||||||
manager.enable();
|
global.manager.enable();
|
||||||
} else {
|
} else {
|
||||||
console.console('§4当前服务器不支持使用MiaoScript插件系统!');
|
console.console('§4当前服务器不支持使用MiaoScript插件系统!');
|
||||||
}
|
}
|
||||||
@ -80,8 +97,9 @@ function loadPlugins() {
|
|||||||
/**
|
/**
|
||||||
* 关闭插件Hook
|
* 关闭插件Hook
|
||||||
*/
|
*/
|
||||||
function disablePlugins() {
|
global.disable = function disable() {
|
||||||
if (manager && manager.$) {
|
if (global.manager && global.manager.$) {
|
||||||
manager.disable();
|
global.manager.disable();
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
})(global);
|
Loading…
Reference in New Issue
Block a user