├── .gitignore ├── Board.cpp ├── Board.h ├── ChineseChess.pro ├── ChooseIP.cpp ├── ChooseIP.h ├── ChooseSerOrCli.cpp ├── ChooseSerOrCli.h ├── ChooseSerOrCli.ui ├── Fonts └── 华文行楷.ttf ├── InputIP.cpp ├── InputIP.h ├── NetGame.cpp ├── NetGame.h ├── README.md ├── SingleGame.cpp ├── SingleGame.h ├── Step.h ├── Stone.cpp ├── Stone.h ├── WinWidget.cpp ├── WinWidget.h ├── chess ├── 99bOOOPIC52.jpg └── bg.jpeg ├── chessrec.qrc ├── main.cpp ├── openWidget.cpp ├── openWidget.h ├── openWidget.ui └── screenshot ├── netGame.png ├── open.png └── singleGame.png /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/.gitignore -------------------------------------------------------------------------------- /Board.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/Board.cpp -------------------------------------------------------------------------------- /Board.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/Board.h -------------------------------------------------------------------------------- /ChineseChess.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/ChineseChess.pro -------------------------------------------------------------------------------- /ChooseIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/ChooseIP.cpp -------------------------------------------------------------------------------- /ChooseIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/ChooseIP.h -------------------------------------------------------------------------------- /ChooseSerOrCli.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/ChooseSerOrCli.cpp -------------------------------------------------------------------------------- /ChooseSerOrCli.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/ChooseSerOrCli.h -------------------------------------------------------------------------------- /ChooseSerOrCli.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/ChooseSerOrCli.ui -------------------------------------------------------------------------------- /Fonts/华文行楷.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/Fonts/华文行楷.ttf -------------------------------------------------------------------------------- /InputIP.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/InputIP.cpp -------------------------------------------------------------------------------- /InputIP.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/InputIP.h -------------------------------------------------------------------------------- /NetGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/NetGame.cpp -------------------------------------------------------------------------------- /NetGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/NetGame.h -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/README.md -------------------------------------------------------------------------------- /SingleGame.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/SingleGame.cpp -------------------------------------------------------------------------------- /SingleGame.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/SingleGame.h -------------------------------------------------------------------------------- /Step.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/Step.h -------------------------------------------------------------------------------- /Stone.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/Stone.cpp -------------------------------------------------------------------------------- /Stone.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/Stone.h -------------------------------------------------------------------------------- /WinWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/WinWidget.cpp -------------------------------------------------------------------------------- /WinWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/WinWidget.h -------------------------------------------------------------------------------- /chess/99bOOOPIC52.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/chess/99bOOOPIC52.jpg -------------------------------------------------------------------------------- /chess/bg.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/chess/bg.jpeg -------------------------------------------------------------------------------- /chessrec.qrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/chessrec.qrc -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/main.cpp -------------------------------------------------------------------------------- /openWidget.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/openWidget.cpp -------------------------------------------------------------------------------- /openWidget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/openWidget.h -------------------------------------------------------------------------------- /openWidget.ui: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/openWidget.ui -------------------------------------------------------------------------------- /screenshot/netGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/screenshot/netGame.png -------------------------------------------------------------------------------- /screenshot/open.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/screenshot/open.png -------------------------------------------------------------------------------- /screenshot/singleGame.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/IfanTsai/ChineseChess/HEAD/screenshot/singleGame.png --------------------------------------------------------------------------------