ea9934f315
- 添加jsdoc注释和d.ts补全文件 - 修改getBlockRuntimeId接口,使其支持填写特殊值 - 添加getBlockLightEmission,getGameRules,applyEnchant,removeEnchants,hasEnchant,getEnchantLevel,getEnchantNameAndLevel接口 - 导出事件onEntityChangeDimAfter,DragonRespawn,ProjectileTryCreate,ProjectileCreate
127 lines
4.6 KiB
JavaScript
127 lines
4.6 KiB
JavaScript
const PlaceholderAPI = {
|
|
/** 获取一个服务器变量的值 @type {function(string):string} */
|
|
getValueAPI: ll.import("BEPlaceholderAPI", "GetValue"),
|
|
/** 获取一个玩家变量的值 @type {function(string,Player):string} */
|
|
getValueByPlayerAPI: ll.import("BEPlaceholderAPI", "GetValueWithPlayer"),
|
|
/** 注册一个玩家变量 @type {function(string,string,string):boolean} */
|
|
registerPlayerPlaceholderAPI: ll.import("BEPlaceholderAPI", "registerPlayerPlaceholder"),
|
|
/** 注册一个服务器变量 @type {function(string,string,string):boolean} */
|
|
registerServerPlaceholderAPI: ll.import("BEPlaceholderAPI", "registerServerPlaceholder"),
|
|
/** 注册一个静态变量 @type {function(string,string,string,number):boolean} */
|
|
registerStaticPlaceholderAPI: ll.import("BEPlaceholderAPI", "registerStaticPlaceholder"),
|
|
/** 翻译包含PAPI服务器变量的字符串 @type {function(string):string} */
|
|
translateStringAPI: ll.import("BEPlaceholderAPI", "translateString"),
|
|
/** 翻译包含PAPI玩家变量的字符串 @type {function(string,Player):string} */
|
|
translateStringWithPlayerAPI: ll.import("BEPlaceholderAPI", "translateStringWithPlayer"),
|
|
/** 注销PAPI变量 @type {function(string):boolean} */
|
|
unRegisterPlaceholderAPI: ll.import("BEPlaceholderAPI", "unRegisterPlaceholder"),
|
|
/** 获取所有已注册的PAPI变量 @type {function():Array.<string>} */
|
|
getAllPAPI: ll.import("BEPlaceholderAPI", "getAllPAPI")
|
|
}
|
|
|
|
Function.prototype.getName =
|
|
/**
|
|
* 获取函数名字
|
|
* @returns {string}
|
|
*/
|
|
function () {
|
|
return this.name || this.toString().match(/function\s*([^(]*)\(/)[1] || Math.ceil(Math.random() * 1000000).toString(16);
|
|
}
|
|
|
|
/** PAPI变量类 */
|
|
class PAPI {
|
|
constructor() {
|
|
throw new Error("Static class cannot be instantiated");
|
|
}
|
|
|
|
/**
|
|
* 注册一个玩家PAPI变量
|
|
* @param {function} func 变量调用的函数
|
|
* @param {string} PluginName 插件名字
|
|
* @param {string} PAPIName PAPI变量名
|
|
* @returns {boolean} 是否注册成功
|
|
*/
|
|
static registerPlayerPlaceholder(func, PluginName, PAPIName) {
|
|
ll.export(func, PluginName, func.getName());
|
|
return PlaceholderAPI.registerPlayerPlaceholderAPI(PluginName, func.getName(), PAPIName);
|
|
}
|
|
|
|
/**
|
|
* 注册一个服务器PAPI变量
|
|
* @param {function} func 变量调用的函数
|
|
* @param {string} PluginName 插件名字
|
|
* @param {string} PAPIName PAPI变量名
|
|
* @returns {boolean} 是否注册成功
|
|
*/
|
|
static registerServerPlaceholder(func, PluginName, PAPIName) {
|
|
ll.export(func, PluginName, func.getName());
|
|
return PlaceholderAPI.registerServerPlaceholderAPI(PluginName, func.getName(), PAPIName);
|
|
}
|
|
|
|
/**
|
|
* 注册一个静态PAPI变量
|
|
* @param {function} func 变量调用的函数
|
|
* @param {string} PluginName 插件名字
|
|
* @param {string} PAPIName PAPI变量名
|
|
* @param {number} [UpdateInterval=50] 更新间隔
|
|
* @returns {boolean} 是否注册成功
|
|
*/
|
|
static registerStaticPlaceholder(func, PluginName, PAPIName, UpdateInterval = 50) {
|
|
ll.export(func, PluginName, func.getName());
|
|
return PlaceholderAPI.registerStaticPlaceholderAPI(PluginName, func.getName(), PAPIName, UpdateInterval);
|
|
}
|
|
|
|
/**
|
|
* 获取一个服务器变量的值
|
|
* @param {string} key PAPI变量名
|
|
* @returns {string} 值
|
|
*/
|
|
static getValue(key) {
|
|
return PlaceholderAPI.getValueAPI(key);
|
|
}
|
|
|
|
/**
|
|
* 获取一个玩家变量的值
|
|
* @param {string} key PAPI变量名
|
|
* @param {Player} pl 玩家对象
|
|
* @returns {string} 值
|
|
*/
|
|
static getValueByPlayer(key, pl) {
|
|
return PlaceholderAPI.getValueByPlayerAPI(key, pl);
|
|
}
|
|
|
|
/**
|
|
* 翻译带PAPI变量的字符串
|
|
* @param {string} str 字符串
|
|
* @param {Player} pl 玩家对象
|
|
* @returns {string} 翻译结果
|
|
*/
|
|
static translateString(str, pl = null) {
|
|
if (pl) {
|
|
return PlaceholderAPI.translateStringWithPlayerAPI(str, pl);
|
|
}
|
|
return PlaceholderAPI.translateStringAPI(str);
|
|
}
|
|
|
|
/**
|
|
* 注销一个PAPI变量
|
|
* @param {string} str PAPI变量名
|
|
* @returns {boolean} 是否注销成功
|
|
*/
|
|
static unRegisterPlaceholder(str) {
|
|
return PlaceholderAPI.unRegisterPlaceholderAPI(str);
|
|
}
|
|
|
|
/**
|
|
* 获取所有已注册的PAPI变量
|
|
* @returns {Array.<string>} 已注册的PAPI变量数组
|
|
*/
|
|
static getAllPAPI() {
|
|
return PlaceholderAPI.getAllPAPI();
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = {
|
|
PAPI
|
|
}; |