https://github.com/bimde/blackjack-server
https://github.com/bimde/blackjack-server
Last synced: 8 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/bimde/blackjack-server
- Owner: Bimde
- License: mit
- Created: 2015-11-30T18:59:28.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-12-15T20:32:05.000Z (over 10 years ago)
- Last Synced: 2025-04-04T04:32:30.478Z (about 1 year ago)
- Language: Java
- Size: 225 KB
- Stars: 0
- Watchers: 3
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# Blackjack Server
This server program acts as both a dealer and the server for hosting Blackjack games with up to a maximum of 6 clients per room, with dynamic allocation of players to new game rooms once the current room is full.
The protocol of this program is laid out in this [Google Doc](https://docs.google.com/document/d/1TitWhC7pa1LwOa1-9aaW1HGAJzgxTehDEKdn49hRspE/edit#).
### Instructions:
- Compile and run `CentralServer.java` to open the main program.
- Follow the rest of the instructions in the GUI.
### Notes:
To enable/disable the debug messages or change other constants used in the program (e.g. the delay between messages being sent), change the values of the constants at the top of `Server.java` (lines 27-29). Please note that we cannot guarantee that the server will run as smoothly with some of these constants at non-original values due to dependancy of delays for various synchronized elements.