2019-08-07 18:14:29 +08:00
|
|
|
|
# Mirai
|
2019-12-16 04:03:51 +08:00
|
|
|
|
[![Codacy Badge](https://api.codacy.com/project/badge/Grade/7d0ec3ea244b424f93a6f59038a9deeb)](https://www.codacy.com/manual/Him188/mirai?utm_source=github.com&utm_medium=referral&utm_content=mamoe/mirai&utm_campaign=Badge_Grade)
|
|
|
|
|
[![Gitter](https://badges.gitter.im/mamoe/mirai.svg)](https://gitter.im/mamoe/mirai?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge)
|
|
|
|
|
[![Actions Status](https://github.com/mamoe/mirai/workflows/CI/badge.svg)](https://github.com/mamoe/mirai/actions)
|
|
|
|
|
[![Download](https://api.bintray.com/packages/him188moe/mirai/mirai-core/images/download.svg)](https://bintray.com/him188moe/mirai/mirai-core/)
|
2019-12-05 20:12:51 +08:00
|
|
|
|
**[English](README-eng.md)**
|
2019-08-08 12:45:12 +08:00
|
|
|
|
|
2019-12-05 20:12:51 +08:00
|
|
|
|
**TIM PC 协议** 跨平台 QQ 协议支持库.
|
2019-12-25 01:50:32 +08:00
|
|
|
|
**纯 Kotlin 实现协议和支持框架. 目前可运行在 JVM 或 Android.**
|
|
|
|
|
部分协议来自网络上开源项目.
|
|
|
|
|
|
|
|
|
|
**一切开发旨在学习,请勿用于非法用途**
|
2019-09-01 01:57:14 +08:00
|
|
|
|
|
2019-12-20 10:50:01 +08:00
|
|
|
|
您可在 Gitter 提问, 或加入 QQ 群: 655057127
|
|
|
|
|
|
2019-12-04 23:41:48 +08:00
|
|
|
|
## Update log
|
|
|
|
|
在 [Project](https://github.com/mamoe/mirai/projects/1) 查看已支持功能和计划
|
|
|
|
|
在 [UpdateLog](https://github.com/mamoe/mirai/blob/master/UpdateLog.md) 查看版本更新记录
|
|
|
|
|
|
2019-12-25 01:50:32 +08:00
|
|
|
|
## Contribution
|
|
|
|
|
|
|
|
|
|
我(Him188)将会一直维护这个项目,除非遇到不可抗力因素。
|
|
|
|
|
|
|
|
|
|
我们欢迎一切形式的贡献。
|
|
|
|
|
我们也期待有更多人能加入 Mirai 的开发。
|
|
|
|
|
|
|
|
|
|
若在使用过程中有任何疑问, 可提交 issue 或是邮件联系. 我们希望 Mirai 变得更易用.
|
|
|
|
|
|
2019-12-07 13:26:11 +08:00
|
|
|
|
您的 star 是对我们最大的鼓励(点击项目右上角);
|
|
|
|
|
若要关注版本更新, 请点击 star 旁边的 watch
|
2019-12-06 12:16:29 +08:00
|
|
|
|
|
2019-12-05 20:12:51 +08:00
|
|
|
|
## Use as a library
|
2019-12-25 01:50:32 +08:00
|
|
|
|
**把 Mirai 作为库内置于您的项目中使用.**
|
2019-12-05 20:12:51 +08:00
|
|
|
|
Mirai 只上传在 `jcenter`, 因此请确保在 `build.gradle` 添加 `jcenter()` 仓库
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```kotlin
|
|
|
|
|
repositories{
|
|
|
|
|
jcenter()
|
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
若您需要使用在跨平台项目, 您需要对各个目标平台添加不同的依赖.
|
|
|
|
|
若您只需要使用在单一平台, 则只需要添加一项该平台的依赖.
|
|
|
|
|
|
2019-12-01 22:19:22 +08:00
|
|
|
|
您需要将 `VERSION` 替换为最新的版本(如 `0.5.1`): [![Download](https://api.bintray.com/packages/him188moe/mirai/mirai-core/images/download.svg)](https://bintray.com/him188moe/mirai/mirai-core/)
|
|
|
|
|
Mirai 目前还处于实验性阶段, 建议您时刻保持最新版本.
|
2019-11-23 22:34:57 +08:00
|
|
|
|
|
2019-12-19 19:13:36 +08:00
|
|
|
|
现在 Mirai 只支持 TIM PC 协议.
|
2019-11-23 22:44:23 +08:00
|
|
|
|
**common**
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```kotlin
|
2019-12-19 17:25:49 +08:00
|
|
|
|
implementation("net.mamoe:mirai-core-timpc-common:VERSION")
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```
|
2019-11-23 22:44:23 +08:00
|
|
|
|
**jvm**
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```kotlin
|
2019-12-19 17:25:49 +08:00
|
|
|
|
implementation("net.mamoe:mirai-core-timpc-jvm:VERSION")
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```
|
2019-11-23 22:44:23 +08:00
|
|
|
|
**android**
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```kotlin
|
2019-12-19 17:25:49 +08:00
|
|
|
|
implementation("net.mamoe:mirai-core-timpc-android:VERSION")
|
2019-11-23 22:34:57 +08:00
|
|
|
|
```
|
2020-01-01 16:51:20 +08:00
|
|
|
|
#### Performance
|
|
|
|
|
Android 上, Mirai 运行需使用 80M 内存.
|
|
|
|
|
JVM 上需 120M-150M 内存 (一个 Bot)
|
2019-10-27 23:20:53 +08:00
|
|
|
|
## Try
|
|
|
|
|
|
2019-11-06 21:54:31 +08:00
|
|
|
|
### On JVM or Android
|
2019-10-27 23:20:53 +08:00
|
|
|
|
现在您可以开始体验低付出高效率的 Mirai
|
2019-09-16 22:25:55 +08:00
|
|
|
|
|
2019-11-02 18:49:48 +08:00
|
|
|
|
```kotlin
|
2019-12-19 23:33:19 +08:00
|
|
|
|
val bot = TIMPC.Bot(qqId, password).alsoLogin()
|
2019-11-28 12:51:02 +08:00
|
|
|
|
bot.subscribeMessages {
|
|
|
|
|
"你好" reply "你好!"
|
|
|
|
|
"profile" reply { sender.queryProfile() }
|
|
|
|
|
contains("图片"){ File(imagePath).send() }
|
2019-11-02 18:49:48 +08:00
|
|
|
|
}
|
|
|
|
|
bot.subscribeAlways<MemberPermissionChangedEvent> {
|
|
|
|
|
if (it.kind == BECOME_OPERATOR)
|
2019-11-28 12:51:02 +08:00
|
|
|
|
reply("${it.member.id} 成为了管理员")
|
2019-11-02 18:49:48 +08:00
|
|
|
|
}
|
|
|
|
|
```
|
|
|
|
|
|
2019-09-08 01:24:18 +08:00
|
|
|
|
1. Clone
|
2019-10-09 11:10:35 +08:00
|
|
|
|
2. Import as Gradle project
|
2019-11-02 18:49:48 +08:00
|
|
|
|
3. 运行 Demo 程序: [mirai-demo](#mirai-demo) 示例和演示程序
|
2019-10-27 03:36:26 +08:00
|
|
|
|
|
2019-11-16 17:49:58 +08:00
|
|
|
|
|
2019-12-16 07:59:24 +08:00
|
|
|
|
## Build Requirements
|
2019-10-27 23:20:53 +08:00
|
|
|
|
|
2019-12-16 07:59:24 +08:00
|
|
|
|
- Kotlin 1.3.61
|
|
|
|
|
- JDK 8
|
|
|
|
|
- Android SDK 29
|
2019-10-27 23:20:53 +08:00
|
|
|
|
|
2019-11-16 18:04:22 +08:00
|
|
|
|
### Using Java
|
|
|
|
|
Q: 是否能只使用 Java 而不使用 Kotlin 来调用 Mirai?
|
2019-12-06 10:34:10 +08:00
|
|
|
|
A: 正在适配中.
|
|
|
|
|
Mirai 大量使用协程, 内联, 扩展等 Kotlin 专有特性. 在 Java 调用这些 API 将会非常吃力.
|
|
|
|
|
我们正在为 Java 调用提供转接。
|
2019-11-16 18:04:22 +08:00
|
|
|
|
|
2019-10-27 23:20:53 +08:00
|
|
|
|
#### Libraries used
|
|
|
|
|
Mirai 使用以下开源库:
|
2019-11-02 18:36:33 +08:00
|
|
|
|
- [kotlin-stdlib](https://github.com/JetBrains/kotlin)
|
|
|
|
|
- [kotlinx-coroutines](https://github.com/Kotlin/kotlinx.coroutines)
|
|
|
|
|
- [kotlinx-io](https://github.com/Kotlin/kotlinx-io)
|
|
|
|
|
- [kotlin-reflect](https://github.com/JetBrains/kotlin)
|
|
|
|
|
- [pcap4j](https://github.com/kaitoy/pcap4j)
|
|
|
|
|
- [atomicfu](https://github.com/Kotlin/kotlinx.atomicfu)
|
|
|
|
|
- [ktor](https://github.com/ktorio/ktor)
|
|
|
|
|
- [tornadofx](https://github.com/edvin/tornadofx)
|
|
|
|
|
- [javafx](https://github.com/openjdk/jfx)
|
2019-12-01 22:18:16 +08:00
|
|
|
|
- [kotlinx-serialization](https://github.com/Kotlin/kotlinx.serialization)
|
2019-10-27 23:20:53 +08:00
|
|
|
|
|
2019-12-30 19:45:01 +08:00
|
|
|
|
## License
|
2019-12-31 13:21:08 +08:00
|
|
|
|
协议原版权归属腾讯科技股份有限公司所有,本项目其他代码遵守:
|
2019-12-30 19:45:01 +08:00
|
|
|
|
**GNU AFFERO GENERAL PUBLIC LICENSE version 3**
|
2019-12-31 13:21:08 +08:00
|
|
|
|
|
|
|
|
|
其中部分要求:
|
2019-12-30 19:45:01 +08:00
|
|
|
|
- (见 LICENSE 第 13 节) 尽管本许可协议有其他规定,但如果您修改本程序,则修改后的版本必须显着地为所有通过计算机网络与它进行远程交互的用户(如果您的版本支持这种交互)提供从网络服务器通过一些标准或惯用的软件复制方法**免费**访问相应的**源代码**的机会
|
|
|
|
|
- (见 LICENSE 第 4 节) 您可以免费或收费地传递这个项目的源代码或目标代码(即编译结果), **但前提是提供明显的版权声明** (您需要标注本 `GitHub` 项目地址)
|
|
|
|
|
|
2019-12-31 13:21:08 +08:00
|
|
|
|
对开源的尊重是一个程序员最基本的品质
|
2019-12-30 19:45:01 +08:00
|
|
|
|
|
2019-12-24 01:50:04 +08:00
|
|
|
|
## Wiki
|
2019-12-24 01:51:50 +08:00
|
|
|
|
在 [Wiki](https://github.com/mamoe/mirai/wiki/Development-Guide---Kotlin) 中查看各类帮助
|