├── .gitignore ├── CBR.svg ├── ChatBridgeReforged_MC.py ├── ChatBridgeReforged_MC ├── LICENSE ├── __main__.py ├── advanced_config.json ├── chatbridgereforged_mc │ ├── __init__.py │ ├── constants.py │ ├── lib │ │ ├── config.py │ │ ├── guardian.py │ │ ├── logger.py │ │ └── zip.py │ ├── net │ │ ├── encrypt.py │ │ ├── network.py │ │ ├── process.py │ │ └── tcpclient.py │ ├── resources.py │ └── utils.py ├── introduction-zh_cn.md ├── introduction.md ├── mcdreforged.plugin.json └── requirements.txt ├── ChatBridgeReforged_Server.py ├── ChatBridgeReforged_cqhttp.py ├── LICENSE ├── README.md ├── cbr ├── __main__.py ├── cbr_server.py ├── lib │ ├── client.py │ ├── config.py │ ├── logger.py │ └── zip.py ├── net │ ├── encrypt.py │ ├── network.py │ ├── process.py │ └── tcpserver.py ├── plugin │ ├── cbrinterface.py │ ├── default_plugin.py │ ├── info.py │ ├── plugin.py │ ├── plugin_event.py │ └── rtext.py └── resources │ ├── default_config.yml │ ├── formatter.py │ └── protocol.py ├── doc ├── cqhttp.md ├── mermaid.md ├── plugin.md └── rtext.md ├── plugins ├── cqhttp.py └── not_sample_plugin.py └── requirements.txt /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/.gitignore -------------------------------------------------------------------------------- /CBR.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/CBR.svg -------------------------------------------------------------------------------- /ChatBridgeReforged_MC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/LICENSE -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/__main__.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/advanced_config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/advanced_config.json -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/__init__.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/constants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/constants.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/lib/config.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/lib/guardian.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/lib/guardian.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/lib/logger.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/lib/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/lib/zip.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/net/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/net/encrypt.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/net/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/net/network.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/net/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/net/process.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/net/tcpclient.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/net/tcpclient.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/resources.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/resources.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/chatbridgereforged_mc/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/chatbridgereforged_mc/utils.py -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/introduction-zh_cn.md: -------------------------------------------------------------------------------- 1 | ChatBridge 重制, 用于各个客户端(服务器或者其他bot)之间的交互桥梁,多物互联(不是) 2 | -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/introduction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/introduction.md -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/mcdreforged.plugin.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_MC/mcdreforged.plugin.json -------------------------------------------------------------------------------- /ChatBridgeReforged_MC/requirements.txt: -------------------------------------------------------------------------------- 1 | mcdreforged 2 | pycryptodomex -------------------------------------------------------------------------------- /ChatBridgeReforged_Server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_Server.py -------------------------------------------------------------------------------- /ChatBridgeReforged_cqhttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/ChatBridgeReforged_cqhttp.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/README.md -------------------------------------------------------------------------------- /cbr/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/__main__.py -------------------------------------------------------------------------------- /cbr/cbr_server.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/cbr_server.py -------------------------------------------------------------------------------- /cbr/lib/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/lib/client.py -------------------------------------------------------------------------------- /cbr/lib/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/lib/config.py -------------------------------------------------------------------------------- /cbr/lib/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/lib/logger.py -------------------------------------------------------------------------------- /cbr/lib/zip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/lib/zip.py -------------------------------------------------------------------------------- /cbr/net/encrypt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/net/encrypt.py -------------------------------------------------------------------------------- /cbr/net/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/net/network.py -------------------------------------------------------------------------------- /cbr/net/process.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/net/process.py -------------------------------------------------------------------------------- /cbr/net/tcpserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/net/tcpserver.py -------------------------------------------------------------------------------- /cbr/plugin/cbrinterface.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/plugin/cbrinterface.py -------------------------------------------------------------------------------- /cbr/plugin/default_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/plugin/default_plugin.py -------------------------------------------------------------------------------- /cbr/plugin/info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/plugin/info.py -------------------------------------------------------------------------------- /cbr/plugin/plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/plugin/plugin.py -------------------------------------------------------------------------------- /cbr/plugin/plugin_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/plugin/plugin_event.py -------------------------------------------------------------------------------- /cbr/plugin/rtext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/plugin/rtext.py -------------------------------------------------------------------------------- /cbr/resources/default_config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/resources/default_config.yml -------------------------------------------------------------------------------- /cbr/resources/formatter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/resources/formatter.py -------------------------------------------------------------------------------- /cbr/resources/protocol.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/cbr/resources/protocol.py -------------------------------------------------------------------------------- /doc/cqhttp.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/doc/cqhttp.md -------------------------------------------------------------------------------- /doc/mermaid.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/doc/mermaid.md -------------------------------------------------------------------------------- /doc/plugin.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/doc/plugin.md -------------------------------------------------------------------------------- /doc/rtext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/doc/rtext.md -------------------------------------------------------------------------------- /plugins/cqhttp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/plugins/cqhttp.py -------------------------------------------------------------------------------- /plugins/not_sample_plugin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/R1ckyH/ChatBridgeReforged/HEAD/plugins/not_sample_plugin.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | trio 2 | mcdreforged 3 | pycryptodomex 4 | # for cqhttp 5 | websocket-client --------------------------------------------------------------------------------