Compare commits
27 Commits
v0.28.0-be
...
v0.1.1
| Author | SHA1 | Date | |
|---|---|---|---|
| 781524f83e | |||
| c7a812c003 | |||
| 325f2c8cf9 | |||
| 562e2d0017 | |||
| b7871e8d33 | |||
| 060cffd8e7 | |||
| 4b1fb07cc9 | |||
| 0931d69188 | |||
| 7d33368ebd | |||
| c95fc5fcff | |||
| a7479f60c8 | |||
| ac75356778 | |||
| 7f32382dbc | |||
| b3c2def36d | |||
| 1ea93dfb9f | |||
| e5ffa70ed9 | |||
| 2a60b36e23 | |||
| c4c2c0ab0f | |||
| bf5628a646 | |||
| 13e9f0a5af | |||
| cdd5f2d250 | |||
| dfd7182008 | |||
| 533859808f | |||
| 15cea1dfc8 | |||
| dfa43d58f0 | |||
| 2bf239d8ea | |||
| cbe87cc378 |
@@ -1,12 +0,0 @@
|
||||
# http://editorconfig.org
|
||||
root = true
|
||||
|
||||
[*]
|
||||
indent_style = space
|
||||
indent_size = 4
|
||||
charset = utf-8
|
||||
trim_trailing_whitespace = true
|
||||
insert_final_newline = true
|
||||
|
||||
[*.md]
|
||||
trim_trailing_whitespace = false
|
||||
5
.gitignore
vendored
5
.gitignore
vendored
@@ -1,9 +1,4 @@
|
||||
.yarn*
|
||||
.vscode
|
||||
.theia
|
||||
node_modules
|
||||
dist
|
||||
package-lock.json
|
||||
yarn.lock
|
||||
packages/nashorn/docs
|
||||
!packages/types/dist
|
||||
|
||||
10
.gitpod.Dockerfile
vendored
10
.gitpod.Dockerfile
vendored
@@ -1,10 +0,0 @@
|
||||
FROM gitpod/workspace-full
|
||||
|
||||
USER gitpod
|
||||
|
||||
# Install custom tools, runtime, etc. using apt-get
|
||||
# For example, the command below would install "bastet" - a command line tetris clone:
|
||||
#
|
||||
# RUN sudo apt-get -q update && # sudo apt-get install -yq bastet && # sudo rm -rf /var/lib/apt/lists/*
|
||||
#
|
||||
# More information: https://www.gitpod.io/docs/config-docker/
|
||||
@@ -1,5 +0,0 @@
|
||||
tasks:
|
||||
- init: yarn && yarn bs && yarn build
|
||||
command: yarn watch
|
||||
# image:
|
||||
# file: .gitpod.Dockerfile
|
||||
35
README.MD
35
README.MD
@@ -8,28 +8,15 @@
|
||||
|
||||
```txt
|
||||
└─packages
|
||||
├─api 全平台兼容的接口
|
||||
├─core 核心代码 用于引导加载
|
||||
├─common 公共类库代码 例如 http reflect 模块
|
||||
├─compile 编译器相关功能
|
||||
├─client NodeJS 的 Minecraft 客户端 已迁移至 ms-client
|
||||
├─container IOC容器 用于注入具体实现
|
||||
├─database 数据库相关功能
|
||||
├─protocol 协议处理相关功能
|
||||
├─service 服务相关功能
|
||||
├─i18n 多语言环境相关支持
|
||||
├─polyfill Nashorn 的一些自定义增强
|
||||
├─nashorn Nashorn 的类型定义
|
||||
├─nodejs NodeJS 的部分 Java 实现
|
||||
├─bungee BungeeCordAPI 内部实现
|
||||
├─bukkit BukkitAPI 内部实现
|
||||
├─sponge SpongeAPI 内部实现
|
||||
├─nukkit NukkitAPI 内部实现
|
||||
├─molang MoLang 解析库
|
||||
├─qrcode 二维码相关类库
|
||||
├─plugin 插件管理器
|
||||
├─websocket WebSocket 相关实现
|
||||
| ├─client 基于 Netty 的 WebSocket 客户端
|
||||
| └─server 基于 Netty 的 WebSocket 服务端
|
||||
└─type 类型定义 已迁移到 @javatypes
|
||||
├─api 全平台兼容的接口
|
||||
├─core 核心代码 用于引导加载
|
||||
├─common 公共类库代码 例如 http reflect 模块
|
||||
├─container IOC容器 用于注入具体实现
|
||||
├─nashorn Nashorn 的类型定义
|
||||
├─bukkit BukkitAPI内部实现
|
||||
├─sponge SpongeAPI内部实现
|
||||
├─plugin 插件管理器
|
||||
└─plugins 这里当然是插件啦
|
||||
├─bukkit 只兼容Bukkit的插件
|
||||
└─sponge 只兼容Sponge的插件
|
||||
```
|
||||
|
||||
62
cli.sh
Executable file
62
cli.sh
Executable file
@@ -0,0 +1,62 @@
|
||||
#!/bin/bash
|
||||
SHELL_PREFIX="[FAAS-CLI]"
|
||||
# Shell Base Script
|
||||
set -e
|
||||
|
||||
c_red="\033[38;5;1m"
|
||||
c_blue="\033[38;5;4m"
|
||||
c_green="\033[38;5;2m"
|
||||
c_reset="\033[0m"
|
||||
c_yellow="\033[38;5;3m"
|
||||
|
||||
c_prefix="${c_blue}${SHELL_PREFIX}>>${c_reset}"
|
||||
|
||||
dateStr() {
|
||||
echo -e "[$(date '+%H:%M:%S')]"
|
||||
}
|
||||
|
||||
info() {
|
||||
echo -e "${c_prefix}$(dateStr) ${*}"
|
||||
}
|
||||
|
||||
warn() {
|
||||
echo -e "${c_prefix}$(dateStr) ${c_yellow}${*}${c_reset}"
|
||||
}
|
||||
|
||||
error() {
|
||||
echo -e "${c_prefix}$(dateStr) ${c_red}${*}${c_reset}"
|
||||
}
|
||||
#====================
|
||||
cd $(dirname $0)
|
||||
|
||||
# User Input Variable
|
||||
action=
|
||||
|
||||
while [[ $# -gt 0 ]]; do
|
||||
case "$1" in
|
||||
-a)
|
||||
action="$2"
|
||||
shift
|
||||
;;
|
||||
-*)
|
||||
echo "Illegal option $1"
|
||||
;;
|
||||
esac
|
||||
shift $(( $# > 0 ? 1 : 0 ))
|
||||
done
|
||||
|
||||
case "${action}" in
|
||||
undo)
|
||||
hash=$(git log -n 1 --format=format:%H)
|
||||
tag=$(git tag -l --contains=${hash})
|
||||
if [[ -z "${tag}" ]]; then
|
||||
error "last commit not have tag exit..."
|
||||
exit 0
|
||||
fi
|
||||
git reset HEAD^
|
||||
git tag -d ${tag}
|
||||
git push origin master -f
|
||||
git push origin :${tag}
|
||||
;;
|
||||
esac
|
||||
|
||||
325
doc/MCBBS.MD
325
doc/MCBBS.MD
@@ -1,11 +1,318 @@
|
||||
- 构建状态 [](https://ci.yumc.pw/job/Minecraft/job/MiaoScript/)
|
||||
- 当前版本 
|
||||
- 下载地址 [](http://w.yumc.pw/free.html#MiaoScript-download)
|
||||
- 更新日志 [](https://docs.yumc.pw/MiaoScript/CHANGELOG.html)
|
||||
- 安装文档 [](https://docs.yumc.pw/MiaoScript/1-user/1.1-check-env.html)
|
||||
- 开发文档 [](https://docs.yumc.pw/MiaoScript/2-develop/1.1-check-env.html)
|
||||
- 兼容服务端 Spigot CatServer Sponge BungeeCord Nukkit(没错 他还兼容Nukkit)
|
||||
为了方便阅读 我对帖子进行了分页 请点击目录阅读!
|
||||
|
||||
### 腐竹版本(开发中)
|
||||
## 插件简介
|
||||
|
||||
- 先上几张图
|
||||
- 此插件可以实现跨端使用 `TypeScript` 开发 脚本插件
|
||||
- 目前已经兼容 `Spigot` `Sponge`
|
||||
- 后续计划兼容 `BungeeCord` `Nukkit`
|
||||
|
||||
## 起源 (可以略过)
|
||||
|
||||
### 简介
|
||||
|
||||
> 这个坑是我自己刨的 但是发现坑太大 需要更多的人一起填
|
||||
|
||||
### 起源
|
||||
|
||||
- 诞生于 `2016年08月25日` 这是 Git 上的第一个提交 具体啥时候我也忘了
|
||||
- 起初 `MiaoScript` 只是用于服务器其他插件的变量执行 并且依赖于PAPI(不知道是啥的自己百度)
|
||||
- 比如 [`MiaoMenu`](http://w.yumc.pw/zc/MiaoMenu.html) 的部分复杂脚本
|
||||
- 比如 [`MiaoChat`](http://mcbbs.net/thread-631240-1-1.html) 的聊天变量
|
||||
- 突然有一天 圈内的大佬 `QSB` @qiu1995 过来找我 说能不能用脚本监听玩家的事件
|
||||
- PS: 这货自从用过 `DeluxeMenu` 之后就喜欢上了用JS写菜单
|
||||
- 当初感觉没啥问题 就出了第一个简易的 `MiaoScript` 版本 还是用 yml 做的配置文件
|
||||
- 但是由于设计 BukkitAPI 等内容 对Java要求太高 后来 邱也弃坑了 我也弃坑了
|
||||
|
||||
### 刨坑
|
||||
|
||||
- 时隔多年(也就一年) 看到了Sponge的兴起 (估摸着是MCPC系列的MOD端都弃坑了)
|
||||
- 同时 这期间 收到很多腐竹的单子 但是又是非常基础的东西
|
||||
- 比如 开服给玩家发一条消息啦
|
||||
- 比如 修改玩家某些数据啦
|
||||
- 这些东西实际上也就几行代码的事情
|
||||
- 同时 很多想入坑 插件开发 但是又有一些被卡死在环境搭建上
|
||||
- 比如 `Bukkit` 需要 `BukkitAPI`
|
||||
- `Sponge` 需要 `SpongeAPI` 如果涉及 `MOD` 还要 `Forge` 环境
|
||||
- 再或者 BungeeCord 的插件开发 我也是经常懒得搞
|
||||
- 当然 最主要的是 某个 咕咕咕的群 天天有人问我 喵系插件能不能支持 Sponge
|
||||
- 内心当然是拒绝的 现在要上班养老婆孩子(咳咳 不要以为我是大叔 我也才刚毕业而已) 那里还有时间免费给你们写插件
|
||||
- 于是乎 我又想起了当初的 `MiaoScript`
|
||||
- 突发奇想 一个插件的雏形出现在我的脑海中
|
||||
- 可以兼容多种服务器
|
||||
- 不需要开发环境 有记事本就可以开发
|
||||
- 语法要简单 比如 JavaScript
|
||||
- 能够自动搜索安装依赖(毕竟很多人天天问我为何喵系插件跑不起来 都是缺少PAPI)
|
||||
- 能够不重启更新插件(当然得保证代码安全的前提下)
|
||||
- 在 2017年9月14号(距离 第一个版本正式版发布(2016-09-21) 相差一年整)
|
||||
- 一个全新的 `MiaoScript` 诞生了
|
||||
- Java部分代码 只有一个启动类
|
||||
- 核心全部由 JS 编写
|
||||
- 兼容 `CommonJS` 规范
|
||||
- 实时重载
|
||||
|
||||
### 进展
|
||||
|
||||
- [项目发布](https://git.yumc.pw/502647092/MiaoScript/releases)
|
||||
- [项目代码](https://git.yumc.pw/502647092/MiaoScript)
|
||||
- [项目脑图](http://naotu.baidu.com/file/293b9a0fc7cef23c69de81c55e3617d5?token=1eee8fd759198eb7)
|
||||
|
||||
### 规划
|
||||
|
||||
- 初期只会支持JS类型的插件开发
|
||||
- 二期会出一个建议版本的MS脚本 可以用简单的语法实现简单的功能
|
||||
- 各个层级会有依赖控制 比如 `MS脚本 => JS脚本 => 调用Java原生API`
|
||||
|
||||
## 框架设计
|
||||
|
||||
### MiaoScript TS 实现
|
||||
|
||||
项目具体实现 由 TypeScript 进行编写 然后编译至 `es5` 用于兼容 Java8 的 `Nashorn`
|
||||
|
||||
### Project Structure
|
||||
|
||||
```txt
|
||||
└─packages
|
||||
├─api 全平台兼容的接口
|
||||
├─core 核心代码 用于引导加载
|
||||
├─common 公共类库代码 例如 http reflect 模块
|
||||
├─container IOC容器 用于注入具体实现
|
||||
├─nashorn Nashorn 的类型定义
|
||||
├─bukkit BukkitAPI内部实现
|
||||
├─sponge SpongeAPI内部实现
|
||||
├─plugin 插件管理器
|
||||
└─plugins 这里当然是插件啦
|
||||
├─bukkit 只兼容Bukkit的插件
|
||||
└─sponge 只兼容Sponge的插件
|
||||
```
|
||||
|
||||
详细的内容就不逼逼了 自己看代码吧
|
||||
|
||||
Github: https://github.com/circlecloud/ms
|
||||
|
||||
## 插件开发基础
|
||||
|
||||
### 开发IDE (推荐VSCode或者MiaoScrit在线IDE)
|
||||
|
||||
如果只是简单的开发 你可用记事本 (但是没有任何补全和错误提示)
|
||||
|
||||
### 开发环境准备(针对高级用户))
|
||||
|
||||
- 安装 `NodeJS` 和 `Yarn`
|
||||
- 拉取代码
|
||||
- `git clone https://github.com/circlecloud/ms.git`
|
||||
- 进入目录 `ms`
|
||||
- 安装 npm 包
|
||||
- `yarn`
|
||||
- 编译一次生成对应的类库
|
||||
- `yarn build`
|
||||
|
||||
### 直接在 MiaoScript Online WebIDE 开发
|
||||
|
||||
填坑中...
|
||||
|
||||
## 基本插件框架
|
||||
|
||||
### HelloWorld 示例插件
|
||||
|
||||
先来一个 `HelloWorld.ts` 插件示范!
|
||||
|
||||
```ts
|
||||
import { plugin, interfaces, cmd, listener, tab } from '@ms/plugin'
|
||||
|
||||
@plugin({ name: 'HelloWorld', version: '1.0.0', author: 'MiaoWoo', source: __filename })
|
||||
export class HelloWorld extends interfaces.Plugin {
|
||||
load() {
|
||||
this.logger.log('Test Plugin load from MiaoScript Plugin System...');
|
||||
}
|
||||
enable() {
|
||||
this.logger.log('Test Plugin enable from MiaoScript Plugin System...');
|
||||
}
|
||||
disable() {
|
||||
this.logger.log('Test Plugin disable from MiaoScript Plugin System...');
|
||||
}
|
||||
|
||||
bukkitload() {
|
||||
this.logger.log('Load When ServerType is Bukkit!')
|
||||
}
|
||||
bukkitenable() {
|
||||
this.logger.log('Enable When ServerType is Bukkit!')
|
||||
}
|
||||
bukkitdisable() {
|
||||
this.logger.log('Disable When ServerType is Bukkit!')
|
||||
}
|
||||
|
||||
spongeload() {
|
||||
this.logger.log('Load When ServerType is Sponge!')
|
||||
}
|
||||
spongeenable() {
|
||||
this.logger.log('Enable When ServerType is Sponge!')
|
||||
}
|
||||
spongedisable() {
|
||||
this.logger.log('Disable When ServerType is Sponge!')
|
||||
}
|
||||
|
||||
@cmd()
|
||||
hello(sender: any, command: string, args: string[]) {
|
||||
this.logger.log(sender, command, args);
|
||||
this.logger.sender(sender, JSON.stringify({ command, args }));
|
||||
}
|
||||
|
||||
@tab()
|
||||
tabhello(_sender: any, _command: string, _args: string[]) {
|
||||
return ['world']
|
||||
}
|
||||
|
||||
@listener({ servertype: 'bukkit' })
|
||||
playerjoin(event: any) {
|
||||
this.logger.console(`§aBukkit PlayerJoinEvent: §b${event.player.name}`)
|
||||
setTimeout(() => this.logger.sender(event.player, `§a欢迎来到 §bMiaoScript §a的世界!`), 10);
|
||||
}
|
||||
|
||||
@listener({ servertype: 'sponge' })
|
||||
clientconnectionevent$join(event: any) {
|
||||
this.logger.console(`§aSponge ClientConnectionEvent.Join: §b${event.targetEntity.name}`)
|
||||
setTimeout(() => this.logger.sender(event.targetEntity, `§a欢迎来到 §bMiaoScript §a的世界!`), 10);
|
||||
}
|
||||
}
|
||||
|
||||
```
|
||||
|
||||
- 进入 `ms`目录
|
||||
- 执行编译 `yarn build:plugins`
|
||||
- 从 `packages/plugins/dist` 中复制 `HelloWorld.js` 文件 到对应的插件目录
|
||||
- Bukkit: plugins/MiaoScript/plugins/
|
||||
- Sponge: config/miaoscript/plugins/
|
||||
- 重载 `MiaoScript`
|
||||
- 打开客户端进入游戏 预览一下效果
|
||||
- 从 Spigot 服务端进入
|
||||

|
||||

|
||||
- 从 Sponge 服务端进入
|
||||

|
||||

|
||||
|
||||
## 注册插件
|
||||
|
||||
- 从上面的示例可以看到 一个插件 通过注解 `@plugin` 即可启动
|
||||
- 此注解接受一个 `PluginMetadata` 对象 定义如下
|
||||
```ts
|
||||
export interface PluginMetadata {
|
||||
/**
|
||||
* 插件名称
|
||||
*/
|
||||
name: string;
|
||||
/**
|
||||
* 前缀
|
||||
*/
|
||||
prefix?: string;
|
||||
/**
|
||||
* 插件版本
|
||||
*/
|
||||
version: string;
|
||||
/**
|
||||
* 插件版本
|
||||
*/
|
||||
author: string | string[];
|
||||
/**
|
||||
* 插件源文件 必须指定为 __filename
|
||||
*/
|
||||
source: string;
|
||||
/**
|
||||
* 插件本体
|
||||
*/
|
||||
target?: any;
|
||||
}
|
||||
```
|
||||
|
||||
### 插件生命周期
|
||||
|
||||
MiaoScript的生命周期遵循了 Bukkit 的生命周期
|
||||
|
||||
MiaoScript针对不同的服务端 提供了扩展的周期
|
||||
以服务端类型开头阶段名结束 例如 `bukkitload` `spongeenbale`
|
||||
扩展的生命周期只会在特定的服务器执行
|
||||
|
||||
### load 加载阶段
|
||||
|
||||
此阶段通常用于初始化基础配置 数据库链接等
|
||||
某些对外提供功能的插件 需要在此阶段初始化完成
|
||||
|
||||
### enable 启动阶段
|
||||
|
||||
此阶段通常用于注册命令 注册事件等
|
||||
由于命令和事件 MiaoScript 已经托管了 所以开发者可以直接用注解实现
|
||||
|
||||
### disable 关闭阶段
|
||||
|
||||
此阶段通常用于注销命令 注销事件等
|
||||
由于命令和事件 MiaoScript 已经托管了 所以开发者可以直接用注解实现
|
||||
|
||||
## 注册命令/补全
|
||||
|
||||
### cmd 命令
|
||||
|
||||
命令 就是玩家在Minecraft中执行命令 下面是一个示例的命令
|
||||
|
||||
- 命令是一个 `function` 通过 `@cmd` 注解注册
|
||||
- 命令注册时默认使用方法名称为命令名称 当前你可以传入 name 参数指定命令名称 例如 `{name: 'test'}`
|
||||
- 接受三个参数 `sender: any, command: string, args: string[]`
|
||||
- 分别代表 命令发送者 命令名称 命令参数
|
||||
|
||||
```ts
|
||||
@cmd()
|
||||
hello(sender: any, command: string, args: string[]) {
|
||||
this.logger.log(sender, command, args);
|
||||
this.logger.sender(sender, JSON.stringify({ command, args }));
|
||||
}
|
||||
```
|
||||
|
||||
### tab 补全
|
||||
|
||||
补全就是 玩家在Minecraft执行命令时 使用 Tab键 补全
|
||||
|
||||
- 补全是一个 `functio` 一般以 `tab` 开头 需要补全的命令结尾 通过 `@tab` 注解注册
|
||||
- 补全注册时默认使用方法名称为补全名称 当前你可以传入 name 参数指定命令名称 例如 `{name: 'test'}`
|
||||
- 接受三个参数 `sender: any, command: string, args: string[]`
|
||||
- 分别代表 命令发送者 命令名称 命令参数
|
||||
|
||||
_注意: 当补全命令未注册时 补全无效! 且补全和命令必须在同一个Class内!_
|
||||
|
||||
```ts
|
||||
@tab()
|
||||
tabhello(_sender: any, _command: string, _args: string[]) {
|
||||
return ['world']
|
||||
}
|
||||
```
|
||||
|
||||
## 监听事件
|
||||
|
||||
事件是指 Minecraft 中发生的各种事情
|
||||
|
||||
- 监听事件是一个 `function` 通过 `@listener` 注册
|
||||
- 事件名称默认为方法名称
|
||||
- 所有类型服务端的事件 MiaoScript 都会进行一次映射 方便使用
|
||||
- 例如 `PlayerJoinEvent` 会映射为 `PlayerJoinEvent, playerjoinevent, playerjoin` 等
|
||||
- 一般规则就是 类名直接小写 如果遇到子类 则保留 `$`
|
||||
- 例如 `ClientConnectionEvent.Join` 会映射为 `clientconnectionevent$join`
|
||||
- 事件的注可以传入 `servertype` 来指定这个事件类型的服务端加载 默认是所有服务端都加载
|
||||
- 事件监听方法的第一个参数就是本次事件的具体内容 (这里就需要自己去查询对应的JavaDoc了)
|
||||
|
||||
```ts
|
||||
@listener({ servertype: 'bukkit' })
|
||||
playerjoin(event: any) {
|
||||
this.logger.console(`§aBukkit PlayerJoinEvent: §b${event.player.name}`)
|
||||
setTimeout(() => this.logger.sender(event.player, `§a欢迎来到 §bMiaoScript §a的世界!`), 10);
|
||||
}
|
||||
|
||||
@listener({ servertype: 'sponge' })
|
||||
clientconnectionevent$join(event: any) {
|
||||
this.logger.console(`§aSponge ClientConnectionEvent.Join: §b${event.targetEntity.name}`)
|
||||
setTimeout(() => this.logger.sender(event.targetEntity, `§a欢迎来到 §bMiaoScript §a的世界!`), 10);
|
||||
}
|
||||
```
|
||||
|
||||
## 插件列表
|
||||
|
||||
暂无
|
||||
|
||||
> 注意: 一楼的列表是老版本的 新版本无法加载!
|
||||
|
||||
25
lerna.json
25
lerna.json
@@ -1,15 +1,16 @@
|
||||
{
|
||||
"version": "0.28.0-beta.2",
|
||||
"npmClient": "yarn",
|
||||
"packages": [
|
||||
"packages/*"
|
||||
],
|
||||
"command": {
|
||||
"run": {
|
||||
"stream": true
|
||||
"version": "0.1.1",
|
||||
"useWorkspaces": true,
|
||||
"npmClient": "yarn",
|
||||
"packages": [
|
||||
"packages/*"
|
||||
],
|
||||
"command": {
|
||||
"run": {
|
||||
"stream": true
|
||||
},
|
||||
"publish": {
|
||||
"registry": "https://repo.yumc.pw/repository/npm-hosted/"
|
||||
}
|
||||
}
|
||||
},
|
||||
"publishConfig": {
|
||||
"access": "public"
|
||||
}
|
||||
}
|
||||
|
||||
19
package.json
19
package.json
@@ -6,23 +6,16 @@
|
||||
"author": "MiaoWoo <admin@yumc.pw>",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"bs": "lerna bootstrap",
|
||||
"clean": "lerna run clean",
|
||||
"watch": "lerna run watch --parallel",
|
||||
"build": "lerna run build",
|
||||
"ug": "yarn upgrade-interactive",
|
||||
"np": "./script/push.sh",
|
||||
"lsp": "npm login -scope=@ccms",
|
||||
"lp": "lerna publish --force-publish",
|
||||
"lpb": "lerna publish --preid beta --dist-tag beta --force-publish",
|
||||
"lpc": "lerna publish --canary --preid beta --pre-dist-tag beta --force-publish",
|
||||
"lpf": "lerna publish from-package --yes",
|
||||
"sync": "./script/sync.sh"
|
||||
"clean": "npx lerna run clean",
|
||||
"watch": "npx lerna run watch --parallel",
|
||||
"build": "npx lerna run build",
|
||||
"build:plugins": "npx lerna run build --scope=@ms/plugins",
|
||||
"lp": "npx lerna publish"
|
||||
},
|
||||
"workspaces": [
|
||||
"packages/*"
|
||||
],
|
||||
"devDependencies": {
|
||||
"lerna": "^7.1.4"
|
||||
"lerna": "^3.16.4"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1 +0,0 @@
|
||||
../../.npmignore
|
||||
@@ -1,35 +0,0 @@
|
||||
{
|
||||
"name": "@ccms/amqp",
|
||||
"version": "0.28.0-beta.2",
|
||||
"description": "MiaoScript amqp package",
|
||||
"keywords": [
|
||||
"miaoscript",
|
||||
"minecraft",
|
||||
"bukkit",
|
||||
"sponge"
|
||||
],
|
||||
"author": "MiaoWoo <admin@yumc.pw>",
|
||||
"homepage": "https://github.com/circlecloud/ms.git",
|
||||
"license": "ISC",
|
||||
"main": "dist/index.js",
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"watch": "tsc --watch",
|
||||
"build": "yarn clean && tsc",
|
||||
"test": "echo \"Error: run tests from root\" && exit 1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ccms/api": "^0.28.0-beta.2",
|
||||
"@ccms/common": "^0.28.0-beta.2",
|
||||
"@ccms/container": "^0.28.0-beta.2"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@ccms/nashorn": "^0.28.0-beta.2",
|
||||
"@javatypes/amqp-client": "^0.0.3",
|
||||
"@javatypes/spring-amqp": "^0.0.3",
|
||||
"@javatypes/spring-rabbit": "^0.0.3",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rimraf": "^4.1.2",
|
||||
"typescript": "^4.9.5"
|
||||
}
|
||||
}
|
||||
@@ -1,17 +0,0 @@
|
||||
import { ConnectionFactoryAdapter } from "./connection"
|
||||
import { RabbitTemplateAdapter } from "./template"
|
||||
import { JSClass } from "@ccms/container"
|
||||
|
||||
export const RabbitAdmin = Java.type('org.springframework.amqp.rabbit.core.RabbitAdmin')
|
||||
|
||||
export class RabbitAdminAdapter {
|
||||
@JSClass('org.springframework.amqp.rabbit.core.RabbitAdmin')
|
||||
private RabbitAdmin: org.springframework.amqp.rabbit.core.RabbitAdmin
|
||||
private _Handler: org.springframework.amqp.rabbit.core.RabbitAdmin
|
||||
constructor(config: RabbitTemplateAdapter | org.springframework.amqp.rabbit.core.RabbitTemplate | ConnectionFactoryAdapter | org.springframework.amqp.rabbit.connection.ConnectionFactory) {
|
||||
this._Handler = new RabbitAdmin((config instanceof RabbitTemplateAdapter || config instanceof ConnectionFactoryAdapter) ? config.getHandler() : config)
|
||||
}
|
||||
getHandler(): org.springframework.amqp.rabbit.core.RabbitAdmin {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
export const ConfirmCallback = Java.type('org.springframework.amqp.rabbit.core.RabbitTemplate.ConfirmCallback')
|
||||
export const ReturnCallback = Java.type('org.springframework.amqp.rabbit.core.RabbitTemplate.ReturnCallback')
|
||||
|
||||
export abstract class ConfirmCallbackAdapter {
|
||||
private _Handler: org.springframework.amqp.rabbit.core.RabbitTemplate.ConfirmCallback
|
||||
constructor() {
|
||||
let ConfirmCallbackImpl = Java.extend(ReturnCallback, {
|
||||
confirm: (correlationData: org.springframework.amqp.rabbit.connection.CorrelationData, ack: boolean, cause: string) => this.confirm(correlationData, ack, cause)
|
||||
})
|
||||
this._Handler = new ConfirmCallbackImpl()
|
||||
}
|
||||
abstract confirm(correlationData: org.springframework.amqp.rabbit.connection.CorrelationData, ack: boolean, cause: string)
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
|
||||
export abstract class ReturnCallbackAdapter {
|
||||
private _Handler: org.springframework.amqp.rabbit.core.RabbitTemplate.ReturnCallback
|
||||
constructor() {
|
||||
let ReturnCallbackImpl = Java.extend(ReturnCallback, {
|
||||
returnedMessage: (message: org.springframework.amqp.core.Message, replyCode: number, replyText: string, exchange: string, routingKey: string) => this.returnedMessage(message, replyCode, replyText, exchange, routingKey)
|
||||
})
|
||||
this._Handler = new ReturnCallbackImpl()
|
||||
}
|
||||
abstract returnedMessage(message: org.springframework.amqp.core.Message, replyCode: number, replyText: string, exchange: string, routingKey: string)
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
@@ -1,31 +0,0 @@
|
||||
import threadPool from '@ccms/common/dist/thread-pool'
|
||||
|
||||
export const ConnectionFactory = Java.type('org.springframework.amqp.rabbit.connection.ConnectionFactory')
|
||||
const CachingConnectionFactory = Java.type('org.springframework.amqp.rabbit.connection.CachingConnectionFactory')
|
||||
interface ConnectionConfig {
|
||||
url: string,
|
||||
username?: string,
|
||||
password?: string,
|
||||
publisherConfirms?: boolean
|
||||
cacheSize?: number
|
||||
}
|
||||
|
||||
export class ConnectionFactoryAdapter {
|
||||
private _Handler: org.springframework.amqp.rabbit.connection.CachingConnectionFactory
|
||||
|
||||
constructor(config: ConnectionConfig) {
|
||||
if (!config.url) { throw new Error('Connection UrI Can\'t be undefiend!') }
|
||||
config = { publisherConfirms: true, cacheSize: 50, ...config }
|
||||
this._Handler = new CachingConnectionFactory(new java.net.URI(config.url))
|
||||
config.username && this._Handler.setUsername(config.username)
|
||||
config.password && this._Handler.setPassword(config.password)
|
||||
this._Handler.setPublisherConfirms(config.publisherConfirms)
|
||||
this._Handler.setExecutor(threadPool.create({
|
||||
groupName: '@ccms/amqp-rabbit'
|
||||
}))
|
||||
this._Handler.setChannelCacheSize(config.cacheSize)
|
||||
}
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
@@ -1,30 +0,0 @@
|
||||
import { ConnectionFactoryAdapter, ConnectionFactory } from "./connection"
|
||||
import { ChannelAwareMessageListenerAdapter, ChannelAwareMessageListener } from "./listener"
|
||||
|
||||
export const SimpleMessageListenerContainer = org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer
|
||||
export const AcknowledgeMode = org.springframework.amqp.core.AcknowledgeMode
|
||||
interface ContainerConfig {
|
||||
connectionFactory: ConnectionFactoryAdapter | typeof ConnectionFactory
|
||||
queueNames: string[]
|
||||
messageListener: ChannelAwareMessageListenerAdapter | typeof ChannelAwareMessageListener
|
||||
maxConcurrentConsumers?: number
|
||||
concurrentConsumers?: number
|
||||
acknowledgeMode?: org.springframework.amqp.core.AcknowledgeMode
|
||||
}
|
||||
|
||||
export class MessageListenerContainerAdapter {
|
||||
private _Handler: org.springframework.amqp.rabbit.listener.SimpleMessageListenerContainer
|
||||
constructor(config: ContainerConfig) {
|
||||
config = { concurrentConsumers: 5, maxConcurrentConsumers: 10, acknowledgeMode: AcknowledgeMode.AUTO, ...config }
|
||||
this._Handler = new SimpleMessageListenerContainer(config.connectionFactory instanceof ConnectionFactoryAdapter ? config.connectionFactory.getHandler() : config.connectionFactory)
|
||||
//@ts-ignore
|
||||
this._Handler.setQueueNames(config.queueNames)
|
||||
this._Handler.setMaxConcurrentConsumers(config.maxConcurrentConsumers)
|
||||
this._Handler.setConcurrentConsumers(config.concurrentConsumers)
|
||||
this._Handler.setAcknowledgeMode(config.acknowledgeMode)
|
||||
this._Handler.setMessageListener(config.messageListener instanceof ChannelAwareMessageListenerAdapter ? config.messageListener.getHandler() : config.messageListener)
|
||||
}
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
@@ -1,37 +0,0 @@
|
||||
const JavaString = Java.type('java.lang.String')
|
||||
const MessageProperties = org.springframework.amqp.core.MessageProperties
|
||||
const Message = org.springframework.amqp.core.Message
|
||||
|
||||
export const MessageConverter = Java.type('org.springframework.amqp.support.converter.MessageConverter')
|
||||
|
||||
export class MessageConverterAdapter {
|
||||
private _Handler: org.springframework.amqp.support.converter.MessageConverter
|
||||
constructor() {
|
||||
var MessageConverterImpl = Java.extend(MessageConverter, {
|
||||
toMessage: (object: any, messageProperties: org.springframework.amqp.core.MessageProperties) => this.toMessage(object, messageProperties),
|
||||
fromMessage: (message: org.springframework.amqp.core.Message) => this.fromMessage(message)
|
||||
})
|
||||
this._Handler = new MessageConverterImpl()
|
||||
}
|
||||
toMessage(object: any, messageProperties: org.springframework.amqp.core.MessageProperties) {
|
||||
if (typeof object == "string") {
|
||||
messageProperties.setContentType(MessageProperties.CONTENT_TYPE_TEXT_PLAIN)
|
||||
return new Message(new JavaString(object).getBytes(), messageProperties)
|
||||
} else {
|
||||
messageProperties.setContentType(MessageProperties.CONTENT_TYPE_JSON)
|
||||
return new Message(new JavaString(JSON.stringify(object)).getBytes(), messageProperties)
|
||||
}
|
||||
}
|
||||
fromMessage(message: org.springframework.amqp.core.Message) {
|
||||
if (message.getMessageProperties().getContentType() == MessageProperties.CONTENT_TYPE_TEXT_PLAIN) {
|
||||
return new JavaString(message.getBody(), message.getMessageProperties().getContentEncoding())
|
||||
}
|
||||
if (message.getMessageProperties().getContentType() == MessageProperties.CONTENT_TYPE_JSON) {
|
||||
return JSON.parse(new JavaString(message.getBody(), message.getMessageProperties().getContentEncoding()))
|
||||
}
|
||||
return message
|
||||
}
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
@@ -1,7 +0,0 @@
|
||||
export * from './admin'
|
||||
export * from './callback'
|
||||
export * from './connection'
|
||||
export * from './container'
|
||||
export * from './converter'
|
||||
export * from './listener'
|
||||
export * from './template'
|
||||
@@ -1,49 +0,0 @@
|
||||
const JavaString = Java.type('java.lang.String')
|
||||
export const MessageProperties = org.springframework.amqp.core.MessageProperties
|
||||
export const ChannelAwareMessageListener = Java.type('org.springframework.amqp.rabbit.listener.api.ChannelAwareMessageListener')
|
||||
export const AmqpRejectAndDontRequeueException = org.springframework.amqp.AmqpRejectAndDontRequeueException
|
||||
export const Channel: com.rabbitmq.client.Channel = Java.type('com.rabbitmq.client.Channel')
|
||||
export const Message = org.springframework.amqp.core.Message
|
||||
export type MessageHandler<T> = (content: T, message: org.springframework.amqp.core.Message, channel: com.rabbitmq.client.Channel) => any
|
||||
export abstract class ChannelAwareMessageListenerAdapter<T = any> {
|
||||
private _Handler: org.springframework.amqp.rabbit.listener.api.ChannelAwareMessageListener
|
||||
constructor(manual: boolean = false) {
|
||||
let ChannelAwareMessageListenerImpl = Java.extend(ChannelAwareMessageListener, {
|
||||
onMessage: (message: org.springframework.amqp.core.Message, channel: com.rabbitmq.client.Channel) => {
|
||||
let content = new JavaString(message.getBody(), message.getMessageProperties().getContentEncoding() || "UTF-8")
|
||||
try {
|
||||
if (message.getMessageProperties().getContentType() == MessageProperties.CONTENT_TYPE_JSON) {
|
||||
content = JSON.parse(content)
|
||||
}
|
||||
} catch (error: any) {
|
||||
if (manual) {
|
||||
channel.basicReject(message.getMessageProperties().getDeliveryTag(), true)
|
||||
} else {
|
||||
throw new AmqpRejectAndDontRequeueException(`${error}`, error)
|
||||
}
|
||||
}
|
||||
manual ? this.manualOnMessage(content, message, channel) : this.onMessage(content, message, channel)
|
||||
}
|
||||
})
|
||||
this._Handler = new ChannelAwareMessageListenerImpl()
|
||||
}
|
||||
abstract onMessage(content: T, message: org.springframework.amqp.core.Message, channel: com.rabbitmq.client.Channel): any
|
||||
onError(error: Error, message: org.springframework.amqp.core.Message, channel: com.rabbitmq.client.Channel): any { }
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
private manualOnMessage(content: T, message: org.springframework.amqp.core.Message, channel: com.rabbitmq.client.Channel) {
|
||||
let deliveryTag = message.getMessageProperties().getDeliveryTag()
|
||||
try {
|
||||
if (this.onMessage(content, message, channel)) {
|
||||
channel.basicAck(deliveryTag, false)
|
||||
} else if (message.getMessageProperties().getRedelivered()) {
|
||||
channel.basicReject(deliveryTag, true)
|
||||
} else {
|
||||
channel.basicNack(deliveryTag, false, true)
|
||||
}
|
||||
} catch (error: any) {
|
||||
channel.basicReject(deliveryTag, this.onError(error, message, channel))
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,27 +0,0 @@
|
||||
import { MessageConverterAdapter } from "./converter"
|
||||
import { ConnectionFactoryAdapter } from "./connection"
|
||||
import { ConfirmCallbackAdapter, ReturnCallbackAdapter } from "./callback"
|
||||
|
||||
export const RabbitTemplate = Java.type('org.springframework.amqp.rabbit.core.RabbitTemplate')
|
||||
|
||||
interface TemplateConfig {
|
||||
connectionFactory: ConnectionFactoryAdapter | org.springframework.amqp.rabbit.connection.ConnectionFactory
|
||||
confirmCallback?: ConfirmCallbackAdapter
|
||||
returnCallback?: ReturnCallbackAdapter
|
||||
messageConverter?: MessageConverterAdapter
|
||||
}
|
||||
export class RabbitTemplateAdapter {
|
||||
private _Handler: org.springframework.amqp.rabbit.core.RabbitTemplate
|
||||
constructor(config: TemplateConfig) {
|
||||
config = { messageConverter: new MessageConverterAdapter(), ...config }
|
||||
console.debug(JSON.stringify(config))
|
||||
this._Handler = new RabbitTemplate(config.connectionFactory instanceof ConnectionFactoryAdapter ? config.connectionFactory.getHandler() : config.connectionFactory)
|
||||
config.returnCallback && this._Handler.setReturnCallback(config.returnCallback.getHandler())
|
||||
config.confirmCallback && this._Handler.setConfirmCallback(config.confirmCallback.getHandler())
|
||||
config.messageConverter && this._Handler.setMessageConverter(config.messageConverter.getHandler())
|
||||
}
|
||||
|
||||
getHandler() {
|
||||
return this._Handler
|
||||
}
|
||||
}
|
||||
@@ -1,89 +0,0 @@
|
||||
import { JSClass } from "@ccms/container"
|
||||
import { RabbitAdminAdapter, MessageListenerContainerAdapter, AcknowledgeMode, MessageHandler, ChannelAwareMessageListenerAdapter } from "./adapter"
|
||||
|
||||
export class AmqpAdmin {
|
||||
@JSClass('org.springframework.amqp.core.TopicExchange')
|
||||
private TopicExchange: typeof org.springframework.amqp.core.TopicExchange
|
||||
@JSClass('org.springframework.amqp.core.Queue')
|
||||
private Queue: typeof org.springframework.amqp.core.Queue
|
||||
@JSClass('org.springframework.amqp.core.Binding')
|
||||
private Binding: typeof org.springframework.amqp.core.Binding
|
||||
@JSClass('org.springframework.amqp.rabbit.core.RabbitAdmin')
|
||||
private RabbitAdmin: typeof org.springframework.amqp.rabbit.core.RabbitAdmin
|
||||
@JSClass('org.springframework.amqp.core.Binding.DestinationType')
|
||||
private DestinationType: org.springframework.amqp.core.Binding.DestinationType
|
||||
|
||||
private amqpAdmin: org.springframework.amqp.rabbit.core.RabbitAdmin
|
||||
|
||||
constructor(amqpAdmin: org.springframework.amqp.rabbit.core.RabbitAdmin | any) {
|
||||
if (amqpAdmin instanceof this.RabbitAdmin) {
|
||||
this.amqpAdmin = amqpAdmin
|
||||
} else if (amqpAdmin instanceof RabbitAdminAdapter) {
|
||||
this.amqpAdmin = amqpAdmin.getHandler()
|
||||
} else {
|
||||
this.amqpAdmin = new RabbitAdminAdapter(amqpAdmin).getHandler()
|
||||
}
|
||||
}
|
||||
|
||||
getHandler() {
|
||||
return this.amqpAdmin
|
||||
}
|
||||
|
||||
getQueueProperties(name: string) {
|
||||
return this.amqpAdmin.getQueueProperties(name)
|
||||
}
|
||||
|
||||
declareExchange(name: string) {
|
||||
let exchange = new this.TopicExchange(name, true, false)
|
||||
this.amqpAdmin.declareExchange(exchange)
|
||||
return this
|
||||
}
|
||||
|
||||
declareQueue(name: string) {
|
||||
let queue = new this.Queue(name, true)
|
||||
this.amqpAdmin.declareQueue(queue)
|
||||
return this
|
||||
}
|
||||
|
||||
declareBinding(queue: string, exchange: string, routerKey: string, argument: any = null) {
|
||||
let binding = new this.Binding(queue, org.springframework.amqp.core.Binding.DestinationType.QUEUE, exchange, routerKey, argument)
|
||||
this.amqpAdmin.declareBinding(binding)
|
||||
return this
|
||||
}
|
||||
|
||||
declareQueueAndBindExchange(queue: string, exchange: string, routerKey: string) {
|
||||
return this.declareQueue(queue).declareExchange(exchange).declareBinding(queue, exchange, routerKey)
|
||||
}
|
||||
|
||||
createContainer<T>(queue: string, listener: MessageHandler<T>, acknowledgeMode = AcknowledgeMode.AUTO) {
|
||||
let connection = this.amqpAdmin.getRabbitTemplate().getConnectionFactory()
|
||||
return new MessageListenerContainerAdapter({
|
||||
connectionFactory: connection,
|
||||
queueNames: [queue],
|
||||
messageListener: new SimpleMessageHandler(listener),
|
||||
acknowledgeMode: acknowledgeMode
|
||||
}).getHandler()
|
||||
}
|
||||
|
||||
send()
|
||||
send() {
|
||||
|
||||
}
|
||||
|
||||
getTemplate() {
|
||||
return this.amqpAdmin.getRabbitTemplate()
|
||||
}
|
||||
|
||||
close() {
|
||||
this.getTemplate().stop()
|
||||
}
|
||||
}
|
||||
|
||||
export class SimpleMessageHandler extends ChannelAwareMessageListenerAdapter {
|
||||
constructor(private handler: MessageHandler<any>) {
|
||||
super()
|
||||
}
|
||||
onMessage(content: any, message: org.springframework.amqp.core.Message, channel: com.rabbitmq.client.Channel) {
|
||||
return this.handler(content, message, channel)
|
||||
}
|
||||
}
|
||||
@@ -1,3 +0,0 @@
|
||||
export const METADATA_KEY = {
|
||||
|
||||
}
|
||||
@@ -1,34 +0,0 @@
|
||||
/// <reference types="@ccms/nashorn" />
|
||||
/// <reference types="@javatypes/jdk" />
|
||||
/// <reference types="@javatypes/spring-amqp" />
|
||||
/// <reference types="@javatypes/spring-rabbit" />
|
||||
/// <reference types="@javatypes/amqp-client" />
|
||||
|
||||
import { amqp } from '@ccms/api'
|
||||
import { getContainer, reduceMetadata } from '@ccms/container'
|
||||
|
||||
function init() {
|
||||
const beanFactory = base.getInstance().getAutowireCapableBeanFactory()
|
||||
getContainer().bind(amqp.rabbit.Template).toDynamicValue((ctx) => {
|
||||
let metadata = reduceMetadata(ctx)
|
||||
if (!metadata.named) {
|
||||
return beanFactory.getBean('rabbitTemplate')
|
||||
} else {
|
||||
return beanFactory.getBean(`${metadata.named}-rabbitTemplate`)
|
||||
}
|
||||
})
|
||||
getContainer().bind(amqp.rabbit.Admin).toDynamicValue((ctx) => {
|
||||
let metadata = reduceMetadata(ctx)
|
||||
if (!metadata.named) {
|
||||
return beanFactory.getBean('rabbitAdmin')
|
||||
} else {
|
||||
return beanFactory.getBean(`${metadata.named}-rabbitAdmin`)
|
||||
}
|
||||
})
|
||||
}
|
||||
init()
|
||||
|
||||
export * from './admin'
|
||||
export * from './adapter'
|
||||
export * from './manager'
|
||||
export * from './constants'
|
||||
@@ -1,5 +0,0 @@
|
||||
export class AmqpListener {
|
||||
constructor() {
|
||||
|
||||
}
|
||||
}
|
||||
@@ -1,18 +0,0 @@
|
||||
import { amqp } from "@ccms/api"
|
||||
import { provideSingleton } from "@ccms/container"
|
||||
|
||||
import { ConnectionFactoryAdapter, RabbitTemplateAdapter, RabbitAdminAdapter } from "./adapter"
|
||||
import { AmqpAdmin } from "./admin"
|
||||
|
||||
@provideSingleton(amqp.Manager)
|
||||
export class AmqpManager {
|
||||
createConnection(url: string, username: string, password: string) {
|
||||
return new ConnectionFactoryAdapter({ url, username, password })
|
||||
}
|
||||
createTemplate(adapter: ConnectionFactoryAdapter) {
|
||||
return new RabbitTemplateAdapter({ connectionFactory: adapter })
|
||||
}
|
||||
createAdmin(adapter: RabbitTemplateAdapter | ConnectionFactoryAdapter) {
|
||||
return new AmqpAdmin(new RabbitAdminAdapter(adapter))
|
||||
}
|
||||
}
|
||||
4
packages/api/.gitignore
vendored
Normal file
4
packages/api/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/node_modules
|
||||
/dist
|
||||
/package-lock.json
|
||||
/yarn.lock
|
||||
@@ -1 +0,0 @@
|
||||
../../.npmignore
|
||||
22
packages/api/.npmignore
Normal file
22
packages/api/.npmignore
Normal file
@@ -0,0 +1,22 @@
|
||||
src
|
||||
test
|
||||
typings
|
||||
bundled
|
||||
build
|
||||
coverage
|
||||
docs
|
||||
wiki
|
||||
gulpfile.js
|
||||
bower.json
|
||||
karma.conf.js
|
||||
tsconfig.json
|
||||
typings.json
|
||||
CONTRIBUTING.md
|
||||
ISSUE_TEMPLATE.md
|
||||
PULL_REQUEST_TEMPLATE.md
|
||||
tslint.json
|
||||
wallaby.js
|
||||
.travis.yml
|
||||
.gitignore
|
||||
.vscode
|
||||
type_definitions
|
||||
@@ -1,6 +1,6 @@
|
||||
{
|
||||
"name": "@ccms/api",
|
||||
"version": "0.28.0-beta.2",
|
||||
"name": "@ms/api",
|
||||
"version": "0.1.1",
|
||||
"description": "MiaoScript api package",
|
||||
"keywords": [
|
||||
"miaoscript",
|
||||
@@ -12,23 +12,22 @@
|
||||
"homepage": "https://github.com/circlecloud/ms.git",
|
||||
"license": "ISC",
|
||||
"main": "dist/index.js",
|
||||
"publishConfig": {
|
||||
"registry": "https://repo.yumc.pw/repository/npm-hosted/"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"watch": "tsc --watch",
|
||||
"build": "yarn clean && tsc",
|
||||
"watch": "npx tsc --watch",
|
||||
"build": "yarn clean && npx tsc",
|
||||
"test": "echo \"Error: run tests from root\" && exit 1"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ccms/common": "^0.28.0-beta.2",
|
||||
"@ccms/container": "^0.28.0-beta.2",
|
||||
"@ccms/polyfill": "^0.28.0-beta.2",
|
||||
"base64-js": "^1.5.1",
|
||||
"source-map-builder": "^0.0.7"
|
||||
"@ms/common": "^0.1.0",
|
||||
"@ms/container": "^0.1.0"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@types/base64-js": "^1.3.0",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rimraf": "^4.1.2",
|
||||
"typescript": "^4.9.5"
|
||||
"rimraf": "^3.0.0",
|
||||
"typescript": "^3.6.2"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,7 +0,0 @@
|
||||
export namespace amqp {
|
||||
export const Manager = Symbol('AmqpManager')
|
||||
export namespace rabbit {
|
||||
export const Admin = Symbol('RabbitAdmin')
|
||||
export const Template = Symbol('RabbitTemplate')
|
||||
}
|
||||
}
|
||||
@@ -1,66 +0,0 @@
|
||||
import { injectable } from "@ccms/container"
|
||||
|
||||
export namespace channel {
|
||||
/**
|
||||
* handle plugin message
|
||||
* @param data byte[]
|
||||
*/
|
||||
export type ChannelListener = (data: any, exts?: any) => void
|
||||
|
||||
@injectable()
|
||||
export abstract class Channel {
|
||||
private listenerMap = [];
|
||||
/**
|
||||
* 注册通道
|
||||
* @param plugin 插件
|
||||
* @param channel 通道
|
||||
* @param exec 执行器
|
||||
*/
|
||||
listen(plugin: any, channel: string, exec: ChannelListener) {
|
||||
if (!plugin || !plugin.description || !plugin.description.name) throw new TypeError('Plugin can\'t be undefiend!')
|
||||
let name = plugin.description.name
|
||||
let listener = this.register(channel, exec)
|
||||
if (!this.listenerMap[name]) this.listenerMap[name] = []
|
||||
let offExec = () => {
|
||||
this.unregister(channel, listener)
|
||||
console.debug(`[${name}] unregister channel ${channel}`)
|
||||
}
|
||||
var off = {
|
||||
channel,
|
||||
listener,
|
||||
off: offExec
|
||||
}
|
||||
this.listenerMap[name].push(off)
|
||||
console.debug(`[${name}] register channel ${channel} => ${exec.name || '[anonymous]'}`)
|
||||
return off
|
||||
}
|
||||
/**
|
||||
* 关闭插件注册的通道
|
||||
* @param plugin 插件
|
||||
*/
|
||||
disable(plugin: any) {
|
||||
var channelCache = this.listenerMap[plugin.description.name]
|
||||
if (channelCache) {
|
||||
channelCache.forEach(t => t.off())
|
||||
delete this.listenerMap[plugin.description.name]
|
||||
}
|
||||
}
|
||||
/**
|
||||
* Send Channel Message
|
||||
* @param player recover target
|
||||
* @param channel ChannelName
|
||||
* @param data byte[]
|
||||
*/
|
||||
abstract send(player: any, channel: string, data: any)
|
||||
/**
|
||||
* register channel
|
||||
* @param channel ChannelName
|
||||
*/
|
||||
abstract register(channel: string, listener: ChannelListener): any
|
||||
/**
|
||||
* unregister channel
|
||||
* @param channel ChannelName
|
||||
*/
|
||||
abstract unregister(channel: string, listener?: any): void
|
||||
}
|
||||
}
|
||||
@@ -1,31 +0,0 @@
|
||||
import { injectable } from '@ccms/container'
|
||||
|
||||
export namespace chat {
|
||||
@injectable()
|
||||
export abstract class Chat {
|
||||
/**
|
||||
* sendJsonChat
|
||||
* @param sender reciver
|
||||
* @param json json
|
||||
* @param type chat Type 0: chat 1: system 2: actionBar
|
||||
*/
|
||||
sendJson(sender: any, json: string | object, type = 0) {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
sendMessage(sender: any, message: string) {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
sendActionBar(sender: any, message: string) {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
clearActionBar(sender: any) {
|
||||
this.sendActionBar(sender, '')
|
||||
}
|
||||
sendTitle(sender: any, title: string, subtitle: string = '', fadeIn: number = 20, time: number = 100, fadeOut: number = 20) {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
clearTitle(sender: any) {
|
||||
this.sendTitle(sender, '', '', 0, 0, 0)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,132 +1,67 @@
|
||||
import i18n from '@ccms/i18n'
|
||||
import { injectable } from "@ccms/container"
|
||||
import { plugin } from './plugin'
|
||||
import { injectable } from "@ms/container";
|
||||
|
||||
export namespace command {
|
||||
@injectable()
|
||||
export abstract class Command {
|
||||
/**
|
||||
* first time script engine need optimize jit code
|
||||
* so ignore first slow exec notify
|
||||
*/
|
||||
private cacheSlowCommandKey = {};
|
||||
private cacheSlowCompleteKey = {};
|
||||
|
||||
/**
|
||||
* 注册插件命令
|
||||
* @param plugin 插件
|
||||
* @param name 命令
|
||||
* @param exec 执行器
|
||||
*/
|
||||
on(plugin: plugin.Plugin, name: string, exec: { cmd: Function, tab?: Function }) {
|
||||
var cmd = this.create(plugin, name)
|
||||
if (!cmd) { throw Error(`Plugin ${plugin.description.name} can't create Command ${name}!`) }
|
||||
console.debug(i18n.translate("ms.api.command.register", { plugin: plugin.description.name, name, cmd }))
|
||||
on(plugin: any, name: string, exec: { cmd: Function, tab?: Function }) {
|
||||
var cmd = this.create(plugin, name);
|
||||
console.debug(`插件 ${plugin.description.name} 创建命令 ${name}(${cmd})...`)
|
||||
if (exec.cmd && typeof exec.cmd === "function") {
|
||||
this.onCommand(plugin, cmd, exec.cmd)
|
||||
this.onCommand(plugin, cmd, exec.cmd);
|
||||
} else {
|
||||
throw Error(i18n.translate("ms.api.command.register.input.error", { exec: exec.cmd }))
|
||||
throw Error("CommandExec Must be a function... Input: " + exec.cmd)
|
||||
}
|
||||
if (exec.tab && typeof exec.tab === "function") {
|
||||
this.onTabComplete(plugin, cmd, exec.tab)
|
||||
this.onTabComplete(plugin, cmd, exec.tab);
|
||||
}
|
||||
}
|
||||
public tabComplete(sender: any, input: string, index?: number): string[] {
|
||||
throw new Error("Method not implemented.")
|
||||
off(plugin: any, name: string) {
|
||||
console.debug(`插件 ${plugin.description.name} 注销命令 ${name}...`)
|
||||
this.remove(plugin, name);
|
||||
}
|
||||
/**
|
||||
* 取消命令注册
|
||||
* @param plugin 插件
|
||||
* @param name 命令
|
||||
* Create Server Command Object
|
||||
*/
|
||||
off(plugin: plugin.Plugin, name: string) {
|
||||
console.debug(i18n.translate("ms.api.command.unregister", { plugin: plugin.description.name, name }))
|
||||
this.remove(plugin, name)
|
||||
protected abstract create(plugin: any, command: string);
|
||||
protected abstract remove(plugin: any, command: string);
|
||||
protected abstract onCommand(plugin: any, command: any, executor: Function);
|
||||
protected abstract onTabComplete(plugin: any, command: any, tabCompleter: Function);
|
||||
|
||||
protected setExecutor(plugin: any, command: any, executor: Function) {
|
||||
return (sender: any, _, command: string, args: string[]) => {
|
||||
try {
|
||||
return executor(sender, command, Java.from(args));
|
||||
} catch (ex) {
|
||||
console.console(`§6玩家 §a${sender.name} §6执行 §b${plugin.description.name} §6插件 §d${command} ${Java.from(args).join(' ')} §6命令时发生异常 §4${ex}`);
|
||||
console.ex(ex);
|
||||
console.sender(sender, [`§6执行 §b${plugin.description.name} §6插件 §d${command} ${Java.from(args).join(' ')} §6命令时发生异常`, ...console.stack(ex)])
|
||||
return true;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected abstract create(plugin: plugin.Plugin, command: string): any
|
||||
protected abstract remove(plugin: plugin.Plugin, command: string): void
|
||||
protected abstract onCommand(plugin: plugin.Plugin, command: any, executor: Function)
|
||||
protected abstract onTabComplete(plugin: plugin.Plugin, command: any, tabCompleter: Function)
|
||||
protected setExecutor(plugin: plugin.Plugin, command: any, executor: Function) {
|
||||
return (sender: any, _: any, command: string, args: string[]) => {
|
||||
protected setTabCompleter(plugin: any, command: any, tabCompleter: Function) {
|
||||
return (sender: any, _, command: string, args: string[]) => {
|
||||
try {
|
||||
let time = Date.now()
|
||||
let result = executor(sender, command, Java.from(args))
|
||||
let cost = Date.now() - time
|
||||
if (cost > global.ScriptSlowExecuteTime) {
|
||||
let commandKey = `${plugin.description.name}-${command}-${sender.name}`
|
||||
if (!this.cacheSlowCommandKey[commandKey]) { return this.cacheSlowCommandKey[commandKey] = cost }
|
||||
console.i18n("ms.api.command.execute.slow", {
|
||||
player: sender.name,
|
||||
plugin: plugin.description.name,
|
||||
command,
|
||||
args: Java.from(args).join(' '),
|
||||
cost
|
||||
})
|
||||
}
|
||||
return result
|
||||
} catch (ex: any) {
|
||||
let message = i18n.translate("ms.api.command.execute.error", {
|
||||
player: sender.name,
|
||||
plugin: plugin.description.name,
|
||||
command,
|
||||
args: Java.from(args).join(' '),
|
||||
ex
|
||||
})
|
||||
console.console(message)
|
||||
console.ex(ex)
|
||||
if (sender.name != 'CONSOLE') {
|
||||
console.sender(sender, [message, ...console.stack(ex)])
|
||||
}
|
||||
return true
|
||||
}
|
||||
}
|
||||
}
|
||||
protected setTabCompleter(plugin: plugin.Plugin, command: any, tabCompleter: Function) {
|
||||
return (sender: any, _: any, command: string, args: string[]) => {
|
||||
try {
|
||||
let time = Date.now()
|
||||
var token = args[args.length - 1]
|
||||
var complete = tabCompleter(sender, command, Java.from(args)) || []
|
||||
let result = this.copyPartialMatches(complete, token)
|
||||
let cost = Date.now() - time
|
||||
if (cost > global.ScriptSlowExecuteTime) {
|
||||
let completerKey = `${plugin.description.name}-${command}-${sender.name}`
|
||||
if (!this.cacheSlowCompleteKey[completerKey]) { return this.cacheSlowCompleteKey[completerKey] = cost }
|
||||
console.i18n("ms.api.command.tab.completer.slow", {
|
||||
player: sender.name,
|
||||
plugin: plugin.description.name,
|
||||
command,
|
||||
args: Java.from(args).join(' '),
|
||||
cost
|
||||
})
|
||||
}
|
||||
return result
|
||||
} catch (ex: any) {
|
||||
let message = i18n.translate("ms.api.command.tab.completer.error", {
|
||||
player: sender.name,
|
||||
plugin: plugin.description.name,
|
||||
command,
|
||||
args: Java.from(args).join(' '),
|
||||
ex
|
||||
})
|
||||
console.console(message)
|
||||
console.ex(ex)
|
||||
if (sender.name != 'CONSOLE') {
|
||||
console.sender(sender, [message, ...console.stack(ex)])
|
||||
}
|
||||
return []
|
||||
var token = args[args.length - 1];
|
||||
var complete = tabCompleter(sender, command, Java.from(args)) || [];
|
||||
return this.copyPartialMatches(complete, token);
|
||||
} catch (ex) {
|
||||
console.console(`§6玩家 §a${sender.name} §6执行 §b${plugin.description.name} §6插件 §d${command} ${Java.from(args).join(' ')} §6补全时发生异常 §4${ex}`);
|
||||
console.ex(ex);
|
||||
console.sender(sender, [`§6执行 §b${plugin.description.name} §6插件 §d${command} ${Java.from(args).join(' ')} §6补全时发生异常 §4${ex}`, ...console.stack(ex)]);
|
||||
return [];
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
protected copyPartialMatches(complete: string[], token: string, array: string[] = []): string[] {
|
||||
if (!token) { return complete }
|
||||
complete.forEach(function (e) {
|
||||
complete.forEach(function(e) {
|
||||
if (typeof e === "string" && e.toLowerCase().startsWith(token.toLowerCase())) {
|
||||
array.push(e)
|
||||
}
|
||||
})
|
||||
});
|
||||
return array
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,260 +1,150 @@
|
||||
import i18m from '@ccms/i18n'
|
||||
import { SourceMapBuilder } from 'source-map-builder'
|
||||
import * as base64 from 'base64-js'
|
||||
|
||||
const Arrays = Java.type('java.util.Arrays')
|
||||
const Level = Java.type('java.util.logging.Level')
|
||||
const Paths = Java.type('java.nio.file.Paths')
|
||||
const ignoreLogPrefix = ['java.', 'javax.', 'sun.', 'net.minecraft.', 'org.bukkit.', 'jdk.internal.dynalink.', 'jdk.nashorn.', 'org.openjdk.nashorn', 'io.netty.', 'org.spongepowered.', 'org.apache', 'org.springframework']
|
||||
|
||||
enum LogLevel {
|
||||
ALL,
|
||||
TRACE,
|
||||
DEBUG,
|
||||
INFO,
|
||||
WARN,
|
||||
ERROR,
|
||||
FATAL,
|
||||
OFF
|
||||
}
|
||||
|
||||
const sourceMaps: { [key: string]: SourceMapBuilder } = {}
|
||||
const sourceFileMaps: { [key: string]: string } = {}
|
||||
|
||||
global.setGlobal('MiaoScriptSourceMaps', sourceMaps)
|
||||
global.setGlobal('MiaoScriptSourceFileMaps', sourceFileMaps)
|
||||
|
||||
export namespace jsconsole {
|
||||
export function readSourceMap(fileName: string, lineNumber: any) {
|
||||
try {
|
||||
if (fileName.endsWith('js') || fileName.endsWith('ms')) {
|
||||
if (sourceMaps[fileName] === undefined) {
|
||||
sourceMaps[fileName] = null
|
||||
let sourceLine = base.read(fileName).split('\n')
|
||||
let lastLine = sourceLine[sourceLine.length - 1] || sourceLine[sourceLine.length - 2]
|
||||
// lastLine is similar //# sourceMappingURL=data:application/json;base64,
|
||||
if (lastLine.startsWith('//# sourceMappingURL=')) {
|
||||
let sourceContent = null
|
||||
let sourceMappingURL = lastLine.split('sourceMappingURL=', 2)[1]
|
||||
if (sourceMappingURL.startsWith('data:application/json;base64,')) {
|
||||
sourceContent = String.fromCharCode(...Array.from(base64.toByteArray(sourceMappingURL.split(',', 2)[1])))
|
||||
} else if (sourceMappingURL.startsWith('http://') || sourceMappingURL.startsWith('https://')) {
|
||||
// TODO
|
||||
} else {
|
||||
let file = Paths.get(Paths.get(fileName, '..', sourceMappingURL).toFile().getCanonicalPath()).toFile()
|
||||
if (file.exists()) {
|
||||
sourceContent = base.read(file)
|
||||
sourceFileMaps[fileName] = file.getCanonicalPath()
|
||||
} else if (global.debug) {
|
||||
console.debug('readSourceMap can\'t found', fileName, 'source map file', sourceMappingURL)
|
||||
}
|
||||
}
|
||||
if (sourceContent) {
|
||||
sourceMaps[fileName] = new SourceMapBuilder(JSON.parse(sourceContent))
|
||||
}
|
||||
}
|
||||
}
|
||||
if (sourceMaps[fileName]) {
|
||||
let sourceMapping = sourceMaps[fileName].getSource(lineNumber, 25, true, true)
|
||||
if (sourceMapping) {
|
||||
fileName = Paths.get(fileName, '..', sourceMapping.sourcePath).toFile().getCanonicalPath()
|
||||
lineNumber = sourceMapping.mapping.sourceLine
|
||||
}
|
||||
}
|
||||
}
|
||||
} catch (error: any) {
|
||||
console.debug('search source map', fileName, 'line', lineNumber, 'error:', error)
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
return {
|
||||
fileName,
|
||||
lineNumber
|
||||
}
|
||||
}
|
||||
|
||||
export function getStackTrace(ex: Error, color: boolean = true): string[] {
|
||||
if (!ex) return []
|
||||
let stack = ex.getStackTrace()
|
||||
let cache = [(color ? '§c' : '') + ex]
|
||||
//@ts-ignore
|
||||
if (stack.class) {
|
||||
stack = Arrays.asList(stack)
|
||||
}
|
||||
stack.forEach(trace => {
|
||||
if (!trace.fileName || trace.fileName.startsWith('jar:file:') || trace.fileName.startsWith('file:')) { return }
|
||||
if (trace.className.startsWith('<')) {
|
||||
let { fileName, lineNumber } = readSourceMap(trace.fileName, trace.lineNumber)
|
||||
if (fileName.startsWith(root)) { fileName = fileName.split(root)[1] }
|
||||
if (color) {
|
||||
cache.push(` §e->§c ${fileName}:${lineNumber}(${trace.lineNumber}) => §4${trace.methodName}`)
|
||||
} else {
|
||||
cache.push(` -> ${fileName}:${lineNumber}(${trace.lineNumber}) => ${trace.methodName}`)
|
||||
}
|
||||
} else {
|
||||
let className = trace.className
|
||||
var fileName = trace.fileName as string
|
||||
var lineNumber = trace.lineNumber
|
||||
if (className.startsWith('jdk.nashorn.internal.scripts') || className.startsWith('org.openjdk.nashorn.internal.scripts')) {
|
||||
className = className.substr(className.lastIndexOf('$') + 1)
|
||||
var { fileName, lineNumber } = readSourceMap(fileName, lineNumber)
|
||||
if (fileName.startsWith(root)) { fileName = fileName.split(root)[1] }
|
||||
} else {
|
||||
if (!global.debug) {
|
||||
for (let prefix in ignoreLogPrefix) {
|
||||
if (className.startsWith(ignoreLogPrefix[prefix])) {
|
||||
return
|
||||
}
|
||||
}
|
||||
} else if (className.startsWith('jdk.nashorn.internal.') || className.startsWith('org.openjdk.nashorn.internal.')) {
|
||||
return
|
||||
}
|
||||
}
|
||||
if (color) {
|
||||
cache.push(` §e->§c ${className}.${trace.methodName}(§4${fileName}:${lineNumber}§c)`)
|
||||
} else {
|
||||
cache.push(` -> ${className}.${trace.methodName}(${fileName}:${lineNumber})`)
|
||||
}
|
||||
}
|
||||
})
|
||||
return cache
|
||||
}
|
||||
}
|
||||
let Arrays = Java.type('java.util.Arrays');
|
||||
let Level = Java.type('java.util.logging.Level');
|
||||
let ignoreLogPrefix = ['java.', 'net.minecraft.', 'org.bukkit.', 'jdk.nashorn.'];
|
||||
|
||||
export class MiaoScriptConsole implements Console {
|
||||
Console: any
|
||||
memory: any
|
||||
Console: NodeJS.ConsoleConstructor;
|
||||
|
||||
private _name: string = ''
|
||||
private _level: LogLevel = LogLevel.INFO
|
||||
private _name: string = '';
|
||||
|
||||
protected logger: any
|
||||
|
||||
public prefix: string = '§6[§bMiaoScript§6]§r '
|
||||
protected logger: any;
|
||||
protected prefix: string = '§6[§bMiaoScript§6]§r ';
|
||||
|
||||
constructor(name?: string) {
|
||||
this.name = name
|
||||
this.logger = global.logger
|
||||
if (global.debug) {
|
||||
this._level = LogLevel.DEBUG
|
||||
}
|
||||
if (global.level?.toUpperCase() === "TRACE") {
|
||||
this._level = LogLevel.TRACE
|
||||
}
|
||||
this.name = name;
|
||||
this.logger = global.logger;
|
||||
}
|
||||
|
||||
get name() {
|
||||
return this._name
|
||||
return this._name;
|
||||
}
|
||||
|
||||
set name(name: string) {
|
||||
if (name) {
|
||||
this._name = `[${name}] `
|
||||
this.prefix = `§6[§cMS§6][§b${name}§6]§r `
|
||||
this._name = `[${name}] `;
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
this.prefix = `§6[§cMS§6][§b${name}§6]§r `;
|
||||
}
|
||||
}
|
||||
|
||||
log(...args: any[]): void {
|
||||
this.logger.info(this.name + args.join(' '))
|
||||
log(...args): void {
|
||||
this.logger.info(this.name + args.join(' '));
|
||||
}
|
||||
info(...args: any[]) {
|
||||
this.logger.info(this.name + args.join(' '))
|
||||
}
|
||||
warn(...args: any[]) {
|
||||
this.logger.warning(this.name + args.join(' '))
|
||||
}
|
||||
error(...args: any[]) {
|
||||
this.logger.log(Level.SEVERE, this.name + args.join(' '))
|
||||
}
|
||||
debug(...args: any[]) {
|
||||
info(...args) {
|
||||
this.logger.info(this.name + args.join(' '));
|
||||
};
|
||||
warn(...args) {
|
||||
this.logger.warning(this.name + args.join(' '));
|
||||
};
|
||||
error(...args) {
|
||||
this.logger.log(Level.SEVERE, this.name + args.join(' '));
|
||||
};
|
||||
debug(...args) {
|
||||
if (global.debug) {
|
||||
this.logger.info(this.name + '[DEBUG] ' + args.join(' '))
|
||||
this.logger.info(this.name + '[DEBUG] ' + args.join(' '));
|
||||
}
|
||||
}
|
||||
trace(...args: any[]): void {
|
||||
if (this._level <= LogLevel.TRACE) {
|
||||
this.logger.info(this.name + '[TRACE] ' + args.join(' '))
|
||||
}
|
||||
}
|
||||
};
|
||||
sender(...args) {
|
||||
this.info(args)
|
||||
}
|
||||
console(...args) {
|
||||
this.info(args)
|
||||
}
|
||||
i18n(name: string, param?: { [key: string]: any }) {
|
||||
this.console(i18m.translate(name, param))
|
||||
}
|
||||
object(obj) {
|
||||
for (const i in obj) {
|
||||
this.info(i, '=>', obj[i])
|
||||
for (var i in obj) {
|
||||
this.logger(i, '=>', obj[i])
|
||||
}
|
||||
}
|
||||
};
|
||||
ex(ex: Error) {
|
||||
this.stack(ex).forEach(line => this.console(line))
|
||||
}
|
||||
stack(ex: Error, color: boolean = true): string[] {
|
||||
return jsconsole.getStackTrace(ex, color)
|
||||
};
|
||||
stack(ex: Error): string[] {
|
||||
var stack = ex.getStackTrace();
|
||||
var cache = ['§4' + ex];
|
||||
//@ts-ignore
|
||||
if (stack.class) {
|
||||
stack = Arrays.asList(stack)
|
||||
}
|
||||
stack.forEach(function(trace) {
|
||||
if (trace.className.startsWith('<')) {
|
||||
var fileName = trace.fileName
|
||||
if (fileName.startsWith(root)) { fileName = fileName.split(root)[1] }
|
||||
cache.push(` §e->§c ${fileName} => §4${trace.methodName}:${trace.lineNumber}`)
|
||||
} else {
|
||||
var className = trace.className;
|
||||
var fileName = trace.fileName
|
||||
if (className.startsWith('jdk.nashorn.internal.scripts')) {
|
||||
className = className.substr(className.lastIndexOf('$') + 1)
|
||||
if (fileName.startsWith(root)) { fileName = fileName.split(root)[1] }
|
||||
} else {
|
||||
for (var prefix in ignoreLogPrefix) {
|
||||
if (className.startsWith(ignoreLogPrefix[prefix])) {
|
||||
return;
|
||||
}
|
||||
}
|
||||
}
|
||||
cache.push(` §e->§c ${className}.${trace.methodName}(§4${fileName}:${trace.lineNumber}§c)`);
|
||||
}
|
||||
});
|
||||
return cache;
|
||||
}
|
||||
assert(value: any, message?: string, ...optionalParams: any[]): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
clear(): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
count(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
countReset(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
dir(obj: any, options?: any): void {
|
||||
throw new Error("Method not implemented.")
|
||||
dir(obj: any, options?: NodeJS.InspectOptions): void {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
dirxml(...data: any[]): void {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
exception(message?: string, ...optionalParams: any[]): void {
|
||||
throw new Error('Method not implemented.')
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
group(...label: any[]): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
groupCollapsed(...label: any[]): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
groupEnd(): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
table(tabularData: any, properties?: string[]): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
time(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
timeEnd(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
timeLog(label?: string, ...data: any[]): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
trace(message?: any, ...optionalParams: any[]): void {
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
markTimeline(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
profile(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
profileEnd(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
timeStamp(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
timeline(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
timelineEnd(label?: string): void {
|
||||
throw new Error("Method not implemented.")
|
||||
throw new Error("Method not implemented.");
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,38 +0,0 @@
|
||||
export namespace constants {
|
||||
export namespace ServiceIdentifier {
|
||||
/**
|
||||
* Runtime Server NettyPipeline
|
||||
*/
|
||||
export const NettyPipeline = Symbol("NettyPipeline")
|
||||
/**
|
||||
* Runtime Server RootLogger
|
||||
*/
|
||||
export const RootLogger = Symbol("RootLogger")
|
||||
}
|
||||
export namespace Reflect {
|
||||
export const Method = {
|
||||
getServerConnection: [
|
||||
/*spigot 1.8.8*/'aq',
|
||||
/*spigot 1.12.2*/ 'an',
|
||||
/*spigot 1.14.4+*/'getServerConnection',
|
||||
/*spigot 1.19+*/'ad',
|
||||
/*catserver 1.12.2*/'func_147137_ag'
|
||||
]
|
||||
}
|
||||
export const Field = {
|
||||
listeningChannels: [
|
||||
/*spigot 1.8.8-1.12.2*/'g',
|
||||
/*spigot 1.14.4*/'f',
|
||||
/*spigot 1.15.2+*/'listeningChannels',
|
||||
/*catserver 1.12.2*/'field_151274_e'
|
||||
]
|
||||
}
|
||||
}
|
||||
export enum ServerType {
|
||||
Bukkit = 'bukkit',
|
||||
Sponge = 'sponge',
|
||||
Nukkit = 'nukkit',
|
||||
Bungee = 'bungee',
|
||||
Spring = 'spring'
|
||||
}
|
||||
}
|
||||
@@ -1,56 +0,0 @@
|
||||
import { injectable } from "@ccms/container"
|
||||
|
||||
export namespace database {
|
||||
export const DataSource = Symbol("DataSource")
|
||||
/**
|
||||
* 数据库配置
|
||||
*/
|
||||
export interface DataBaseConfig {
|
||||
/**
|
||||
* 数据库类型
|
||||
*/
|
||||
type: 'h2' | 'mysql' | 'mongodb' | 'sqlite' | 'postgres' | 'redis'
|
||||
/**
|
||||
* 数据库连接串
|
||||
*/
|
||||
url: string | javax.sql.DataSource
|
||||
/**
|
||||
* 数据库驱动
|
||||
*/
|
||||
driverClassName?: string
|
||||
/**
|
||||
* 用户名
|
||||
*/
|
||||
username?: string
|
||||
/**
|
||||
* 密码
|
||||
*/
|
||||
password?: string
|
||||
/**
|
||||
* 链接属性
|
||||
*/
|
||||
properties?: { [key: string]: any }
|
||||
/**
|
||||
* 调试模式
|
||||
*/
|
||||
debug?: boolean
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export abstract class DataBaseManager {
|
||||
abstract setMainDatabase(mainDatabase: DataBase): void
|
||||
abstract getMainDatabase(): DataBase
|
||||
abstract createDatabase(name: string, config: DataBaseConfig): DataBase
|
||||
abstract removeDatabase(name: string): boolean
|
||||
abstract getDatabase(name: string): DataBase
|
||||
abstract startWebManager(...args: string[])
|
||||
abstract stopWebManager()
|
||||
abstract shutdown()
|
||||
}
|
||||
@injectable()
|
||||
export abstract class DataBase {
|
||||
abstract query<T>(sql: string, ...args: any[]): Array<T>
|
||||
abstract update(sql: string, ...args: any[]): number
|
||||
abstract execute(sql: string): void
|
||||
}
|
||||
}
|
||||
@@ -1,205 +1,150 @@
|
||||
'use strict';
|
||||
/**
|
||||
* MiaoScript Event处理类
|
||||
*/
|
||||
import i18n from '@ccms/i18n'
|
||||
import { injectable, unmanaged } from '@ccms/container'
|
||||
import '@ms/core'
|
||||
import '@ms/nashorn'
|
||||
import { injectable } from '@ms/container'
|
||||
|
||||
const Thread = Java.type('java.lang.Thread')
|
||||
const Thread = Java.type("java.lang.Thread");
|
||||
|
||||
export namespace event {
|
||||
/**
|
||||
* 事件监听优先级
|
||||
*/
|
||||
export enum EventPriority {
|
||||
LOWEST = "LOWEST",
|
||||
LOW = "LOW",
|
||||
NORMAL = "NORMAL",
|
||||
HIGH = "HIGH",
|
||||
HIGHEST = "HIGHEST",
|
||||
MONITOR = "MONITOR",
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export abstract class Event {
|
||||
// export EventPriority to blockly
|
||||
public EventPriority = EventPriority;
|
||||
|
||||
private mapEvent = [];
|
||||
private pluginEventMap = [];
|
||||
private cacheSlowEventKey = {};
|
||||
private listenerMap = [];
|
||||
private baseEventDir = '';
|
||||
|
||||
protected baseEventDir = '';
|
||||
|
||||
constructor(@unmanaged() baseEventDir: string) {
|
||||
this.baseEventDir = baseEventDir
|
||||
constructor(baseEventDir: string) {
|
||||
this.baseEventDir = baseEventDir;
|
||||
}
|
||||
|
||||
/**
|
||||
* abstract event map function
|
||||
* ig: org.bukkit.event.player.PlayerLoginEvent => playerloginevent
|
||||
* org.spongepowered.api.event.game.GameRegistryEvent.Register => gameregistryevent$register
|
||||
* 扫描包 org.bukkit.event 下的所有事件
|
||||
* 映射简写名称 org.bukkit.event.player.PlayerLoginEvent => playerloginevent
|
||||
*/
|
||||
mapEventName() {
|
||||
if (this.baseEventDir === "") { throw new Error(i18n.translate('ms.api.event.empty.event.dir')) }
|
||||
let count = 0
|
||||
let jar = this.getJarFile(this.baseEventDir)
|
||||
let entries = jar.entries()
|
||||
while (entries.hasMoreElements()) {
|
||||
let entry = entries.nextElement()
|
||||
let name = entry.name
|
||||
if (name.startsWith(this.baseEventDir) && name.endsWith(".class")) {
|
||||
// replace name to qualifiedName
|
||||
let qualifiedName = name.replaceAll('/', '.')
|
||||
try {
|
||||
let clazz = base.getClass(qualifiedName.substring(0, qualifiedName.length - 6))
|
||||
if (this.isValidEvent(clazz)) {
|
||||
let simpleName = this.class2Name(clazz).toLowerCase()
|
||||
console.trace(i18n.translate("ms.api.event.mapping", { canonicalName: clazz.canonicalName, simpleName }))
|
||||
this.mapEvent[simpleName] = clazz
|
||||
count++
|
||||
if (this.baseEventDir === "") {
|
||||
throw new Error("事件基础包名为空 无法进行事件映射!");
|
||||
}
|
||||
var count = 0;
|
||||
var dirs = Thread.currentThread().getContextClassLoader().getResources(this.baseEventDir);
|
||||
while (dirs.hasMoreElements()) {
|
||||
var url = dirs.nextElement();
|
||||
var protocol = url.protocol;
|
||||
if (protocol === "jar") {
|
||||
// noinspection JSUnresolvedVariable
|
||||
var jar = url.openConnection().jarFile;
|
||||
var entries = jar.entries();
|
||||
while (entries.hasMoreElements()) {
|
||||
var entry = entries.nextElement();
|
||||
var name = entry.name;
|
||||
// 以 org/bukkit/event 开头 并且以 .class 结尾
|
||||
if (name.startsWith(this.baseEventDir) && name.endsWith(".class")) {
|
||||
var i = name.replaceAll('/', '.');
|
||||
try {
|
||||
var clz = base.getClass(i.substring(0, i.length - 6));
|
||||
// 继承于 org.bukkit.event.Event 访问符为Public
|
||||
if (this.isValidEvent(clz)) {
|
||||
var simpleName = this.class2Name(clz).toLowerCase();
|
||||
console.debug(`Mapping Event [${clz.canonicalName}] => ${simpleName}`);
|
||||
this.mapEvent[simpleName] = clz;
|
||||
count++;
|
||||
}
|
||||
} catch (ex) {
|
||||
//ignore already loaded class
|
||||
}
|
||||
}
|
||||
} catch (ex: any) {
|
||||
//ignore already loaded class
|
||||
}
|
||||
}
|
||||
}
|
||||
return count
|
||||
}
|
||||
return count;
|
||||
};
|
||||
|
||||
getJarFile(resource: string, loader?: any) {
|
||||
let dirs = (loader || Thread.currentThread().getContextClassLoader()).getResources(resource)
|
||||
if (dirs.hasMoreElements()) {
|
||||
let url = dirs.nextElement()
|
||||
if (url.protocol === "jar") { return url.openConnection().jarFile }
|
||||
}
|
||||
throw new Error(i18n.translate("ms.api.event.resource.not.found", { resource }))
|
||||
}
|
||||
class2Name(clazz) {
|
||||
return clazz.simpleName;
|
||||
};
|
||||
|
||||
class2Name(clazz: any) {
|
||||
return clazz.simpleName
|
||||
}
|
||||
|
||||
name2Class(name: any, event: string) {
|
||||
let eventCls = this.mapEvent[event.toLowerCase()] || this.mapEvent[event.toLowerCase() + 'event']
|
||||
name2Class(name, event) {
|
||||
var eventCls = this.mapEvent[event.toLowerCase()] || this.mapEvent[event.toLowerCase() + 'event'];
|
||||
if (!eventCls) {
|
||||
try {
|
||||
eventCls = base.getClass(event)
|
||||
this.mapEvent[event] = eventCls
|
||||
} catch (ex: any) {
|
||||
console.i18n("ms.api.event.not.found", { name, event })
|
||||
return
|
||||
eventCls = base.getClass(eventCls);
|
||||
this.mapEvent[event] = eventCls;
|
||||
} catch (ex) {
|
||||
console.console(`§6插件 §b${name} §6注册事件 §c${event} §6失败 §4事件未找到!`);
|
||||
console.ex(new Error(`插件 ${name} 注册事件 ${event} 失败 事件未找到!`));
|
||||
return;
|
||||
}
|
||||
}
|
||||
return eventCls
|
||||
}
|
||||
return eventCls;
|
||||
};
|
||||
|
||||
/**
|
||||
* 创建命令执行器
|
||||
* @param name 插件名称
|
||||
* @param exec 执行方法
|
||||
* @param eventCls 事件类
|
||||
* @returns
|
||||
*/
|
||||
createExecute(name, exec, eventCls) {
|
||||
return (...args: any[]) => {
|
||||
let event = args[args.length - 1]
|
||||
execute(name, exec, eventCls) {
|
||||
return (...args) => {
|
||||
try {
|
||||
if (!eventCls.isAssignableFrom(event.getClass())) { return }
|
||||
let time = Date.now(); exec(event); let cost = Date.now() - time
|
||||
if (cost > global.ScriptSlowExecuteTime && !event.async) {
|
||||
let eventKey = `${name}-${this.class2Name(eventCls)}`
|
||||
if (!this.cacheSlowEventKey[eventKey]) { return this.cacheSlowEventKey[eventKey] = cost }
|
||||
console.i18n("ms.api.event.execute.slow", { name, event: this.class2Name(eventCls), cost })
|
||||
var time = new Date().getTime()
|
||||
exec(args[args.length - 1]);
|
||||
var cost = new Date().getTime() - time;
|
||||
if (cost > 20) {
|
||||
console.console(`§c注意! §6插件 §b${name} §6处理 §d${this.class2Name(eventCls)} §6事件 §c耗时 §4${cost}ms !`)
|
||||
}
|
||||
} catch (ex: any) {
|
||||
console.i18n("ms.api.event.execute.error", { name, event: this.class2Name(eventCls), ex })
|
||||
console.ex(ex)
|
||||
} catch (ex) {
|
||||
console.console(`§6插件 §b${name} §6处理 §d${this.class2Name(eventCls)} §6事件时发生异常 §4${ex}`);
|
||||
console.ex(ex);
|
||||
}
|
||||
}
|
||||
}
|
||||
};
|
||||
};
|
||||
|
||||
/**
|
||||
* 添加事件监听
|
||||
* @param plugin {any} 插件
|
||||
* @param event {string} 事件名称
|
||||
* @param exec {function} 事件执行器
|
||||
* @param priority {string} [LOWEST,LOW,NORMAL,HIGH,HIGHEST,MONITOR] 优先级
|
||||
* @param ignoreCancel 是否忽略已取消事件
|
||||
* @param plugin
|
||||
* @param event
|
||||
* @param exec {function}
|
||||
* @param priority [LOWEST,LOW,NORMAL,HIGH,HIGHEST,MONITOR]
|
||||
* @param ignoreCancel
|
||||
*/
|
||||
listen(plugin: any, event: string, exec: (event: any) => void, priority: EventPriority = EventPriority.NORMAL, ignoreCancel = false) {
|
||||
if (!plugin || !plugin.description || !plugin.description.name) throw new TypeError(i18n.translate("ms.api.event.listen.plugin.name.empty"))
|
||||
var name = plugin.description.name
|
||||
var eventCls = this.name2Class(name, event)
|
||||
if (!eventCls) { return () => { console.warn('event ' + event + ' not found ignore off listener.') } }
|
||||
listen(plugin, event, exec, priority = 'NORMAL', ignoreCancel = false) {
|
||||
if (!plugin || !plugin.description || !plugin.description.name) throw new TypeError('插件名称为空 请检查传入参数!');
|
||||
var name = plugin.description.name;
|
||||
var eventCls = this.name2Class(name, event);
|
||||
if (!eventCls) { return; }
|
||||
if (typeof priority === 'boolean') {
|
||||
ignoreCancel = priority
|
||||
priority = EventPriority.NORMAL
|
||||
ignoreCancel = priority;
|
||||
priority = 'NORMAL';
|
||||
}
|
||||
priority = priority || EventPriority.NORMAL
|
||||
ignoreCancel = ignoreCancel || false
|
||||
// @ts-ignore
|
||||
let executor = exec.name || exec.executor || '[anonymous]'
|
||||
priority = priority || 'NORMAL';
|
||||
ignoreCancel = ignoreCancel || false;
|
||||
// noinspection JSUnusedGlobalSymbols
|
||||
let listener = this.register(
|
||||
eventCls,
|
||||
this.createExecute(name, exec, eventCls),
|
||||
priority,
|
||||
ignoreCancel
|
||||
)
|
||||
// add to cache Be used for close plugin to close event
|
||||
if (!this.pluginEventMap[name]) this.pluginEventMap[name] = []
|
||||
let off = () => {
|
||||
if (off['offed']) return
|
||||
off['offed'] = true
|
||||
this.unregister(eventCls, listener)
|
||||
console.debug(i18n.translate("ms.api.event.unregister", {
|
||||
name,
|
||||
event: this.class2Name(eventCls),
|
||||
exec: executor
|
||||
}))
|
||||
}
|
||||
this.pluginEventMap[name].push(off)
|
||||
var listener = this.register(eventCls, this.execute(name, exec, eventCls), priority, ignoreCancel);
|
||||
var listenerMap = this.listenerMap;
|
||||
// 添加到缓存 用于关闭插件的时候关闭事件
|
||||
if (!listenerMap[name]) listenerMap[name] = [];
|
||||
var offExec = () => {
|
||||
this.unregister(eventCls, listener);
|
||||
console.debug(`插件 ${name} 注销事件 ${this.class2Name(eventCls)}`);
|
||||
};
|
||||
var off = {
|
||||
event: eventCls,
|
||||
listener: listener,
|
||||
off: offExec
|
||||
};
|
||||
listenerMap[name].push(off);
|
||||
// noinspection JSUnresolvedVariable
|
||||
console.debug(i18n.translate("ms.api.event.register", {
|
||||
name,
|
||||
event: this.class2Name(eventCls),
|
||||
exec: executor,
|
||||
priority,
|
||||
ignore: ignoreCancel
|
||||
}))
|
||||
return off
|
||||
console.debug(`插件 ${name} 注册事件 ${this.class2Name(eventCls)} => ${exec.name || '匿名方法'}`);
|
||||
return off;
|
||||
}
|
||||
|
||||
/**
|
||||
* 关闭插件监听任务
|
||||
* @param plugin 插件
|
||||
*/
|
||||
disable(plugin: any) {
|
||||
var eventCache = this.pluginEventMap[plugin.description.name]
|
||||
var eventCache = this.listenerMap[plugin.description.name];
|
||||
if (eventCache) {
|
||||
eventCache.forEach((off: () => any) => off())
|
||||
delete this.pluginEventMap[plugin.description.name]
|
||||
eventCache.forEach(t => t.off());
|
||||
delete this.listenerMap[plugin.description.name];
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 判断
|
||||
* @param clazz 事件类
|
||||
*/
|
||||
abstract isValidEvent(clazz: any): boolean
|
||||
/**
|
||||
* 注册事件
|
||||
* @param eventCls 事件类
|
||||
* @param exec 执行器
|
||||
* @param priority 优先级
|
||||
* @param ignoreCancel 是否忽略已取消的事件
|
||||
*/
|
||||
abstract register(eventCls: any, exec: Function, priority: any, ignoreCancel: boolean): any
|
||||
/**
|
||||
* 取消监听事件
|
||||
* @param event 事件
|
||||
* @param listener 监听器
|
||||
*/
|
||||
abstract unregister(event: any, listener: any): void
|
||||
abstract isValidEvent(clazz: any): boolean;
|
||||
abstract register(eventCls: any, exec: Function, priority: any, ignoreCancel: boolean): any;
|
||||
abstract unregister(event: any, listener: any): void;
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,18 +1,7 @@
|
||||
import "@ccms/nashorn"
|
||||
/// <reference path="./typings/global.ts" />
|
||||
|
||||
export * from './web'
|
||||
export * from './amqp'
|
||||
export * from './chat'
|
||||
export * from './task'
|
||||
export * from './item'
|
||||
export * from './event'
|
||||
export * from './proxy'
|
||||
export * from './plugin'
|
||||
export * from './server'
|
||||
export * from './console'
|
||||
export { jsconsole as console } from './console'
|
||||
export * from './channel'
|
||||
export * from './command'
|
||||
export * from './database'
|
||||
export * from './particle'
|
||||
export * from './constants'
|
||||
export * from './interfaces'
|
||||
|
||||
2
packages/api/src/interfaces/index.ts
Normal file
2
packages/api/src/interfaces/index.ts
Normal file
@@ -0,0 +1,2 @@
|
||||
export * from './plugin'
|
||||
export * from './server'
|
||||
28
packages/api/src/interfaces/plugin.ts
Normal file
28
packages/api/src/interfaces/plugin.ts
Normal file
@@ -0,0 +1,28 @@
|
||||
import { Container } from "@ms/container";
|
||||
|
||||
export namespace plugin {
|
||||
/**
|
||||
* MiaoScript Plugin
|
||||
*/
|
||||
export const Plugin = Symbol("Plugin");
|
||||
/**
|
||||
* Runtime Plugin Instance
|
||||
*/
|
||||
export const PluginInstance = Symbol("PluginInstance");
|
||||
/**
|
||||
* MiaoScript Plugin Manager
|
||||
*/
|
||||
export const PluginManager = Symbol("PluginManager");
|
||||
/**
|
||||
* MiaoScript Plugin Manager
|
||||
*/
|
||||
export interface PluginManager {
|
||||
scan(folder: string): void;
|
||||
build(container: Container): void;
|
||||
load(...args: any[]): void;
|
||||
enable(...args: any[]): void;
|
||||
disable(...args: any[]): void;
|
||||
reload(...args: any[]): void;
|
||||
getPlugins(): Map<string, any>;
|
||||
}
|
||||
}
|
||||
4
packages/api/src/interfaces/server.ts
Normal file
4
packages/api/src/interfaces/server.ts
Normal file
@@ -0,0 +1,4 @@
|
||||
export namespace server {
|
||||
export const ServerType = Symbol("ServerType");
|
||||
export const Console = Symbol("Console");
|
||||
}
|
||||
@@ -1,20 +0,0 @@
|
||||
import { injectable } from '@ccms/container'
|
||||
|
||||
export namespace item {
|
||||
@injectable()
|
||||
export abstract class Item {
|
||||
abstract builder(): ItemBuilder
|
||||
abstract toJson(item: any): string
|
||||
abstract fromJson(json: string): any
|
||||
}
|
||||
export interface ItemBuilder {
|
||||
from(item: any): ItemBuilder
|
||||
create(type: string | number): ItemBuilder
|
||||
name(name: string): ItemBuilder
|
||||
lore(...lores: string[]): ItemBuilder
|
||||
amount(amount: number): ItemBuilder
|
||||
durability(durability: number): ItemBuilder
|
||||
clone(): any
|
||||
build(): any
|
||||
}
|
||||
}
|
||||
@@ -1,507 +0,0 @@
|
||||
import { Autowired, injectable } from '@ccms/container'
|
||||
|
||||
import { task, plugin } from './index'
|
||||
|
||||
const UUID = Java.type('java.util.UUID')
|
||||
const Math = Java.type('java.lang.Math')
|
||||
|
||||
export namespace particle {
|
||||
@injectable()
|
||||
export abstract class ParticleSpawner {
|
||||
abstract spawn(location: any, particle: Particle)
|
||||
abstract spawnToPlayer(player: any, location: any, particle: Particle)
|
||||
}
|
||||
|
||||
/**
|
||||
* 表示一个特效对象
|
||||
*
|
||||
* @author Zoyn
|
||||
*/
|
||||
export abstract class Particle {
|
||||
private spawner: ParticleSpawner
|
||||
private readonly uuid: string
|
||||
|
||||
private particle: any /* Particle */
|
||||
private count: number = 1;
|
||||
private offsetX: number = 0;
|
||||
private offsetY: number = 0;
|
||||
private offsetZ: number = 0;
|
||||
private extra: number = 0;
|
||||
private data: Object = null;
|
||||
|
||||
/**
|
||||
* Only Show To Player
|
||||
*/
|
||||
private player: any
|
||||
|
||||
constructor() {
|
||||
this.uuid = UUID.randomUUID().toString()
|
||||
}
|
||||
abstract show(location: any)
|
||||
|
||||
getUUID() {
|
||||
return this.uuid
|
||||
}
|
||||
|
||||
getSpawner() {
|
||||
return this.spawner
|
||||
}
|
||||
|
||||
setSpawner(spawner: ParticleSpawner) {
|
||||
this.spawner = spawner
|
||||
return this
|
||||
}
|
||||
|
||||
getParticle() {
|
||||
return this.particle
|
||||
}
|
||||
|
||||
setParticle(particle: any, data: any = null) {
|
||||
this.particle = particle
|
||||
this.data = data
|
||||
return this
|
||||
}
|
||||
|
||||
getCount() {
|
||||
return this.count
|
||||
}
|
||||
|
||||
setCount(count: number) {
|
||||
this.count = count
|
||||
return this
|
||||
}
|
||||
|
||||
getOffsetX() {
|
||||
return this.offsetX
|
||||
}
|
||||
|
||||
setOffsetX(offsetX: number) {
|
||||
this.offsetX = offsetX
|
||||
return this
|
||||
}
|
||||
|
||||
getOffsetY() {
|
||||
return this.offsetY
|
||||
}
|
||||
|
||||
setOffsetY(offsetY: number) {
|
||||
this.offsetY = offsetY
|
||||
return this
|
||||
}
|
||||
|
||||
getOffsetZ() {
|
||||
return this.offsetZ
|
||||
}
|
||||
|
||||
setOffsetZ(offsetZ: number) {
|
||||
this.offsetZ = offsetZ
|
||||
return this
|
||||
}
|
||||
|
||||
getExtra() {
|
||||
return this.extra
|
||||
}
|
||||
|
||||
setExtra(extra: number) {
|
||||
this.extra = extra
|
||||
return this
|
||||
}
|
||||
|
||||
getData() {
|
||||
return this.data
|
||||
}
|
||||
|
||||
setData(data) {
|
||||
this.data = data
|
||||
return this
|
||||
}
|
||||
|
||||
getPlayer() {
|
||||
return this.player
|
||||
}
|
||||
|
||||
setPlayer(player) {
|
||||
this.player = player
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* 通过给定一个坐标就可以使用已经指定的参数来播放粒子
|
||||
*
|
||||
* @param location 坐标
|
||||
*/
|
||||
spawn(location: any) {
|
||||
if (!this.spawner) throw new Error(`particle ${this.uuid} not set spawner can't spawn!`)
|
||||
if (this.player) {
|
||||
this.spawner.spawnToPlayer(this.player, location, this)
|
||||
} else {
|
||||
this.spawner.spawn(location, this)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 表示一条线
|
||||
*
|
||||
* @author Zoyn
|
||||
*/
|
||||
export class Line extends Particle {
|
||||
private vector: any
|
||||
private start: any
|
||||
private end: any
|
||||
/**
|
||||
* 步长
|
||||
*/
|
||||
private step: number
|
||||
/**
|
||||
* 向量长度
|
||||
*/
|
||||
private length: number
|
||||
|
||||
/**
|
||||
* 构造一条线
|
||||
*
|
||||
* @param start 线的起点
|
||||
* @param end 线的终点
|
||||
*/
|
||||
constructor(start: any, end: any)
|
||||
/**
|
||||
* 构造一条线
|
||||
*
|
||||
* @param start 线的起点
|
||||
* @param end 线的终点
|
||||
* @param step 每个粒子之间的间隔 (也即步长)
|
||||
*/
|
||||
constructor(start: any, end: any, step: number = 0.1) {
|
||||
super()
|
||||
this.start = start
|
||||
this.end = end
|
||||
this.step = step
|
||||
// 对向量进行重置
|
||||
this.resetVector()
|
||||
}
|
||||
|
||||
show() {
|
||||
for (let i = 0; i < this.length; i += this.step) {
|
||||
this.spawn(this.start.clone().add(this.vector.clone().multiply(i)))
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取线的起始坐标
|
||||
*
|
||||
* @return {@link Location}
|
||||
*/
|
||||
getStart() {
|
||||
return this.start
|
||||
}
|
||||
|
||||
/**
|
||||
* 利用给定的坐标设置线的起始坐标
|
||||
*
|
||||
* @param start 起始坐标
|
||||
* @return {@link Line}
|
||||
*/
|
||||
setStart(start) {
|
||||
this.start = start
|
||||
this.resetVector()
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取线的终点坐标
|
||||
*
|
||||
* @return {@link Location}
|
||||
*/
|
||||
getEnd() {
|
||||
return this.end
|
||||
}
|
||||
|
||||
/**
|
||||
* 利用给定的坐标设置线的终点坐标
|
||||
*
|
||||
* @param end 终点
|
||||
* @return {@link Line}
|
||||
*/
|
||||
setEnd(end) {
|
||||
this.end = end
|
||||
this.resetVector()
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* 获取每个粒子之间的间隔
|
||||
*
|
||||
* @return 也就是循环的步长
|
||||
*/
|
||||
getStep() {
|
||||
return this.step
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置每个粒子之间的间隔
|
||||
*
|
||||
* @param step 间隔
|
||||
* @return {@link Line}
|
||||
*/
|
||||
setStep(step) {
|
||||
this.step = step
|
||||
this.resetVector()
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* 手动重设线的向量
|
||||
*/
|
||||
resetVector() {
|
||||
this.vector = this.end.clone().subtract(this.start).toVector()
|
||||
this.length = this.vector.length()
|
||||
this.vector.normalize()
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 表示一个弧
|
||||
*
|
||||
* @author Zoyn
|
||||
*/
|
||||
export class Arc extends Particle {
|
||||
private angle: number
|
||||
private radius: number
|
||||
private step: number
|
||||
|
||||
/**
|
||||
* 构造一个弧
|
||||
*
|
||||
* @param origin 弧所在的圆的圆点
|
||||
* @param angle 弧所占的角度
|
||||
* @param radius 弧所在的圆的半径
|
||||
* @param step 每个粒子的间隔(也即步长)
|
||||
*/
|
||||
constructor(angle: number = 30, radius: number = 1, step: number = 1) {
|
||||
super()
|
||||
this.angle = angle
|
||||
this.radius = radius
|
||||
this.step = step
|
||||
}
|
||||
|
||||
show(location: any) {
|
||||
for (let i = 0; i < this.angle; i += this.step) {
|
||||
let radians: number = Math.toRadians(i)
|
||||
let x: number = this.radius * Math.cos(radians)
|
||||
let z: number = this.radius * Math.sin(radians)
|
||||
|
||||
super.spawn(location.clone().add(x, 0, z))
|
||||
}
|
||||
}
|
||||
|
||||
getAngle(): number {
|
||||
return this.angle
|
||||
}
|
||||
|
||||
setAngle(angle: number): Arc {
|
||||
this.angle = angle
|
||||
return this
|
||||
}
|
||||
|
||||
getRadius(): number {
|
||||
return this.radius
|
||||
}
|
||||
|
||||
setRadius(radius: number): Arc {
|
||||
this.radius = radius
|
||||
return this
|
||||
}
|
||||
|
||||
getStep(): number {
|
||||
return this.step
|
||||
}
|
||||
|
||||
setStep(step: number): Arc {
|
||||
this.step = step
|
||||
return this
|
||||
}
|
||||
}
|
||||
/**
|
||||
* 表示一个圆
|
||||
*
|
||||
* @author Zoyn
|
||||
*/
|
||||
export class Circle extends Arc {
|
||||
constructor(radius: number)
|
||||
constructor(radius: number, step: number)
|
||||
/**
|
||||
* 构造一个圆
|
||||
*
|
||||
* @param origin 圆的圆点
|
||||
* @param radius 圆的半径
|
||||
* @param step 每个粒子的间隔(也即步长)
|
||||
* @param period 特效周期(如果需要可以使用)
|
||||
*/
|
||||
constructor(radius: number = 1, step: number = 1) {
|
||||
// Circle只需要控制这个fullArc就可以满足所有的要求
|
||||
super(360, radius, step)
|
||||
}
|
||||
}
|
||||
const AtomicInteger = Java.type("java.util.concurrent.atomic.AtomicInteger")
|
||||
|
||||
@injectable()
|
||||
export abstract class ParticleManager {
|
||||
@Autowired()
|
||||
private taskManager: task.TaskManager
|
||||
@Autowired()
|
||||
private particleSpawner: particle.ParticleSpawner
|
||||
|
||||
protected taskId: java.util.concurrent.atomic.AtomicInteger
|
||||
protected cacheTasks = new Map<string, ParticleTask>()
|
||||
protected pluginCacheTasks = new Map<string, Map<number, ParticleTask>>()
|
||||
|
||||
constructor() {
|
||||
this.taskId = new AtomicInteger(0)
|
||||
}
|
||||
|
||||
/**
|
||||
* 获得自增的任务ID
|
||||
*/
|
||||
public nextId() {
|
||||
return this.taskId.incrementAndGet()
|
||||
}
|
||||
|
||||
public getTaskManager() {
|
||||
return this.taskManager
|
||||
}
|
||||
|
||||
public getParticleSpawner() {
|
||||
return this.particleSpawner
|
||||
}
|
||||
|
||||
public create(particle: Particle, plugin?: plugin.Plugin) {
|
||||
let uuid = particle.getUUID()
|
||||
if (this.cacheTasks.has(uuid)) {
|
||||
return this.cacheTasks.get(uuid)
|
||||
}
|
||||
let task = this.create0(plugin, particle)
|
||||
this.cacheTasks.set(uuid, task)
|
||||
if (plugin) {
|
||||
if (!this.pluginCacheTasks.has(plugin.description.name)) {
|
||||
this.pluginCacheTasks.set(plugin.description.name, new Map())
|
||||
}
|
||||
this.pluginCacheTasks.get(plugin.description.name).set(task.getTaskId(), task)
|
||||
}
|
||||
return task
|
||||
}
|
||||
|
||||
public cancel(particle: Particle) {
|
||||
let uuid = particle.getUUID()
|
||||
if (this.cacheTasks.has(uuid)) {
|
||||
this.cacheTasks.get(uuid).cancel()
|
||||
this.cacheTasks.delete(uuid)
|
||||
} else {
|
||||
throw new Error(`particle ${uuid} not found!`)
|
||||
}
|
||||
}
|
||||
|
||||
disable(plugin: plugin.Plugin) {
|
||||
if (this.pluginCacheTasks.has(plugin.description.name)) {
|
||||
this.pluginCacheTasks
|
||||
.get(plugin.description.name)
|
||||
.forEach((task) => task.cancel())
|
||||
this.pluginCacheTasks.delete(plugin.description.name)
|
||||
}
|
||||
}
|
||||
protected create0(owner: plugin.Plugin, particle: Particle): ParticleTask {
|
||||
particle.setSpawner(this.getParticleSpawner())
|
||||
return new ParticleTask(owner, particle, this)
|
||||
}
|
||||
}
|
||||
|
||||
export class ParticleTask {
|
||||
private particle: Particle
|
||||
private isAsync: boolean = false
|
||||
private interval: number = 0
|
||||
private _location: any
|
||||
private _follow: any
|
||||
|
||||
private owner: plugin.Plugin
|
||||
private taskId: number
|
||||
private task: task.Task
|
||||
private taskManager: task.TaskManager
|
||||
protected particleManager: ParticleManager
|
||||
|
||||
constructor(owner: plugin.Plugin, particle: Particle, particleManager: ParticleManager) {
|
||||
this.owner = owner
|
||||
this.taskId = particleManager.nextId()
|
||||
this.particle = particle
|
||||
this.taskManager = particleManager.getTaskManager()
|
||||
this.particleManager = particleManager
|
||||
}
|
||||
|
||||
getOwner() {
|
||||
return this.task.getOwner()
|
||||
}
|
||||
|
||||
getTaskId() {
|
||||
return this.taskId
|
||||
}
|
||||
|
||||
getParticle() {
|
||||
return this.particle
|
||||
}
|
||||
|
||||
async(isAsync: boolean = true) {
|
||||
this.isAsync = isAsync
|
||||
return this
|
||||
}
|
||||
|
||||
timer(tick: number) {
|
||||
this.interval = tick
|
||||
return this
|
||||
}
|
||||
|
||||
follow(entity: { getLocation: () => any }) {
|
||||
this._follow = entity
|
||||
this._location = undefined
|
||||
return this
|
||||
}
|
||||
|
||||
location(location: any) {
|
||||
this._location = location
|
||||
this._follow = undefined
|
||||
return this
|
||||
}
|
||||
|
||||
submit() {
|
||||
this.cancel()
|
||||
if (this._follow && !this.interval) throw new Error(`enable follow entity but interval is ${this.interval}!`)
|
||||
this.taskManager.create(() => {
|
||||
this.task = this.taskManager
|
||||
.create(() => {
|
||||
try {
|
||||
if (this._follow) {
|
||||
if (!this._follow.isOnline()) return this.cancel()
|
||||
this.particle.show(this._follow.getLocation().clone().add(0, 1, 0))
|
||||
} else if (this._location) {
|
||||
this.particle.show(this._location)
|
||||
} else {
|
||||
console.warn(`ParticleTask ${this.taskId} particle ${this.particle.getUUID()} cancel because entity and location both undefined!`)
|
||||
this.task.cancel()
|
||||
}
|
||||
} catch (error: any) {
|
||||
console.error(`§6插件 §a${this.owner.description.name} §c播放粒子发送异常 §4粒子播放任务已终止!`)
|
||||
console.ex(error)
|
||||
this.cancel()
|
||||
}
|
||||
}, this.owner)
|
||||
.async(this.isAsync)
|
||||
.timer(this.interval)
|
||||
.submit()
|
||||
}, this.owner).later(2).submit()
|
||||
return this
|
||||
}
|
||||
|
||||
cancel() {
|
||||
if (this.task != null) {
|
||||
this.task.cancel()
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,202 +0,0 @@
|
||||
import { injectable } from '@ccms/container'
|
||||
|
||||
export namespace plugin {
|
||||
/**
|
||||
* MiaoScript Plugin
|
||||
*/
|
||||
export const Plugin = Symbol("Plugin")
|
||||
/**
|
||||
* MiaoScript Plugin Folder
|
||||
*/
|
||||
export const PluginFolder = Symbol("PluginFolder")
|
||||
/**
|
||||
* Runtime Plugin Instance
|
||||
*/
|
||||
export const PluginInstance = Symbol("PluginInstance")
|
||||
/**
|
||||
* MiaoScript Plugin Manager Interface
|
||||
*/
|
||||
@injectable()
|
||||
export abstract class PluginManager {
|
||||
abstract scan(folder: string): void
|
||||
abstract build(): void
|
||||
abstract loadFromFile(file: string, ext?: any): Plugin
|
||||
abstract load(...args: any[]): void
|
||||
abstract enable(...args: any[]): void
|
||||
abstract disable(...args: any[]): void
|
||||
abstract reload(...args: any[]): void
|
||||
abstract getPlugin(name: string): plugin.Plugin
|
||||
abstract getPlugins(): Map<string, plugin.Plugin>
|
||||
}
|
||||
export const PluginScanner = Symbol("PluginScanner")
|
||||
/**
|
||||
* 插件加载元信息
|
||||
*/
|
||||
export interface PluginLoadMetadata {
|
||||
/**
|
||||
* 插件加载类型
|
||||
*/
|
||||
type: string
|
||||
/**
|
||||
* 插件文件
|
||||
*/
|
||||
file?: string
|
||||
/**
|
||||
* 插件实例
|
||||
*/
|
||||
instance?: any
|
||||
/**
|
||||
* 插件元信息
|
||||
*/
|
||||
metadata?: PluginMetadata
|
||||
/**
|
||||
* 插件扫描器
|
||||
*/
|
||||
scanner: PluginScanner
|
||||
/**
|
||||
* 插件加载器
|
||||
*/
|
||||
loader?: PluginLoader
|
||||
/**
|
||||
* 是否已加载
|
||||
*/
|
||||
loaded?: boolean
|
||||
[key: string]: any
|
||||
}
|
||||
/**
|
||||
* 插件扫描器
|
||||
*/
|
||||
export interface PluginScanner {
|
||||
/**
|
||||
* 扫描器类型
|
||||
*/
|
||||
type: string
|
||||
/**
|
||||
* 扫描插件目录 返回插件加载元信息列表
|
||||
* @param target 扫描目标
|
||||
*/
|
||||
scan(target: any): PluginLoadMetadata[]
|
||||
/**
|
||||
* 读取插件 返回插件加载元信息
|
||||
* @param target
|
||||
*/
|
||||
read(target: any): PluginLoadMetadata
|
||||
/**
|
||||
* 加载扫描到的目标
|
||||
* @param target 加载目标
|
||||
*/
|
||||
load(target: PluginLoadMetadata): PluginLoadMetadata
|
||||
}
|
||||
export const PluginLoader = Symbol("PluginLoader")
|
||||
/**
|
||||
* 插件加载器
|
||||
*/
|
||||
export interface PluginLoader {
|
||||
/**
|
||||
* 加载器类型
|
||||
*/
|
||||
type: string
|
||||
/**
|
||||
* 加载插件 获取元数据
|
||||
* @param target 加载目标
|
||||
* @param result 扫描器加载的结果
|
||||
*/
|
||||
require(loadMetadata: PluginLoadMetadata): PluginLoadMetadata
|
||||
/**
|
||||
* 构建插件
|
||||
* @param metadata 插件元信息
|
||||
*/
|
||||
build(metadata: PluginMetadata): Plugin
|
||||
/**
|
||||
* Load 阶段
|
||||
* @param plugin 插件
|
||||
*/
|
||||
load?(plugin: Plugin): void
|
||||
/**
|
||||
* Enable 阶段
|
||||
* @param plugin 插件
|
||||
*/
|
||||
enable?(plugin: Plugin): void
|
||||
/**
|
||||
* Disable 阶段
|
||||
* @param plugin 插件
|
||||
*/
|
||||
disable?(plugin: Plugin): void
|
||||
/**
|
||||
* Reload 阶段
|
||||
* @param plugin 插件
|
||||
*/
|
||||
reload?(plugin: Plugin): void
|
||||
}
|
||||
export interface Plugin {
|
||||
description: PluginMetadata
|
||||
logger: Console
|
||||
load(): void
|
||||
enable(): void
|
||||
disable(): void
|
||||
}
|
||||
export interface BaseMetadata {
|
||||
/**
|
||||
* 名称 为空则为对象名称
|
||||
*/
|
||||
name?: string
|
||||
/**
|
||||
* 支持的服务器列表 为空则代表所有
|
||||
*/
|
||||
servers?: string[]
|
||||
}
|
||||
export interface PluginMetadata extends BaseMetadata {
|
||||
/**
|
||||
* 插件名称 不填默认为类名
|
||||
*/
|
||||
name: string
|
||||
/**
|
||||
* 插件中文名称
|
||||
*/
|
||||
cname?: string
|
||||
/**
|
||||
* 付费插件ID
|
||||
*/
|
||||
pid?: number
|
||||
/**
|
||||
* 付费插件等级 付费插件自动注入
|
||||
*/
|
||||
level?: number
|
||||
/**
|
||||
* 前缀
|
||||
*/
|
||||
prefix?: string
|
||||
/**
|
||||
* 插件版本 不填默认为 1.0.0
|
||||
*/
|
||||
version?: string
|
||||
/**
|
||||
* 插件作者 不填默认为 Unknow
|
||||
*/
|
||||
author?: string | string[]
|
||||
/**
|
||||
* 脚本依赖
|
||||
*/
|
||||
depends?: string[]
|
||||
/**
|
||||
* 插件依赖
|
||||
*/
|
||||
nativeDepends?: string[]
|
||||
/**
|
||||
* 插件源文件 必须指定为 __filename
|
||||
*/
|
||||
source: string
|
||||
/**
|
||||
* 插件类型 默认为 ioc 执行 MiaoScript 加载逻辑
|
||||
*/
|
||||
type?: string
|
||||
/**
|
||||
* 插件加载信息
|
||||
*/
|
||||
loadMetadata?: PluginLoadMetadata
|
||||
/**
|
||||
* 插件本体
|
||||
*/
|
||||
target?: any
|
||||
}
|
||||
}
|
||||
@@ -1,161 +0,0 @@
|
||||
import { provideSingleton, Autowired, optional } from '@ccms/container'
|
||||
import { channel } from './channel'
|
||||
|
||||
export namespace proxy {
|
||||
const ByteArrayOutputStream = Java.type('java.io.ByteArrayOutputStream')
|
||||
const DataOutputStream = Java.type('java.io.DataOutputStream')
|
||||
namespace bungeecord {
|
||||
const CHANNEL_NAME = "BungeeCord"
|
||||
export class SubChannelBuilder {
|
||||
private channel: channel.Channel
|
||||
private player: any
|
||||
private params: string[]
|
||||
constructor(channel: channel.Channel, player: any) {
|
||||
this.channel = channel
|
||||
this.player = player
|
||||
this.params = []
|
||||
}
|
||||
connect(server: string) {
|
||||
this.params.push("Connect")
|
||||
this.params.push(server)
|
||||
return this.finalSend()
|
||||
}
|
||||
connectOther(player: string, server: string) {
|
||||
this.params.push("ConnectOther")
|
||||
this.params.push(player)
|
||||
this.params.push(server)
|
||||
return this.finalSend()
|
||||
}
|
||||
ip() {
|
||||
this.params.push("IP")
|
||||
return this.finalSend()
|
||||
}
|
||||
ipOther(player: string) {
|
||||
this.params.push("IPOther")
|
||||
this.params.push(player)
|
||||
return this.finalSend()
|
||||
}
|
||||
playerCount(server: string | "ALL") {
|
||||
this.params.push("PlayerCount")
|
||||
this.params.push(server)
|
||||
return this.finalSend()
|
||||
}
|
||||
/**
|
||||
* Get a list of players connected on a certain server, or on ALL the servers.
|
||||
* @param server count server
|
||||
* Response:
|
||||
* String server = in.readUTF(); // The name of the server you got the player list of, as given in args.
|
||||
* String[] playerList = in.readUTF().split(", ");
|
||||
*/
|
||||
playerList(server: string | "ALL") {
|
||||
this.params.push("PlayerList")
|
||||
this.params.push(server)
|
||||
return this.finalSend()
|
||||
}
|
||||
/**
|
||||
* Get a list of server name strings, as defined in BungeeCord's config.yml
|
||||
* Response:
|
||||
* String[] serverList = in.readUTF().split(", ");
|
||||
*/
|
||||
getServers() {
|
||||
this.params.push("GetServers")
|
||||
return this.finalSend()
|
||||
}
|
||||
/**
|
||||
* Get this server's name, as defined in BungeeCord's config.yml
|
||||
*/
|
||||
getServer() {
|
||||
this.params.push("GetServer")
|
||||
return this.finalSend()
|
||||
}
|
||||
broadcast(message: string) {
|
||||
this.message("ALL", message)
|
||||
return this.finalSend()
|
||||
}
|
||||
/**
|
||||
* Send a message (as in, a chat message) to the specified player.
|
||||
* @param player who reciver message
|
||||
* @param message message content
|
||||
*/
|
||||
message(player: string | "ALL", message: string) {
|
||||
this.params.push("Message")
|
||||
this.params.push(player)
|
||||
this.params.push(message)
|
||||
return this.finalSend()
|
||||
}
|
||||
/**
|
||||
* Send a raw message (as in, a chat message) to the specified player. The advantage of this method over Message is that you can include click events and hover events.
|
||||
* @param player who reciver message
|
||||
* @param message message content
|
||||
*/
|
||||
messageRaw(player: string | "ALL", json: string) {
|
||||
this.params.push("MessageRaw")
|
||||
this.params.push(player)
|
||||
this.params.push(json)
|
||||
return this.finalSend()
|
||||
}
|
||||
forwardAll(channel: string, data: any) {
|
||||
return this.forward("ALL", channel, data)
|
||||
}
|
||||
/**
|
||||
* Send a custom plugin message to said server. This is one of the most useful channels ever.
|
||||
* Remember, the sending and receiving server(s) need to have a player online.
|
||||
* @param server reciver
|
||||
* @param channel channelName
|
||||
* @param data data
|
||||
*/
|
||||
forward(server: string | "ALL", channel: string, data: any) {
|
||||
this.params.push("Forward")
|
||||
this.params.push(server)
|
||||
this.params.push(channel)
|
||||
this.params.push(typeof data === "string" ? data : JSON.stringify(data))
|
||||
return this.finalSend()
|
||||
}
|
||||
/**
|
||||
* Send a custom plugin message to said server. This is one of the most useful channels ever.
|
||||
* Remember, the sending and receiving server(s) need to have a player online.
|
||||
* @param server reciver
|
||||
* @param channel channelName
|
||||
* @param data data
|
||||
*/
|
||||
forwardToPlayer(server: string | "ALL", channel: string, data: any) {
|
||||
this.params.push("Forward")
|
||||
this.params.push(server)
|
||||
this.params.push(channel)
|
||||
this.params.push(typeof data === "string" ? data : JSON.stringify(data))
|
||||
return this.finalSend()
|
||||
}
|
||||
generic(...args: string[]) {
|
||||
args && this.params.concat(...args)
|
||||
return this.finalSend()
|
||||
}
|
||||
private send(...middlewares: ((out: java.io.DataOutputStream) => void)[]) {
|
||||
let byteArray = new ByteArrayOutputStream()
|
||||
let out = new DataOutputStream(byteArray)
|
||||
this.params.forEach(utf => out.writeUTF(utf))
|
||||
for (let middleware of middlewares) {
|
||||
middleware(out)
|
||||
}
|
||||
return this.channel.send(this.player, CHANNEL_NAME, byteArray.toByteArray())
|
||||
}
|
||||
private finalSend() {
|
||||
return {
|
||||
send: this.send.bind(this)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@provideSingleton(BungeeCord)
|
||||
export class BungeeCord {
|
||||
@optional()
|
||||
@Autowired()
|
||||
private channel: channel.Channel
|
||||
/**
|
||||
* 获得代理
|
||||
* @param player 玩家
|
||||
*/
|
||||
for(player: any): bungeecord.SubChannelBuilder {
|
||||
return new bungeecord.SubChannelBuilder(this.channel, player)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,229 +0,0 @@
|
||||
import * as reflect from '@ccms/common/dist/reflect'
|
||||
import { injectable, Autowired, ContainerInstance, Container, postConstruct } from '@ccms/container'
|
||||
|
||||
import { constants } from './constants'
|
||||
|
||||
export namespace server {
|
||||
/**
|
||||
* Runtime ServerType
|
||||
*/
|
||||
export const ServerType = Symbol("ServerType")
|
||||
/**
|
||||
* Runtime Console
|
||||
*/
|
||||
export const Console = Symbol("Console")
|
||||
/**
|
||||
* Runtime Server Instance
|
||||
*/
|
||||
export const ServerInstance = Symbol("ServerInstance")
|
||||
export interface NativePlugin {
|
||||
name: string
|
||||
version: string
|
||||
authors?: string | string[]
|
||||
enable: boolean
|
||||
depends?: string[]
|
||||
softDepends?: string[]
|
||||
/**
|
||||
* 插件本体
|
||||
*/
|
||||
origin: any
|
||||
[key: string]: any
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export abstract class NativePluginManager {
|
||||
list(): NativePlugin[] {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
has(name: string): boolean {
|
||||
return true
|
||||
}
|
||||
get(name: string): NativePlugin {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
enable(name: string): NativePlugin {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
disable(name: string): NativePlugin {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
reload(name: string): NativePlugin {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
delete(name: string): boolean {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* MiaoScript Server
|
||||
*/
|
||||
@injectable()
|
||||
export abstract class Server {
|
||||
getVersion(): string {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getPlayer(name: string): any {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getOnlinePlayers(): any[] {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getConsoleSender(): any {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getService(service: string): any {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
broadcast(message: string, permission: string) {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
broadcastMessage(message: string) {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
dispatchCommand(sender: string | any, command: string): boolean {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
dispatchConsoleCommand(command: string): boolean {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getPluginsFolder(): string {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getDedicatedServer?(): any {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getNettyPipeline(): any {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
getRootLogger(): any {
|
||||
throw new Error("Method not implemented.")
|
||||
}
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export class ServerChecker {
|
||||
@Autowired(ServerType)
|
||||
private serverType: string
|
||||
|
||||
check(servers: string[]) {
|
||||
// Not set servers -> allow
|
||||
if (!servers || !servers.length) return true
|
||||
// include !type -> deny
|
||||
let denyServers = servers.filter(svr => svr.startsWith("!"))
|
||||
if (denyServers.length !== 0) {
|
||||
return !denyServers.includes(`!${this.serverType}`)
|
||||
} else {
|
||||
// only include -> allow
|
||||
return servers.includes(this.serverType)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export class NativePluginChecker {
|
||||
@Autowired(NativePluginManager)
|
||||
private nativePluginManager: NativePluginManager
|
||||
|
||||
check(plugins: string[]) {
|
||||
// Not set plugins -> allow
|
||||
if (!plugins || !plugins.length) return true
|
||||
for (const plugin of plugins) {
|
||||
if (!this.nativePluginManager.has(plugin)) { return false }
|
||||
}
|
||||
return true
|
||||
}
|
||||
}
|
||||
|
||||
@injectable()
|
||||
export abstract class ReflectServer extends server.Server {
|
||||
@Autowired(ContainerInstance)
|
||||
private container: Container
|
||||
|
||||
protected pipeline: any
|
||||
protected rootLogger: any
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
}
|
||||
|
||||
@postConstruct()
|
||||
protected reflect() {
|
||||
try {
|
||||
let consoleServer = this.getDedicatedServer()
|
||||
this.reflectPipeline(consoleServer)
|
||||
this.reflectRootLogger(consoleServer)
|
||||
} catch (error: any) {
|
||||
console.error('Error When Reflect MinecraftServer!', error)
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
protected reflectPipeline(consoleServer: any) {
|
||||
let connection: any
|
||||
let promise: any
|
||||
for (const method of constants.Reflect.Method.getServerConnection) {
|
||||
try {
|
||||
connection = reflect.on(consoleServer).call(method).get()
|
||||
if (connection.class.name.indexOf('ServerConnection') !== -1
|
||||
|| connection.class.name.indexOf('NetworkSystem') !== -1) { break }
|
||||
connection = undefined
|
||||
} catch (error: any) {
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!connection) { console.error("Can't found ServerConnection!"); return }
|
||||
for (const field of constants.Reflect.Field.listeningChannels) {
|
||||
try {
|
||||
promise = reflect.on(connection).get(field).get().get(0)
|
||||
if (promise.class.name.indexOf('Promise') !== -1) { break }
|
||||
promise = undefined
|
||||
} catch (error: any) {
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (!promise) { console.error("Can't found listeningChannels!"); return }
|
||||
this.pipeline = reflect.on(promise).get('channel').get().pipeline()
|
||||
this.container.bind(constants.ServiceIdentifier.NettyPipeline).toConstantValue(this.pipeline)
|
||||
}
|
||||
protected reflectRootLogger(consoleServer: any) {
|
||||
try {
|
||||
this.rootLogger = reflect.on(consoleServer).get('LOGGER').get()
|
||||
} catch (error: any) {
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
try {
|
||||
this.rootLogger = reflect.on(consoleServer).get(0).get()
|
||||
} catch (error: any) {
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (this.rootLogger.class.name.indexOf('slf4j') !== -1) {
|
||||
try {
|
||||
let LogManager = Java.type('org.apache.logging.log4j.LogManager')
|
||||
this.rootLogger = LogManager.getLogger('ROOT')
|
||||
} catch (error: any) {
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
if (this.rootLogger && this.rootLogger.class.name.indexOf('Logger') === -1) {
|
||||
console.error('Error Logger Class: ' + this.rootLogger.class.name)
|
||||
this.rootLogger = undefined
|
||||
}
|
||||
if (!this.rootLogger) { console.error("Can't found rootLogger!") }
|
||||
// get root logger
|
||||
for (let index = 0; index < 5 && this.rootLogger.parent; index++) {
|
||||
this.rootLogger = this.rootLogger.parent
|
||||
}
|
||||
this.container.bind(constants.ServiceIdentifier.RootLogger).toConstantValue(this.rootLogger)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,198 +1,55 @@
|
||||
import { EventEmitter } from 'events'
|
||||
import { injectable } from '@ccms/container'
|
||||
|
||||
import { plugin } from './index'
|
||||
|
||||
const AtomicInteger = Java.type("java.util.concurrent.atomic.AtomicInteger")
|
||||
import { injectable, DefaultContainer as container } from "@ms/container";
|
||||
|
||||
export namespace task {
|
||||
@injectable()
|
||||
export abstract class TaskManager {
|
||||
protected taskId: java.util.concurrent.atomic.AtomicInteger
|
||||
protected cacheTasks = new Map<number, task.Task>()
|
||||
protected pluginCacheTasks = new Map<string, Map<number, task.Task>>()
|
||||
|
||||
constructor() {
|
||||
this.taskId = new AtomicInteger(0)
|
||||
process.on('task.finish', (task: task.Task) => {
|
||||
let taskId = task.getTaskId()
|
||||
this.cacheTasks.delete(taskId)
|
||||
let ownerName = task.getOwner()?.description.name
|
||||
if (ownerName && this.pluginCacheTasks.has(ownerName)) {
|
||||
this.pluginCacheTasks.get(ownerName)?.delete(taskId)
|
||||
}
|
||||
})
|
||||
}
|
||||
|
||||
protected pluginCreate(plugin: plugin.Plugin, task: task.Task) {
|
||||
if (!this.pluginCacheTasks.has(plugin.description.name)) {
|
||||
this.pluginCacheTasks.set(plugin.description.name, new Map())
|
||||
}
|
||||
this.pluginCacheTasks.get(plugin.description.name).set(task.getTaskId(), task)
|
||||
return task
|
||||
}
|
||||
|
||||
protected pluginDisable(plugin: plugin.Plugin) {
|
||||
if (this.pluginCacheTasks.has(plugin.description.name)) {
|
||||
this.pluginCacheTasks.get(plugin.description.name).forEach((task) => {
|
||||
task.cancel()
|
||||
})
|
||||
this.pluginCacheTasks.delete(plugin.description.name)
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
* 获得自增的任务ID
|
||||
*/
|
||||
protected nextId() {
|
||||
return this.taskId.incrementAndGet()
|
||||
}
|
||||
|
||||
/**
|
||||
* 创建任务
|
||||
* @param func 任务内容
|
||||
*/
|
||||
create(func: Function, plugin?: plugin.Plugin): task.Task {
|
||||
if (Object.prototype.toString.call(func) !== "[object Function]") { throw TypeError('第一个参数 Task 必须为 function !') };
|
||||
let task = this.create0(plugin, func, this.nextId())
|
||||
this.cacheTasks.set(task.getTaskId(), task)
|
||||
if (plugin) { return this.pluginCreate(plugin, task) }
|
||||
return task
|
||||
}
|
||||
cancel(taskId: number) {
|
||||
if (!this.cacheTasks.has(taskId)) { throw new Error(`Task ${taskId} not found!`) }
|
||||
this.cacheTasks.get(taskId).cancel()
|
||||
}
|
||||
/**
|
||||
* 在主线程执行代码
|
||||
* @param func 执行内容
|
||||
*/
|
||||
abstract callSyncMethod(func: Function): any
|
||||
/**
|
||||
* 关闭任务管理器
|
||||
*/
|
||||
disable(plugin?: plugin.Plugin) {
|
||||
if (plugin) { return this.pluginDisable(plugin) }
|
||||
this.disable0()
|
||||
}
|
||||
protected abstract create0(owner: plugin.Plugin, func: Function, id: number): task.Task
|
||||
protected abstract disable0()
|
||||
export const TaskManager = Symbol('TaskManager')
|
||||
export interface TaskManager {
|
||||
create(func: Function): task.Task;
|
||||
}
|
||||
/**
|
||||
* 任务抽象
|
||||
*/
|
||||
export abstract class Task extends EventEmitter implements Cancelable {
|
||||
protected func: Function
|
||||
export abstract class Task {
|
||||
protected plugin: any;
|
||||
protected func: Function;
|
||||
protected isAsync: boolean = false;
|
||||
protected laterTime: number = 0;
|
||||
protected interval: number = 0;
|
||||
protected owner: plugin.Plugin
|
||||
protected taskId: number
|
||||
protected innerTask: any
|
||||
|
||||
private cancelled: boolean = false
|
||||
|
||||
constructor(owner: plugin.Plugin, func: Function, id: number) {
|
||||
super()
|
||||
this.owner = owner
|
||||
this.func = func
|
||||
this.taskId = id
|
||||
constructor(plugin: any, func: Function) {
|
||||
this.plugin = plugin;
|
||||
this.func = func;
|
||||
}
|
||||
|
||||
getOwner() {
|
||||
return this.owner
|
||||
}
|
||||
|
||||
getTaskId() {
|
||||
return this.taskId
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置任务异步执行
|
||||
* @param isAsync 是否异步
|
||||
*/
|
||||
async(isAsync: boolean = true): task.Task {
|
||||
this.isAsync = isAsync
|
||||
return this
|
||||
this.isAsync = isAsync;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置任务延时执行
|
||||
* @param tick 延时 Tick
|
||||
*/
|
||||
later(tick: number): task.Task {
|
||||
this.laterTime = tick
|
||||
return this
|
||||
this.laterTime = tick;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 设置任务循环执行
|
||||
* @param tick 循环时间 Tick
|
||||
*/
|
||||
timer(tick: number): task.Task {
|
||||
this.interval = tick
|
||||
return this
|
||||
this.interval = tick;
|
||||
return this;
|
||||
}
|
||||
|
||||
/**
|
||||
* 取消任务
|
||||
*/
|
||||
cancel(): boolean {
|
||||
let result = this.cancel0()
|
||||
this.finish()
|
||||
this.cancelled = true
|
||||
return result
|
||||
}
|
||||
|
||||
protected run(...args: any[]): void {
|
||||
protected run(): void {
|
||||
try {
|
||||
this.emit('before', this)
|
||||
if (this.cancelled) { return }
|
||||
this.func(...args)
|
||||
this.emit('after', this)
|
||||
} catch (error: any) {
|
||||
this.emit('error', error)
|
||||
if (!error.processed) {
|
||||
console.console('§4插件执行任务时发生错误', error)
|
||||
console.ex(error)
|
||||
this.cancel()
|
||||
}
|
||||
} finally {
|
||||
this.emit('finally', this)
|
||||
if (!this.interval && !this.cancelled) { this.finish() }
|
||||
this.func();
|
||||
} catch (ex) {
|
||||
console.console('§4插件执行任务时发生错误', ex)
|
||||
console.ex(ex);
|
||||
}
|
||||
}
|
||||
|
||||
protected finish() {
|
||||
process.emit('task.finish', this)
|
||||
this.emit('finish', this)
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交任务
|
||||
* @param args 任务参数
|
||||
*/
|
||||
submit(...args: any[]): task.Task {
|
||||
this.innerTask = this.submit0(...args)
|
||||
return this
|
||||
}
|
||||
|
||||
/**
|
||||
* 提交任务
|
||||
* @param args 任务参数
|
||||
*/
|
||||
protected abstract submit0(...args: any[]): any
|
||||
/**
|
||||
* 取消任务
|
||||
*/
|
||||
protected cancel0(): boolean {
|
||||
return this.innerTask?.cancel()
|
||||
}
|
||||
abstract submit(): Cancelable;
|
||||
}
|
||||
/**
|
||||
* 返可取消的对象
|
||||
*/
|
||||
export interface Cancelable {
|
||||
cancel(): boolean
|
||||
cancel(): boolean;
|
||||
}
|
||||
}
|
||||
|
||||
24
packages/api/src/typings/global.ts
Normal file
24
packages/api/src/typings/global.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
declare global {
|
||||
namespace NodeJS {
|
||||
interface Global {
|
||||
logger: any;
|
||||
debug: boolean;
|
||||
noop: Function;
|
||||
console: Console;
|
||||
}
|
||||
}
|
||||
var root: string;
|
||||
var base: Core;
|
||||
var ScriptEngineContextHolder: any;
|
||||
function engineLoad(str: string): any;
|
||||
interface Core {
|
||||
getClass(name: String);
|
||||
}
|
||||
interface Console {
|
||||
ex(err: Error): void;
|
||||
stack(err: Error): string[];
|
||||
sender(...args: any): void;
|
||||
console(...args: any): void;
|
||||
}
|
||||
}
|
||||
export { }
|
||||
@@ -1,3 +0,0 @@
|
||||
export namespace web {
|
||||
export const Server = Symbol('Server')
|
||||
}
|
||||
4
packages/bukkit/.gitignore
vendored
Normal file
4
packages/bukkit/.gitignore
vendored
Normal file
@@ -0,0 +1,4 @@
|
||||
/node_modules
|
||||
/dist
|
||||
/package-lock.json
|
||||
/yarn.lock
|
||||
@@ -1 +0,0 @@
|
||||
../../.npmignore
|
||||
22
packages/bukkit/.npmignore
Normal file
22
packages/bukkit/.npmignore
Normal file
@@ -0,0 +1,22 @@
|
||||
src
|
||||
test
|
||||
typings
|
||||
bundled
|
||||
build
|
||||
coverage
|
||||
docs
|
||||
wiki
|
||||
gulpfile.js
|
||||
bower.json
|
||||
karma.conf.js
|
||||
tsconfig.json
|
||||
typings.json
|
||||
CONTRIBUTING.md
|
||||
ISSUE_TEMPLATE.md
|
||||
PULL_REQUEST_TEMPLATE.md
|
||||
tslint.json
|
||||
wallaby.js
|
||||
.travis.yml
|
||||
.gitignore
|
||||
.vscode
|
||||
type_definitions
|
||||
@@ -1,7 +1,7 @@
|
||||
{
|
||||
"name": "@ccms/bukkit",
|
||||
"version": "0.28.0-beta.2",
|
||||
"description": "MiaoScript bukkit package",
|
||||
"name": "@ms/bukkit",
|
||||
"version": "0.1.1",
|
||||
"description": "MiaoScript api package",
|
||||
"keywords": [
|
||||
"miaoscript",
|
||||
"minecraft",
|
||||
@@ -12,21 +12,23 @@
|
||||
"homepage": "https://github.com/circlecloud/ms.git",
|
||||
"license": "ISC",
|
||||
"main": "dist/index.js",
|
||||
"publishConfig": {
|
||||
"registry": "https://repo.yumc.pw/repository/npm-hosted/"
|
||||
},
|
||||
"scripts": {
|
||||
"clean": "rimraf dist",
|
||||
"watch": "tsc --watch",
|
||||
"build": "yarn clean && tsc",
|
||||
"watch": "npx tsc --watch",
|
||||
"build": "yarn clean && npx tsc",
|
||||
"test": "echo \"Error: run tests from root\" && exit 1"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@javatypes/spigot-api": "^0.0.3",
|
||||
"reflect-metadata": "^0.1.13",
|
||||
"rimraf": "^4.1.2",
|
||||
"typescript": "^4.9.5"
|
||||
"rimraf": "^3.0.0",
|
||||
"typescript": "^3.6.2"
|
||||
},
|
||||
"dependencies": {
|
||||
"@ccms/api": "^0.28.0-beta.2",
|
||||
"@ccms/common": "^0.28.0-beta.2",
|
||||
"@ccms/container": "^0.28.0-beta.2"
|
||||
"@ms/api": "^0.1.1",
|
||||
"@ms/common": "^0.1.0",
|
||||
"@ms/container": "^0.1.0"
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,54 +0,0 @@
|
||||
import { channel, plugin } from '@ccms/api'
|
||||
import { inject, provideSingleton } from '@ccms/container'
|
||||
|
||||
const Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
const PluginMessageListener = Java.type("org.bukkit.plugin.messaging.PluginMessageListener")
|
||||
const Messenger = Bukkit.getMessenger()
|
||||
|
||||
@provideSingleton(channel.Channel)
|
||||
export class BukkitChannel extends channel.Channel {
|
||||
@inject(plugin.PluginInstance)
|
||||
private pluginInstance: any
|
||||
private cacheChannel = new Map<string, any[]>()
|
||||
/**
|
||||
* 给玩家发送通道消息
|
||||
* @param player 接受消息的玩家
|
||||
* @param channel 通道
|
||||
* @param data 数据
|
||||
*/
|
||||
send(player: any, channel: string, data: number[]) {
|
||||
player.sendPluginMessage(this.pluginInstance, channel, data)
|
||||
}
|
||||
|
||||
/**
|
||||
* 注册通道监听器
|
||||
* @param channel 通道
|
||||
* @param listener 监听器
|
||||
*/
|
||||
register(channel: string, listener: channel.ChannelListener) {
|
||||
if (!this.cacheChannel.has(channel)) this.cacheChannel.set(channel, [])
|
||||
this.cacheChannel.get(channel).push(listener)
|
||||
let pluginMessageListener = new PluginMessageListener({
|
||||
onPluginMessageReceived: (/**String */ channel, /**Player */ player, /**byte[] */data) => {
|
||||
try {
|
||||
listener(data, { channel, player, data })
|
||||
} catch (error: any) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
})
|
||||
Messenger.registerIncomingPluginChannel(this.pluginInstance, channel, pluginMessageListener)
|
||||
Messenger.registerOutgoingPluginChannel(this.pluginInstance, channel)
|
||||
return pluginMessageListener
|
||||
}
|
||||
unregister(channel: string, listener: any) {
|
||||
if (!this.cacheChannel.has(channel)) return
|
||||
let cacheListener = this.cacheChannel.get(channel)
|
||||
cacheListener = cacheListener.filter(l => l != listener)
|
||||
Messenger.unregisterIncomingPluginChannel(this.pluginInstance, channel, listener)
|
||||
if (cacheListener.length == 0) {
|
||||
this.cacheChannel.delete(channel)
|
||||
Messenger.unregisterOutgoingPluginChannel(this.pluginInstance, channel)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,26 +0,0 @@
|
||||
import { chat } from '@ccms/api'
|
||||
import { provideSingleton } from '@ccms/container'
|
||||
import bukkitChat from './internal/chat'
|
||||
|
||||
@provideSingleton(chat.Chat)
|
||||
export class BukkitChat extends chat.Chat {
|
||||
get handle(): any {
|
||||
return bukkitChat
|
||||
}
|
||||
sendJson(sender: any, json: string | object, type = 0) {
|
||||
bukkitChat.send(sender, typeof json === "string" ? json : JSON.stringify(json), type)
|
||||
}
|
||||
sendMessage(sender: any, message: string) {
|
||||
this.sendJson(sender, { text: message }, 0)
|
||||
}
|
||||
sendActionBar(sender: any, message: string) {
|
||||
this.sendJson(sender, { text: message }, 2)
|
||||
}
|
||||
sendTitle(sender: any, title: string, subtitle: string = '', fadeIn: number = 20, time: number = 100, fadeOut: number = 20) {
|
||||
try {
|
||||
sender.sendTitle(title, subtitle, fadeIn, time, fadeOut)
|
||||
} catch (error: any) {
|
||||
sender.sendTitle(title, subtitle)
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,53 +1,48 @@
|
||||
import '@ccms/nashorn'
|
||||
import '@ms/nashorn'
|
||||
|
||||
import { command, plugin } from '@ccms/api'
|
||||
import { provideSingleton, postConstruct, inject } from '@ccms/container'
|
||||
import * as reflect from '@ccms/common/dist/reflect'
|
||||
import { command, plugin } from '@ms/api'
|
||||
import * as reflect from '@ms/common/dist/reflect'
|
||||
import { injectable, postConstruct, inject } from '@ms/container'
|
||||
|
||||
const Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
const TabCompleter = Java.type('org.bukkit.command.TabCompleter')
|
||||
const PluginCommand = Java.type('org.bukkit.command.PluginCommand')
|
||||
const CommandExecutor = Java.type('org.bukkit.command.CommandExecutor')
|
||||
let Bukkit = org.bukkit.Bukkit;
|
||||
let TabCompleter = Java.type('org.bukkit.command.TabCompleter');
|
||||
let PluginCommand = Java.type('org.bukkit.command.PluginCommand');
|
||||
let CommandExecutor = Java.type('org.bukkit.command.CommandExecutor');
|
||||
|
||||
@provideSingleton(command.Command)
|
||||
@injectable()
|
||||
export class BukkitCommand extends command.Command {
|
||||
@inject(plugin.PluginInstance)
|
||||
private pluginInstance: any
|
||||
private commandMap: any
|
||||
private knownCommands: any
|
||||
private commandMap: any;
|
||||
|
||||
@postConstruct()
|
||||
init() {
|
||||
this.commandMap = reflect.on(Bukkit.getPluginManager()).get('commandMap').get()
|
||||
this.knownCommands = reflect.on(this.commandMap).get('knownCommands').get()
|
||||
this.commandMap = reflect.on(Bukkit.getPluginManager()).get('commandMap').get();
|
||||
}
|
||||
|
||||
create(plugin: any, command: string) {
|
||||
var cmd = this.commandMap.getCommand(command)
|
||||
if (cmd instanceof PluginCommand) { return cmd };
|
||||
cmd = reflect.on(PluginCommand).create(command, this.pluginInstance).get()
|
||||
this.commandMap.register(plugin.description.name, cmd)
|
||||
return cmd
|
||||
if (cmd && cmd instanceof PluginCommand) { return cmd };
|
||||
cmd = reflect.on(PluginCommand).create(command, this.pluginInstance).get();
|
||||
this.commandMap.register(plugin.description.name, cmd);
|
||||
return cmd;
|
||||
}
|
||||
remove(plugin: any, command: string) {
|
||||
var cmd = this.commandMap.getCommand(command)
|
||||
if (cmd instanceof PluginCommand) {
|
||||
cmd.unregister(this.commandMap)
|
||||
this.knownCommands.remove(command)
|
||||
if (cmd && cmd instanceof PluginCommand) {
|
||||
cmd.unregister(this.commandMap);
|
||||
}
|
||||
}
|
||||
tabComplete(sender: any, input: string, index?: number): string[] {
|
||||
return Java.from(this.commandMap.tabComplete(sender, input))
|
||||
}
|
||||
onCommand(plugin: any, command: any, executor: Function) {
|
||||
// 必须指定需要实现的接口类型 否则MOD服会报错
|
||||
command.setExecutor(new CommandExecutor({
|
||||
onCommand: super.setExecutor(plugin, command, executor)
|
||||
}))
|
||||
}));
|
||||
}
|
||||
onTabComplete(plugin: any, command: any, tabCompleter: Function) {
|
||||
// 必须指定需要实现的接口类型 否则MOD服会报错
|
||||
command.setTabCompleter(new TabCompleter({
|
||||
onTabComplete: super.setTabCompleter(plugin, command, tabCompleter)
|
||||
}))
|
||||
}));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,20 +1,20 @@
|
||||
import { MiaoScriptConsole } from '@ccms/api'
|
||||
import { MiaoScriptConsole } from '@ms/api'
|
||||
|
||||
const Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
let Bukkit = org.bukkit.Bukkit;
|
||||
|
||||
export class BukkitConsole extends MiaoScriptConsole {
|
||||
sender(sender, ...args) {
|
||||
if (!(sender instanceof Java.type('org.bukkit.command.CommandSender'))) {
|
||||
this.error(`First parameter ${sender} not instanceof org.bukkit.command.CommandSender can't send message!`)
|
||||
return
|
||||
if (!(sender instanceof org.bukkit.command.CommandSender)) {
|
||||
this.error("第一个参数未实现 org.bukkit.command.CommandSender 无法发送消息!")
|
||||
return;
|
||||
}
|
||||
if (Object.prototype.toString.call(args[0]) === "[object Array]") {
|
||||
args[0].forEach(line => sender.sendMessage(this.prefix + line))
|
||||
} else {
|
||||
sender.sendMessage(this.prefix + args.join(' '))
|
||||
sender.sendMessage(this.prefix + args.join(' '));
|
||||
}
|
||||
}
|
||||
console(...args: string[]): void {
|
||||
this.sender(Bukkit.getConsoleSender(), args.join(' '))
|
||||
console(...args): void {
|
||||
this.sender(Bukkit.getConsoleSender(), args.join(' '));
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,45 +1,33 @@
|
||||
import { event, plugin } from '@ccms/api'
|
||||
import { inject, provideSingleton } from '@ccms/container'
|
||||
import * as reflect from '@ccms/common/dist/reflect'
|
||||
import { event, server, plugin } from '@ms/api'
|
||||
import { injectable, inject } from '@ms/container';
|
||||
import * as reflect from '@ms/common/dist/reflect'
|
||||
|
||||
const URL = Java.type('java.net.URL')
|
||||
const Bukkit = Java.type("org.bukkit.Bukkit")
|
||||
const Event = Java.type("org.bukkit.event.Event")
|
||||
const Modifier = Java.type("java.lang.reflect.Modifier")
|
||||
const Listener = Java.type("org.bukkit.event.Listener")
|
||||
const EventPriority = Java.type("org.bukkit.event.EventPriority")
|
||||
const EventExecutor = Java.type("org.bukkit.plugin.EventExecutor")
|
||||
let Bukkit = Java.type("org.bukkit.Bukkit");
|
||||
let Event = Java.type("org.bukkit.event.Event");
|
||||
let Modifier = Java.type("java.lang.reflect.Modifier");
|
||||
let Listener = Java.type("org.bukkit.event.Listener");
|
||||
let EventPriority = Java.type("org.bukkit.event.EventPriority");
|
||||
let EventExecutor = Java.type("org.bukkit.plugin.EventExecutor");
|
||||
|
||||
@provideSingleton(event.Event)
|
||||
@injectable()
|
||||
export class BukkitEvent extends event.Event {
|
||||
@inject(plugin.PluginInstance)
|
||||
private pluginInstance: any
|
||||
|
||||
constructor() {
|
||||
super('org/bukkit/event')
|
||||
super('org/bukkit/event');
|
||||
}
|
||||
|
||||
getJarFile(resource: string) {
|
||||
try {
|
||||
return super.getJarFile('org/bukkit/Bukkit.class', Bukkit.class.classLoader)
|
||||
} catch (error) {
|
||||
// 兼容 LoliServer 的 Bukkit 包无法获取的问题
|
||||
let ModList = Java.type('net.minecraftforge.fml.ModList').get()
|
||||
let forgeFile = ModList.getModFileById("forge").getFile().getFilePath()
|
||||
let jarPath = `jar:file:${forgeFile}!/org/bukkit/Bukkit.class`
|
||||
return new URL(jarPath).openConnection().jarFile
|
||||
}
|
||||
}
|
||||
isValidEvent(clazz: any): boolean {
|
||||
// 继承于 org.bukkit.event.Event
|
||||
return Event.class.isAssignableFrom(clazz) &&
|
||||
// 访问符为Public
|
||||
Modifier.isPublic(clazz.getModifiers()) &&
|
||||
// 不是抽象类
|
||||
!Modifier.isAbstract(clazz.getModifiers())
|
||||
!Modifier.isAbstract(clazz.getModifiers());
|
||||
}
|
||||
register(eventCls: any, exec: Function, priority: event.EventPriority, ignoreCancel: boolean) {
|
||||
let listener = new Listener({})
|
||||
register(eventCls: any, exec: Function, priority: any, ignoreCancel: boolean) {
|
||||
var listener = new Listener({});
|
||||
Bukkit.pluginManager.registerEvent(
|
||||
eventCls,
|
||||
listener,
|
||||
@@ -48,10 +36,10 @@ export class BukkitEvent extends event.Event {
|
||||
execute: exec
|
||||
}),
|
||||
this.pluginInstance,
|
||||
ignoreCancel)
|
||||
return listener
|
||||
ignoreCancel);
|
||||
return listener;
|
||||
}
|
||||
unregister(event: any, listener: any): void {
|
||||
reflect.on(event).call('getHandlerList').get().unregister(listener)
|
||||
reflect.on(event).call('getHandlerList').get().unregister(listener);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -1,20 +1,22 @@
|
||||
/// <reference types="@javatypes/spigot-api" />
|
||||
/// <reference path="./typings/index.ts" />
|
||||
|
||||
import { server } from '@ccms/api'
|
||||
import { Container } from '@ccms/container'
|
||||
import { server, plugin, command, event, task } from '@ms/api'
|
||||
import { DefaultContainer as container } from '@ms/container'
|
||||
|
||||
import { BukkitConsole } from './console'
|
||||
import './item'
|
||||
import './chat'
|
||||
import './task'
|
||||
import './event'
|
||||
import './server'
|
||||
import { BukkitNativePluginManager } from './plugin'
|
||||
import './command'
|
||||
import './channel'
|
||||
import './particle'
|
||||
import { BukkitConsole } from './console';
|
||||
import { BukkitEvent } from './event';
|
||||
import { BukkitCommand } from './command';
|
||||
import { BukkitTaskManager } from './task';
|
||||
|
||||
export default function BukkitImpl(container: Container) {
|
||||
container.bind(server.Console).toConstantValue(BukkitConsole)
|
||||
container.rebind(server.NativePluginManager).toConstantValue(new BukkitNativePluginManager())
|
||||
}
|
||||
let BukkitServerType = 'bukkit';
|
||||
let Bukkit = Java.type("org.bukkit.Bukkit");
|
||||
|
||||
container.bind(server.Console).toConstantValue(BukkitConsole);
|
||||
container.bind(server.ServerType).toConstantValue(BukkitServerType);
|
||||
container.bind(plugin.PluginInstance).toConstantValue(Bukkit.pluginManager.getPlugin('MiaoScript'));
|
||||
|
||||
container.bind(event.Event).to(BukkitEvent).inSingletonScope();
|
||||
container.bind(command.Command).to(BukkitCommand).inSingletonScope();
|
||||
container.bind(task.TaskManager).to(BukkitTaskManager).inSingletonScope();
|
||||
|
||||
console.debug(`Detect Bukkit Compatible set ServerType to ${BukkitServerType} ...`)
|
||||
|
||||
@@ -1,206 +0,0 @@
|
||||
/*global Java, base, module, exports, require*/
|
||||
let bukkitChatInvoke: BukkitChatInvoke
|
||||
/**
|
||||
* 获取NMS类
|
||||
*/
|
||||
abstract class BukkitChatInvoke {
|
||||
private downgrade: boolean = false
|
||||
protected RemapUtils: any
|
||||
protected ComponentSerializer: any
|
||||
|
||||
protected ChatSerializer: any
|
||||
protected nmsChatSerializerMethodName: string
|
||||
protected PacketPlayOutChat: any
|
||||
protected chatMessageTypes: any
|
||||
protected playerConnectionFieldName: string
|
||||
protected playerFieldName: string
|
||||
protected sendPacketMethodName: string
|
||||
|
||||
constructor(private nmsVersion) {
|
||||
}
|
||||
|
||||
init() {
|
||||
try {
|
||||
try {
|
||||
this.ComponentSerializer = Java.type('net.md_5.bungee.chat.ComponentSerializer')
|
||||
this.RemapUtils = Java.type('catserver.server.remapper.RemapUtils')
|
||||
} catch (ex: any) {
|
||||
}
|
||||
let nmsChatSerializerClass = this.getNmsChatSerializerClass()
|
||||
this.nmsChatSerializerMethodName = this.getNmsChatSerializerMethodName(nmsChatSerializerClass)
|
||||
this.ChatSerializer = Java.type(nmsChatSerializerClass.getName())
|
||||
let packetTypeClass = this.getPacketPlayOutChatClass()
|
||||
this.PacketPlayOutChat = Java.type(packetTypeClass.getName())
|
||||
let constructors = packetTypeClass.constructors
|
||||
for (const constructor of Java.from(constructors)) {
|
||||
let parameterTypes = constructor.parameterTypes
|
||||
if (parameterTypes.length === 2 || parameterTypes.length === 3) {
|
||||
let nmsChatMessageTypeClass = parameterTypes[1]
|
||||
if (nmsChatMessageTypeClass.isEnum()) {
|
||||
this.chatMessageTypes = nmsChatMessageTypeClass.getEnumConstants()
|
||||
break
|
||||
} else if (nmsChatMessageTypeClass.getName() == 'int') {
|
||||
break
|
||||
}
|
||||
}
|
||||
}
|
||||
let playerConnectionField = this.getPlayerConnectionField()
|
||||
this.playerConnectionFieldName = playerConnectionField.getName()
|
||||
this.sendPacketMethodName = this.getSendPacketMethodName(playerConnectionField.getType())
|
||||
} catch (ex: any) {
|
||||
org.bukkit.Bukkit.getConsoleSender().sendMessage(`§6[§cMS§6][§bbukkit§6][§achat§6] §cNMS Inject Error §4${ex} §cDowngrade to Command Mode...`)
|
||||
this.downgrade = true
|
||||
}
|
||||
}
|
||||
|
||||
abstract getNmsChatSerializerClass()
|
||||
abstract getNmsChatSerializerMethodName(nmsChatSerializerClass: any)
|
||||
abstract getPacketPlayOutChatClass()
|
||||
abstract getPacketPlayOutChat(sender: any, json: any, type: number)
|
||||
abstract getPlayerConnectionField()
|
||||
abstract getPacketClass()
|
||||
abstract getSendPacketMethodName(playerConnectionClass: any)
|
||||
|
||||
nmsCls(name: string) {
|
||||
return base.getClass(['net.minecraft.server', this.nmsVersion, name].join('.'))
|
||||
}
|
||||
|
||||
remapMethod(clazz: any, origin: string, test: string, params: any) {
|
||||
try {
|
||||
return clazz.getMethod(origin, params)
|
||||
} catch (ex: any) {
|
||||
if (this.RemapUtils) {
|
||||
return clazz.getMethod(this.RemapUtils.mapMethod(clazz, origin, params), params)
|
||||
} else {
|
||||
return clazz.getMethod(test, params)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
remapFieldName(clazz: any, origin: string, test: string) {
|
||||
try {
|
||||
return clazz.getField(origin)
|
||||
} catch (ex: any) {
|
||||
if (this.RemapUtils) {
|
||||
return clazz.getField(this.RemapUtils.mapFieldName(clazz, origin))
|
||||
} else {
|
||||
return clazz.getField(test)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
json(sender: any, json: string) {
|
||||
if (this.downgrade) {
|
||||
return sender.spigot().sendMessage(this.ComponentSerializer.parse(json))
|
||||
} else {
|
||||
this.send(sender, json, 0)
|
||||
return false
|
||||
}
|
||||
}
|
||||
send(sender: any, json: any, type: number) {
|
||||
this.sendPacket(sender, this.getPacketPlayOutChat(sender, json, type))
|
||||
}
|
||||
sendPacket(player: { handle: { [x: string]: { [x: string]: (arg0: any) => void } } }, p: any) {
|
||||
player.handle[this.playerConnectionFieldName][this.sendPacketMethodName](p)
|
||||
}
|
||||
}
|
||||
|
||||
class BukkitChatInvokeBase extends BukkitChatInvoke {
|
||||
getSendPacketMethodName(playerConnectionClass: any) {
|
||||
return this.remapMethod(playerConnectionClass, 'sendPacket', 'func_179290_a', this.getPacketClass()).getName()
|
||||
}
|
||||
getNmsChatSerializerMethodName(nmsChatSerializerClass: any) {
|
||||
let nmsChatSerializerMethod = this.remapMethod(nmsChatSerializerClass, 'a', 'func_150699_a', base.getClass('java.lang.String'))
|
||||
return nmsChatSerializerMethod.getName()
|
||||
}
|
||||
getPacketPlayOutChat(sender: any, json: any, type: number) {
|
||||
return new this.PacketPlayOutChat(this.ChatSerializer[this.nmsChatSerializerMethodName](json), type)
|
||||
}
|
||||
getNmsChatSerializerClass() {
|
||||
return this.nmsCls("ChatSerializer")
|
||||
}
|
||||
getPacketPlayOutChatClass() {
|
||||
return this.nmsCls("PacketPlayOutChat")
|
||||
}
|
||||
getPlayerConnectionField() {
|
||||
return this.remapFieldName(this.nmsCls('EntityPlayer'), 'playerConnection', 'field_71135_a')
|
||||
}
|
||||
getPacketClass() {
|
||||
return this.nmsCls('Packet')
|
||||
}
|
||||
}
|
||||
|
||||
class BukkitChatInvoke_1_7_10 extends BukkitChatInvokeBase {
|
||||
}
|
||||
|
||||
class BukkitChatInvoke_1_8 extends BukkitChatInvoke_1_7_10 {
|
||||
getPacketPlayOutChat(sender: any, json: any, type: number) {
|
||||
return new this.PacketPlayOutChat(this.ChatSerializer[this.nmsChatSerializerMethodName](json), this.chatMessageTypes[type])
|
||||
}
|
||||
getNmsChatSerializerClass() {
|
||||
return this.nmsCls("IChatBaseComponent$ChatSerializer")
|
||||
}
|
||||
}
|
||||
class BukkitChatInvoke_1_16_5 extends BukkitChatInvoke_1_8 {
|
||||
getPacketPlayOutChat(sender: any, json: any, type: number) {
|
||||
return new this.PacketPlayOutChat(this.ChatSerializer[this.nmsChatSerializerMethodName](json), this.chatMessageTypes[type], sender.getUniqueId())
|
||||
}
|
||||
}
|
||||
|
||||
class BukkitChatInvoke_1_17_1 extends BukkitChatInvoke_1_16_5 {
|
||||
getPacketPlayOutChatClass() {
|
||||
return base.getClass('net.minecraft.network.protocol.game.PacketPlayOutChat')
|
||||
}
|
||||
getNmsChatSerializerClass() {
|
||||
return base.getClass('net.minecraft.network.chat.IChatBaseComponent$ChatSerializer')
|
||||
}
|
||||
getPlayerConnectionField() {
|
||||
return base.getClass('net.minecraft.server.level.EntityPlayer').getField('b')
|
||||
}
|
||||
getPacketClass() {
|
||||
return base.getClass('net.minecraft.network.protocol.Packet')
|
||||
}
|
||||
}
|
||||
class BukkitChatInvoke_1_18_2 extends BukkitChatInvoke_1_17_1 {
|
||||
getSendPacketMethodName(playerConnectionClass: any) {
|
||||
return playerConnectionClass.getMethod('a', this.getPacketClass()).getName()
|
||||
}
|
||||
}
|
||||
class BukkitChatInvoke_1_19 extends BukkitChatInvoke_1_18_2 {
|
||||
getPacketPlayOutChatClass() {
|
||||
return base.getClass('net.minecraft.network.protocol.game.ClientboundSystemChatPacket')
|
||||
}
|
||||
getPacketPlayOutChat(sender: any, json: any, type: number) {
|
||||
return new this.PacketPlayOutChat(this.ChatSerializer[this.nmsChatSerializerMethodName](json), type)
|
||||
}
|
||||
}
|
||||
|
||||
try {
|
||||
let Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
// @ts-ignore
|
||||
let nmsVersion = Bukkit.getServer().class.name.split('.')[3]
|
||||
let nmsSubVersion = nmsVersion.split("_")[1]
|
||||
if (nmsSubVersion >= 19) {
|
||||
bukkitChatInvoke = new BukkitChatInvoke_1_19(nmsVersion)
|
||||
} else if (nmsSubVersion >= 18) {
|
||||
bukkitChatInvoke = new BukkitChatInvoke_1_18_2(nmsVersion)
|
||||
} else if (nmsSubVersion >= 17) {
|
||||
bukkitChatInvoke = new BukkitChatInvoke_1_17_1(nmsVersion)
|
||||
} else if (nmsSubVersion >= 16) {
|
||||
bukkitChatInvoke = new BukkitChatInvoke_1_16_5(nmsVersion)
|
||||
} else if (nmsSubVersion >= 8) {
|
||||
bukkitChatInvoke = new BukkitChatInvoke_1_8(nmsVersion)
|
||||
} else {
|
||||
bukkitChatInvoke = new BukkitChatInvoke_1_7_10(nmsVersion)
|
||||
}
|
||||
bukkitChatInvoke.init()
|
||||
} catch (ex: any) {
|
||||
}
|
||||
|
||||
let chat = {
|
||||
invoke: bukkitChatInvoke,
|
||||
json: bukkitChatInvoke.json.bind(bukkitChatInvoke),
|
||||
send: bukkitChatInvoke.send.bind(bukkitChatInvoke)
|
||||
}
|
||||
|
||||
export default chat
|
||||
File diff suppressed because it is too large
Load Diff
@@ -1,128 +0,0 @@
|
||||
import { item } from "@ccms/api"
|
||||
import { provideSingleton } from "@ccms/container"
|
||||
|
||||
import { itemIds } from './internal/item'
|
||||
|
||||
const Material: typeof org.bukkit.Material = Java.type('org.bukkit.Material')
|
||||
const ItemStack: typeof org.bukkit.inventory.ItemStack = Java.type('org.bukkit.inventory.ItemStack')
|
||||
|
||||
@provideSingleton(item.Item)
|
||||
export class BukkitItem extends item.Item {
|
||||
private CraftItemStack: any
|
||||
private NBTTagCompound: any
|
||||
private nmsSaveNBTMethodName: any
|
||||
private MojangsonParser: any
|
||||
private nmsItemStack: any
|
||||
private mpParseMethodName: any
|
||||
private nmsVersion: any
|
||||
constructor() {
|
||||
super()
|
||||
this.reflect()
|
||||
}
|
||||
builder(): item.ItemBuilder {
|
||||
return new BukkitItemBuilder()
|
||||
}
|
||||
toJson(item: any): string {
|
||||
let nbt = new this.NBTTagCompound()
|
||||
return this.CraftItemStack.asNMSCopy(item)[this.nmsSaveNBTMethodName](nbt).toString()
|
||||
}
|
||||
fromJson(json: string) {
|
||||
return this.CraftItemStack.asBukkitCopy(new this.nmsItemStack(this.MojangsonParser[this.mpParseMethodName](json)))
|
||||
}
|
||||
private obcCls(name: string) {
|
||||
return base.getClass(['org.bukkit.craftbukkit', this.nmsVersion, name].join('.'))
|
||||
}
|
||||
private nmsCls(name: string) {
|
||||
return base.getClass(['net.minecraft.server', this.nmsVersion, name].join('.'))
|
||||
}
|
||||
private reflect() {
|
||||
try {
|
||||
let Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
// @ts-ignore
|
||||
this.nmsVersion = Bukkit.getServer().class.name.split('.')[3]
|
||||
let CraftItemStackClass = this.obcCls('inventory.CraftItemStack')
|
||||
this.CraftItemStack = Java.type(CraftItemStackClass.getName())
|
||||
// @ts-ignore
|
||||
let asNMSCopyMethod = CraftItemStackClass.getMethod('asNMSCopy', ItemStack.class)
|
||||
let nmsItemStackClass = asNMSCopyMethod.getReturnType()
|
||||
this.nmsItemStack = Java.type(nmsItemStackClass.getName())
|
||||
let nmsNBTTagCompoundClass = undefined
|
||||
for (let method of Java.from(nmsItemStackClass.getMethods())) {
|
||||
let rt = method.getReturnType()
|
||||
if (method.getParameterTypes().length == 0 && "NBTTagCompound" == rt.getSimpleName()) {
|
||||
nmsNBTTagCompoundClass = rt
|
||||
}
|
||||
}
|
||||
this.NBTTagCompound = Java.type(nmsNBTTagCompoundClass.getName())
|
||||
for (let method of Java.from(nmsItemStackClass.getMethods())) {
|
||||
let params = method.getParameterTypes()
|
||||
let rt = method.getReturnType()
|
||||
if (params.length == 1 && "NBTTagCompound" == params[0].getSimpleName() && "NBTTagCompound" == rt.getSimpleName()) {
|
||||
this.nmsSaveNBTMethodName = method.getName()
|
||||
break
|
||||
}
|
||||
}
|
||||
try {
|
||||
this.MojangsonParser = this.nmsCls('MojangsonParser').static
|
||||
} catch (error) {
|
||||
this.MojangsonParser = Java.type('net.minecraft.nbt.MojangsonParser')
|
||||
}
|
||||
for (let method of Java.from(this.MojangsonParser.class.getMethods())) {
|
||||
let params = method.getParameterTypes()
|
||||
let rt = method.getReturnType()
|
||||
if (params.length == 1 && "String" == params[0].getSimpleName() && "NBTTagCompound" == rt.getSimpleName()) {
|
||||
this.mpParseMethodName = method.getName()
|
||||
}
|
||||
}
|
||||
} catch (error: any) {
|
||||
console.log('Bukkit 物品管理器初始化失败:', error)
|
||||
if (global.debug) {
|
||||
console.ex(error)
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
export class BukkitItemBuilder implements item.ItemBuilder {
|
||||
private itemStack: org.bukkit.inventory.ItemStack
|
||||
private itemMeta: org.bukkit.inventory.meta.ItemMeta
|
||||
|
||||
from(itemStack: any): item.ItemBuilder {
|
||||
this.itemStack = itemStack
|
||||
this.itemMeta = this.itemStack.getItemMeta()
|
||||
return this
|
||||
}
|
||||
create(type: string | number): item.ItemBuilder {
|
||||
let material = undefined
|
||||
if (typeof type == 'number') {
|
||||
type = itemIds[type]
|
||||
}
|
||||
material = Material[type] || Material[Material['LEGACY_PREFIX'] + type]
|
||||
this.itemStack = new ItemStack(material)
|
||||
this.itemMeta = this.itemStack.getItemMeta()
|
||||
return this
|
||||
}
|
||||
name(name: string): item.ItemBuilder {
|
||||
this.itemMeta.setDisplayName(name)
|
||||
return this
|
||||
}
|
||||
lore(...lores: string[]): item.ItemBuilder {
|
||||
this.itemMeta.setLore(lores)
|
||||
return this
|
||||
}
|
||||
amount(amount: number): item.ItemBuilder {
|
||||
this.itemStack.setAmount(amount)
|
||||
return this
|
||||
}
|
||||
durability(durability: number): item.ItemBuilder {
|
||||
this.itemStack.setDurability(durability)
|
||||
return this
|
||||
}
|
||||
clone() {
|
||||
return this.build().clone()
|
||||
}
|
||||
build() {
|
||||
this.itemStack.setItemMeta(this.itemMeta)
|
||||
return this.itemStack
|
||||
}
|
||||
}
|
||||
@@ -1,33 +0,0 @@
|
||||
import { provideSingleton } from '@ccms/container'
|
||||
import { particle } from '@ccms/api'
|
||||
|
||||
@provideSingleton(particle.ParticleManager)
|
||||
export class BukkitParticleManager extends particle.ParticleManager {
|
||||
}
|
||||
|
||||
@provideSingleton(particle.ParticleSpawner)
|
||||
export class BukkitParticleSpawner extends particle.ParticleSpawner {
|
||||
spawn(location: org.bukkit.Location, particle: particle.Particle) {
|
||||
location.getWorld().spawnParticle(
|
||||
particle.getParticle(),
|
||||
location,
|
||||
particle.getCount(),
|
||||
particle.getOffsetX(),
|
||||
particle.getOffsetY(),
|
||||
particle.getOffsetZ(),
|
||||
particle.getExtra(),
|
||||
particle.getData()
|
||||
)
|
||||
}
|
||||
spawnToPlayer(player: org.bukkit.entity.Player, location: org.bukkit.Location, particle: particle.Particle) {
|
||||
player.spawnParticle(
|
||||
particle.getParticle(),
|
||||
location,
|
||||
particle.getCount(),
|
||||
particle.getOffsetX(),
|
||||
particle.getOffsetY(),
|
||||
particle.getOffsetZ(),
|
||||
particle.getExtra(),
|
||||
particle.getData())
|
||||
}
|
||||
}
|
||||
@@ -1,52 +0,0 @@
|
||||
import { server } from '@ccms/api'
|
||||
|
||||
const Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
|
||||
export class BukkitNativePluginManager extends server.NativePluginManager {
|
||||
private bukkitPluginManager: org.bukkit.plugin.PluginManager
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
this.bukkitPluginManager = Bukkit.getPluginManager()
|
||||
}
|
||||
|
||||
list(): server.NativePlugin[] {
|
||||
return Java.from(this.bukkitPluginManager.getPlugins()).map(plugin => this.convert(plugin))
|
||||
}
|
||||
has(name: string): boolean {
|
||||
return !!this.bukkitPluginManager.getPlugin(name)
|
||||
}
|
||||
get(name: string): server.NativePlugin {
|
||||
return this.convert(this.bukkitPluginManager.getPlugin(name))
|
||||
}
|
||||
enable(name: string): server.NativePlugin {
|
||||
let origin = this.bukkitPluginManager.getPlugin(name)
|
||||
if (!origin) { throw new Error(`Native Plugin ${name} not found.`) }
|
||||
if (!origin.isEnabled()) {
|
||||
this.bukkitPluginManager.enablePlugin(origin)
|
||||
}
|
||||
return this.convert(origin)
|
||||
}
|
||||
disable(name: string): server.NativePlugin {
|
||||
let origin = this.bukkitPluginManager.getPlugin(name)
|
||||
if (!origin) { throw new Error(`Native Plugin ${name} not found.`) }
|
||||
if (origin.isEnabled()) {
|
||||
this.bukkitPluginManager.disablePlugin(origin)
|
||||
}
|
||||
return this.convert(origin)
|
||||
}
|
||||
|
||||
private convert(plugin: org.bukkit.plugin.Plugin): server.NativePlugin {
|
||||
if (!plugin) return plugin as any
|
||||
let desc = plugin.getDescription()
|
||||
return {
|
||||
name: plugin.getName(),
|
||||
version: desc.getVersion(),
|
||||
authors: Java.from(desc.getAuthors()),
|
||||
depends: Java.from(desc.getDepend()),
|
||||
softDepends: Java.from(desc.getSoftDepend()),
|
||||
enable: plugin.isEnabled(),
|
||||
origin: plugin
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -1,62 +0,0 @@
|
||||
import { server } from '@ccms/api'
|
||||
import { provideSingleton } from '@ccms/container'
|
||||
|
||||
import * as reflect from '@ccms/common/dist/reflect'
|
||||
|
||||
const Bukkit: typeof org.bukkit.Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
|
||||
@provideSingleton(server.Server)
|
||||
export class BukkitServer extends server.ReflectServer {
|
||||
private pluginsFolder: string
|
||||
|
||||
constructor() {
|
||||
super()
|
||||
this.pluginsFolder = Bukkit.getUpdateFolderFile().getParentFile().getCanonicalPath()
|
||||
}
|
||||
|
||||
getPlayer(name: string) {
|
||||
return Bukkit.getPlayerExact(name)
|
||||
}
|
||||
getVersion(): string {
|
||||
return Bukkit.getVersion()
|
||||
}
|
||||
getOnlinePlayers() {
|
||||
return Bukkit.getOnlinePlayers()
|
||||
}
|
||||
getConsoleSender() {
|
||||
return Bukkit.getConsoleSender()
|
||||
}
|
||||
getService(service: string) {
|
||||
return Bukkit.getServicesManager().getRegistration(base.getClass(service))?.getProvider()
|
||||
}
|
||||
broadcast(message: string, permission: string) {
|
||||
return Bukkit.broadcast(message, permission)
|
||||
}
|
||||
broadcastMessage(message: string) {
|
||||
return Bukkit.broadcastMessage(message)
|
||||
}
|
||||
dispatchCommand(sender: string | any, command: string): boolean {
|
||||
if (typeof sender === 'string') {
|
||||
sender = this.getPlayer(sender)
|
||||
}
|
||||
return Bukkit.dispatchCommand(sender, command)
|
||||
}
|
||||
dispatchConsoleCommand(command: string): boolean {
|
||||
return Bukkit.dispatchCommand(Bukkit.getConsoleSender(), command)
|
||||
}
|
||||
getPluginsFolder(): string {
|
||||
return this.pluginsFolder
|
||||
}
|
||||
getNativePluginManager() {
|
||||
return Bukkit.getPluginManager() as any
|
||||
}
|
||||
getDedicatedServer() {
|
||||
return reflect.on(Bukkit.getServer()).get('console').get()
|
||||
}
|
||||
getNettyPipeline() {
|
||||
return this.pipeline
|
||||
}
|
||||
getRootLogger() {
|
||||
return this.rootLogger
|
||||
}
|
||||
}
|
||||
@@ -1,31 +1,29 @@
|
||||
import { task, plugin } from '@ccms/api'
|
||||
import { provideSingleton } from '@ccms/container'
|
||||
import { task, plugin } from '@ms/api'
|
||||
import { injectable, inject } from '@ms/container';
|
||||
|
||||
const Bukkit = Java.type('org.bukkit.Bukkit')
|
||||
const BukkitRunnable = Java.type('org.bukkit.scheduler.BukkitRunnable')
|
||||
const Callable = Java.type('java.util.concurrent.Callable')
|
||||
let BukkitRunnable = Java.type('org.bukkit.scheduler.BukkitRunnable');
|
||||
|
||||
@provideSingleton(task.TaskManager)
|
||||
export class BukkitTaskManager extends task.TaskManager {
|
||||
create0(owner: plugin.Plugin, func: Function, id: number): task.Task {
|
||||
return new BukkitTask(owner, func, id)
|
||||
}
|
||||
callSyncMethod(func: Function): any {
|
||||
return Bukkit.getScheduler().callSyncMethod(base.getInstance(), new Callable({ call: () => func() })).get()
|
||||
}
|
||||
disable0() {
|
||||
Bukkit.getScheduler().cancelTasks(base.getInstance())
|
||||
@injectable()
|
||||
export class BukkitTaskManager implements task.TaskManager {
|
||||
@inject(plugin.PluginInstance)
|
||||
private pluginInstance: any;
|
||||
|
||||
create(func: Function): task.Task {
|
||||
if (Object.prototype.toString.call(func) !== "[object Function]") { throw TypeError('第一个参数 Task 必须为 function !'); };
|
||||
return new BukkitTask(this.pluginInstance, func);
|
||||
}
|
||||
}
|
||||
|
||||
export class BukkitTask extends task.Task {
|
||||
submit0(...args: any[]): task.Cancelable {
|
||||
let run = new BukkitRunnable({ run: () => this.run(...args) })
|
||||
let suffix = this.isAsync ? 'Asynchronously' : ''
|
||||
submit(): task.Cancelable {
|
||||
let run = new BukkitRunnable({
|
||||
run: () => this.run()
|
||||
})
|
||||
let funcName = `runTask${this.interval ? 'Timer' : 'Later'}${this.isAsync ? 'Asynchronously' : ''}`
|
||||
if (this.interval) {
|
||||
return run[`runTaskTimer${suffix}`](base.getInstance(), this.laterTime, this.interval)
|
||||
return run[funcName](this.plugin, this.laterTime, this.interval)
|
||||
} else {
|
||||
return run[`runTaskLater${suffix}`](base.getInstance(), this.laterTime)
|
||||
return run[funcName](this.plugin, this.laterTime)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
958
packages/bukkit/src/typings/index.ts
Normal file
958
packages/bukkit/src/typings/index.ts
Normal file
@@ -0,0 +1,958 @@
|
||||
/// <reference path="./org.bukkit.Achievement.ts" />
|
||||
/// <reference path="./org.bukkit.Art.ts" />
|
||||
/// <reference path="./org.bukkit.Axis.ts" />
|
||||
/// <reference path="./org.bukkit.BanEntry.ts" />
|
||||
/// <reference path="./org.bukkit.BanList.Type.ts" />
|
||||
/// <reference path="./org.bukkit.BanList.ts" />
|
||||
/// <reference path="./org.bukkit.BlockChangeDelegate.ts" />
|
||||
/// <reference path="./org.bukkit.Bukkit.ts" />
|
||||
/// <reference path="./org.bukkit.ChatColor.ts" />
|
||||
/// <reference path="./org.bukkit.Chunk.ts" />
|
||||
/// <reference path="./org.bukkit.ChunkSnapshot.ts" />
|
||||
/// <reference path="./org.bukkit.CoalType.ts" />
|
||||
/// <reference path="./org.bukkit.Color.ts" />
|
||||
/// <reference path="./org.bukkit.CropState.ts" />
|
||||
/// <reference path="./org.bukkit.Difficulty.ts" />
|
||||
/// <reference path="./org.bukkit.DyeColor.ts" />
|
||||
/// <reference path="./org.bukkit.Effect.Type.ts" />
|
||||
/// <reference path="./org.bukkit.Effect.ts" />
|
||||
/// <reference path="./org.bukkit.EntityEffect.ts" />
|
||||
/// <reference path="./org.bukkit.FireworkEffect.Builder.ts" />
|
||||
/// <reference path="./org.bukkit.FireworkEffect.Type.ts" />
|
||||
/// <reference path="./org.bukkit.FireworkEffect.ts" />
|
||||
/// <reference path="./org.bukkit.FluidCollisionMode.ts" />
|
||||
/// <reference path="./org.bukkit.GameMode.ts" />
|
||||
/// <reference path="./org.bukkit.GameRule.ts" />
|
||||
/// <reference path="./org.bukkit.GrassSpecies.ts" />
|
||||
/// <reference path="./org.bukkit.Instrument.ts" />
|
||||
/// <reference path="./org.bukkit.Keyed.ts" />
|
||||
/// <reference path="./org.bukkit.Location.ts" />
|
||||
/// <reference path="./org.bukkit.Material.ts" />
|
||||
/// <reference path="./org.bukkit.Nameable.ts" />
|
||||
/// <reference path="./org.bukkit.NamespacedKey.ts" />
|
||||
/// <reference path="./org.bukkit.NetherWartsState.ts" />
|
||||
/// <reference path="./org.bukkit.Note.Tone.ts" />
|
||||
/// <reference path="./org.bukkit.Note.ts" />
|
||||
/// <reference path="./org.bukkit.OfflinePlayer.ts" />
|
||||
/// <reference path="./org.bukkit.Particle.DustOptions.ts" />
|
||||
/// <reference path="./org.bukkit.Particle.ts" />
|
||||
/// <reference path="./org.bukkit.PortalType.ts" />
|
||||
/// <reference path="./org.bukkit.Registry.SimpleRegistry.ts" />
|
||||
/// <reference path="./org.bukkit.Registry.ts" />
|
||||
/// <reference path="./org.bukkit.Rotation.ts" />
|
||||
/// <reference path="./org.bukkit.SandstoneType.ts" />
|
||||
/// <reference path="./org.bukkit.Server.ts" />
|
||||
/// <reference path="./org.bukkit.SkullType.ts" />
|
||||
/// <reference path="./org.bukkit.Sound.ts" />
|
||||
/// <reference path="./org.bukkit.SoundCategory.ts" />
|
||||
/// <reference path="./org.bukkit.Statistic.Type.ts" />
|
||||
/// <reference path="./org.bukkit.Statistic.ts" />
|
||||
/// <reference path="./org.bukkit.StructureType.ts" />
|
||||
/// <reference path="./org.bukkit.Tag.ts" />
|
||||
/// <reference path="./org.bukkit.TreeSpecies.ts" />
|
||||
/// <reference path="./org.bukkit.TreeType.ts" />
|
||||
/// <reference path="./org.bukkit.UndefinedNullability.ts" />
|
||||
/// <reference path="./org.bukkit.UnsafeValues.ts" />
|
||||
/// <reference path="./org.bukkit.Utility.ts" />
|
||||
/// <reference path="./org.bukkit.Warning.WarningState.ts" />
|
||||
/// <reference path="./org.bukkit.Warning.ts" />
|
||||
/// <reference path="./org.bukkit.WeatherType.ts" />
|
||||
/// <reference path="./org.bukkit.World.Environment.ts" />
|
||||
/// <reference path="./org.bukkit.World.ts" />
|
||||
/// <reference path="./org.bukkit.WorldBorder.ts" />
|
||||
/// <reference path="./org.bukkit.WorldCreator.ts" />
|
||||
/// <reference path="./org.bukkit.WorldType.ts" />
|
||||
/// <reference path="./org.bukkit.advancement.Advancement.ts" />
|
||||
/// <reference path="./org.bukkit.advancement.AdvancementProgress.ts" />
|
||||
/// <reference path="./org.bukkit.attribute.Attributable.ts" />
|
||||
/// <reference path="./org.bukkit.attribute.Attribute.ts" />
|
||||
/// <reference path="./org.bukkit.attribute.AttributeInstance.ts" />
|
||||
/// <reference path="./org.bukkit.attribute.AttributeModifier.Operation.ts" />
|
||||
/// <reference path="./org.bukkit.attribute.AttributeModifier.ts" />
|
||||
/// <reference path="./org.bukkit.block.Banner.ts" />
|
||||
/// <reference path="./org.bukkit.block.Barrel.ts" />
|
||||
/// <reference path="./org.bukkit.block.Beacon.ts" />
|
||||
/// <reference path="./org.bukkit.block.Bed.ts" />
|
||||
/// <reference path="./org.bukkit.block.Bell.ts" />
|
||||
/// <reference path="./org.bukkit.block.Biome.ts" />
|
||||
/// <reference path="./org.bukkit.block.BlastFurnace.ts" />
|
||||
/// <reference path="./org.bukkit.block.Block.ts" />
|
||||
/// <reference path="./org.bukkit.block.BlockFace.ts" />
|
||||
/// <reference path="./org.bukkit.block.BlockState.ts" />
|
||||
/// <reference path="./org.bukkit.block.BrewingStand.ts" />
|
||||
/// <reference path="./org.bukkit.block.Campfire.ts" />
|
||||
/// <reference path="./org.bukkit.block.Chest.ts" />
|
||||
/// <reference path="./org.bukkit.block.CommandBlock.ts" />
|
||||
/// <reference path="./org.bukkit.block.Comparator.ts" />
|
||||
/// <reference path="./org.bukkit.block.Conduit.ts" />
|
||||
/// <reference path="./org.bukkit.block.Container.ts" />
|
||||
/// <reference path="./org.bukkit.block.CreatureSpawner.ts" />
|
||||
/// <reference path="./org.bukkit.block.DaylightDetector.ts" />
|
||||
/// <reference path="./org.bukkit.block.Dispenser.ts" />
|
||||
/// <reference path="./org.bukkit.block.DoubleChest.ts" />
|
||||
/// <reference path="./org.bukkit.block.Dropper.ts" />
|
||||
/// <reference path="./org.bukkit.block.EnchantingTable.ts" />
|
||||
/// <reference path="./org.bukkit.block.EndGateway.ts" />
|
||||
/// <reference path="./org.bukkit.block.EnderChest.ts" />
|
||||
/// <reference path="./org.bukkit.block.FlowerPot.ts" />
|
||||
/// <reference path="./org.bukkit.block.Furnace.ts" />
|
||||
/// <reference path="./org.bukkit.block.Hopper.ts" />
|
||||
/// <reference path="./org.bukkit.block.Jigsaw.ts" />
|
||||
/// <reference path="./org.bukkit.block.Jukebox.ts" />
|
||||
/// <reference path="./org.bukkit.block.Lectern.ts" />
|
||||
/// <reference path="./org.bukkit.block.Lockable.ts" />
|
||||
/// <reference path="./org.bukkit.block.NoteBlock.ts" />
|
||||
/// <reference path="./org.bukkit.block.PistonMoveReaction.ts" />
|
||||
/// <reference path="./org.bukkit.block.ShulkerBox.ts" />
|
||||
/// <reference path="./org.bukkit.block.Sign.ts" />
|
||||
/// <reference path="./org.bukkit.block.Skull.ts" />
|
||||
/// <reference path="./org.bukkit.block.Smoker.ts" />
|
||||
/// <reference path="./org.bukkit.block.Structure.ts" />
|
||||
/// <reference path="./org.bukkit.block.TileState.ts" />
|
||||
/// <reference path="./org.bukkit.block.banner.Pattern.ts" />
|
||||
/// <reference path="./org.bukkit.block.banner.PatternType.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Ageable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.AnaloguePowerable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Attachable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Bisected.Half.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Bisected.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.BlockData.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Directional.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Levelled.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Lightable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.MultipleFacing.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Openable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Orientable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Powerable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Rail.Shape.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Rail.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Rotatable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Snowable.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.Waterlogged.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Bamboo.Leaves.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Bamboo.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Bed.Part.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Bed.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Bell.Attachment.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Bell.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.BrewingStand.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.BubbleColumn.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Cake.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Campfire.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Chest.Type.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Chest.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Cocoa.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.CommandBlock.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Comparator.Mode.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Comparator.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.CoralWallFan.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.DaylightDetector.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Dispenser.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Door.Hinge.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Door.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.EndPortalFrame.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.EnderChest.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Farmland.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Fence.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Fire.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Furnace.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Gate.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.GlassPane.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Hopper.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Jukebox.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Ladder.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Lantern.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Leaves.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Lectern.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.NoteBlock.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Observer.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Piston.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.PistonHead.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.RedstoneRail.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.RedstoneWallTorch.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.RedstoneWire.Connection.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.RedstoneWire.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Repeater.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Sapling.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Scaffolding.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.SeaPickle.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Sign.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Slab.Type.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Slab.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Snow.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Stairs.Shape.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Stairs.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.StructureBlock.Mode.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.StructureBlock.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Switch.Face.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Switch.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.TNT.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.TechnicalPiston.Type.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.TechnicalPiston.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.TrapDoor.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.Tripwire.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.TripwireHook.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.TurtleEgg.ts" />
|
||||
/// <reference path="./org.bukkit.block.data.type.WallSign.ts" />
|
||||
/// <reference path="./org.bukkit.block.structure.Mirror.ts" />
|
||||
/// <reference path="./org.bukkit.block.structure.StructureRotation.ts" />
|
||||
/// <reference path="./org.bukkit.block.structure.UsageMode.ts" />
|
||||
/// <reference path="./org.bukkit.boss.BarColor.ts" />
|
||||
/// <reference path="./org.bukkit.boss.BarFlag.ts" />
|
||||
/// <reference path="./org.bukkit.boss.BarStyle.ts" />
|
||||
/// <reference path="./org.bukkit.boss.BossBar.ts" />
|
||||
/// <reference path="./org.bukkit.boss.KeyedBossBar.ts" />
|
||||
/// <reference path="./org.bukkit.command.BlockCommandSender.ts" />
|
||||
/// <reference path="./org.bukkit.command.Command.ts" />
|
||||
/// <reference path="./org.bukkit.command.CommandException.ts" />
|
||||
/// <reference path="./org.bukkit.command.CommandExecutor.ts" />
|
||||
/// <reference path="./org.bukkit.command.CommandMap.ts" />
|
||||
/// <reference path="./org.bukkit.command.CommandSender.ts" />
|
||||
/// <reference path="./org.bukkit.command.ConsoleCommandSender.ts" />
|
||||
/// <reference path="./org.bukkit.command.FormattedCommandAlias.ts" />
|
||||
/// <reference path="./org.bukkit.command.MultipleCommandAlias.ts" />
|
||||
/// <reference path="./org.bukkit.command.PluginCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.PluginCommandYamlParser.ts" />
|
||||
/// <reference path="./org.bukkit.command.PluginIdentifiableCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.ProxiedCommandSender.ts" />
|
||||
/// <reference path="./org.bukkit.command.RemoteConsoleCommandSender.ts" />
|
||||
/// <reference path="./org.bukkit.command.SimpleCommandMap.ts" />
|
||||
/// <reference path="./org.bukkit.command.TabCompleter.ts" />
|
||||
/// <reference path="./org.bukkit.command.TabExecutor.ts" />
|
||||
/// <reference path="./org.bukkit.command.defaults.BukkitCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.defaults.HelpCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.defaults.PluginsCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.defaults.ReloadCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.defaults.TimingsCommand.ts" />
|
||||
/// <reference path="./org.bukkit.command.defaults.VersionCommand.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.Configuration.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.ConfigurationOptions.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.ConfigurationSection.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.InvalidConfigurationException.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.MemoryConfiguration.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.MemoryConfigurationOptions.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.MemorySection.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.file.FileConfiguration.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.file.FileConfigurationOptions.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.file.YamlConfiguration.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.file.YamlConfigurationOptions.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.file.YamlConstructor.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.file.YamlRepresenter.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.serialization.ConfigurationSerializable.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.serialization.ConfigurationSerialization.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.serialization.DelegateDeserialization.ts" />
|
||||
/// <reference path="./org.bukkit.configuration.serialization.SerializableAs.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.BooleanPrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.Conversable.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.Conversation.ConversationState.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.Conversation.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ConversationAbandonedEvent.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ConversationAbandonedListener.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ConversationCanceller.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ConversationContext.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ConversationFactory.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ConversationPrefix.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ExactMatchConversationCanceller.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.FixedSetPrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.InactivityConversationCanceller.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ManuallyAbandonedConversationCanceller.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.MessagePrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.NullConversationPrefix.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.NumericPrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.PlayerNamePrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.PluginNameConversationPrefix.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.Prompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.RegexPrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.StringPrompt.ts" />
|
||||
/// <reference path="./org.bukkit.conversations.ValidatingPrompt.ts" />
|
||||
/// <reference path="./org.bukkit.enchantments.Enchantment.ts" />
|
||||
/// <reference path="./org.bukkit.enchantments.EnchantmentOffer.ts" />
|
||||
/// <reference path="./org.bukkit.enchantments.EnchantmentTarget.ts" />
|
||||
/// <reference path="./org.bukkit.enchantments.EnchantmentWrapper.ts" />
|
||||
/// <reference path="./org.bukkit.entity.AbstractArrow.PickupStatus.ts" />
|
||||
/// <reference path="./org.bukkit.entity.AbstractArrow.ts" />
|
||||
/// <reference path="./org.bukkit.entity.AbstractHorse.ts" />
|
||||
/// <reference path="./org.bukkit.entity.AbstractVillager.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Ageable.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Ambient.ts" />
|
||||
/// <reference path="./org.bukkit.entity.AnimalTamer.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Animals.ts" />
|
||||
/// <reference path="./org.bukkit.entity.AreaEffectCloud.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ArmorStand.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Arrow.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Bat.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Blaze.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Boat.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Boss.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Cat.Type.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Cat.ts" />
|
||||
/// <reference path="./org.bukkit.entity.CaveSpider.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ChestedHorse.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Chicken.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Cod.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ComplexEntityPart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ComplexLivingEntity.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Cow.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Creature.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Creeper.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Damageable.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Dolphin.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Donkey.ts" />
|
||||
/// <reference path="./org.bukkit.entity.DragonFireball.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Drowned.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Egg.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ElderGuardian.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EnderCrystal.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EnderDragon.Phase.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EnderDragon.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EnderDragonPart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EnderPearl.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EnderSignal.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Enderman.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Endermite.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Entity.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EntityType.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Evoker.Spell.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Evoker.ts" />
|
||||
/// <reference path="./org.bukkit.entity.EvokerFangs.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ExperienceOrb.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Explosive.ts" />
|
||||
/// <reference path="./org.bukkit.entity.FallingBlock.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Fireball.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Firework.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Fish.ts" />
|
||||
/// <reference path="./org.bukkit.entity.FishHook.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Flying.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Fox.Type.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Fox.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Ghast.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Giant.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Golem.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Guardian.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Hanging.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Horse.Color.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Horse.Style.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Horse.Variant.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Horse.ts" />
|
||||
/// <reference path="./org.bukkit.entity.HumanEntity.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Husk.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Illager.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Illusioner.ts" />
|
||||
/// <reference path="./org.bukkit.entity.IronGolem.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Item.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ItemFrame.ts" />
|
||||
/// <reference path="./org.bukkit.entity.LargeFireball.ts" />
|
||||
/// <reference path="./org.bukkit.entity.LeashHitch.ts" />
|
||||
/// <reference path="./org.bukkit.entity.LightningStrike.ts" />
|
||||
/// <reference path="./org.bukkit.entity.LingeringPotion.ts" />
|
||||
/// <reference path="./org.bukkit.entity.LivingEntity.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Llama.Color.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Llama.ts" />
|
||||
/// <reference path="./org.bukkit.entity.LlamaSpit.ts" />
|
||||
/// <reference path="./org.bukkit.entity.MagmaCube.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Minecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Mob.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Monster.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Mule.ts" />
|
||||
/// <reference path="./org.bukkit.entity.MushroomCow.Variant.ts" />
|
||||
/// <reference path="./org.bukkit.entity.MushroomCow.ts" />
|
||||
/// <reference path="./org.bukkit.entity.NPC.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Ocelot.Type.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Ocelot.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Painting.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Panda.Gene.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Panda.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Parrot.Variant.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Parrot.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Phantom.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Pig.ts" />
|
||||
/// <reference path="./org.bukkit.entity.PigZombie.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Pillager.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Player.ts" />
|
||||
/// <reference path="./org.bukkit.entity.PolarBear.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Pose.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Projectile.ts" />
|
||||
/// <reference path="./org.bukkit.entity.PufferFish.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Rabbit.Type.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Rabbit.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Raider.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Ravager.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Salmon.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Sheep.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Shulker.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ShulkerBullet.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Silverfish.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Sittable.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Skeleton.SkeletonType.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Skeleton.ts" />
|
||||
/// <reference path="./org.bukkit.entity.SkeletonHorse.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Slime.ts" />
|
||||
/// <reference path="./org.bukkit.entity.SmallFireball.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Snowball.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Snowman.ts" />
|
||||
/// <reference path="./org.bukkit.entity.SpectralArrow.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Spellcaster.Spell.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Spellcaster.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Spider.ts" />
|
||||
/// <reference path="./org.bukkit.entity.SplashPotion.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Squid.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Stray.ts" />
|
||||
/// <reference path="./org.bukkit.entity.TNTPrimed.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Tameable.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ThrownExpBottle.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ThrownPotion.ts" />
|
||||
/// <reference path="./org.bukkit.entity.TippedArrow.ts" />
|
||||
/// <reference path="./org.bukkit.entity.TraderLlama.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Trident.ts" />
|
||||
/// <reference path="./org.bukkit.entity.TropicalFish.Pattern.ts" />
|
||||
/// <reference path="./org.bukkit.entity.TropicalFish.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Turtle.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Vehicle.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Vex.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Villager.Profession.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Villager.Type.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Villager.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Vindicator.ts" />
|
||||
/// <reference path="./org.bukkit.entity.WanderingTrader.ts" />
|
||||
/// <reference path="./org.bukkit.entity.WaterMob.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Witch.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Wither.ts" />
|
||||
/// <reference path="./org.bukkit.entity.WitherSkeleton.ts" />
|
||||
/// <reference path="./org.bukkit.entity.WitherSkull.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Wolf.ts" />
|
||||
/// <reference path="./org.bukkit.entity.Zombie.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ZombieHorse.ts" />
|
||||
/// <reference path="./org.bukkit.entity.ZombieVillager.ts" />
|
||||
/// <reference path="./org.bukkit.entity.memory.MemoryKey.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.CommandMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.ExplosiveMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.HopperMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.PoweredMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.RideableMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.SpawnerMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.entity.minecart.StorageMinecart.ts" />
|
||||
/// <reference path="./org.bukkit.event.Cancellable.ts" />
|
||||
/// <reference path="./org.bukkit.event.Event.Result.ts" />
|
||||
/// <reference path="./org.bukkit.event.Event.ts" />
|
||||
/// <reference path="./org.bukkit.event.EventException.ts" />
|
||||
/// <reference path="./org.bukkit.event.EventHandler.ts" />
|
||||
/// <reference path="./org.bukkit.event.EventPriority.ts" />
|
||||
/// <reference path="./org.bukkit.event.HandlerList.ts" />
|
||||
/// <reference path="./org.bukkit.event.Listener.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.Action.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockBreakEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockBurnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockCanBuildEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockCookEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockDamageEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockDispenseArmorEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockDispenseEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockDropItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockExpEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockExplodeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockFadeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockFertilizeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockFormEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockFromToEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockGrowEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockIgniteEvent.IgniteCause.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockIgniteEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockMultiPlaceEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockPhysicsEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockPistonEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockPistonExtendEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockPistonRetractEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockPlaceEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockRedstoneEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockShearEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.BlockSpreadEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.CauldronLevelChangeEvent.ChangeReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.CauldronLevelChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.EntityBlockFormEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.FluidLevelChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.LeavesDecayEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.MoistureChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.NotePlayEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.SignChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.block.SpongeAbsorbEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.enchantment.EnchantItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.enchantment.PrepareItemEnchantEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.AreaEffectCloudApplyEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.BatToggleSleepEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.CreatureSpawnEvent.SpawnReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.CreatureSpawnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.CreeperPowerEvent.PowerCause.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.CreeperPowerEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EnderDragonChangePhaseEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityAirChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityBreakDoorEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityBreedEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityChangeBlockEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityCombustByBlockEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityCombustByEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityCombustEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityCreatePortalEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDamageByBlockEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDamageByEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDamageEvent.DamageCause.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDamageEvent.DamageModifier.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDamageEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDeathEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityDropItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityExplodeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityInteractEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPickupItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPlaceEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPortalEnterEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPortalEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPortalExitEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPoseChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPotionEffectEvent.Action.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPotionEffectEvent.Cause.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityPotionEffectEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityRegainHealthEvent.RegainReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityRegainHealthEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityResurrectEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityShootBowEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntitySpawnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTameEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTargetEvent.TargetReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTargetEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTargetLivingEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTeleportEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityToggleGlideEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityToggleSwimEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTransformEvent.TransformReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityTransformEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityUnleashEvent.UnleashReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.EntityUnleashEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ExpBottleEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ExplosionPrimeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.FireworkExplodeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.FoodLevelChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.HorseJumpEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ItemDespawnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ItemMergeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ItemSpawnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.LingeringPotionSplashEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.PigZapEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.PigZombieAngerEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.PlayerDeathEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.PlayerLeashEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.PotionSplashEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ProjectileHitEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.ProjectileLaunchEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.SheepDyeWoolEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.SheepRegrowWoolEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.SlimeSplitEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.VillagerAcquireTradeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.VillagerCareerChangeEvent.ChangeReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.VillagerCareerChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.entity.VillagerReplenishTradeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.hanging.HangingBreakByEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.hanging.HangingBreakEvent.RemoveCause.ts" />
|
||||
/// <reference path="./org.bukkit.event.hanging.HangingBreakEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.hanging.HangingEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.hanging.HangingPlaceEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.BrewEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.BrewingStandFuelEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.ClickType.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.CraftItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.DragType.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.FurnaceBurnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.FurnaceExtractEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.FurnaceSmeltEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryAction.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryClickEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryCloseEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryCreativeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryDragEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryInteractEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryMoveItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryOpenEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryPickupItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryType.SlotType.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.InventoryType.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.PrepareAnvilEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.PrepareItemCraftEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.inventory.TradeSelectEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.AsyncPlayerChatEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.AsyncPlayerPreLoginEvent.Result.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.AsyncPlayerPreLoginEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerAchievementAwardedEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerAdvancementDoneEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerAnimationEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerAnimationType.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerArmorStandManipulateEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerBedEnterEvent.BedEnterResult.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerBedEnterEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerBedLeaveEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerBucketEmptyEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerBucketEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerBucketFillEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerChangedMainHandEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerChangedWorldEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerChannelEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerChatEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerChatTabCompleteEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerCommandPreprocessEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerCommandSendEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerDropItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerEditBookEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerEggThrowEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerExpChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerFishEvent.State.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerFishEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerGameModeChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerInteractAtEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerInteractEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerInteractEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerItemBreakEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerItemConsumeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerItemDamageEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerItemHeldEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerItemMendEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerJoinEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerKickEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerLevelChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerLocaleChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerLoginEvent.Result.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerLoginEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerMoveEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerPickupArrowEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerPickupItemEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerPortalEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerPreLoginEvent.Result.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerPreLoginEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerQuitEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerRecipeDiscoverEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerRegisterChannelEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerResourcePackStatusEvent.Status.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerResourcePackStatusEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerRespawnEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerRiptideEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerShearEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerStatisticIncrementEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerSwapHandItemsEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerTakeLecternBookEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerTeleportEvent.TeleportCause.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerTeleportEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerToggleFlightEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerToggleSneakEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerToggleSprintEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerUnleashEntityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerUnregisterChannelEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.player.PlayerVelocityEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.BroadcastMessageEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.MapInitializeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.PluginDisableEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.PluginEnableEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.PluginEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.RemoteServerCommandEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServerCommandEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServerEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServerListPingEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServerLoadEvent.LoadType.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServerLoadEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServiceEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServiceRegisterEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.ServiceUnregisterEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.server.TabCompleteEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleBlockCollisionEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleCollisionEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleCreateEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleDamageEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleDestroyEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleEnterEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleEntityCollisionEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleExitEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleMoveEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.vehicle.VehicleUpdateEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.weather.LightningStrikeEvent.Cause.ts" />
|
||||
/// <reference path="./org.bukkit.event.weather.LightningStrikeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.weather.ThunderChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.weather.WeatherChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.weather.WeatherEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.ChunkEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.ChunkLoadEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.ChunkPopulateEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.ChunkUnloadEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.PortalCreateEvent.CreateReason.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.PortalCreateEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.SpawnChangeEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.StructureGrowEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.WorldEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.WorldInitEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.WorldLoadEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.WorldSaveEvent.ts" />
|
||||
/// <reference path="./org.bukkit.event.world.WorldUnloadEvent.ts" />
|
||||
/// <reference path="./org.bukkit.generator.BlockPopulator.ts" />
|
||||
/// <reference path="./org.bukkit.generator.ChunkGenerator.BiomeGrid.ts" />
|
||||
/// <reference path="./org.bukkit.generator.ChunkGenerator.ChunkData.ts" />
|
||||
/// <reference path="./org.bukkit.generator.ChunkGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.help.GenericCommandHelpTopic.ts" />
|
||||
/// <reference path="./org.bukkit.help.HelpMap.ts" />
|
||||
/// <reference path="./org.bukkit.help.HelpTopic.ts" />
|
||||
/// <reference path="./org.bukkit.help.HelpTopicComparator.TopicNameComparator.ts" />
|
||||
/// <reference path="./org.bukkit.help.HelpTopicComparator.ts" />
|
||||
/// <reference path="./org.bukkit.help.HelpTopicFactory.ts" />
|
||||
/// <reference path="./org.bukkit.help.IndexHelpTopic.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.AbstractHorseInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.AnvilInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.BeaconInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.BlastingRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.BlockInventoryHolder.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.BrewerInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.CampfireRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.CartographyInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.CookingRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.CraftingInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.DoubleChestInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.EnchantingInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.EntityEquipment.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.EquipmentSlot.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.FurnaceInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.FurnaceRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.GrindstoneInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.HorseInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.Inventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.InventoryHolder.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.InventoryView.Property.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.InventoryView.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.ItemFactory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.ItemFlag.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.ItemStack.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.LecternInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.LlamaInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.LoomInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.MainHand.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.Merchant.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.MerchantInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.MerchantRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.PlayerInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.Recipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.RecipeChoice.ExactChoice.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.RecipeChoice.MaterialChoice.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.RecipeChoice.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.ShapedRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.ShapelessRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.SmokingRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.StonecutterInventory.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.StonecuttingRecipe.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.BannerMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.BlockDataMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.BlockStateMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.BookMeta.Generation.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.BookMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.CrossbowMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.Damageable.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.EnchantmentStorageMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.FireworkEffectMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.FireworkMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.ItemMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.KnowledgeBookMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.LeatherArmorMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.MapMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.PotionMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.Repairable.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.SkullMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.SpawnEggMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.TropicalFishBucketMeta.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.tags.CustomItemTagContainer.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.tags.ItemTagAdapterContext.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.tags.ItemTagType.PrimitiveTagType.ts" />
|
||||
/// <reference path="./org.bukkit.inventory.meta.tags.ItemTagType.ts" />
|
||||
/// <reference path="./org.bukkit.loot.LootContext.Builder.ts" />
|
||||
/// <reference path="./org.bukkit.loot.LootContext.ts" />
|
||||
/// <reference path="./org.bukkit.loot.LootTable.ts" />
|
||||
/// <reference path="./org.bukkit.loot.LootTables.ts" />
|
||||
/// <reference path="./org.bukkit.loot.Lootable.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapCanvas.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapCursor.Type.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapCursor.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapCursorCollection.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapFont.CharacterSprite.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapFont.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapPalette.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapRenderer.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapView.Scale.ts" />
|
||||
/// <reference path="./org.bukkit.map.MapView.ts" />
|
||||
/// <reference path="./org.bukkit.map.MinecraftFont.ts" />
|
||||
/// <reference path="./org.bukkit.material.Attachable.ts" />
|
||||
/// <reference path="./org.bukkit.material.Banner.ts" />
|
||||
/// <reference path="./org.bukkit.material.Bed.ts" />
|
||||
/// <reference path="./org.bukkit.material.Button.ts" />
|
||||
/// <reference path="./org.bukkit.material.Cake.ts" />
|
||||
/// <reference path="./org.bukkit.material.Cauldron.ts" />
|
||||
/// <reference path="./org.bukkit.material.Chest.ts" />
|
||||
/// <reference path="./org.bukkit.material.Coal.ts" />
|
||||
/// <reference path="./org.bukkit.material.CocoaPlant.CocoaPlantSize.ts" />
|
||||
/// <reference path="./org.bukkit.material.CocoaPlant.ts" />
|
||||
/// <reference path="./org.bukkit.material.Colorable.ts" />
|
||||
/// <reference path="./org.bukkit.material.Command.ts" />
|
||||
/// <reference path="./org.bukkit.material.Comparator.ts" />
|
||||
/// <reference path="./org.bukkit.material.Crops.ts" />
|
||||
/// <reference path="./org.bukkit.material.DetectorRail.ts" />
|
||||
/// <reference path="./org.bukkit.material.Diode.ts" />
|
||||
/// <reference path="./org.bukkit.material.Directional.ts" />
|
||||
/// <reference path="./org.bukkit.material.DirectionalContainer.ts" />
|
||||
/// <reference path="./org.bukkit.material.Dispenser.ts" />
|
||||
/// <reference path="./org.bukkit.material.Door.ts" />
|
||||
/// <reference path="./org.bukkit.material.Dye.ts" />
|
||||
/// <reference path="./org.bukkit.material.EnderChest.ts" />
|
||||
/// <reference path="./org.bukkit.material.ExtendedRails.ts" />
|
||||
/// <reference path="./org.bukkit.material.FlowerPot.ts" />
|
||||
/// <reference path="./org.bukkit.material.Furnace.ts" />
|
||||
/// <reference path="./org.bukkit.material.FurnaceAndDispenser.ts" />
|
||||
/// <reference path="./org.bukkit.material.Gate.ts" />
|
||||
/// <reference path="./org.bukkit.material.Hopper.ts" />
|
||||
/// <reference path="./org.bukkit.material.Ladder.ts" />
|
||||
/// <reference path="./org.bukkit.material.Leaves.ts" />
|
||||
/// <reference path="./org.bukkit.material.Lever.ts" />
|
||||
/// <reference path="./org.bukkit.material.LongGrass.ts" />
|
||||
/// <reference path="./org.bukkit.material.MaterialData.ts" />
|
||||
/// <reference path="./org.bukkit.material.MonsterEggs.ts" />
|
||||
/// <reference path="./org.bukkit.material.Mushroom.ts" />
|
||||
/// <reference path="./org.bukkit.material.NetherWarts.ts" />
|
||||
/// <reference path="./org.bukkit.material.Observer.ts" />
|
||||
/// <reference path="./org.bukkit.material.Openable.ts" />
|
||||
/// <reference path="./org.bukkit.material.PistonBaseMaterial.ts" />
|
||||
/// <reference path="./org.bukkit.material.PistonExtensionMaterial.ts" />
|
||||
/// <reference path="./org.bukkit.material.PoweredRail.ts" />
|
||||
/// <reference path="./org.bukkit.material.PressurePlate.ts" />
|
||||
/// <reference path="./org.bukkit.material.PressureSensor.ts" />
|
||||
/// <reference path="./org.bukkit.material.Pumpkin.ts" />
|
||||
/// <reference path="./org.bukkit.material.Rails.ts" />
|
||||
/// <reference path="./org.bukkit.material.Redstone.ts" />
|
||||
/// <reference path="./org.bukkit.material.RedstoneTorch.ts" />
|
||||
/// <reference path="./org.bukkit.material.RedstoneWire.ts" />
|
||||
/// <reference path="./org.bukkit.material.Sandstone.ts" />
|
||||
/// <reference path="./org.bukkit.material.Sapling.ts" />
|
||||
/// <reference path="./org.bukkit.material.Sign.ts" />
|
||||
/// <reference path="./org.bukkit.material.SimpleAttachableMaterialData.ts" />
|
||||
/// <reference path="./org.bukkit.material.Skull.ts" />
|
||||
/// <reference path="./org.bukkit.material.SmoothBrick.ts" />
|
||||
/// <reference path="./org.bukkit.material.SpawnEgg.ts" />
|
||||
/// <reference path="./org.bukkit.material.Stairs.ts" />
|
||||
/// <reference path="./org.bukkit.material.Step.ts" />
|
||||
/// <reference path="./org.bukkit.material.TexturedMaterial.ts" />
|
||||
/// <reference path="./org.bukkit.material.Torch.ts" />
|
||||
/// <reference path="./org.bukkit.material.TrapDoor.ts" />
|
||||
/// <reference path="./org.bukkit.material.Tree.ts" />
|
||||
/// <reference path="./org.bukkit.material.Tripwire.ts" />
|
||||
/// <reference path="./org.bukkit.material.TripwireHook.ts" />
|
||||
/// <reference path="./org.bukkit.material.Vine.ts" />
|
||||
/// <reference path="./org.bukkit.material.Wood.ts" />
|
||||
/// <reference path="./org.bukkit.material.WoodenStep.ts" />
|
||||
/// <reference path="./org.bukkit.material.Wool.ts" />
|
||||
/// <reference path="./org.bukkit.material.types.MushroomBlockTexture.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.FixedMetadataValue.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.LazyMetadataValue.CacheStrategy.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.LazyMetadataValue.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.MetadataConversionException.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.MetadataEvaluationException.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.MetadataStore.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.MetadataStoreBase.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.MetadataValue.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.MetadataValueAdapter.ts" />
|
||||
/// <reference path="./org.bukkit.metadata.Metadatable.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.Permissible.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.PermissibleBase.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.Permission.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.PermissionAttachment.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.PermissionAttachmentInfo.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.PermissionDefault.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.PermissionRemovedExecutor.ts" />
|
||||
/// <reference path="./org.bukkit.permissions.ServerOperator.ts" />
|
||||
/// <reference path="./org.bukkit.persistence.PersistentDataAdapterContext.ts" />
|
||||
/// <reference path="./org.bukkit.persistence.PersistentDataContainer.ts" />
|
||||
/// <reference path="./org.bukkit.persistence.PersistentDataHolder.ts" />
|
||||
/// <reference path="./org.bukkit.persistence.PersistentDataType.PrimitivePersistentDataType.ts" />
|
||||
/// <reference path="./org.bukkit.persistence.PersistentDataType.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.AuthorNagException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.EventExecutor.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.IllegalPluginAccessException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.InvalidDescriptionException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.InvalidPluginException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.Plugin.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginAwareness.Flags.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginAwareness.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginBase.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginDescriptionFile.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginLoadOrder.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginLoader.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginLogger.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.PluginManager.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.RegisteredListener.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.RegisteredServiceProvider.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.ServicePriority.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.ServicesManager.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.SimplePluginManager.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.SimpleServicesManager.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.TimedRegisteredListener.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.UnknownDependencyException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.java.JavaPlugin.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.java.JavaPluginLoader.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.ChannelNameTooLongException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.ChannelNotRegisteredException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.MessageTooLargeException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.Messenger.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.PluginChannelDirection.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.PluginMessageListener.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.PluginMessageListenerRegistration.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.PluginMessageRecipient.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.ReservedChannelException.ts" />
|
||||
/// <reference path="./org.bukkit.plugin.messaging.StandardMessenger.ts" />
|
||||
/// <reference path="./org.bukkit.potion.Potion.ts" />
|
||||
/// <reference path="./org.bukkit.potion.PotionBrewer.ts" />
|
||||
/// <reference path="./org.bukkit.potion.PotionData.ts" />
|
||||
/// <reference path="./org.bukkit.potion.PotionEffect.ts" />
|
||||
/// <reference path="./org.bukkit.potion.PotionEffectType.ts" />
|
||||
/// <reference path="./org.bukkit.potion.PotionEffectTypeWrapper.ts" />
|
||||
/// <reference path="./org.bukkit.potion.PotionType.ts" />
|
||||
/// <reference path="./org.bukkit.projectiles.BlockProjectileSource.ts" />
|
||||
/// <reference path="./org.bukkit.projectiles.ProjectileSource.ts" />
|
||||
/// <reference path="./org.bukkit.scheduler.BukkitRunnable.ts" />
|
||||
/// <reference path="./org.bukkit.scheduler.BukkitScheduler.ts" />
|
||||
/// <reference path="./org.bukkit.scheduler.BukkitTask.ts" />
|
||||
/// <reference path="./org.bukkit.scheduler.BukkitWorker.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Criterias.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.DisplaySlot.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.NameTagVisibility.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Objective.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.RenderType.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Score.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Scoreboard.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.ScoreboardManager.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Team.Option.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Team.OptionStatus.ts" />
|
||||
/// <reference path="./org.bukkit.scoreboard.Team.ts" />
|
||||
/// <reference path="./org.bukkit.util.BlockIterator.ts" />
|
||||
/// <reference path="./org.bukkit.util.BlockVector.ts" />
|
||||
/// <reference path="./org.bukkit.util.BoundingBox.ts" />
|
||||
/// <reference path="./org.bukkit.util.CachedServerIcon.ts" />
|
||||
/// <reference path="./org.bukkit.util.ChatPaginator.ChatPage.ts" />
|
||||
/// <reference path="./org.bukkit.util.ChatPaginator.ts" />
|
||||
/// <reference path="./org.bukkit.util.Consumer.ts" />
|
||||
/// <reference path="./org.bukkit.util.EulerAngle.ts" />
|
||||
/// <reference path="./org.bukkit.util.FileUtil.ts" />
|
||||
/// <reference path="./org.bukkit.util.NumberConversions.ts" />
|
||||
/// <reference path="./org.bukkit.util.RayTraceResult.ts" />
|
||||
/// <reference path="./org.bukkit.util.StringUtil.ts" />
|
||||
/// <reference path="./org.bukkit.util.Vector.ts" />
|
||||
/// <reference path="./org.bukkit.util.io.BukkitObjectInputStream.ts" />
|
||||
/// <reference path="./org.bukkit.util.io.BukkitObjectOutputStream.ts" />
|
||||
/// <reference path="./org.bukkit.util.noise.NoiseGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.util.noise.OctaveGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.util.noise.PerlinNoiseGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.util.noise.PerlinOctaveGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.util.noise.SimplexNoiseGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.util.noise.SimplexOctaveGenerator.ts" />
|
||||
/// <reference path="./org.bukkit.util.permissions.BroadcastPermissions.ts" />
|
||||
/// <reference path="./org.bukkit.util.permissions.CommandPermissions.ts" />
|
||||
/// <reference path="./org.bukkit.util.permissions.DefaultPermissions.ts" />
|
||||
50
packages/bukkit/src/typings/org.bukkit.Achievement.ts
Normal file
50
packages/bukkit/src/typings/org.bukkit.Achievement.ts
Normal file
@@ -0,0 +1,50 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Achievement {
|
||||
public static OPEN_INVENTORY: org.bukkit.Achievement;
|
||||
public static MINE_WOOD: org.bukkit.Achievement;
|
||||
public static BUILD_WORKBENCH: org.bukkit.Achievement;
|
||||
public static BUILD_PICKAXE: org.bukkit.Achievement;
|
||||
public static BUILD_FURNACE: org.bukkit.Achievement;
|
||||
public static ACQUIRE_IRON: org.bukkit.Achievement;
|
||||
public static BUILD_HOE: org.bukkit.Achievement;
|
||||
public static MAKE_BREAD: org.bukkit.Achievement;
|
||||
public static BAKE_CAKE: org.bukkit.Achievement;
|
||||
public static BUILD_BETTER_PICKAXE: org.bukkit.Achievement;
|
||||
public static COOK_FISH: org.bukkit.Achievement;
|
||||
public static ON_A_RAIL: org.bukkit.Achievement;
|
||||
public static BUILD_SWORD: org.bukkit.Achievement;
|
||||
public static KILL_ENEMY: org.bukkit.Achievement;
|
||||
public static KILL_COW: org.bukkit.Achievement;
|
||||
public static FLY_PIG: org.bukkit.Achievement;
|
||||
public static SNIPE_SKELETON: org.bukkit.Achievement;
|
||||
public static GET_DIAMONDS: org.bukkit.Achievement;
|
||||
public static NETHER_PORTAL: org.bukkit.Achievement;
|
||||
public static GHAST_RETURN: org.bukkit.Achievement;
|
||||
public static GET_BLAZE_ROD: org.bukkit.Achievement;
|
||||
public static BREW_POTION: org.bukkit.Achievement;
|
||||
public static END_PORTAL: org.bukkit.Achievement;
|
||||
public static THE_END: org.bukkit.Achievement;
|
||||
public static ENCHANTMENTS: org.bukkit.Achievement;
|
||||
public static OVERKILL: org.bukkit.Achievement;
|
||||
public static BOOKCASE: org.bukkit.Achievement;
|
||||
public static EXPLORE_ALL_BIOMES: org.bukkit.Achievement;
|
||||
public static SPAWN_WITHER: org.bukkit.Achievement;
|
||||
public static KILL_WITHER: org.bukkit.Achievement;
|
||||
public static FULL_BEACON: org.bukkit.Achievement;
|
||||
public static BREED_COW: org.bukkit.Achievement;
|
||||
public static DIAMONDS_TO_YOU: org.bukkit.Achievement;
|
||||
public static OVERPOWERED: org.bukkit.Achievement;
|
||||
public static values(): org.bukkit.Achievement[];
|
||||
public static valueOf(name: string): org.bukkit.Achievement;
|
||||
/**
|
||||
* Returns whether or not this achievement has a parent achievement.
|
||||
*/
|
||||
public hasParent(): boolean;
|
||||
/**
|
||||
* Returns the parent achievement of this achievement, or null if none.
|
||||
*/
|
||||
public getParent(): org.bukkit.Achievement;
|
||||
}
|
||||
}
|
||||
}
|
||||
57
packages/bukkit/src/typings/org.bukkit.Art.ts
Normal file
57
packages/bukkit/src/typings/org.bukkit.Art.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Art {
|
||||
public static KEBAB: org.bukkit.Art;
|
||||
public static AZTEC: org.bukkit.Art;
|
||||
public static ALBAN: org.bukkit.Art;
|
||||
public static AZTEC2: org.bukkit.Art;
|
||||
public static BOMB: org.bukkit.Art;
|
||||
public static PLANT: org.bukkit.Art;
|
||||
public static WASTELAND: org.bukkit.Art;
|
||||
public static POOL: org.bukkit.Art;
|
||||
public static COURBET: org.bukkit.Art;
|
||||
public static SEA: org.bukkit.Art;
|
||||
public static SUNSET: org.bukkit.Art;
|
||||
public static CREEBET: org.bukkit.Art;
|
||||
public static WANDERER: org.bukkit.Art;
|
||||
public static GRAHAM: org.bukkit.Art;
|
||||
public static MATCH: org.bukkit.Art;
|
||||
public static BUST: org.bukkit.Art;
|
||||
public static STAGE: org.bukkit.Art;
|
||||
public static VOID: org.bukkit.Art;
|
||||
public static SKULL_AND_ROSES: org.bukkit.Art;
|
||||
public static WITHER: org.bukkit.Art;
|
||||
public static FIGHTERS: org.bukkit.Art;
|
||||
public static POINTER: org.bukkit.Art;
|
||||
public static PIGSCENE: org.bukkit.Art;
|
||||
public static BURNING_SKULL: org.bukkit.Art;
|
||||
public static SKELETON: org.bukkit.Art;
|
||||
public static DONKEY_KONG: org.bukkit.Art;
|
||||
public static values(): org.bukkit.Art[];
|
||||
public static valueOf(name: string): org.bukkit.Art;
|
||||
/**
|
||||
* Gets the width of the painting, in blocks
|
||||
*/
|
||||
public getBlockWidth(): number;
|
||||
/**
|
||||
* Gets the height of the painting, in blocks
|
||||
*/
|
||||
public getBlockHeight(): number;
|
||||
/**
|
||||
* Get the ID of this painting.
|
||||
*/
|
||||
public getId(): number;
|
||||
public getKey(): org.bukkit.NamespacedKey;
|
||||
/**
|
||||
* Get a painting by its numeric ID
|
||||
*/
|
||||
public static getById(id: number): org.bukkit.Art;
|
||||
/**
|
||||
* Get a painting by its unique name
|
||||
* <p>
|
||||
* This ignores underscores and capitalization
|
||||
*/
|
||||
public static getByName(name: string): org.bukkit.Art;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
packages/bukkit/src/typings/org.bukkit.Axis.ts
Normal file
11
packages/bukkit/src/typings/org.bukkit.Axis.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Axis {
|
||||
public static X: org.bukkit.Axis;
|
||||
public static Y: org.bukkit.Axis;
|
||||
public static Z: org.bukkit.Axis;
|
||||
public static values(): org.bukkit.Axis[];
|
||||
public static valueOf(name: string): org.bukkit.Axis;
|
||||
}
|
||||
}
|
||||
}
|
||||
57
packages/bukkit/src/typings/org.bukkit.BanEntry.ts
Normal file
57
packages/bukkit/src/typings/org.bukkit.BanEntry.ts
Normal file
@@ -0,0 +1,57 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class BanEntry {
|
||||
/**
|
||||
* Gets the target involved. This may be in the form of an IP or a player
|
||||
* name.
|
||||
*/
|
||||
public getTarget(): string;
|
||||
/**
|
||||
* Gets the date this ban entry was created.
|
||||
*/
|
||||
public getCreated(): any /*java.util.Date*/;
|
||||
/**
|
||||
* Sets the date this ban entry was created.
|
||||
*/
|
||||
public setCreated(created: any /*java.util.Date*/): void;
|
||||
/**
|
||||
* Gets the source of this ban.
|
||||
* <p>
|
||||
* Note: A source is considered any String, although this is generally a
|
||||
* player name.
|
||||
*/
|
||||
public getSource(): string;
|
||||
/**
|
||||
* Sets the source of this ban.
|
||||
* <p>
|
||||
* Note: A source is considered any String, although this is generally a
|
||||
* player name.
|
||||
*/
|
||||
public setSource(source: string): void;
|
||||
/**
|
||||
* Gets the date this ban expires on, or null for no defined end date.
|
||||
*/
|
||||
public getExpiration(): any /*java.util.Date*/;
|
||||
/**
|
||||
* Sets the date this ban expires on. Null values are considered
|
||||
* "infinite" bans.
|
||||
*/
|
||||
public setExpiration(expiration: any /*java.util.Date*/): void;
|
||||
/**
|
||||
* Gets the reason for this ban.
|
||||
*/
|
||||
public getReason(): string;
|
||||
/**
|
||||
* Sets the reason for this ban. Reasons must not be null.
|
||||
*/
|
||||
public setReason(reason: string): void;
|
||||
/**
|
||||
* Saves the ban entry, overwriting any previous data in the ban list.
|
||||
* <p>
|
||||
* Saving the ban entry of an unbanned player will cause the player to be
|
||||
* banned once again.
|
||||
*/
|
||||
public save(): void;
|
||||
}
|
||||
}
|
||||
}
|
||||
12
packages/bukkit/src/typings/org.bukkit.BanList.Type.ts
Normal file
12
packages/bukkit/src/typings/org.bukkit.BanList.Type.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
namespace BanList {
|
||||
class Type {
|
||||
public static NAME: org.bukkit.BanList.Type;
|
||||
public static IP: org.bukkit.BanList.Type;
|
||||
public static values(): org.bukkit.BanList.Type[];
|
||||
public static valueOf(name: string): org.bukkit.BanList.Type;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
29
packages/bukkit/src/typings/org.bukkit.BanList.ts
Normal file
29
packages/bukkit/src/typings/org.bukkit.BanList.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class BanList {
|
||||
/**
|
||||
* Gets a {@link BanEntry} by target.
|
||||
*/
|
||||
public getBanEntry(target: string): org.bukkit.BanEntry;
|
||||
/**
|
||||
* Adds a ban to the this list. If a previous ban exists, this will
|
||||
* update the previous entry.
|
||||
*/
|
||||
public addBan(target: string, reason: string, expires: any /*java.util.Date*/, source: string): org.bukkit.BanEntry;
|
||||
/**
|
||||
* Gets a set containing every {@link BanEntry} in this list.
|
||||
*/
|
||||
public getBanEntries(): any[] /*java.util.Set*/;
|
||||
/**
|
||||
* Gets if a {@link BanEntry} exists for the target, indicating an active
|
||||
* ban status.
|
||||
*/
|
||||
public isBanned(target: string): boolean;
|
||||
/**
|
||||
* Removes the specified target from this list, therefore indicating a
|
||||
* "not banned" status.
|
||||
*/
|
||||
public pardon(target: string): void;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,22 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class BlockChangeDelegate {
|
||||
/**
|
||||
* Set a block data at the specified coordinates.
|
||||
*/
|
||||
public setBlockData(x: number, y: number, z: number, blockData: org.bukkit.block.data.BlockData): boolean;
|
||||
/**
|
||||
* Get the block data at the location.
|
||||
*/
|
||||
public getBlockData(x: number, y: number, z: number): org.bukkit.block.data.BlockData;
|
||||
/**
|
||||
* Gets the height of the world.
|
||||
*/
|
||||
public getHeight(): number;
|
||||
/**
|
||||
* Checks if the specified block is empty (air) or not.
|
||||
*/
|
||||
public isEmpty(x: number, y: number, z: number): boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
657
packages/bukkit/src/typings/org.bukkit.Bukkit.ts
Normal file
657
packages/bukkit/src/typings/org.bukkit.Bukkit.ts
Normal file
@@ -0,0 +1,657 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Bukkit {
|
||||
/**
|
||||
* Gets the current {@link Server} singleton
|
||||
*/
|
||||
public static getServer(): org.bukkit.Server;
|
||||
/**
|
||||
* Attempts to set the {@link Server} singleton.
|
||||
* <p>
|
||||
* This cannot be done if the Server is already set.
|
||||
*/
|
||||
public static setServer(server: org.bukkit.Server): void;
|
||||
/**
|
||||
* Gets the name of this server implementation.
|
||||
*/
|
||||
public static getName(): string;
|
||||
/**
|
||||
* Gets the version string of this server implementation.
|
||||
*/
|
||||
public static getVersion(): string;
|
||||
/**
|
||||
* Gets the Bukkit version that this server is running.
|
||||
*/
|
||||
public static getBukkitVersion(): string;
|
||||
/**
|
||||
* Gets a view of all currently logged in players. This {@linkplain
|
||||
* Collections#unmodifiableCollection(Collection) view} is a reused
|
||||
* object, making some operations like {@link Collection#size()}
|
||||
* zero-allocation.
|
||||
* <p>
|
||||
* The collection is a view backed by the internal representation, such
|
||||
* that, changes to the internal state of the server will be reflected
|
||||
* immediately. However, the reuse of the returned collection (identity)
|
||||
* is not strictly guaranteed for future or all implementations. Casting
|
||||
* the collection, or relying on interface implementations (like {@link
|
||||
* Serializable} or {@link List}), is deprecated.
|
||||
* <p>
|
||||
* Iteration behavior is undefined outside of self-contained main-thread
|
||||
* uses. Normal and immediate iterator use without consequences that
|
||||
* affect the collection are fully supported. The effects following
|
||||
* (non-exhaustive) {@link Entity#teleport(Location) teleportation},
|
||||
* {@link Player#setHealth(double) death}, and {@link Player#kickPlayer(
|
||||
* String) kicking} are undefined. Any use of this collection from
|
||||
* asynchronous threads is unsafe.
|
||||
* <p>
|
||||
* For safe consequential iteration or mimicking the old array behavior,
|
||||
* using {@link Collection#toArray(Object[])} is recommended. For making
|
||||
* snapshots, {@link ImmutableList#copyOf(Collection)} is recommended.
|
||||
*/
|
||||
public static getOnlinePlayers(): any[] /*java.util.Collection*/;
|
||||
/**
|
||||
* Get the maximum amount of players which can login to this server.
|
||||
*/
|
||||
public static getMaxPlayers(): number;
|
||||
/**
|
||||
* Get the game port that the server runs on.
|
||||
*/
|
||||
public static getPort(): number;
|
||||
/**
|
||||
* Get the view distance from this server.
|
||||
*/
|
||||
public static getViewDistance(): number;
|
||||
/**
|
||||
* Get the IP that this server is bound to, or empty string if not
|
||||
* specified.
|
||||
*/
|
||||
public static getIp(): string;
|
||||
/**
|
||||
* Get world type (level-type setting) for default world.
|
||||
*/
|
||||
public static getWorldType(): string;
|
||||
/**
|
||||
* Get generate-structures setting.
|
||||
*/
|
||||
public static getGenerateStructures(): boolean;
|
||||
/**
|
||||
* Gets whether this server allows the End or not.
|
||||
*/
|
||||
public static getAllowEnd(): boolean;
|
||||
/**
|
||||
* Gets whether this server allows the Nether or not.
|
||||
*/
|
||||
public static getAllowNether(): boolean;
|
||||
/**
|
||||
* Gets whether this server has a whitelist or not.
|
||||
*/
|
||||
public static hasWhitelist(): boolean;
|
||||
/**
|
||||
* Sets if the server is whitelisted.
|
||||
*/
|
||||
public static setWhitelist(value: boolean): void;
|
||||
/**
|
||||
* Gets a list of whitelisted players.
|
||||
*/
|
||||
public static getWhitelistedPlayers(): any[] /*java.util.Set*/;
|
||||
/**
|
||||
* Reloads the whitelist from disk.
|
||||
*/
|
||||
public static reloadWhitelist(): void;
|
||||
/**
|
||||
* Broadcast a message to all players.
|
||||
* <p>
|
||||
* This is the same as calling {@link #broadcast(java.lang.String,
|
||||
* java.lang.String)} to {@link Server#BROADCAST_CHANNEL_USERS}
|
||||
*/
|
||||
public static broadcastMessage(message: string): number;
|
||||
/**
|
||||
* Gets the name of the update folder. The update folder is used to safely
|
||||
* update plugins at the right moment on a plugin load.
|
||||
* <p>
|
||||
* The update folder name is relative to the plugins folder.
|
||||
*/
|
||||
public static getUpdateFolder(): string;
|
||||
/**
|
||||
* Gets the update folder. The update folder is used to safely update
|
||||
* plugins at the right moment on a plugin load.
|
||||
*/
|
||||
public static getUpdateFolderFile(): any;
|
||||
/**
|
||||
* Gets the value of the connection throttle setting.
|
||||
*/
|
||||
public static getConnectionThrottle(): number;
|
||||
/**
|
||||
* Gets default ticks per animal spawns value.
|
||||
* <p>
|
||||
* <b>Example Usage:</b>
|
||||
* <ul>
|
||||
* <li>A value of 1 will mean the server will attempt to spawn monsters
|
||||
* every tick.
|
||||
* <li>A value of 400 will mean the server will attempt to spawn monsters
|
||||
* every 400th tick.
|
||||
* <li>A value below 0 will be reset back to Minecraft's default.
|
||||
* </ul>
|
||||
* <p>
|
||||
* <b>Note:</b> If set to 0, animal spawning will be disabled. We
|
||||
* recommend using spawn-animals to control this instead.
|
||||
* <p>
|
||||
* Minecraft default: 400.
|
||||
*/
|
||||
public static getTicksPerAnimalSpawns(): number;
|
||||
/**
|
||||
* Gets the default ticks per monster spawns value.
|
||||
* <p>
|
||||
* <b>Example Usage:</b>
|
||||
* <ul>
|
||||
* <li>A value of 1 will mean the server will attempt to spawn monsters
|
||||
* every tick.
|
||||
* <li>A value of 400 will mean the server will attempt to spawn monsters
|
||||
* every 400th tick.
|
||||
* <li>A value below 0 will be reset back to Minecraft's default.
|
||||
* </ul>
|
||||
* <p>
|
||||
* <b>Note:</b> If set to 0, monsters spawning will be disabled. We
|
||||
* recommend using spawn-monsters to control this instead.
|
||||
* <p>
|
||||
* Minecraft default: 1.
|
||||
*/
|
||||
public static getTicksPerMonsterSpawns(): number;
|
||||
/**
|
||||
* Gets a player object by the given username.
|
||||
* <p>
|
||||
* This method may not return objects for offline players.
|
||||
*/
|
||||
public static getPlayer(name: string): org.bukkit.entity.Player;
|
||||
/**
|
||||
* Gets the player with the exact given name, case insensitive.
|
||||
*/
|
||||
public static getPlayerExact(name: string): org.bukkit.entity.Player;
|
||||
/**
|
||||
* Attempts to match any players with the given name, and returns a list
|
||||
* of all possibly matches.
|
||||
* <p>
|
||||
* This list is not sorted in any particular order. If an exact match is
|
||||
* found, the returned list will only contain a single result.
|
||||
*/
|
||||
public static matchPlayer(name: string): any[] /*java.util.List*/;
|
||||
/**
|
||||
* Gets the player with the given UUID.
|
||||
*/
|
||||
public static getPlayer(id: any): org.bukkit.entity.Player;
|
||||
/**
|
||||
* Gets the plugin manager for interfacing with plugins.
|
||||
*/
|
||||
public static getPluginManager(): org.bukkit.plugin.PluginManager;
|
||||
/**
|
||||
* Gets the scheduler for managing scheduled events.
|
||||
*/
|
||||
public static getScheduler(): org.bukkit.scheduler.BukkitScheduler;
|
||||
/**
|
||||
* Gets a services manager.
|
||||
*/
|
||||
public static getServicesManager(): org.bukkit.plugin.ServicesManager;
|
||||
/**
|
||||
* Gets a list of all worlds on this server.
|
||||
*/
|
||||
public static getWorlds(): any[] /*java.util.List*/;
|
||||
/**
|
||||
* Creates or loads a world with the given name using the specified
|
||||
* options.
|
||||
* <p>
|
||||
* If the world is already loaded, it will just return the equivalent of
|
||||
* getWorld(creator.name()).
|
||||
*/
|
||||
public static createWorld(creator: org.bukkit.WorldCreator): org.bukkit.World;
|
||||
/**
|
||||
* Unloads a world with the given name.
|
||||
*/
|
||||
public static unloadWorld(name: string, save: boolean): boolean;
|
||||
/**
|
||||
* Unloads the given world.
|
||||
*/
|
||||
public static unloadWorld(world: org.bukkit.World, save: boolean): boolean;
|
||||
/**
|
||||
* Gets the world with the given name.
|
||||
*/
|
||||
public static getWorld(name: string): org.bukkit.World;
|
||||
/**
|
||||
* Gets the world from the given Unique ID.
|
||||
*/
|
||||
public static getWorld(uid: any): org.bukkit.World;
|
||||
/**
|
||||
* Gets the map from the given item ID.
|
||||
*/
|
||||
public static getMap(id: number): org.bukkit.map.MapView;
|
||||
/**
|
||||
* Create a new map with an automatically assigned ID.
|
||||
*/
|
||||
public static createMap(world: org.bukkit.World): org.bukkit.map.MapView;
|
||||
/**
|
||||
* Create a new explorer map targeting the closest nearby structure of a
|
||||
* given {@link StructureType}.
|
||||
* <br>
|
||||
* This method uses implementation default values for radius and
|
||||
* findUnexplored (usually 100, true).
|
||||
*/
|
||||
public static createExplorerMap(world: org.bukkit.World, location: org.bukkit.Location, structureType: org.bukkit.StructureType): org.bukkit.inventory.ItemStack;
|
||||
/**
|
||||
* Create a new explorer map targeting the closest nearby structure of a
|
||||
* given {@link StructureType}.
|
||||
* <br>
|
||||
* This method uses implementation default values for radius and
|
||||
* findUnexplored (usually 100, true).
|
||||
*/
|
||||
public static createExplorerMap(world: org.bukkit.World, location: org.bukkit.Location, structureType: org.bukkit.StructureType, radius: number, findUnexplored: boolean): org.bukkit.inventory.ItemStack;
|
||||
/**
|
||||
* Reloads the server, refreshing settings and plugin information.
|
||||
*/
|
||||
public static reload(): void;
|
||||
/**
|
||||
* Reload only the Minecraft data for the server. This includes custom
|
||||
* advancements and loot tables.
|
||||
*/
|
||||
public static reloadData(): void;
|
||||
/**
|
||||
* Returns the primary logger associated with this server instance.
|
||||
*/
|
||||
public static getLogger(): any;
|
||||
/**
|
||||
* Gets a {@link PluginCommand} with the given name or alias.
|
||||
*/
|
||||
public static getPluginCommand(name: string): org.bukkit.command.PluginCommand;
|
||||
/**
|
||||
* Writes loaded players to disk.
|
||||
*/
|
||||
public static savePlayers(): void;
|
||||
/**
|
||||
* Dispatches a command on this server, and executes it if found.
|
||||
*/
|
||||
public static dispatchCommand(sender: org.bukkit.command.CommandSender, commandLine: string): boolean;
|
||||
/**
|
||||
* Adds a recipe to the crafting manager.
|
||||
*/
|
||||
public static addRecipe(recipe: org.bukkit.inventory.Recipe): boolean;
|
||||
/**
|
||||
* Get a list of all recipes for a given item. The stack size is ignored
|
||||
* in comparisons. If the durability is -1, it will match any data value.
|
||||
*/
|
||||
public static getRecipesFor(result: org.bukkit.inventory.ItemStack): any[] /*java.util.List*/;
|
||||
/**
|
||||
* Get an iterator through the list of crafting recipes.
|
||||
*/
|
||||
public static recipeIterator(): any;
|
||||
/**
|
||||
* Clears the list of crafting recipes.
|
||||
*/
|
||||
public static clearRecipes(): void;
|
||||
/**
|
||||
* Resets the list of crafting recipes to the default.
|
||||
*/
|
||||
public static resetRecipes(): void;
|
||||
/**
|
||||
* Gets a list of command aliases defined in the server properties.
|
||||
*/
|
||||
public static getCommandAliases(): Map<any, any> /*java.util.Map*/;
|
||||
/**
|
||||
* Gets the radius, in blocks, around each worlds spawn point to protect.
|
||||
*/
|
||||
public static getSpawnRadius(): number;
|
||||
/**
|
||||
* Sets the radius, in blocks, around each worlds spawn point to protect.
|
||||
*/
|
||||
public static setSpawnRadius(value: number): void;
|
||||
/**
|
||||
* Gets whether the Server is in online mode or not.
|
||||
*/
|
||||
public static getOnlineMode(): boolean;
|
||||
/**
|
||||
* Gets whether this server allows flying or not.
|
||||
*/
|
||||
public static getAllowFlight(): boolean;
|
||||
/**
|
||||
* Gets whether the server is in hardcore mode or not.
|
||||
*/
|
||||
public static isHardcore(): boolean;
|
||||
/**
|
||||
* Shutdowns the server, stopping everything.
|
||||
*/
|
||||
public static shutdown(): void;
|
||||
/**
|
||||
* Broadcasts the specified message to every user with the given
|
||||
* permission name.
|
||||
*/
|
||||
public static broadcast(message: string, permission: string): number;
|
||||
/**
|
||||
* Gets the player by the given name, regardless if they are offline or
|
||||
* online.
|
||||
* <p>
|
||||
* This method may involve a blocking web request to get the UUID for the
|
||||
* given name.
|
||||
* <p>
|
||||
* This will return an object even if the player does not exist. To this
|
||||
* method, all players will exist.
|
||||
*/
|
||||
public static getOfflinePlayer(name: string): org.bukkit.OfflinePlayer;
|
||||
/**
|
||||
* Gets the player by the given UUID, regardless if they are offline or
|
||||
* online.
|
||||
* <p>
|
||||
* This will return an object even if the player does not exist. To this
|
||||
* method, all players will exist.
|
||||
*/
|
||||
public static getOfflinePlayer(id: any): org.bukkit.OfflinePlayer;
|
||||
/**
|
||||
* Gets a set containing all current IPs that are banned.
|
||||
*/
|
||||
public static getIPBans(): any[] /*java.util.Set*/;
|
||||
/**
|
||||
* Bans the specified address from the server.
|
||||
*/
|
||||
public static banIP(address: string): void;
|
||||
/**
|
||||
* Unbans the specified address from the server.
|
||||
*/
|
||||
public static unbanIP(address: string): void;
|
||||
/**
|
||||
* Gets a set containing all banned players.
|
||||
*/
|
||||
public static getBannedPlayers(): any[] /*java.util.Set*/;
|
||||
/**
|
||||
* Gets a ban list for the supplied type.
|
||||
* <p>
|
||||
* Bans by name are no longer supported and this method will return
|
||||
* null when trying to request them. The replacement is bans by UUID.
|
||||
*/
|
||||
public static getBanList(type: org.bukkit.BanList.Type): org.bukkit.BanList;
|
||||
/**
|
||||
* Gets a set containing all player operators.
|
||||
*/
|
||||
public static getOperators(): any[] /*java.util.Set*/;
|
||||
/**
|
||||
* Gets the default {@link GameMode} for new players.
|
||||
*/
|
||||
public static getDefaultGameMode(): org.bukkit.GameMode;
|
||||
/**
|
||||
* Sets the default {@link GameMode} for new players.
|
||||
*/
|
||||
public static setDefaultGameMode(mode: org.bukkit.GameMode): void;
|
||||
/**
|
||||
* Gets a {@link ConsoleCommandSender} that may be used as an input source
|
||||
* for this server.
|
||||
*/
|
||||
public static getConsoleSender(): org.bukkit.command.ConsoleCommandSender;
|
||||
/**
|
||||
* Gets the folder that contains all of the various {@link World}s.
|
||||
*/
|
||||
public static getWorldContainer(): any;
|
||||
/**
|
||||
* Gets every player that has ever played on this server.
|
||||
*/
|
||||
public static getOfflinePlayers(): org.bukkit.OfflinePlayer[];
|
||||
/**
|
||||
* Gets the {@link Messenger} responsible for this server.
|
||||
*/
|
||||
public static getMessenger(): org.bukkit.plugin.messaging.Messenger;
|
||||
/**
|
||||
* Gets the {@link HelpMap} providing help topics for this server.
|
||||
*/
|
||||
public static getHelpMap(): org.bukkit.help.HelpMap;
|
||||
/**
|
||||
* Creates an empty inventory with the specified type. If the type
|
||||
* is {@link InventoryType#CHEST}, the new inventory has a size of 27;
|
||||
* otherwise the new inventory has the normal size for its type.
|
||||
* <br>
|
||||
* {@link InventoryType#WORKBENCH} will not process crafting recipes if
|
||||
* created with this method. Use
|
||||
* {@link Player#openWorkbench(Location, boolean)} instead.
|
||||
* <br>
|
||||
* {@link InventoryType#ENCHANTING} will not process {@link ItemStack}s
|
||||
* for possible enchanting results. Use
|
||||
* {@link Player#openEnchanting(Location, boolean)} instead.
|
||||
*/
|
||||
public static createInventory(owner: org.bukkit.inventory.InventoryHolder, type: org.bukkit.event.inventory.InventoryType): org.bukkit.inventory.Inventory;
|
||||
/**
|
||||
* Creates an empty inventory with the specified type and title. If the type
|
||||
* is {@link InventoryType#CHEST}, the new inventory has a size of 27;
|
||||
* otherwise the new inventory has the normal size for its type.<br>
|
||||
* It should be noted that some inventory types do not support titles and
|
||||
* may not render with said titles on the Minecraft client.
|
||||
* <br>
|
||||
* {@link InventoryType#WORKBENCH} will not process crafting recipes if
|
||||
* created with this method. Use
|
||||
* {@link Player#openWorkbench(Location, boolean)} instead.
|
||||
* <br>
|
||||
* {@link InventoryType#ENCHANTING} will not process {@link ItemStack}s
|
||||
* for possible enchanting results. Use
|
||||
* {@link Player#openEnchanting(Location, boolean)} instead.
|
||||
*/
|
||||
public static createInventory(owner: org.bukkit.inventory.InventoryHolder, type: org.bukkit.event.inventory.InventoryType, title: string): org.bukkit.inventory.Inventory;
|
||||
/**
|
||||
* Creates an empty inventory of type {@link InventoryType#CHEST} with the
|
||||
* specified size.
|
||||
*/
|
||||
public static createInventory(owner: org.bukkit.inventory.InventoryHolder, size: number): org.bukkit.inventory.Inventory;
|
||||
/**
|
||||
* Creates an empty inventory of type {@link InventoryType#CHEST} with the
|
||||
* specified size and title.
|
||||
*/
|
||||
public static createInventory(owner: org.bukkit.inventory.InventoryHolder, size: number, title: string): org.bukkit.inventory.Inventory;
|
||||
/**
|
||||
* Creates an empty merchant.
|
||||
*/
|
||||
public static createMerchant(title: string): org.bukkit.inventory.Merchant;
|
||||
/**
|
||||
* Gets user-specified limit for number of monsters that can spawn in a
|
||||
* chunk.
|
||||
*/
|
||||
public static getMonsterSpawnLimit(): number;
|
||||
/**
|
||||
* Gets user-specified limit for number of animals that can spawn in a
|
||||
* chunk.
|
||||
*/
|
||||
public static getAnimalSpawnLimit(): number;
|
||||
/**
|
||||
* Gets user-specified limit for number of water animals that can spawn in
|
||||
* a chunk.
|
||||
*/
|
||||
public static getWaterAnimalSpawnLimit(): number;
|
||||
/**
|
||||
* Gets user-specified limit for number of ambient mobs that can spawn in
|
||||
* a chunk.
|
||||
*/
|
||||
public static getAmbientSpawnLimit(): number;
|
||||
/**
|
||||
* Checks the current thread against the expected primary thread for the
|
||||
* server.
|
||||
* <p>
|
||||
* <b>Note:</b> this method should not be used to indicate the current
|
||||
* synchronized state of the runtime. A current thread matching the main
|
||||
* thread indicates that it is synchronized, but a mismatch <b>does not
|
||||
* preclude</b> the same assumption.
|
||||
*/
|
||||
public static isPrimaryThread(): boolean;
|
||||
/**
|
||||
* Gets the message that is displayed on the server list.
|
||||
*/
|
||||
public static getMotd(): string;
|
||||
/**
|
||||
* Gets the default message that is displayed when the server is stopped.
|
||||
*/
|
||||
public static getShutdownMessage(): string;
|
||||
/**
|
||||
* Gets the current warning state for the server.
|
||||
*/
|
||||
public static getWarningState(): org.bukkit.Warning.WarningState;
|
||||
/**
|
||||
* Gets the instance of the item factory (for {@link ItemMeta}).
|
||||
*/
|
||||
public static getItemFactory(): org.bukkit.inventory.ItemFactory;
|
||||
/**
|
||||
* Gets the instance of the scoreboard manager.
|
||||
* <p>
|
||||
* This will only exist after the first world has loaded.
|
||||
*/
|
||||
public static getScoreboardManager(): org.bukkit.scoreboard.ScoreboardManager;
|
||||
/**
|
||||
* Gets an instance of the server's default server-icon.
|
||||
*/
|
||||
public static getServerIcon(): org.bukkit.util.CachedServerIcon;
|
||||
/**
|
||||
* Loads an image from a file, and returns a cached image for the specific
|
||||
* server-icon.
|
||||
* <p>
|
||||
* Size and type are implementation defined. An incompatible file is
|
||||
* guaranteed to throw an implementation-defined {@link Exception}.
|
||||
*/
|
||||
public static loadServerIcon(file: any): org.bukkit.util.CachedServerIcon;
|
||||
/**
|
||||
* Creates a cached server-icon for the specific image.
|
||||
* <p>
|
||||
* Size and type are implementation defined. An incompatible file is
|
||||
* guaranteed to throw an implementation-defined {@link Exception}.
|
||||
*/
|
||||
public static loadServerIcon(image: any): org.bukkit.util.CachedServerIcon;
|
||||
/**
|
||||
* Set the idle kick timeout. Any players idle for the specified amount of
|
||||
* time will be automatically kicked.
|
||||
* <p>
|
||||
* A value of 0 will disable the idle kick timeout.
|
||||
*/
|
||||
public static setIdleTimeout(threshold: number): void;
|
||||
/**
|
||||
* Gets the idle kick timeout.
|
||||
*/
|
||||
public static getIdleTimeout(): number;
|
||||
/**
|
||||
* Create a ChunkData for use in a generator.
|
||||
* See {@link ChunkGenerator#generateChunkData(org.bukkit.World, java.util.Random, int, int, org.bukkit.generator.ChunkGenerator.BiomeGrid)}
|
||||
*/
|
||||
public static createChunkData(world: org.bukkit.World): org.bukkit.generator.ChunkGenerator.ChunkData;
|
||||
/**
|
||||
* Creates a boss bar instance to display to players. The progress
|
||||
* defaults to 1.0
|
||||
*/
|
||||
public static createBossBar(title: string, color: org.bukkit.boss.BarColor, style: org.bukkit.boss.BarStyle, flags: org.bukkit.boss.BarFlag): org.bukkit.boss.BossBar;
|
||||
/**
|
||||
* Creates a boss bar instance to display to players. The progress defaults
|
||||
* to 1.0.
|
||||
* <br>
|
||||
* This instance is added to the persistent storage of the server and will
|
||||
* be editable by commands and restored after restart.
|
||||
*/
|
||||
public static createBossBar(key: org.bukkit.NamespacedKey, title: string, color: org.bukkit.boss.BarColor, style: org.bukkit.boss.BarStyle, flags: org.bukkit.boss.BarFlag): org.bukkit.boss.KeyedBossBar;
|
||||
/**
|
||||
* Gets an unmodifiable iterator through all persistent bossbars.
|
||||
* <ul>
|
||||
* <li><b>not</b> bound to a {@link org.bukkit.entity.Boss}</li>
|
||||
* <li>
|
||||
* <b>not</b> created using
|
||||
* {@link #createBossBar(String, BarColor, BarStyle, BarFlag...)}
|
||||
* </li>
|
||||
* </ul>
|
||||
* e.g. bossbars created using the bossbar command
|
||||
*/
|
||||
public static getBossBars(): any;
|
||||
/**
|
||||
* Gets the {@link KeyedBossBar} specified by this key.
|
||||
* <ul>
|
||||
* <li><b>not</b> bound to a {@link org.bukkit.entity.Boss}</li>
|
||||
* <li>
|
||||
* <b>not</b> created using
|
||||
* {@link #createBossBar(String, BarColor, BarStyle, BarFlag...)}
|
||||
* </li>
|
||||
* </ul>
|
||||
* e.g. bossbars created using the bossbar command
|
||||
*/
|
||||
public static getBossBar(key: org.bukkit.NamespacedKey): org.bukkit.boss.KeyedBossBar;
|
||||
/**
|
||||
* Removes a {@link KeyedBossBar} specified by this key.
|
||||
* <ul>
|
||||
* <li><b>not</b> bound to a {@link org.bukkit.entity.Boss}</li>
|
||||
* <li>
|
||||
* <b>not</b> created using
|
||||
* {@link #createBossBar(String, BarColor, BarStyle, BarFlag...)}
|
||||
* </li>
|
||||
* </ul>
|
||||
* e.g. bossbars created using the bossbar command
|
||||
*/
|
||||
public static removeBossBar(key: org.bukkit.NamespacedKey): boolean;
|
||||
/**
|
||||
* Gets an entity on the server by its UUID
|
||||
*/
|
||||
public static getEntity(uuid: any): org.bukkit.entity.Entity;
|
||||
/**
|
||||
* Get the advancement specified by this key.
|
||||
*/
|
||||
public static getAdvancement(key: org.bukkit.NamespacedKey): org.bukkit.advancement.Advancement;
|
||||
/**
|
||||
* Get an iterator through all advancements. Advancements cannot be removed
|
||||
* from this iterator,
|
||||
*/
|
||||
public static advancementIterator(): any;
|
||||
/**
|
||||
* Creates a new {@link BlockData} instance for the specified Material, with
|
||||
* all properties initialized to unspecified defaults.
|
||||
*/
|
||||
public static createBlockData(material: org.bukkit.Material): org.bukkit.block.data.BlockData;
|
||||
/**
|
||||
* Creates a new {@link BlockData} instance for the specified Material, with
|
||||
* all properties initialized to unspecified defaults.
|
||||
*/
|
||||
public static createBlockData(material: org.bukkit.Material, consumer: any): org.bukkit.block.data.BlockData;
|
||||
/**
|
||||
* Creates a new {@link BlockData} instance with material and properties
|
||||
* parsed from provided data.
|
||||
*/
|
||||
public static createBlockData(data: string): org.bukkit.block.data.BlockData;
|
||||
/**
|
||||
* Creates a new {@link BlockData} instance for the specified Material, with
|
||||
* all properties initialized to unspecified defaults, except for those
|
||||
* provided in data.
|
||||
*/
|
||||
public static createBlockData(material: org.bukkit.Material, data: string): org.bukkit.block.data.BlockData;
|
||||
/**
|
||||
* Gets a tag which has already been defined within the server. Plugins are
|
||||
* suggested to use the concrete tags in {@link Tag} rather than this method
|
||||
* which makes no guarantees about which tags are available, and may also be
|
||||
* less performant due to lack of caching.
|
||||
* <br>
|
||||
* Tags will be searched for in an implementation specific manner, but a
|
||||
* path consisting of namespace/tags/registry/key is expected.
|
||||
* <br>
|
||||
* Server implementations are allowed to handle only the registries
|
||||
* indicated in {@link Tag}.
|
||||
*/
|
||||
public static getTag(registry: string, tag: org.bukkit.NamespacedKey, clazz: any): org.bukkit.Tag;
|
||||
/**
|
||||
* Gets a all tags which have been defined within the server.
|
||||
* <br>
|
||||
* Server implementations are allowed to handle only the registries
|
||||
* indicated in {@link Tag}.
|
||||
* <br>
|
||||
* No guarantees are made about the mutability of the returned iterator.
|
||||
*/
|
||||
public static getTags(registry: string, clazz: any): any;
|
||||
/**
|
||||
* Gets the specified {@link LootTable}.
|
||||
*/
|
||||
public static getLootTable(key: org.bukkit.NamespacedKey): org.bukkit.loot.LootTable;
|
||||
/**
|
||||
* Selects entities using the given Vanilla selector.
|
||||
* <br>
|
||||
* No guarantees are made about the selector format, other than they match
|
||||
* the Vanilla format for the active Minecraft version.
|
||||
* <br>
|
||||
* Usually a selector will start with '@', unless selecting a Player in
|
||||
* which case it may simply be the Player's name or UUID.
|
||||
* <br>
|
||||
* Note that in Vanilla, elevated permissions are usually required to use
|
||||
* '@' selectors, but this method should not check such permissions from the
|
||||
* sender.
|
||||
*/
|
||||
public static selectEntities(sender: org.bukkit.command.CommandSender, selector: string): any[] /*java.util.List*/;
|
||||
public static getUnsafe(): org.bukkit.UnsafeValues;
|
||||
}
|
||||
}
|
||||
}
|
||||
67
packages/bukkit/src/typings/org.bukkit.ChatColor.ts
Normal file
67
packages/bukkit/src/typings/org.bukkit.ChatColor.ts
Normal file
@@ -0,0 +1,67 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class ChatColor {
|
||||
public static BLACK: org.bukkit.ChatColor;
|
||||
public static DARK_BLUE: org.bukkit.ChatColor;
|
||||
public static DARK_GREEN: org.bukkit.ChatColor;
|
||||
public static DARK_AQUA: org.bukkit.ChatColor;
|
||||
public static DARK_RED: org.bukkit.ChatColor;
|
||||
public static DARK_PURPLE: org.bukkit.ChatColor;
|
||||
public static GOLD: org.bukkit.ChatColor;
|
||||
public static GRAY: org.bukkit.ChatColor;
|
||||
public static DARK_GRAY: org.bukkit.ChatColor;
|
||||
public static BLUE: org.bukkit.ChatColor;
|
||||
public static GREEN: org.bukkit.ChatColor;
|
||||
public static AQUA: org.bukkit.ChatColor;
|
||||
public static RED: org.bukkit.ChatColor;
|
||||
public static LIGHT_PURPLE: org.bukkit.ChatColor;
|
||||
public static YELLOW: org.bukkit.ChatColor;
|
||||
public static WHITE: org.bukkit.ChatColor;
|
||||
public static MAGIC: org.bukkit.ChatColor;
|
||||
public static BOLD: org.bukkit.ChatColor;
|
||||
public static STRIKETHROUGH: org.bukkit.ChatColor;
|
||||
public static UNDERLINE: org.bukkit.ChatColor;
|
||||
public static ITALIC: org.bukkit.ChatColor;
|
||||
public static RESET: org.bukkit.ChatColor;
|
||||
public static COLOR_CHAR: string;
|
||||
public static values(): org.bukkit.ChatColor[];
|
||||
public static valueOf(name: string): org.bukkit.ChatColor;
|
||||
/**
|
||||
* Gets the char value associated with this color
|
||||
*/
|
||||
public getChar(): string;
|
||||
public toString(): string;
|
||||
/**
|
||||
* Checks if this code is a format code as opposed to a color code.
|
||||
*/
|
||||
public isFormat(): boolean;
|
||||
/**
|
||||
* Checks if this code is a color code as opposed to a format code.
|
||||
*/
|
||||
public isColor(): boolean;
|
||||
/**
|
||||
* Gets the color represented by the specified color code
|
||||
*/
|
||||
public static getByChar(code: string): org.bukkit.ChatColor;
|
||||
/**
|
||||
* Gets the color represented by the specified color code
|
||||
*/
|
||||
public static getByChar(code: string): org.bukkit.ChatColor;
|
||||
/**
|
||||
* Strips the given message of all color codes
|
||||
*/
|
||||
public static stripColor(input: string): string;
|
||||
/**
|
||||
* Translates a string using an alternate color code character into a
|
||||
* string that uses the internal ChatColor.COLOR_CODE color code
|
||||
* character. The alternate color code character will only be replaced if
|
||||
* it is immediately followed by 0-9, A-F, a-f, K-O, k-o, R or r.
|
||||
*/
|
||||
public static translateAlternateColorCodes(altColorChar: string, textToTranslate: string): string;
|
||||
/**
|
||||
* Gets the ChatColors used at the end of the given input string.
|
||||
*/
|
||||
public static getLastColors(input: string): string;
|
||||
}
|
||||
}
|
||||
}
|
||||
106
packages/bukkit/src/typings/org.bukkit.Chunk.ts
Normal file
106
packages/bukkit/src/typings/org.bukkit.Chunk.ts
Normal file
@@ -0,0 +1,106 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Chunk {
|
||||
/**
|
||||
* Gets the X-coordinate of this chunk
|
||||
*/
|
||||
public getX(): number;
|
||||
/**
|
||||
* Gets the Z-coordinate of this chunk
|
||||
*/
|
||||
public getZ(): number;
|
||||
/**
|
||||
* Gets the world containing this chunk
|
||||
*/
|
||||
public getWorld(): org.bukkit.World;
|
||||
/**
|
||||
* Gets a block from this chunk
|
||||
*/
|
||||
public getBlock(x: number, y: number, z: number): org.bukkit.block.Block;
|
||||
/**
|
||||
* Capture thread-safe read-only snapshot of chunk data
|
||||
*/
|
||||
public getChunkSnapshot(): org.bukkit.ChunkSnapshot;
|
||||
/**
|
||||
* Capture thread-safe read-only snapshot of chunk data
|
||||
*/
|
||||
public getChunkSnapshot(includeMaxblocky: boolean, includeBiome: boolean, includeBiomeTempRain: boolean): org.bukkit.ChunkSnapshot;
|
||||
/**
|
||||
* Get a list of all entities in the chunk.
|
||||
*/
|
||||
public getEntities(): org.bukkit.entity.Entity[];
|
||||
/**
|
||||
* Get a list of all tile entities in the chunk.
|
||||
*/
|
||||
public getTileEntities(): org.bukkit.block.BlockState[];
|
||||
/**
|
||||
* Checks if the chunk is loaded.
|
||||
*/
|
||||
public isLoaded(): boolean;
|
||||
/**
|
||||
* Loads the chunk.
|
||||
*/
|
||||
public load(generate: boolean): boolean;
|
||||
/**
|
||||
* Loads the chunk.
|
||||
*/
|
||||
public load(): boolean;
|
||||
/**
|
||||
* Unloads and optionally saves the Chunk
|
||||
*/
|
||||
public unload(save: boolean): boolean;
|
||||
/**
|
||||
* Unloads and optionally saves the Chunk
|
||||
*/
|
||||
public unload(): boolean;
|
||||
/**
|
||||
* Checks if this chunk can spawn slimes without being a swamp biome.
|
||||
*/
|
||||
public isSlimeChunk(): boolean;
|
||||
/**
|
||||
* Gets whether the chunk at the specified chunk coordinates is force
|
||||
* loaded.
|
||||
* <p>
|
||||
* A force loaded chunk will not be unloaded due to lack of player activity.
|
||||
*/
|
||||
public isForceLoaded(): boolean;
|
||||
/**
|
||||
* Sets whether the chunk at the specified chunk coordinates is force
|
||||
* loaded.
|
||||
* <p>
|
||||
* A force loaded chunk will not be unloaded due to lack of player activity.
|
||||
*/
|
||||
public setForceLoaded(forced: boolean): void;
|
||||
/**
|
||||
* Adds a plugin ticket for this chunk, loading this chunk if it is not
|
||||
* already loaded.
|
||||
* <p>
|
||||
* A plugin ticket will prevent a chunk from unloading until it is
|
||||
* explicitly removed. A plugin instance may only have one ticket per chunk,
|
||||
* but each chunk can have multiple plugin tickets.
|
||||
* </p>
|
||||
*/
|
||||
public addPluginChunkTicket(plugin: org.bukkit.plugin.Plugin): boolean;
|
||||
/**
|
||||
* Removes the specified plugin's ticket for this chunk
|
||||
* <p>
|
||||
* A plugin ticket will prevent a chunk from unloading until it is
|
||||
* explicitly removed. A plugin instance may only have one ticket per chunk,
|
||||
* but each chunk can have multiple plugin tickets.
|
||||
* </p>
|
||||
*/
|
||||
public removePluginChunkTicket(plugin: org.bukkit.plugin.Plugin): boolean;
|
||||
/**
|
||||
* Retrieves a collection specifying which plugins have tickets for this
|
||||
* chunk. This collection is not updated when plugin tickets are added or
|
||||
* removed to this chunk.
|
||||
* <p>
|
||||
* A plugin ticket will prevent a chunk from unloading until it is
|
||||
* explicitly removed. A plugin instance may only have one ticket per chunk,
|
||||
* but each chunk can have multiple plugin tickets.
|
||||
* </p>
|
||||
*/
|
||||
public getPluginChunkTickets(): any[] /*java.util.Collection*/;
|
||||
}
|
||||
}
|
||||
}
|
||||
59
packages/bukkit/src/typings/org.bukkit.ChunkSnapshot.ts
Normal file
59
packages/bukkit/src/typings/org.bukkit.ChunkSnapshot.ts
Normal file
@@ -0,0 +1,59 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class ChunkSnapshot {
|
||||
/**
|
||||
* Gets the X-coordinate of this chunk
|
||||
*/
|
||||
public getX(): number;
|
||||
/**
|
||||
* Gets the Z-coordinate of this chunk
|
||||
*/
|
||||
public getZ(): number;
|
||||
/**
|
||||
* Gets name of the world containing this chunk
|
||||
*/
|
||||
public getWorldName(): string;
|
||||
/**
|
||||
* Get block type for block at corresponding coordinate in the chunk
|
||||
*/
|
||||
public getBlockType(x: number, y: number, z: number): org.bukkit.Material;
|
||||
/**
|
||||
* Get block data for block at corresponding coordinate in the chunk
|
||||
*/
|
||||
public getBlockData(x: number, y: number, z: number): org.bukkit.block.data.BlockData;
|
||||
/**
|
||||
* Get block data for block at corresponding coordinate in the chunk
|
||||
*/
|
||||
public getData(x: number, y: number, z: number): number;
|
||||
/**
|
||||
* Get sky light level for block at corresponding coordinate in the chunk
|
||||
*/
|
||||
public getBlockSkyLight(x: number, y: number, z: number): number;
|
||||
/**
|
||||
* Get light level emitted by block at corresponding coordinate in the
|
||||
* chunk
|
||||
*/
|
||||
public getBlockEmittedLight(x: number, y: number, z: number): number;
|
||||
/**
|
||||
* Gets the highest non-air coordinate at the given coordinates
|
||||
*/
|
||||
public getHighestBlockYAt(x: number, z: number): number;
|
||||
/**
|
||||
* Get biome at given coordinates
|
||||
*/
|
||||
public getBiome(x: number, z: number): org.bukkit.block.Biome;
|
||||
/**
|
||||
* Get raw biome temperature (0.0-1.0) at given coordinate
|
||||
*/
|
||||
public getRawBiomeTemperature(x: number, z: number): number;
|
||||
/**
|
||||
* Get world full time when chunk snapshot was captured
|
||||
*/
|
||||
public getCaptureFullTime(): number;
|
||||
/**
|
||||
* Test if section is empty
|
||||
*/
|
||||
public isSectionEmpty(sy: number): boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
18
packages/bukkit/src/typings/org.bukkit.CoalType.ts
Normal file
18
packages/bukkit/src/typings/org.bukkit.CoalType.ts
Normal file
@@ -0,0 +1,18 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class CoalType {
|
||||
public static COAL: org.bukkit.CoalType;
|
||||
public static CHARCOAL: org.bukkit.CoalType;
|
||||
public static values(): org.bukkit.CoalType[];
|
||||
public static valueOf(name: string): org.bukkit.CoalType;
|
||||
/**
|
||||
* Gets the associated data value representing this type of coal
|
||||
*/
|
||||
public getData(): number;
|
||||
/**
|
||||
* Gets the type of coal with the given data value
|
||||
*/
|
||||
public static getByData(data: number): org.bukkit.CoalType;
|
||||
}
|
||||
}
|
||||
}
|
||||
82
packages/bukkit/src/typings/org.bukkit.Color.ts
Normal file
82
packages/bukkit/src/typings/org.bukkit.Color.ts
Normal file
@@ -0,0 +1,82 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Color {
|
||||
public static WHITE: org.bukkit.Color;
|
||||
public static SILVER: org.bukkit.Color;
|
||||
public static GRAY: org.bukkit.Color;
|
||||
public static BLACK: org.bukkit.Color;
|
||||
public static RED: org.bukkit.Color;
|
||||
public static MAROON: org.bukkit.Color;
|
||||
public static YELLOW: org.bukkit.Color;
|
||||
public static OLIVE: org.bukkit.Color;
|
||||
public static LIME: org.bukkit.Color;
|
||||
public static GREEN: org.bukkit.Color;
|
||||
public static AQUA: org.bukkit.Color;
|
||||
public static TEAL: org.bukkit.Color;
|
||||
public static BLUE: org.bukkit.Color;
|
||||
public static NAVY: org.bukkit.Color;
|
||||
public static FUCHSIA: org.bukkit.Color;
|
||||
public static PURPLE: org.bukkit.Color;
|
||||
public static ORANGE: org.bukkit.Color;
|
||||
/**
|
||||
* Creates a new Color object from a red, green, and blue
|
||||
*/
|
||||
public static fromRGB(red: number, green: number, blue: number): org.bukkit.Color;
|
||||
/**
|
||||
* Creates a new Color object from a blue, green, and red
|
||||
*/
|
||||
public static fromBGR(blue: number, green: number, red: number): org.bukkit.Color;
|
||||
/**
|
||||
* Creates a new color object from an integer that contains the red,
|
||||
* green, and blue bytes in the lowest order 24 bits.
|
||||
*/
|
||||
public static fromRGB(rgb: number): org.bukkit.Color;
|
||||
/**
|
||||
* Creates a new color object from an integer that contains the blue,
|
||||
* green, and red bytes in the lowest order 24 bits.
|
||||
*/
|
||||
public static fromBGR(bgr: number): org.bukkit.Color;
|
||||
/**
|
||||
* Gets the red component
|
||||
*/
|
||||
public getRed(): number;
|
||||
/**
|
||||
* Creates a new Color object with specified component
|
||||
*/
|
||||
public setRed(red: number): org.bukkit.Color;
|
||||
/**
|
||||
* Gets the green component
|
||||
*/
|
||||
public getGreen(): number;
|
||||
/**
|
||||
* Creates a new Color object with specified component
|
||||
*/
|
||||
public setGreen(green: number): org.bukkit.Color;
|
||||
/**
|
||||
* Gets the blue component
|
||||
*/
|
||||
public getBlue(): number;
|
||||
/**
|
||||
* Creates a new Color object with specified component
|
||||
*/
|
||||
public setBlue(blue: number): org.bukkit.Color;
|
||||
public asRGB(): number;
|
||||
public asBGR(): number;
|
||||
/**
|
||||
* Creates a new color with its RGB components changed as if it was dyed
|
||||
* with the colors passed in, replicating vanilla workbench dyeing
|
||||
*/
|
||||
public mixDyes(colors: org.bukkit.DyeColor): org.bukkit.Color;
|
||||
/**
|
||||
* Creates a new color with its RGB components changed as if it was dyed
|
||||
* with the colors passed in, replicating vanilla workbench dyeing
|
||||
*/
|
||||
public mixColors(colors: org.bukkit.Color): org.bukkit.Color;
|
||||
public equals(o: any): boolean;
|
||||
public hashCode(): number;
|
||||
public serialize(): Map<any, any> /*java.util.Map*/;
|
||||
public static deserialize(map: Map<any, any> /*java.util.Map*/): org.bukkit.Color;
|
||||
public toString(): string;
|
||||
}
|
||||
}
|
||||
}
|
||||
24
packages/bukkit/src/typings/org.bukkit.CropState.ts
Normal file
24
packages/bukkit/src/typings/org.bukkit.CropState.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class CropState {
|
||||
public static SEEDED: org.bukkit.CropState;
|
||||
public static GERMINATED: org.bukkit.CropState;
|
||||
public static VERY_SMALL: org.bukkit.CropState;
|
||||
public static SMALL: org.bukkit.CropState;
|
||||
public static MEDIUM: org.bukkit.CropState;
|
||||
public static TALL: org.bukkit.CropState;
|
||||
public static VERY_TALL: org.bukkit.CropState;
|
||||
public static RIPE: org.bukkit.CropState;
|
||||
public static values(): org.bukkit.CropState[];
|
||||
public static valueOf(name: string): org.bukkit.CropState;
|
||||
/**
|
||||
* Gets the associated data value representing this growth state
|
||||
*/
|
||||
public getData(): number;
|
||||
/**
|
||||
* Gets the CropState with the given data value
|
||||
*/
|
||||
public static getByData(data: number): org.bukkit.CropState;
|
||||
}
|
||||
}
|
||||
}
|
||||
20
packages/bukkit/src/typings/org.bukkit.Difficulty.ts
Normal file
20
packages/bukkit/src/typings/org.bukkit.Difficulty.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Difficulty {
|
||||
public static PEACEFUL: org.bukkit.Difficulty;
|
||||
public static EASY: org.bukkit.Difficulty;
|
||||
public static NORMAL: org.bukkit.Difficulty;
|
||||
public static HARD: org.bukkit.Difficulty;
|
||||
public static values(): org.bukkit.Difficulty[];
|
||||
public static valueOf(name: string): org.bukkit.Difficulty;
|
||||
/**
|
||||
* Gets the difficulty value associated with this Difficulty.
|
||||
*/
|
||||
public getValue(): number;
|
||||
/**
|
||||
* Gets the Difficulty represented by the specified value
|
||||
*/
|
||||
public static getByValue(value: number): org.bukkit.Difficulty;
|
||||
}
|
||||
}
|
||||
}
|
||||
60
packages/bukkit/src/typings/org.bukkit.DyeColor.ts
Normal file
60
packages/bukkit/src/typings/org.bukkit.DyeColor.ts
Normal file
@@ -0,0 +1,60 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class DyeColor {
|
||||
public static WHITE: org.bukkit.DyeColor;
|
||||
public static ORANGE: org.bukkit.DyeColor;
|
||||
public static MAGENTA: org.bukkit.DyeColor;
|
||||
public static LIGHT_BLUE: org.bukkit.DyeColor;
|
||||
public static YELLOW: org.bukkit.DyeColor;
|
||||
public static LIME: org.bukkit.DyeColor;
|
||||
public static PINK: org.bukkit.DyeColor;
|
||||
public static GRAY: org.bukkit.DyeColor;
|
||||
public static LIGHT_GRAY: org.bukkit.DyeColor;
|
||||
public static CYAN: org.bukkit.DyeColor;
|
||||
public static PURPLE: org.bukkit.DyeColor;
|
||||
public static BLUE: org.bukkit.DyeColor;
|
||||
public static BROWN: org.bukkit.DyeColor;
|
||||
public static GREEN: org.bukkit.DyeColor;
|
||||
public static RED: org.bukkit.DyeColor;
|
||||
public static BLACK: org.bukkit.DyeColor;
|
||||
public static values(): org.bukkit.DyeColor[];
|
||||
public static valueOf(name: string): org.bukkit.DyeColor;
|
||||
/**
|
||||
* Gets the associated wool data value representing this color.
|
||||
*/
|
||||
public getWoolData(): number;
|
||||
/**
|
||||
* Gets the associated dye data value representing this color.
|
||||
*/
|
||||
public getDyeData(): number;
|
||||
/**
|
||||
* Gets the color that this dye represents.
|
||||
*/
|
||||
public getColor(): org.bukkit.Color;
|
||||
/**
|
||||
* Gets the firework color that this dye represents.
|
||||
*/
|
||||
public getFireworkColor(): org.bukkit.Color;
|
||||
/**
|
||||
* Gets the DyeColor with the given wool data value.
|
||||
*/
|
||||
public static getByWoolData(data: number): org.bukkit.DyeColor;
|
||||
/**
|
||||
* Gets the DyeColor with the given dye data value.
|
||||
*/
|
||||
public static getByDyeData(data: number): org.bukkit.DyeColor;
|
||||
/**
|
||||
* Gets the DyeColor with the given color value.
|
||||
*/
|
||||
public static getByColor(color: org.bukkit.Color): org.bukkit.DyeColor;
|
||||
/**
|
||||
* Gets the DyeColor with the given firework color value.
|
||||
*/
|
||||
public static getByFireworkColor(color: org.bukkit.Color): org.bukkit.DyeColor;
|
||||
/**
|
||||
* Gets the DyeColor for the given name, possibly doing legacy transformations.
|
||||
*/
|
||||
public static legacyValueOf(name: string): org.bukkit.DyeColor;
|
||||
}
|
||||
}
|
||||
}
|
||||
12
packages/bukkit/src/typings/org.bukkit.Effect.Type.ts
Normal file
12
packages/bukkit/src/typings/org.bukkit.Effect.Type.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
namespace Effect {
|
||||
class Type {
|
||||
public static SOUND: org.bukkit.Effect.Type;
|
||||
public static VISUAL: org.bukkit.Effect.Type;
|
||||
public static values(): org.bukkit.Effect.Type[];
|
||||
public static valueOf(name: string): org.bukkit.Effect.Type;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
63
packages/bukkit/src/typings/org.bukkit.Effect.ts
Normal file
63
packages/bukkit/src/typings/org.bukkit.Effect.ts
Normal file
@@ -0,0 +1,63 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Effect {
|
||||
public static CLICK2: org.bukkit.Effect;
|
||||
public static CLICK1: org.bukkit.Effect;
|
||||
public static BOW_FIRE: org.bukkit.Effect;
|
||||
public static DOOR_TOGGLE: org.bukkit.Effect;
|
||||
public static IRON_DOOR_TOGGLE: org.bukkit.Effect;
|
||||
public static TRAPDOOR_TOGGLE: org.bukkit.Effect;
|
||||
public static IRON_TRAPDOOR_TOGGLE: org.bukkit.Effect;
|
||||
public static FENCE_GATE_TOGGLE: org.bukkit.Effect;
|
||||
public static DOOR_CLOSE: org.bukkit.Effect;
|
||||
public static IRON_DOOR_CLOSE: org.bukkit.Effect;
|
||||
public static TRAPDOOR_CLOSE: org.bukkit.Effect;
|
||||
public static IRON_TRAPDOOR_CLOSE: org.bukkit.Effect;
|
||||
public static FENCE_GATE_CLOSE: org.bukkit.Effect;
|
||||
public static EXTINGUISH: org.bukkit.Effect;
|
||||
public static RECORD_PLAY: org.bukkit.Effect;
|
||||
public static GHAST_SHRIEK: org.bukkit.Effect;
|
||||
public static GHAST_SHOOT: org.bukkit.Effect;
|
||||
public static BLAZE_SHOOT: org.bukkit.Effect;
|
||||
public static ZOMBIE_CHEW_WOODEN_DOOR: org.bukkit.Effect;
|
||||
public static ZOMBIE_CHEW_IRON_DOOR: org.bukkit.Effect;
|
||||
public static ZOMBIE_DESTROY_DOOR: org.bukkit.Effect;
|
||||
public static SMOKE: org.bukkit.Effect;
|
||||
public static STEP_SOUND: org.bukkit.Effect;
|
||||
public static POTION_BREAK: org.bukkit.Effect;
|
||||
public static ENDER_SIGNAL: org.bukkit.Effect;
|
||||
public static MOBSPAWNER_FLAMES: org.bukkit.Effect;
|
||||
public static BREWING_STAND_BREW: org.bukkit.Effect;
|
||||
public static CHORUS_FLOWER_GROW: org.bukkit.Effect;
|
||||
public static CHORUS_FLOWER_DEATH: org.bukkit.Effect;
|
||||
public static PORTAL_TRAVEL: org.bukkit.Effect;
|
||||
public static ENDEREYE_LAUNCH: org.bukkit.Effect;
|
||||
public static FIREWORK_SHOOT: org.bukkit.Effect;
|
||||
public static VILLAGER_PLANT_GROW: org.bukkit.Effect;
|
||||
public static DRAGON_BREATH: org.bukkit.Effect;
|
||||
public static ANVIL_BREAK: org.bukkit.Effect;
|
||||
public static ANVIL_USE: org.bukkit.Effect;
|
||||
public static ANVIL_LAND: org.bukkit.Effect;
|
||||
public static ENDERDRAGON_SHOOT: org.bukkit.Effect;
|
||||
public static WITHER_BREAK_BLOCK: org.bukkit.Effect;
|
||||
public static WITHER_SHOOT: org.bukkit.Effect;
|
||||
public static ZOMBIE_INFECT: org.bukkit.Effect;
|
||||
public static ZOMBIE_CONVERTED_VILLAGER: org.bukkit.Effect;
|
||||
public static BAT_TAKEOFF: org.bukkit.Effect;
|
||||
public static END_GATEWAY_SPAWN: org.bukkit.Effect;
|
||||
public static ENDERDRAGON_GROWL: org.bukkit.Effect;
|
||||
public static values(): org.bukkit.Effect[];
|
||||
public static valueOf(name: string): org.bukkit.Effect;
|
||||
/**
|
||||
* Gets the ID for this effect.
|
||||
*/
|
||||
public getId(): number;
|
||||
public getType(): org.bukkit.Effect.Type;
|
||||
public getData(): any;
|
||||
/**
|
||||
* Gets the Effect associated with the given ID.
|
||||
*/
|
||||
public static getById(id: number): org.bukkit.Effect;
|
||||
}
|
||||
}
|
||||
}
|
||||
47
packages/bukkit/src/typings/org.bukkit.EntityEffect.ts
Normal file
47
packages/bukkit/src/typings/org.bukkit.EntityEffect.ts
Normal file
@@ -0,0 +1,47 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class EntityEffect {
|
||||
public static ARROW_PARTICLES: org.bukkit.EntityEffect;
|
||||
public static RABBIT_JUMP: org.bukkit.EntityEffect;
|
||||
public static HURT: org.bukkit.EntityEffect;
|
||||
public static DEATH: org.bukkit.EntityEffect;
|
||||
public static WOLF_SMOKE: org.bukkit.EntityEffect;
|
||||
public static WOLF_HEARTS: org.bukkit.EntityEffect;
|
||||
public static WOLF_SHAKE: org.bukkit.EntityEffect;
|
||||
public static SHEEP_EAT: org.bukkit.EntityEffect;
|
||||
public static IRON_GOLEM_ROSE: org.bukkit.EntityEffect;
|
||||
public static VILLAGER_HEART: org.bukkit.EntityEffect;
|
||||
public static VILLAGER_ANGRY: org.bukkit.EntityEffect;
|
||||
public static VILLAGER_HAPPY: org.bukkit.EntityEffect;
|
||||
public static WITCH_MAGIC: org.bukkit.EntityEffect;
|
||||
public static ZOMBIE_TRANSFORM: org.bukkit.EntityEffect;
|
||||
public static FIREWORK_EXPLODE: org.bukkit.EntityEffect;
|
||||
public static LOVE_HEARTS: org.bukkit.EntityEffect;
|
||||
public static SQUID_ROTATE: org.bukkit.EntityEffect;
|
||||
public static ENTITY_POOF: org.bukkit.EntityEffect;
|
||||
public static GUARDIAN_TARGET: org.bukkit.EntityEffect;
|
||||
public static SHIELD_BLOCK: org.bukkit.EntityEffect;
|
||||
public static SHIELD_BREAK: org.bukkit.EntityEffect;
|
||||
public static ARMOR_STAND_HIT: org.bukkit.EntityEffect;
|
||||
public static THORNS_HURT: org.bukkit.EntityEffect;
|
||||
public static IRON_GOLEM_SHEATH: org.bukkit.EntityEffect;
|
||||
public static TOTEM_RESURRECT: org.bukkit.EntityEffect;
|
||||
public static HURT_DROWN: org.bukkit.EntityEffect;
|
||||
public static HURT_EXPLOSION: org.bukkit.EntityEffect;
|
||||
public static values(): org.bukkit.EntityEffect[];
|
||||
public static valueOf(name: string): org.bukkit.EntityEffect;
|
||||
/**
|
||||
* Gets the data value of this EntityEffect
|
||||
*/
|
||||
public getData(): number;
|
||||
/**
|
||||
* Gets entity superclass which this affect is applicable to.
|
||||
*/
|
||||
public getApplicable(): any;
|
||||
/**
|
||||
* Gets the EntityEffect with the given data value
|
||||
*/
|
||||
public static getByData(data: number): org.bukkit.EntityEffect;
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,59 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
namespace FireworkEffect {
|
||||
class Builder {
|
||||
/**
|
||||
* Specify the type of the firework effect.
|
||||
*/
|
||||
public with(type: org.bukkit.FireworkEffect.Type): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add a flicker to the firework effect.
|
||||
*/
|
||||
public withFlicker(): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Set whether the firework effect should flicker.
|
||||
*/
|
||||
public flicker(flicker: boolean): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add a trail to the firework effect.
|
||||
*/
|
||||
public withTrail(): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Set whether the firework effect should have a trail.
|
||||
*/
|
||||
public trail(trail: boolean): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add a primary color to the firework effect.
|
||||
*/
|
||||
public withColor(color: org.bukkit.Color): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add several primary colors to the firework effect.
|
||||
*/
|
||||
public withColor(colors: org.bukkit.Color): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add several primary colors to the firework effect.
|
||||
*/
|
||||
public withColor(colors: any): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add a fade color to the firework effect.
|
||||
*/
|
||||
public withFade(color: org.bukkit.Color): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add several fade colors to the firework effect.
|
||||
*/
|
||||
public withFade(colors: org.bukkit.Color): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Add several fade colors to the firework effect.
|
||||
*/
|
||||
public withFade(colors: any): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Create a {@link FireworkEffect} from the current contents of this
|
||||
* builder.
|
||||
* <p>
|
||||
* To successfully build, you must have specified at least one color.
|
||||
*/
|
||||
public build(): org.bukkit.FireworkEffect;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
@@ -0,0 +1,15 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
namespace FireworkEffect {
|
||||
class Type {
|
||||
public static BALL: org.bukkit.FireworkEffect.Type;
|
||||
public static BALL_LARGE: org.bukkit.FireworkEffect.Type;
|
||||
public static STAR: org.bukkit.FireworkEffect.Type;
|
||||
public static BURST: org.bukkit.FireworkEffect.Type;
|
||||
public static CREEPER: org.bukkit.FireworkEffect.Type;
|
||||
public static values(): org.bukkit.FireworkEffect.Type[];
|
||||
public static valueOf(name: string): org.bukkit.FireworkEffect.Type;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
35
packages/bukkit/src/typings/org.bukkit.FireworkEffect.ts
Normal file
35
packages/bukkit/src/typings/org.bukkit.FireworkEffect.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class FireworkEffect {
|
||||
/**
|
||||
* Construct a firework effect.
|
||||
*/
|
||||
public static builder(): org.bukkit.FireworkEffect.Builder;
|
||||
/**
|
||||
* Get whether the firework effect flickers.
|
||||
*/
|
||||
public hasFlicker(): boolean;
|
||||
/**
|
||||
* Get whether the firework effect has a trail.
|
||||
*/
|
||||
public hasTrail(): boolean;
|
||||
/**
|
||||
* Get the primary colors of the firework effect.
|
||||
*/
|
||||
public getColors(): any[] /*java.util.List*/;
|
||||
/**
|
||||
* Get the fade colors of the firework effect.
|
||||
*/
|
||||
public getFadeColors(): any[] /*java.util.List*/;
|
||||
/**
|
||||
* Get the type of the firework effect.
|
||||
*/
|
||||
public getType(): org.bukkit.FireworkEffect.Type;
|
||||
public static deserialize(map: Map<any, any> /*java.util.Map*/): org.bukkit.configuration.serialization.ConfigurationSerializable;
|
||||
public serialize(): Map<any, any> /*java.util.Map*/;
|
||||
public toString(): string;
|
||||
public hashCode(): number;
|
||||
public equals(obj: any): boolean;
|
||||
}
|
||||
}
|
||||
}
|
||||
11
packages/bukkit/src/typings/org.bukkit.FluidCollisionMode.ts
Normal file
11
packages/bukkit/src/typings/org.bukkit.FluidCollisionMode.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class FluidCollisionMode {
|
||||
public static NEVER: org.bukkit.FluidCollisionMode;
|
||||
public static SOURCE_ONLY: org.bukkit.FluidCollisionMode;
|
||||
public static ALWAYS: org.bukkit.FluidCollisionMode;
|
||||
public static values(): org.bukkit.FluidCollisionMode[];
|
||||
public static valueOf(name: string): org.bukkit.FluidCollisionMode;
|
||||
}
|
||||
}
|
||||
}
|
||||
20
packages/bukkit/src/typings/org.bukkit.GameMode.ts
Normal file
20
packages/bukkit/src/typings/org.bukkit.GameMode.ts
Normal file
@@ -0,0 +1,20 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class GameMode {
|
||||
public static CREATIVE: org.bukkit.GameMode;
|
||||
public static SURVIVAL: org.bukkit.GameMode;
|
||||
public static ADVENTURE: org.bukkit.GameMode;
|
||||
public static SPECTATOR: org.bukkit.GameMode;
|
||||
public static values(): org.bukkit.GameMode[];
|
||||
public static valueOf(name: string): org.bukkit.GameMode;
|
||||
/**
|
||||
* Gets the mode value associated with this GameMode
|
||||
*/
|
||||
public getValue(): number;
|
||||
/**
|
||||
* Gets the GameMode represented by the specified value
|
||||
*/
|
||||
public static getByValue(value: number): org.bukkit.GameMode;
|
||||
}
|
||||
}
|
||||
}
|
||||
48
packages/bukkit/src/typings/org.bukkit.GameRule.ts
Normal file
48
packages/bukkit/src/typings/org.bukkit.GameRule.ts
Normal file
@@ -0,0 +1,48 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class GameRule {
|
||||
public static ANNOUNCE_ADVANCEMENTS: org.bukkit.GameRule;
|
||||
public static COMMAND_BLOCK_OUTPUT: org.bukkit.GameRule;
|
||||
public static DISABLE_ELYTRA_MOVEMENT_CHECK: org.bukkit.GameRule;
|
||||
public static DO_DAYLIGHT_CYCLE: org.bukkit.GameRule;
|
||||
public static DO_ENTITY_DROPS: org.bukkit.GameRule;
|
||||
public static DO_FIRE_TICK: org.bukkit.GameRule;
|
||||
public static DO_LIMITED_CRAFTING: org.bukkit.GameRule;
|
||||
public static DO_MOB_LOOT: org.bukkit.GameRule;
|
||||
public static DO_MOB_SPAWNING: org.bukkit.GameRule;
|
||||
public static DO_TILE_DROPS: org.bukkit.GameRule;
|
||||
public static DO_WEATHER_CYCLE: org.bukkit.GameRule;
|
||||
public static KEEP_INVENTORY: org.bukkit.GameRule;
|
||||
public static LOG_ADMIN_COMMANDS: org.bukkit.GameRule;
|
||||
public static MOB_GRIEFING: org.bukkit.GameRule;
|
||||
public static NATURAL_REGENERATION: org.bukkit.GameRule;
|
||||
public static REDUCED_DEBUG_INFO: org.bukkit.GameRule;
|
||||
public static SEND_COMMAND_FEEDBACK: org.bukkit.GameRule;
|
||||
public static SHOW_DEATH_MESSAGES: org.bukkit.GameRule;
|
||||
public static SPECTATORS_GENERATE_CHUNKS: org.bukkit.GameRule;
|
||||
public static DISABLE_RAIDS: org.bukkit.GameRule;
|
||||
public static RANDOM_TICK_SPEED: org.bukkit.GameRule;
|
||||
public static SPAWN_RADIUS: org.bukkit.GameRule;
|
||||
public static MAX_ENTITY_CRAMMING: org.bukkit.GameRule;
|
||||
public static MAX_COMMAND_CHAIN_LENGTH: org.bukkit.GameRule;
|
||||
/**
|
||||
* Get the name of this GameRule.
|
||||
*/
|
||||
public getName(): string;
|
||||
/**
|
||||
* Get the type of this rule.
|
||||
*/
|
||||
public getType(): any;
|
||||
public equals(obj: any): boolean;
|
||||
public toString(): string;
|
||||
/**
|
||||
* Get a {@link GameRule} by its name.
|
||||
*/
|
||||
public static getByName(rule: string): org.bukkit.GameRule;
|
||||
/**
|
||||
* Get an immutable collection of {@link GameRule}s.
|
||||
*/
|
||||
public static values(): org.bukkit.GameRule[];
|
||||
}
|
||||
}
|
||||
}
|
||||
19
packages/bukkit/src/typings/org.bukkit.GrassSpecies.ts
Normal file
19
packages/bukkit/src/typings/org.bukkit.GrassSpecies.ts
Normal file
@@ -0,0 +1,19 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class GrassSpecies {
|
||||
public static DEAD: org.bukkit.GrassSpecies;
|
||||
public static NORMAL: org.bukkit.GrassSpecies;
|
||||
public static FERN_LIKE: org.bukkit.GrassSpecies;
|
||||
public static values(): org.bukkit.GrassSpecies[];
|
||||
public static valueOf(name: string): org.bukkit.GrassSpecies;
|
||||
/**
|
||||
* Gets the associated data value representing this species
|
||||
*/
|
||||
public getData(): number;
|
||||
/**
|
||||
* Gets the GrassSpecies with the given data value
|
||||
*/
|
||||
public static getByData(data: number): org.bukkit.GrassSpecies;
|
||||
}
|
||||
}
|
||||
}
|
||||
29
packages/bukkit/src/typings/org.bukkit.Instrument.ts
Normal file
29
packages/bukkit/src/typings/org.bukkit.Instrument.ts
Normal file
@@ -0,0 +1,29 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Instrument {
|
||||
public static PIANO: org.bukkit.Instrument;
|
||||
public static BASS_DRUM: org.bukkit.Instrument;
|
||||
public static SNARE_DRUM: org.bukkit.Instrument;
|
||||
public static STICKS: org.bukkit.Instrument;
|
||||
public static BASS_GUITAR: org.bukkit.Instrument;
|
||||
public static FLUTE: org.bukkit.Instrument;
|
||||
public static BELL: org.bukkit.Instrument;
|
||||
public static GUITAR: org.bukkit.Instrument;
|
||||
public static CHIME: org.bukkit.Instrument;
|
||||
public static XYLOPHONE: org.bukkit.Instrument;
|
||||
public static IRON_XYLOPHONE: org.bukkit.Instrument;
|
||||
public static COW_BELL: org.bukkit.Instrument;
|
||||
public static DIDGERIDOO: org.bukkit.Instrument;
|
||||
public static BIT: org.bukkit.Instrument;
|
||||
public static BANJO: org.bukkit.Instrument;
|
||||
public static PLING: org.bukkit.Instrument;
|
||||
public static values(): org.bukkit.Instrument[];
|
||||
public static valueOf(name: string): org.bukkit.Instrument;
|
||||
public getType(): number;
|
||||
/**
|
||||
* Get an instrument by its type ID.
|
||||
*/
|
||||
public static getByType(type: number): org.bukkit.Instrument;
|
||||
}
|
||||
}
|
||||
}
|
||||
10
packages/bukkit/src/typings/org.bukkit.Keyed.ts
Normal file
10
packages/bukkit/src/typings/org.bukkit.Keyed.ts
Normal file
@@ -0,0 +1,10 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Keyed {
|
||||
/**
|
||||
* Return the namespaced identifier for this object.
|
||||
*/
|
||||
public getKey(): org.bukkit.NamespacedKey;
|
||||
}
|
||||
}
|
||||
}
|
||||
223
packages/bukkit/src/typings/org.bukkit.Location.ts
Normal file
223
packages/bukkit/src/typings/org.bukkit.Location.ts
Normal file
@@ -0,0 +1,223 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Location {
|
||||
/**
|
||||
* Constructs a new Location with the given coordinates
|
||||
*/
|
||||
constructor(world: org.bukkit.World, x: number, y: number, z: number)
|
||||
/**
|
||||
* Constructs a new Location with the given coordinates and direction
|
||||
*/
|
||||
constructor(world: org.bukkit.World, x: number, y: number, z: number, yaw: number, pitch: number)
|
||||
/**
|
||||
* Sets the world that this location resides in
|
||||
*/
|
||||
public setWorld(world: org.bukkit.World): void;
|
||||
/**
|
||||
* Checks if world in this location is present and loaded.
|
||||
*/
|
||||
public isWorldLoaded(): boolean;
|
||||
/**
|
||||
* Gets the world that this location resides in
|
||||
*/
|
||||
public getWorld(): org.bukkit.World;
|
||||
/**
|
||||
* Gets the chunk at the represented location
|
||||
*/
|
||||
public getChunk(): org.bukkit.Chunk;
|
||||
/**
|
||||
* Gets the block at the represented location
|
||||
*/
|
||||
public getBlock(): org.bukkit.block.Block;
|
||||
/**
|
||||
* Sets the x-coordinate of this location
|
||||
*/
|
||||
public setX(x: number): void;
|
||||
/**
|
||||
* Gets the x-coordinate of this location
|
||||
*/
|
||||
public getX(): number;
|
||||
/**
|
||||
* Gets the floored value of the X component, indicating the block that
|
||||
* this location is contained with.
|
||||
*/
|
||||
public getBlockX(): number;
|
||||
/**
|
||||
* Sets the y-coordinate of this location
|
||||
*/
|
||||
public setY(y: number): void;
|
||||
/**
|
||||
* Gets the y-coordinate of this location
|
||||
*/
|
||||
public getY(): number;
|
||||
/**
|
||||
* Gets the floored value of the Y component, indicating the block that
|
||||
* this location is contained with.
|
||||
*/
|
||||
public getBlockY(): number;
|
||||
/**
|
||||
* Sets the z-coordinate of this location
|
||||
*/
|
||||
public setZ(z: number): void;
|
||||
/**
|
||||
* Gets the z-coordinate of this location
|
||||
*/
|
||||
public getZ(): number;
|
||||
/**
|
||||
* Gets the floored value of the Z component, indicating the block that
|
||||
* this location is contained with.
|
||||
*/
|
||||
public getBlockZ(): number;
|
||||
/**
|
||||
* Sets the yaw of this location, measured in degrees.
|
||||
* <ul>
|
||||
* <li>A yaw of 0 or 360 represents the positive z direction.
|
||||
* <li>A yaw of 180 represents the negative z direction.
|
||||
* <li>A yaw of 90 represents the negative x direction.
|
||||
* <li>A yaw of 270 represents the positive x direction.
|
||||
* </ul>
|
||||
* Increasing yaw values are the equivalent of turning to your
|
||||
* right-facing, increasing the scale of the next respective axis, and
|
||||
* decreasing the scale of the previous axis.
|
||||
*/
|
||||
public setYaw(yaw: number): void;
|
||||
/**
|
||||
* Gets the yaw of this location, measured in degrees.
|
||||
* <ul>
|
||||
* <li>A yaw of 0 or 360 represents the positive z direction.
|
||||
* <li>A yaw of 180 represents the negative z direction.
|
||||
* <li>A yaw of 90 represents the negative x direction.
|
||||
* <li>A yaw of 270 represents the positive x direction.
|
||||
* </ul>
|
||||
* Increasing yaw values are the equivalent of turning to your
|
||||
* right-facing, increasing the scale of the next respective axis, and
|
||||
* decreasing the scale of the previous axis.
|
||||
*/
|
||||
public getYaw(): number;
|
||||
/**
|
||||
* Sets the pitch of this location, measured in degrees.
|
||||
* <ul>
|
||||
* <li>A pitch of 0 represents level forward facing.
|
||||
* <li>A pitch of 90 represents downward facing, or negative y
|
||||
* direction.
|
||||
* <li>A pitch of -90 represents upward facing, or positive y direction.
|
||||
* </ul>
|
||||
* Increasing pitch values the equivalent of looking down.
|
||||
*/
|
||||
public setPitch(pitch: number): void;
|
||||
/**
|
||||
* Gets the pitch of this location, measured in degrees.
|
||||
* <ul>
|
||||
* <li>A pitch of 0 represents level forward facing.
|
||||
* <li>A pitch of 90 represents downward facing, or negative y
|
||||
* direction.
|
||||
* <li>A pitch of -90 represents upward facing, or positive y direction.
|
||||
* </ul>
|
||||
* Increasing pitch values the equivalent of looking down.
|
||||
*/
|
||||
public getPitch(): number;
|
||||
/**
|
||||
* Gets a unit-vector pointing in the direction that this Location is
|
||||
* facing.
|
||||
*/
|
||||
public getDirection(): org.bukkit.util.Vector;
|
||||
/**
|
||||
* Sets the {@link #getYaw() yaw} and {@link #getPitch() pitch} to point
|
||||
* in the direction of the vector.
|
||||
*/
|
||||
public setDirection(vector: org.bukkit.util.Vector): org.bukkit.Location;
|
||||
/**
|
||||
* Adds the location by another.
|
||||
*/
|
||||
public add(vec: org.bukkit.Location): org.bukkit.Location;
|
||||
/**
|
||||
* Adds the location by a vector.
|
||||
*/
|
||||
public add(vec: org.bukkit.util.Vector): org.bukkit.Location;
|
||||
/**
|
||||
* Adds the location by another. Not world-aware.
|
||||
*/
|
||||
public add(x: number, y: number, z: number): org.bukkit.Location;
|
||||
/**
|
||||
* Subtracts the location by another.
|
||||
*/
|
||||
public subtract(vec: org.bukkit.Location): org.bukkit.Location;
|
||||
/**
|
||||
* Subtracts the location by a vector.
|
||||
*/
|
||||
public subtract(vec: org.bukkit.util.Vector): org.bukkit.Location;
|
||||
/**
|
||||
* Subtracts the location by another. Not world-aware and
|
||||
* orientation independent.
|
||||
*/
|
||||
public subtract(x: number, y: number, z: number): org.bukkit.Location;
|
||||
/**
|
||||
* Gets the magnitude of the location, defined as sqrt(x^2+y^2+z^2). The
|
||||
* value of this method is not cached and uses a costly square-root
|
||||
* function, so do not repeatedly call this method to get the location's
|
||||
* magnitude. NaN will be returned if the inner result of the sqrt()
|
||||
* function overflows, which will be caused if the length is too long. Not
|
||||
* world-aware and orientation independent.
|
||||
*/
|
||||
public length(): number;
|
||||
/**
|
||||
* Gets the magnitude of the location squared. Not world-aware and
|
||||
* orientation independent.
|
||||
*/
|
||||
public lengthSquared(): number;
|
||||
/**
|
||||
* Get the distance between this location and another. The value of this
|
||||
* method is not cached and uses a costly square-root function, so do not
|
||||
* repeatedly call this method to get the location's magnitude. NaN will
|
||||
* be returned if the inner result of the sqrt() function overflows, which
|
||||
* will be caused if the distance is too long.
|
||||
*/
|
||||
public distance(o: org.bukkit.Location): number;
|
||||
/**
|
||||
* Get the squared distance between this location and another.
|
||||
*/
|
||||
public distanceSquared(o: org.bukkit.Location): number;
|
||||
/**
|
||||
* Performs scalar multiplication, multiplying all components with a
|
||||
* scalar. Not world-aware.
|
||||
*/
|
||||
public multiply(m: number): org.bukkit.Location;
|
||||
/**
|
||||
* Zero this location's components. Not world-aware.
|
||||
*/
|
||||
public zero(): org.bukkit.Location;
|
||||
public equals(obj: any): boolean;
|
||||
public hashCode(): number;
|
||||
public toString(): string;
|
||||
/**
|
||||
* Constructs a new {@link Vector} based on this Location
|
||||
*/
|
||||
public toVector(): org.bukkit.util.Vector;
|
||||
public clone(): org.bukkit.Location;
|
||||
/**
|
||||
* Check if each component of this Location is finite.
|
||||
*/
|
||||
public checkFinite(): void;
|
||||
/**
|
||||
* Safely converts a double (location coordinate) to an int (block
|
||||
* coordinate)
|
||||
*/
|
||||
public static locToBlock(loc: number): number;
|
||||
public serialize(): Map<any, any> /*java.util.Map*/;
|
||||
/**
|
||||
* Required method for deserialization
|
||||
*/
|
||||
public static deserialize(args: Map<any, any> /*java.util.Map*/): org.bukkit.Location;
|
||||
/**
|
||||
* Normalizes the given yaw angle to a value between <code>+/-180</code>
|
||||
* degrees.
|
||||
*/
|
||||
public static normalizeYaw(yaw: number): number;
|
||||
/**
|
||||
* Normalizes the given pitch angle to a value between <code>+/-90</code>
|
||||
* degrees.
|
||||
*/
|
||||
public static normalizePitch(pitch: number): number;
|
||||
}
|
||||
}
|
||||
}
|
||||
1580
packages/bukkit/src/typings/org.bukkit.Material.ts
Normal file
1580
packages/bukkit/src/typings/org.bukkit.Material.ts
Normal file
File diff suppressed because it is too large
Load Diff
24
packages/bukkit/src/typings/org.bukkit.Nameable.ts
Normal file
24
packages/bukkit/src/typings/org.bukkit.Nameable.ts
Normal file
@@ -0,0 +1,24 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class Nameable {
|
||||
/**
|
||||
* Gets the custom name on a mob or block. If there is no name this method
|
||||
* will return null.
|
||||
* <p>
|
||||
* This value has no effect on players, they will always use their real
|
||||
* name.
|
||||
*/
|
||||
public getCustomName(): string;
|
||||
/**
|
||||
* Sets a custom name on a mob or block. This name will be used in death
|
||||
* messages and can be sent to the client as a nameplate over the mob.
|
||||
* <p>
|
||||
* Setting the name to null or an empty string will clear it.
|
||||
* <p>
|
||||
* This value has no effect on players, they will always use their real
|
||||
* name.
|
||||
*/
|
||||
public setCustomName(name: string): void;
|
||||
}
|
||||
}
|
||||
}
|
||||
35
packages/bukkit/src/typings/org.bukkit.NamespacedKey.ts
Normal file
35
packages/bukkit/src/typings/org.bukkit.NamespacedKey.ts
Normal file
@@ -0,0 +1,35 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class NamespacedKey {
|
||||
/**
|
||||
* Create a key in a specific namespace.
|
||||
*/
|
||||
constructor(namespace: string, key: string)
|
||||
/**
|
||||
* Create a key in the plugin's namespace.
|
||||
* <p>
|
||||
* Namespaces may only contain lowercase alphanumeric characters, periods,
|
||||
* underscores, and hyphens.
|
||||
* <p>
|
||||
* Keys may only contain lowercase alphanumeric characters, periods,
|
||||
* underscores, hyphens, and forward slashes.
|
||||
*/
|
||||
constructor(plugin: org.bukkit.plugin.Plugin, key: string)
|
||||
public static MINECRAFT: string;
|
||||
public static BUKKIT: string;
|
||||
public getNamespace(): string;
|
||||
public getKey(): string;
|
||||
public hashCode(): number;
|
||||
public equals(obj: any): boolean;
|
||||
public toString(): string;
|
||||
/**
|
||||
* Return a new random key in the {@link #BUKKIT} namespace.
|
||||
*/
|
||||
public static randomKey(): org.bukkit.NamespacedKey;
|
||||
/**
|
||||
* Get a key in the Minecraft namespace.
|
||||
*/
|
||||
public static minecraft(key: string): org.bukkit.NamespacedKey;
|
||||
}
|
||||
}
|
||||
}
|
||||
12
packages/bukkit/src/typings/org.bukkit.NetherWartsState.ts
Normal file
12
packages/bukkit/src/typings/org.bukkit.NetherWartsState.ts
Normal file
@@ -0,0 +1,12 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
class NetherWartsState {
|
||||
public static SEEDED: org.bukkit.NetherWartsState;
|
||||
public static STAGE_ONE: org.bukkit.NetherWartsState;
|
||||
public static STAGE_TWO: org.bukkit.NetherWartsState;
|
||||
public static RIPE: org.bukkit.NetherWartsState;
|
||||
public static values(): org.bukkit.NetherWartsState[];
|
||||
public static valueOf(name: string): org.bukkit.NetherWartsState;
|
||||
}
|
||||
}
|
||||
}
|
||||
40
packages/bukkit/src/typings/org.bukkit.Note.Tone.ts
Normal file
40
packages/bukkit/src/typings/org.bukkit.Note.Tone.ts
Normal file
@@ -0,0 +1,40 @@
|
||||
declare namespace org {
|
||||
namespace bukkit {
|
||||
namespace Note {
|
||||
class Tone {
|
||||
public static G: org.bukkit.Note.Tone;
|
||||
public static A: org.bukkit.Note.Tone;
|
||||
public static B: org.bukkit.Note.Tone;
|
||||
public static C: org.bukkit.Note.Tone;
|
||||
public static D: org.bukkit.Note.Tone;
|
||||
public static E: org.bukkit.Note.Tone;
|
||||
public static F: org.bukkit.Note.Tone;
|
||||
public static TONES_COUNT: number;
|
||||
public static values(): org.bukkit.Note.Tone[];
|
||||
public static valueOf(name: string): org.bukkit.Note.Tone;
|
||||
/**
|
||||
* Returns the not sharped id of this tone.
|
||||
*/
|
||||
public getId(): number;
|
||||
/**
|
||||
* Returns the id of this tone. These method allows to return the
|
||||
* sharped id of the tone. If the tone couldn't be sharped it always
|
||||
* return the not sharped id of this tone.
|
||||
*/
|
||||
public getId(sharped: boolean): number;
|
||||
/**
|
||||
* Returns if this tone could be sharped.
|
||||
*/
|
||||
public isSharpable(): boolean;
|
||||
/**
|
||||
* Returns if this tone id is the sharped id of the tone.
|
||||
*/
|
||||
public isSharped(id: number): boolean;
|
||||
/**
|
||||
* Returns the tone to id. Also returning the semitones.
|
||||
*/
|
||||
public static getById(id: number): org.bukkit.Note.Tone;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user