-
Notifications
You must be signed in to change notification settings - Fork 0
/
README.txt
10 lines (6 loc) · 857 Bytes
/
README.txt
1
2
3
4
5
6
7
8
9
10
AP Computer Science Group Project: Prachi Laud, Jessica Zheng, Nanxi Wang
06/06/2015
Checkers
This project implements a 2-player version of checkers with a functional chat box that can be played on 2 different computers. We use TCP (Transmission Control Protocol) to establish and maintain a network conversation that allows application programs to exchange data. Using ports and sockets, we estalish a connection between 2 different computers on which 2 opponents are playing the checkers game, and allow the players to communicate with each other. The moves made by each player are reflected on the others' screen, and the chat box feature is an additional experimentation with networking.
For a full description of the various elements of this code, see the final specification.
**Code for actual checkers game originally adapted from Dr. David Eck