Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/diiego-h/clientservertictactoe
University project: Client-server model example.
https://github.com/diiego-h/clientservertictactoe
client-server java
Last synced: 21 days ago
JSON representation
University project: Client-server model example.
- Host: GitHub
- URL: https://github.com/diiego-h/clientservertictactoe
- Owner: Diiego-H
- License: mit
- Created: 2024-12-14T17:42:06.000Z (25 days ago)
- Default Branch: main
- Last Pushed: 2024-12-14T17:48:10.000Z (25 days ago)
- Last Synced: 2024-12-14T18:38:12.688Z (25 days ago)
- Topics: client-server, java
- Language: Java
- Homepage:
- Size: 0 Bytes
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# ClientServerTicTacToe
University project: Client-server model example. TicTacToe game coded in Java following a custom communication protocol.## Single player
The server waits for a client to connect. Clients are handled in multiple threads and the server uses the Minimax algorithm to play against them.## 2 players
The server waits for 2 clients to connect. When it receives 2 connection requests, it starts a thread to handle the match as a proxy between the players.