Multiplayer Boggle
This project is an implementation of the Boggle word game, that supports online play.
Rules
In Boggle, all players are presented with the same random grid of letters. They try to form words from consecutive adjacent letters. Longer words are worth more, and a word is only
worth points if you were the only player to find it.
Gameplay
Once the game starts, a 90 second timer begins, and the player is shown the board. They can type words until the times expires. Each word they type falls into one of four categories:
not possible to make using the given board, not a valid english word, valid, but already entered, and valid word. It is relatively simple to check for these cases, and the text bar
flashes a color to indicate the status of each word entered.
Multiplayer
One player acts as the host, and all other players will connect to them. Data will be sent to the host, who will then distribute it to all connected peers. This data includes connected
peer names, and words found by each player.