Question
Write a java tic-tack-toe (background at https://en.wikipedia.org/wiki/Tic-tac-toe) program for a 13x13 size board with the following constraints: First write a java command line program called
Write a java tic-tack-toe (background at https://en.wikipedia.org/wiki/Tic-tac-toe) program for a 13x13 size board with the following constraints:
First write a java command line program called Player (with a main method) that can play a game of tick tack toe via sockets. Selecting optimal moves at each turn is not important, but that the program can take a turn (wait for a message to go) and then select and its move (communicate a move), finally exiting when the game is over (someone has won or no moves are left by returning a system code 0 or 1 exit status).
Write a java class Spawn that implements the Runnable interface and can create a process that calls a Player program, some form board representation will need to be built.
Write the main method that can start Spawn threads and will act as the Server to talk to the resulting processes that will play the game.
Optional: Visualize this complex interaction by showing what is happening with the sockets, threads or processes.
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started