├── .gitattributes ├── .gitignore ├── ChessAI.sln ├── ChessAI ├── 0.png ├── 1.png ├── 1008.png ├── 2.png ├── AboutDlg.cpp ├── AboutDlg.h ├── ChessAI.aps ├── ChessAI.cpp ├── ChessAI.h ├── ChessAI.rc ├── ChessAI.vcxproj ├── ChessAI.vcxproj.filters ├── ChessAI.vcxproj.user ├── ChessAIDlg.cpp ├── ChessAIDlg.h ├── ClassDiagram.cd ├── ClassDiagram1.cd ├── Config.cpp ├── Config.h ├── ConnectDlg.cpp ├── ConnectDlg.h ├── DownloadDlg.cpp ├── DownloadDlg.h ├── EditEngineDlg.cpp ├── EditEngineDlg.h ├── Engine.cpp ├── Engine.h ├── EngineConfig.h ├── EngineDlg.cpp ├── EngineDlg.h ├── Game.cpp ├── Game.h ├── Gdi.cpp ├── Gdi.h ├── InputFenDlg.cpp ├── InputFenDlg.h ├── OpenBook.cpp ├── OpenBook.h ├── OpenBookDlg.cpp ├── OpenBookDlg.h ├── Picture.cpp ├── Picture.h ├── Process.cpp ├── Process.h ├── QButton.cpp ├── QButton.h ├── QClientSocket.cpp ├── QClientSocket.h ├── QEdit.cpp ├── QEdit.h ├── QEncrypt.cpp ├── QEncrypt.h ├── QHttp.cpp ├── QHttp.h ├── QPacket.cpp ├── QPacket.h ├── QRoundPicture.cpp ├── QRoundPicture.h ├── QSqlite.cpp ├── QSqlite.h ├── QStatusBar.cpp ├── QStatusBar.h ├── QTab.cpp ├── QTab.h ├── SkinColors.cpp ├── SkinColors.h ├── Utils.cpp ├── Utils.h ├── aa.db ├── best1.pt ├── d3d9.cpp ├── d3d9.h ├── framework.h ├── http.cpp ├── http.h ├── md5.cpp ├── md5.h ├── pch.cpp ├── pch.h ├── pic │ ├── 棋盘.png │ ├── 红仕.png │ ├── 红兵.png │ ├── 红帅.png │ ├── 红帅1.png │ ├── 红炮.png │ ├── 红相.png │ ├── 红车.png │ ├── 红马.png │ ├── 黑卒.png │ ├── 黑士.png │ ├── 黑将.png │ ├── 黑炮.png │ ├── 黑象.png │ ├── 黑车.png │ └── 黑马.png ├── qJson.cpp ├── qJson.h ├── res │ ├── 1.bmp │ ├── ChessAI.ico │ ├── ChessAI.rc2 │ ├── LOGO.bmp │ ├── begin.ico │ ├── exec.ico │ ├── swap.ico │ └── test.ico ├── resource.h ├── setting.json ├── skin │ ├── 棋盘.png │ ├── 红仕.png │ ├── 红兵.png │ ├── 红帅.png │ ├── 红炮.png │ ├── 红相.png │ ├── 红车.png │ ├── 红马.png │ ├── 黑卒.png │ ├── 黑士.png │ ├── 黑将.png │ ├── 黑炮.png │ ├── 黑象.png │ ├── 黑车.png │ └── 黑马.png ├── sqlite3.h ├── sqlite3.lib ├── stepIdx.h ├── targetver.h ├── unzip.cpp ├── unzip.h ├── yolov7.cpp ├── yolov7.h ├── yolov7_OnnxRuntime.cpp ├── yolov7_OnnxRuntime.h └── 㩃啜敳獲䅜浤湩獩牴瑡牯䑜獥瑫灯쭜퇘럕뮼뾪뺪뿖モㄲ⸹扯k ├── README.md ├── git └── pic ├── 1.png └── 2.png /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/.gitignore -------------------------------------------------------------------------------- /ChessAI.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI.sln -------------------------------------------------------------------------------- /ChessAI/0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/0.png -------------------------------------------------------------------------------- /ChessAI/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/1.png -------------------------------------------------------------------------------- /ChessAI/1008.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/1008.png -------------------------------------------------------------------------------- /ChessAI/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/2.png -------------------------------------------------------------------------------- /ChessAI/AboutDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/AboutDlg.cpp -------------------------------------------------------------------------------- /ChessAI/AboutDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/AboutDlg.h -------------------------------------------------------------------------------- /ChessAI/ChessAI.aps: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.aps -------------------------------------------------------------------------------- /ChessAI/ChessAI.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.cpp -------------------------------------------------------------------------------- /ChessAI/ChessAI.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.h -------------------------------------------------------------------------------- /ChessAI/ChessAI.rc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.rc -------------------------------------------------------------------------------- /ChessAI/ChessAI.vcxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.vcxproj -------------------------------------------------------------------------------- /ChessAI/ChessAI.vcxproj.filters: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.vcxproj.filters -------------------------------------------------------------------------------- /ChessAI/ChessAI.vcxproj.user: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAI.vcxproj.user -------------------------------------------------------------------------------- /ChessAI/ChessAIDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAIDlg.cpp -------------------------------------------------------------------------------- /ChessAI/ChessAIDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ChessAIDlg.h -------------------------------------------------------------------------------- /ChessAI/ClassDiagram.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ClassDiagram.cd -------------------------------------------------------------------------------- /ChessAI/ClassDiagram1.cd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ClassDiagram1.cd -------------------------------------------------------------------------------- /ChessAI/Config.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Config.cpp -------------------------------------------------------------------------------- /ChessAI/Config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Config.h -------------------------------------------------------------------------------- /ChessAI/ConnectDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ConnectDlg.cpp -------------------------------------------------------------------------------- /ChessAI/ConnectDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/ConnectDlg.h -------------------------------------------------------------------------------- /ChessAI/DownloadDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/DownloadDlg.cpp -------------------------------------------------------------------------------- /ChessAI/DownloadDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/DownloadDlg.h -------------------------------------------------------------------------------- /ChessAI/EditEngineDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/EditEngineDlg.cpp -------------------------------------------------------------------------------- /ChessAI/EditEngineDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/EditEngineDlg.h -------------------------------------------------------------------------------- /ChessAI/Engine.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Engine.cpp -------------------------------------------------------------------------------- /ChessAI/Engine.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Engine.h -------------------------------------------------------------------------------- /ChessAI/EngineConfig.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/EngineConfig.h -------------------------------------------------------------------------------- /ChessAI/EngineDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/EngineDlg.cpp -------------------------------------------------------------------------------- /ChessAI/EngineDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/EngineDlg.h -------------------------------------------------------------------------------- /ChessAI/Game.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Game.cpp -------------------------------------------------------------------------------- /ChessAI/Game.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Game.h -------------------------------------------------------------------------------- /ChessAI/Gdi.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Gdi.cpp -------------------------------------------------------------------------------- /ChessAI/Gdi.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Gdi.h -------------------------------------------------------------------------------- /ChessAI/InputFenDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/InputFenDlg.cpp -------------------------------------------------------------------------------- /ChessAI/InputFenDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/InputFenDlg.h -------------------------------------------------------------------------------- /ChessAI/OpenBook.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/OpenBook.cpp -------------------------------------------------------------------------------- /ChessAI/OpenBook.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/OpenBook.h -------------------------------------------------------------------------------- /ChessAI/OpenBookDlg.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/OpenBookDlg.cpp -------------------------------------------------------------------------------- /ChessAI/OpenBookDlg.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/OpenBookDlg.h -------------------------------------------------------------------------------- /ChessAI/Picture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Picture.cpp -------------------------------------------------------------------------------- /ChessAI/Picture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Picture.h -------------------------------------------------------------------------------- /ChessAI/Process.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Process.cpp -------------------------------------------------------------------------------- /ChessAI/Process.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Process.h -------------------------------------------------------------------------------- /ChessAI/QButton.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QButton.cpp -------------------------------------------------------------------------------- /ChessAI/QButton.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QButton.h -------------------------------------------------------------------------------- /ChessAI/QClientSocket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QClientSocket.cpp -------------------------------------------------------------------------------- /ChessAI/QClientSocket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QClientSocket.h -------------------------------------------------------------------------------- /ChessAI/QEdit.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QEdit.cpp -------------------------------------------------------------------------------- /ChessAI/QEdit.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QEdit.h -------------------------------------------------------------------------------- /ChessAI/QEncrypt.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QEncrypt.cpp -------------------------------------------------------------------------------- /ChessAI/QEncrypt.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QEncrypt.h -------------------------------------------------------------------------------- /ChessAI/QHttp.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QHttp.cpp -------------------------------------------------------------------------------- /ChessAI/QHttp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QHttp.h -------------------------------------------------------------------------------- /ChessAI/QPacket.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QPacket.cpp -------------------------------------------------------------------------------- /ChessAI/QPacket.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QPacket.h -------------------------------------------------------------------------------- /ChessAI/QRoundPicture.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QRoundPicture.cpp -------------------------------------------------------------------------------- /ChessAI/QRoundPicture.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QRoundPicture.h -------------------------------------------------------------------------------- /ChessAI/QSqlite.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QSqlite.cpp -------------------------------------------------------------------------------- /ChessAI/QSqlite.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QSqlite.h -------------------------------------------------------------------------------- /ChessAI/QStatusBar.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QStatusBar.cpp -------------------------------------------------------------------------------- /ChessAI/QStatusBar.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QStatusBar.h -------------------------------------------------------------------------------- /ChessAI/QTab.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QTab.cpp -------------------------------------------------------------------------------- /ChessAI/QTab.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/QTab.h -------------------------------------------------------------------------------- /ChessAI/SkinColors.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/SkinColors.cpp -------------------------------------------------------------------------------- /ChessAI/SkinColors.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/SkinColors.h -------------------------------------------------------------------------------- /ChessAI/Utils.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Utils.cpp -------------------------------------------------------------------------------- /ChessAI/Utils.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/Utils.h -------------------------------------------------------------------------------- /ChessAI/aa.db: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ChessAI/best1.pt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/best1.pt -------------------------------------------------------------------------------- /ChessAI/d3d9.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/d3d9.cpp -------------------------------------------------------------------------------- /ChessAI/d3d9.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/d3d9.h -------------------------------------------------------------------------------- /ChessAI/framework.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/framework.h -------------------------------------------------------------------------------- /ChessAI/http.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/http.cpp -------------------------------------------------------------------------------- /ChessAI/http.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/http.h -------------------------------------------------------------------------------- /ChessAI/md5.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/md5.cpp -------------------------------------------------------------------------------- /ChessAI/md5.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/md5.h -------------------------------------------------------------------------------- /ChessAI/pch.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pch.cpp -------------------------------------------------------------------------------- /ChessAI/pch.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pch.h -------------------------------------------------------------------------------- /ChessAI/pic/棋盘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/棋盘.png -------------------------------------------------------------------------------- /ChessAI/pic/红仕.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红仕.png -------------------------------------------------------------------------------- /ChessAI/pic/红兵.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红兵.png -------------------------------------------------------------------------------- /ChessAI/pic/红帅.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红帅.png -------------------------------------------------------------------------------- /ChessAI/pic/红帅1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红帅1.png -------------------------------------------------------------------------------- /ChessAI/pic/红炮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红炮.png -------------------------------------------------------------------------------- /ChessAI/pic/红相.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红相.png -------------------------------------------------------------------------------- /ChessAI/pic/红车.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红车.png -------------------------------------------------------------------------------- /ChessAI/pic/红马.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/红马.png -------------------------------------------------------------------------------- /ChessAI/pic/黑卒.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑卒.png -------------------------------------------------------------------------------- /ChessAI/pic/黑士.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑士.png -------------------------------------------------------------------------------- /ChessAI/pic/黑将.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑将.png -------------------------------------------------------------------------------- /ChessAI/pic/黑炮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑炮.png -------------------------------------------------------------------------------- /ChessAI/pic/黑象.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑象.png -------------------------------------------------------------------------------- /ChessAI/pic/黑车.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑车.png -------------------------------------------------------------------------------- /ChessAI/pic/黑马.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/pic/黑马.png -------------------------------------------------------------------------------- /ChessAI/qJson.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/qJson.cpp -------------------------------------------------------------------------------- /ChessAI/qJson.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/qJson.h -------------------------------------------------------------------------------- /ChessAI/res/1.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/1.bmp -------------------------------------------------------------------------------- /ChessAI/res/ChessAI.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/ChessAI.ico -------------------------------------------------------------------------------- /ChessAI/res/ChessAI.rc2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/ChessAI.rc2 -------------------------------------------------------------------------------- /ChessAI/res/LOGO.bmp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/LOGO.bmp -------------------------------------------------------------------------------- /ChessAI/res/begin.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/begin.ico -------------------------------------------------------------------------------- /ChessAI/res/exec.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/exec.ico -------------------------------------------------------------------------------- /ChessAI/res/swap.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/swap.ico -------------------------------------------------------------------------------- /ChessAI/res/test.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/res/test.ico -------------------------------------------------------------------------------- /ChessAI/resource.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/resource.h -------------------------------------------------------------------------------- /ChessAI/setting.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/setting.json -------------------------------------------------------------------------------- /ChessAI/skin/棋盘.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/棋盘.png -------------------------------------------------------------------------------- /ChessAI/skin/红仕.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红仕.png -------------------------------------------------------------------------------- /ChessAI/skin/红兵.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红兵.png -------------------------------------------------------------------------------- /ChessAI/skin/红帅.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红帅.png -------------------------------------------------------------------------------- /ChessAI/skin/红炮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红炮.png -------------------------------------------------------------------------------- /ChessAI/skin/红相.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红相.png -------------------------------------------------------------------------------- /ChessAI/skin/红车.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红车.png -------------------------------------------------------------------------------- /ChessAI/skin/红马.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/红马.png -------------------------------------------------------------------------------- /ChessAI/skin/黑卒.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑卒.png -------------------------------------------------------------------------------- /ChessAI/skin/黑士.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑士.png -------------------------------------------------------------------------------- /ChessAI/skin/黑将.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑将.png -------------------------------------------------------------------------------- /ChessAI/skin/黑炮.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑炮.png -------------------------------------------------------------------------------- /ChessAI/skin/黑象.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑象.png -------------------------------------------------------------------------------- /ChessAI/skin/黑车.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑车.png -------------------------------------------------------------------------------- /ChessAI/skin/黑马.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/skin/黑马.png -------------------------------------------------------------------------------- /ChessAI/sqlite3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/sqlite3.h -------------------------------------------------------------------------------- /ChessAI/sqlite3.lib: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/sqlite3.lib -------------------------------------------------------------------------------- /ChessAI/stepIdx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/stepIdx.h -------------------------------------------------------------------------------- /ChessAI/targetver.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/targetver.h -------------------------------------------------------------------------------- /ChessAI/unzip.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/unzip.cpp -------------------------------------------------------------------------------- /ChessAI/unzip.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/unzip.h -------------------------------------------------------------------------------- /ChessAI/yolov7.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/yolov7.cpp -------------------------------------------------------------------------------- /ChessAI/yolov7.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/yolov7.h -------------------------------------------------------------------------------- /ChessAI/yolov7_OnnxRuntime.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/yolov7_OnnxRuntime.cpp -------------------------------------------------------------------------------- /ChessAI/yolov7_OnnxRuntime.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/ChessAI/yolov7_OnnxRuntime.h -------------------------------------------------------------------------------- /ChessAI/㩃啜敳獲䅜浤湩獩牴瑡牯䑜獥瑫灯쭜퇘럕뮼뾪뺪뿖モㄲ⸹扯k: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/README.md -------------------------------------------------------------------------------- /git: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /pic/1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/pic/1.png -------------------------------------------------------------------------------- /pic/2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/9479421/ChessAI/HEAD/pic/2.png --------------------------------------------------------------------------------