├── .gitignore ├── X.png ├── XQlightPy ├── __init__.py ├── book.py ├── cchess.py ├── position.py └── search.py ├── arrowline.py ├── background.png ├── chessboard.py ├── chessboard2.py ├── edit_situation.py ├── fonts └── msyh.ttf ├── global_var.py ├── img ├── ba.svg ├── background.png ├── background2.png ├── bb.svg ├── bc.svg ├── bk.svg ├── bn.svg ├── bp.svg ├── br.svg ├── iconlist.py ├── main.py ├── mask.svg ├── mask2.svg ├── readme.md ├── wa.svg ├── wb.svg ├── wc.svg ├── wk.svg ├── wn.svg ├── wp.svg └── wr.svg ├── main.kv ├── main.py ├── mergexqf.py ├── movesnote.py ├── myScreen.py ├── mymdtextfield.py ├── onelinelistfiles.py ├── onelinelistpath.py ├── onelinelistpathwithfile.py ├── onelinelistwithid.py ├── piece.py ├── piecewidget.py ├── piecewidget2.py ├── readme.md ├── screeneditsituation.kv ├── screeninfo.kv ├── screeninputfilename.kv ├── screeninputinfo.kv ├── screenmain copy.kv ├── screenmain.kv ├── screenmenu.kv ├── screenmergexqf.kv ├── screenmoves.kv ├── screenselectfile.kv ├── screenselectpath.kv ├── screensetengine.kv ├── screensetui.kv ├── screenwelcome.kv ├── selectedmaskwidget.py ├── selectedmaskwidget2.py ├── selectfile.py ├── selectpath.py ├── situation.py ├── tree2txt.py ├── tree2xqf.py ├── uci └── outer │ ├── CCStockFishArmv8 │ ├── entry.nnue │ └── exe_CCStockFishArmv8 ├── uci_engine.py ├── x-chess.png ├── x_chess_cfg.py ├── x_chessapp.py ├── xbak ├── 01.xqf.2024-02-01 21-58-15 ├── 02.xqf.2024-01-20 15-16-09 ├── 111111.xqf.2024-01-22 14-51-16 ├── p02 布局三大原则初探02.xqf.2024-01-20 18-40-09 ├── 测试XQF04.xqf.2024-01-23 20-17-15 ├── 测试删除.xqf.2024-01-22 17-47-18 ├── 测试删除.xqf.2024-01-22 17-48-03 ├── 测试删除.xqf.2024-01-22 17-49-55 ├── 测试删除.xqf.2024-01-22 17-50-47 ├── 测试删除.xqf.2024-01-22 18-08-56 └── 测试删除.xqf.2024-01-22 18-44-27 ├── xqf ├── 00.xqf ├── 02.xqf └── x159.xqf ├── xqlight_ai.py └── 棋子 ├── 01background.png ├── 02background.png ├── cnsvc矢量.jpg ├── cnsvc矢量 └── img │ ├── ba.svg │ ├── background.png │ ├── bb.svg │ ├── bc.svg │ ├── bk.svg │ ├── bn.svg │ ├── bp.svg │ ├── br.svg │ ├── wa.svg │ ├── wb.svg │ ├── wc.svg │ ├── wk.svg │ ├── wn.svg │ ├── wp.svg │ └── wr.svg ├── 一览对比图.png ├── 内置棋子.jpg ├── 内置棋子 └── img │ ├── ba.svg │ ├── background.png │ ├── background2.png │ ├── bb.svg │ ├── bc.svg │ ├── bk.svg │ ├── bn.svg │ ├── bp.svg │ ├── br.svg │ ├── iconlist.py │ ├── main.py │ ├── mask.svg │ ├── mask2.svg │ ├── readme.md │ ├── wa.svg │ ├── wb.svg │ ├── wc.svg │ ├── wk.svg │ ├── wn.svg │ ├── wp.svg │ └── wr.svg ├── 棋子.zip ├── 棋路红黑.jpg ├── 棋路红黑 └── img │ ├── ba.svg │ ├── background.png │ ├── bb.svg │ ├── bc.svg │ ├── bk.svg │ ├── bn.svg │ ├── bp.svg │ ├── br.svg │ ├── wa.svg │ ├── wb.svg │ ├── wc.svg │ ├── wk.svg │ ├── wn.svg │ ├── wp.svg │ └── wr.svg ├── 燕岭隶书.jpg ├── 燕岭隶书 └── img │ ├── ba.svg │ ├── background.png │ ├── bb.svg │ ├── bc.svg │ ├── bk.svg │ ├── bn.svg │ ├── bp.svg │ ├── br.svg │ ├── wa.svg │ ├── wb.svg │ ├── wc.svg │ ├── wk.svg │ ├── wn.svg │ ├── wp.svg │ └── wr.svg ├── 红黑字.jpg └── 红黑字 └── img ├── ba.svg ├── background.png ├── bb.svg ├── bc.svg ├── bk.svg ├── bn.svg ├── bp.svg ├── br.svg ├── wa.svg ├── wb.svg ├── wc.svg ├── wk.svg ├── wn.svg ├── wp.svg └── wr.svg /.gitignore: -------------------------------------------------------------------------------- 1 | **/__pycache__ 2 | *.txt 3 | *.ini 4 | -------------------------------------------------------------------------------- /X.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/X.png -------------------------------------------------------------------------------- /XQlightPy/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /XQlightPy/book.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/XQlightPy/book.py -------------------------------------------------------------------------------- /XQlightPy/cchess.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/XQlightPy/cchess.py -------------------------------------------------------------------------------- /XQlightPy/position.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/XQlightPy/position.py -------------------------------------------------------------------------------- /XQlightPy/search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/XQlightPy/search.py -------------------------------------------------------------------------------- /arrowline.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/arrowline.py -------------------------------------------------------------------------------- /background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/background.png -------------------------------------------------------------------------------- /chessboard.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/chessboard.py -------------------------------------------------------------------------------- /chessboard2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/chessboard2.py -------------------------------------------------------------------------------- /edit_situation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/edit_situation.py -------------------------------------------------------------------------------- /fonts/msyh.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/fonts/msyh.ttf -------------------------------------------------------------------------------- /global_var.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/global_var.py -------------------------------------------------------------------------------- /img/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/ba.svg -------------------------------------------------------------------------------- /img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/background.png -------------------------------------------------------------------------------- /img/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/background2.png -------------------------------------------------------------------------------- /img/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/bb.svg -------------------------------------------------------------------------------- /img/bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/bc.svg -------------------------------------------------------------------------------- /img/bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/bk.svg -------------------------------------------------------------------------------- /img/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/bn.svg -------------------------------------------------------------------------------- /img/bp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/bp.svg -------------------------------------------------------------------------------- /img/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/br.svg -------------------------------------------------------------------------------- /img/iconlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/iconlist.py -------------------------------------------------------------------------------- /img/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/main.py -------------------------------------------------------------------------------- /img/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/mask.svg -------------------------------------------------------------------------------- /img/mask2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/mask2.svg -------------------------------------------------------------------------------- /img/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/readme.md -------------------------------------------------------------------------------- /img/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wa.svg -------------------------------------------------------------------------------- /img/wb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wb.svg -------------------------------------------------------------------------------- /img/wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wc.svg -------------------------------------------------------------------------------- /img/wk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wk.svg -------------------------------------------------------------------------------- /img/wn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wn.svg -------------------------------------------------------------------------------- /img/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wp.svg -------------------------------------------------------------------------------- /img/wr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/img/wr.svg -------------------------------------------------------------------------------- /main.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/main.kv -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/main.py -------------------------------------------------------------------------------- /mergexqf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/mergexqf.py -------------------------------------------------------------------------------- /movesnote.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/movesnote.py -------------------------------------------------------------------------------- /myScreen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/myScreen.py -------------------------------------------------------------------------------- /mymdtextfield.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/mymdtextfield.py -------------------------------------------------------------------------------- /onelinelistfiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/onelinelistfiles.py -------------------------------------------------------------------------------- /onelinelistpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/onelinelistpath.py -------------------------------------------------------------------------------- /onelinelistpathwithfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/onelinelistpathwithfile.py -------------------------------------------------------------------------------- /onelinelistwithid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/onelinelistwithid.py -------------------------------------------------------------------------------- /piece.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/piece.py -------------------------------------------------------------------------------- /piecewidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/piecewidget.py -------------------------------------------------------------------------------- /piecewidget2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/piecewidget2.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/readme.md -------------------------------------------------------------------------------- /screeneditsituation.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screeneditsituation.kv -------------------------------------------------------------------------------- /screeninfo.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screeninfo.kv -------------------------------------------------------------------------------- /screeninputfilename.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screeninputfilename.kv -------------------------------------------------------------------------------- /screeninputinfo.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screeninputinfo.kv -------------------------------------------------------------------------------- /screenmain copy.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenmain copy.kv -------------------------------------------------------------------------------- /screenmain.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenmain.kv -------------------------------------------------------------------------------- /screenmenu.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenmenu.kv -------------------------------------------------------------------------------- /screenmergexqf.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenmergexqf.kv -------------------------------------------------------------------------------- /screenmoves.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenmoves.kv -------------------------------------------------------------------------------- /screenselectfile.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenselectfile.kv -------------------------------------------------------------------------------- /screenselectpath.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenselectpath.kv -------------------------------------------------------------------------------- /screensetengine.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screensetengine.kv -------------------------------------------------------------------------------- /screensetui.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screensetui.kv -------------------------------------------------------------------------------- /screenwelcome.kv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/screenwelcome.kv -------------------------------------------------------------------------------- /selectedmaskwidget.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/selectedmaskwidget.py -------------------------------------------------------------------------------- /selectedmaskwidget2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/selectedmaskwidget2.py -------------------------------------------------------------------------------- /selectfile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/selectfile.py -------------------------------------------------------------------------------- /selectpath.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/selectpath.py -------------------------------------------------------------------------------- /situation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/situation.py -------------------------------------------------------------------------------- /tree2txt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/tree2txt.py -------------------------------------------------------------------------------- /tree2xqf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/tree2xqf.py -------------------------------------------------------------------------------- /uci/outer/CCStockFishArmv8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/uci/outer/CCStockFishArmv8 -------------------------------------------------------------------------------- /uci/outer/entry.nnue: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/uci/outer/entry.nnue -------------------------------------------------------------------------------- /uci/outer/exe_CCStockFishArmv8: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /uci_engine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/uci_engine.py -------------------------------------------------------------------------------- /x-chess.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/x-chess.png -------------------------------------------------------------------------------- /x_chess_cfg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/x_chess_cfg.py -------------------------------------------------------------------------------- /x_chessapp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/x_chessapp.py -------------------------------------------------------------------------------- /xbak/01.xqf.2024-02-01 21-58-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/01.xqf.2024-02-01 21-58-15 -------------------------------------------------------------------------------- /xbak/02.xqf.2024-01-20 15-16-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/02.xqf.2024-01-20 15-16-09 -------------------------------------------------------------------------------- /xbak/111111.xqf.2024-01-22 14-51-16: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/111111.xqf.2024-01-22 14-51-16 -------------------------------------------------------------------------------- /xbak/p02 布局三大原则初探02.xqf.2024-01-20 18-40-09: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/p02 布局三大原则初探02.xqf.2024-01-20 18-40-09 -------------------------------------------------------------------------------- /xbak/测试XQF04.xqf.2024-01-23 20-17-15: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试XQF04.xqf.2024-01-23 20-17-15 -------------------------------------------------------------------------------- /xbak/测试删除.xqf.2024-01-22 17-47-18: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试删除.xqf.2024-01-22 17-47-18 -------------------------------------------------------------------------------- /xbak/测试删除.xqf.2024-01-22 17-48-03: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试删除.xqf.2024-01-22 17-48-03 -------------------------------------------------------------------------------- /xbak/测试删除.xqf.2024-01-22 17-49-55: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试删除.xqf.2024-01-22 17-49-55 -------------------------------------------------------------------------------- /xbak/测试删除.xqf.2024-01-22 17-50-47: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试删除.xqf.2024-01-22 17-50-47 -------------------------------------------------------------------------------- /xbak/测试删除.xqf.2024-01-22 18-08-56: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试删除.xqf.2024-01-22 18-08-56 -------------------------------------------------------------------------------- /xbak/测试删除.xqf.2024-01-22 18-44-27: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xbak/测试删除.xqf.2024-01-22 18-44-27 -------------------------------------------------------------------------------- /xqf/00.xqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xqf/00.xqf -------------------------------------------------------------------------------- /xqf/02.xqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xqf/02.xqf -------------------------------------------------------------------------------- /xqf/x159.xqf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xqf/x159.xqf -------------------------------------------------------------------------------- /xqlight_ai.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/xqlight_ai.py -------------------------------------------------------------------------------- /棋子/01background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/01background.png -------------------------------------------------------------------------------- /棋子/02background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/02background.png -------------------------------------------------------------------------------- /棋子/cnsvc矢量.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量.jpg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/ba.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/background.png -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/bb.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/bc.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/bk.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/bn.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/bp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/bp.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/br.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wa.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wb.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wc.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wk.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wn.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wp.svg -------------------------------------------------------------------------------- /棋子/cnsvc矢量/img/wr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/cnsvc矢量/img/wr.svg -------------------------------------------------------------------------------- /棋子/一览对比图.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/一览对比图.png -------------------------------------------------------------------------------- /棋子/内置棋子.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子.jpg -------------------------------------------------------------------------------- /棋子/内置棋子/img/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/ba.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/background.png -------------------------------------------------------------------------------- /棋子/内置棋子/img/background2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/background2.png -------------------------------------------------------------------------------- /棋子/内置棋子/img/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/bb.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/bc.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/bk.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/bn.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/bp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/bp.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/br.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/iconlist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/iconlist.py -------------------------------------------------------------------------------- /棋子/内置棋子/img/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/main.py -------------------------------------------------------------------------------- /棋子/内置棋子/img/mask.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/mask.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/mask2.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/mask2.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/readme.md -------------------------------------------------------------------------------- /棋子/内置棋子/img/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wa.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/wb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wb.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wc.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/wk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wk.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/wn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wn.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wp.svg -------------------------------------------------------------------------------- /棋子/内置棋子/img/wr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/内置棋子/img/wr.svg -------------------------------------------------------------------------------- /棋子/棋子.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋子.zip -------------------------------------------------------------------------------- /棋子/棋路红黑.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑.jpg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/ba.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/background.png -------------------------------------------------------------------------------- /棋子/棋路红黑/img/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/bb.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/bc.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/bk.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/bn.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/bp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/bp.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/br.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wa.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wb.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wc.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wk.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wn.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wp.svg -------------------------------------------------------------------------------- /棋子/棋路红黑/img/wr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/棋路红黑/img/wr.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书.jpg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/ba.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/background.png -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/bb.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/bc.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/bk.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/bn.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/bp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/bp.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/br.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wa.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wb.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wc.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wk.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wn.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wp.svg -------------------------------------------------------------------------------- /棋子/燕岭隶书/img/wr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/燕岭隶书/img/wr.svg -------------------------------------------------------------------------------- /棋子/红黑字.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字.jpg -------------------------------------------------------------------------------- /棋子/红黑字/img/ba.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/ba.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/background.png -------------------------------------------------------------------------------- /棋子/红黑字/img/bb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/bb.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/bc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/bc.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/bk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/bk.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/bn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/bn.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/bp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/bp.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/br.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/br.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wa.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wa.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wb.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wb.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wc.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wc.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wk.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wk.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wn.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wn.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wp.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wp.svg -------------------------------------------------------------------------------- /棋子/红黑字/img/wr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/yingyan005/X-Chess/HEAD/棋子/红黑字/img/wr.svg --------------------------------------------------------------------------------