├── .clang-format ├── .gitattributes ├── .gitignore ├── .vscode └── settings.json ├── Console ├── .clang-format ├── Console.vcxproj ├── Console.vcxproj.filters ├── color.cpp ├── color.h ├── command_state.cpp ├── command_state.h ├── console.cpp ├── console.h ├── console_input.cpp ├── console_input.h ├── end_state.cpp ├── end_state.h ├── input_state.cpp ├── input_state.h ├── key_state.cpp ├── key_state.h ├── main.cpp ├── os.h ├── print.cpp ├── print.h ├── service_locator.cpp ├── service_locator.h ├── value_state.cpp └── value_state.h ├── Herobrine.sln ├── Herobrine ├── Herobrine.cpp ├── Herobrine.h ├── Herobrine.vcxproj ├── Herobrine.vcxproj.filters ├── README.zh-CN.md ├── Session.cpp ├── Session.h ├── Session_.cpp ├── Session_.h ├── keyscan.cpp └── main.cpp ├── Himconsole ├── Himconsole.vcxproj ├── Himconsole.vcxproj.filters ├── Makefile ├── Print.cpp ├── README.zh-CN.md ├── Server.cpp ├── Server.h ├── Session.cpp ├── Session.h ├── Session_.cpp ├── Session_.h ├── attribute.cpp ├── attribute.h ├── command │ └── ListenCommand.h ├── console │ ├── AutoComplete.cpp │ ├── AutoComplete.h │ ├── Command.h │ ├── Console.cpp │ ├── Console.h │ ├── Highlight.cpp │ ├── Highlight.h │ ├── command.cpp │ ├── command │ │ ├── ClearCommand.h │ │ ├── ExecCommand.h │ │ ├── HelpCommand.h │ │ └── HistoryCommand.h │ └── console.cpp ├── database │ └── mysql │ │ ├── mysql.cpp │ │ ├── mysql.h │ │ ├── result.cpp │ │ └── result.h ├── himconsole.cpp ├── himconsole.h ├── include.h ├── localization.cpp ├── localization.h ├── main.cpp ├── module.cpp ├── module.h ├── print.cpp ├── print.h └── socket │ └── include.h ├── LICENSE ├── README.en.md ├── README.md ├── banner.jpg ├── doc └── 开发者手册 │ └── 编码规范.md ├── new_version_0.png ├── new_version_1.png └── old_version.jpg /.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/.clang-format -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- 1 | { 2 | "files.encoding": "gbk" 3 | } -------------------------------------------------------------------------------- /Console/.clang-format: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/.clang-format -------------------------------------------------------------------------------- /Console/Console.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/Console.vcxproj -------------------------------------------------------------------------------- /Console/Console.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/Console.vcxproj.filters -------------------------------------------------------------------------------- /Console/color.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/color.cpp -------------------------------------------------------------------------------- /Console/color.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/color.h -------------------------------------------------------------------------------- /Console/command_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/command_state.cpp -------------------------------------------------------------------------------- /Console/command_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/command_state.h -------------------------------------------------------------------------------- /Console/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/console.cpp -------------------------------------------------------------------------------- /Console/console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/console.h -------------------------------------------------------------------------------- /Console/console_input.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/console_input.cpp -------------------------------------------------------------------------------- /Console/console_input.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/console_input.h -------------------------------------------------------------------------------- /Console/end_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/end_state.cpp -------------------------------------------------------------------------------- /Console/end_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/end_state.h -------------------------------------------------------------------------------- /Console/input_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/input_state.cpp -------------------------------------------------------------------------------- /Console/input_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/input_state.h -------------------------------------------------------------------------------- /Console/key_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/key_state.cpp -------------------------------------------------------------------------------- /Console/key_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/key_state.h -------------------------------------------------------------------------------- /Console/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/main.cpp -------------------------------------------------------------------------------- /Console/os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/os.h -------------------------------------------------------------------------------- /Console/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/print.cpp -------------------------------------------------------------------------------- /Console/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/print.h -------------------------------------------------------------------------------- /Console/service_locator.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/service_locator.cpp -------------------------------------------------------------------------------- /Console/service_locator.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/service_locator.h -------------------------------------------------------------------------------- /Console/value_state.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/value_state.cpp -------------------------------------------------------------------------------- /Console/value_state.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Console/value_state.h -------------------------------------------------------------------------------- /Herobrine.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine.sln -------------------------------------------------------------------------------- /Herobrine/Herobrine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Herobrine.cpp -------------------------------------------------------------------------------- /Herobrine/Herobrine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Herobrine.h -------------------------------------------------------------------------------- /Herobrine/Herobrine.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Herobrine.vcxproj -------------------------------------------------------------------------------- /Herobrine/Herobrine.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Herobrine.vcxproj.filters -------------------------------------------------------------------------------- /Herobrine/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/README.zh-CN.md -------------------------------------------------------------------------------- /Herobrine/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Session.cpp -------------------------------------------------------------------------------- /Herobrine/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Session.h -------------------------------------------------------------------------------- /Herobrine/Session_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Session_.cpp -------------------------------------------------------------------------------- /Herobrine/Session_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/Session_.h -------------------------------------------------------------------------------- /Herobrine/keyscan.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/keyscan.cpp -------------------------------------------------------------------------------- /Herobrine/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Herobrine/main.cpp -------------------------------------------------------------------------------- /Himconsole/Himconsole.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Himconsole.vcxproj -------------------------------------------------------------------------------- /Himconsole/Himconsole.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Himconsole.vcxproj.filters -------------------------------------------------------------------------------- /Himconsole/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Makefile -------------------------------------------------------------------------------- /Himconsole/Print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Print.cpp -------------------------------------------------------------------------------- /Himconsole/README.zh-CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/README.zh-CN.md -------------------------------------------------------------------------------- /Himconsole/Server.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Server.cpp -------------------------------------------------------------------------------- /Himconsole/Server.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Server.h -------------------------------------------------------------------------------- /Himconsole/Session.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Session.cpp -------------------------------------------------------------------------------- /Himconsole/Session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Session.h -------------------------------------------------------------------------------- /Himconsole/Session_.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Session_.cpp -------------------------------------------------------------------------------- /Himconsole/Session_.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/Session_.h -------------------------------------------------------------------------------- /Himconsole/attribute.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/attribute.cpp -------------------------------------------------------------------------------- /Himconsole/attribute.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/attribute.h -------------------------------------------------------------------------------- /Himconsole/command/ListenCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/command/ListenCommand.h -------------------------------------------------------------------------------- /Himconsole/console/AutoComplete.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/AutoComplete.cpp -------------------------------------------------------------------------------- /Himconsole/console/AutoComplete.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/AutoComplete.h -------------------------------------------------------------------------------- /Himconsole/console/Command.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/Command.h -------------------------------------------------------------------------------- /Himconsole/console/Console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/Console.cpp -------------------------------------------------------------------------------- /Himconsole/console/Console.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/Console.h -------------------------------------------------------------------------------- /Himconsole/console/Highlight.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/Highlight.cpp -------------------------------------------------------------------------------- /Himconsole/console/Highlight.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/Highlight.h -------------------------------------------------------------------------------- /Himconsole/console/command.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/command.cpp -------------------------------------------------------------------------------- /Himconsole/console/command/ClearCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/command/ClearCommand.h -------------------------------------------------------------------------------- /Himconsole/console/command/ExecCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/command/ExecCommand.h -------------------------------------------------------------------------------- /Himconsole/console/command/HelpCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/command/HelpCommand.h -------------------------------------------------------------------------------- /Himconsole/console/command/HistoryCommand.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/command/HistoryCommand.h -------------------------------------------------------------------------------- /Himconsole/console/console.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/console/console.cpp -------------------------------------------------------------------------------- /Himconsole/database/mysql/mysql.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/database/mysql/mysql.cpp -------------------------------------------------------------------------------- /Himconsole/database/mysql/mysql.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/database/mysql/mysql.h -------------------------------------------------------------------------------- /Himconsole/database/mysql/result.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/database/mysql/result.cpp -------------------------------------------------------------------------------- /Himconsole/database/mysql/result.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/database/mysql/result.h -------------------------------------------------------------------------------- /Himconsole/himconsole.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/himconsole.cpp -------------------------------------------------------------------------------- /Himconsole/himconsole.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/himconsole.h -------------------------------------------------------------------------------- /Himconsole/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/include.h -------------------------------------------------------------------------------- /Himconsole/localization.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/localization.cpp -------------------------------------------------------------------------------- /Himconsole/localization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/localization.h -------------------------------------------------------------------------------- /Himconsole/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/main.cpp -------------------------------------------------------------------------------- /Himconsole/module.cpp: -------------------------------------------------------------------------------- 1 | // Copyright 2019 SMS 2 | // License(Apache-2.0) 3 | 4 | #include "module.h" 5 | 6 | 7 | -------------------------------------------------------------------------------- /Himconsole/module.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/module.h -------------------------------------------------------------------------------- /Himconsole/print.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/print.cpp -------------------------------------------------------------------------------- /Himconsole/print.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/print.h -------------------------------------------------------------------------------- /Himconsole/socket/include.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/Himconsole/socket/include.h -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/LICENSE -------------------------------------------------------------------------------- /README.en.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/README.en.md -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/README.md -------------------------------------------------------------------------------- /banner.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/banner.jpg -------------------------------------------------------------------------------- /doc/开发者手册/编码规范.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/doc/开发者手册/编码规范.md -------------------------------------------------------------------------------- /new_version_0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/new_version_0.png -------------------------------------------------------------------------------- /new_version_1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/new_version_1.png -------------------------------------------------------------------------------- /old_version.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ShenMian000/Herobrine/HEAD/old_version.jpg --------------------------------------------------------------------------------