Client and server to play the strategy board game Quoridor. It uses pygame.
Python >=3.6필요. 명령 프롬프트 열고 실행:
pip3 install quoridor
서버 열기:
python3 -m quoridor.server [HOST] [PORT] [NUM_PLAYERS]
- HOST: IP 주소
- PORT: 포트 번호
- NUM_PLAYERS: 플레이어 수(2, 3 또는 4)
클리이언트로 시작하기:
python3 -m quoridor.client [HOST] [PORT]
HOST 와 PORT는 서버와 같아야함.
게임의 룰을 볼 수 있음 here:
- 방향키를 이용해 폰을 움직일 수 있음
- 게임 보드를 클릭해 장애물을 배치할 수 있음
게임이 끝나면 "Restart"버튼을 눌러 재시작 할 수 있다.
A pathfinding algorithm is used to check if a player is blocked or not. Thanks to the python-pathfinding project.
이름 : Quentin Deschamps / 이메일 : quentindeschamps18@gmail.com