In this project you'll build an autonomous, multi-processor, multi-threaded game server! Start by forking this repository and following the instructions below.
At the terminal, type the following commands to create your project:
cd CppND-Game-Server
bash bash/make_cmake.sh game_project
Next, run the following command to generate placeholder classes for the simulated physical objects (only doing Hand, Deck and Player here. Later you will create more).
bash bash/make_class.sh Card Hand Deck Player Dealer Table Chip Seat Bank Pot
Finally, you'll create your main()
using the following command:
bash bash/make_main.sh game_server
Follow along with Robin as we investigate the output of these bash scripts!
Run the following commands to build and test your project:
mkdir build
cd build
cmake
make
ctest
Follow along with Robin as we investigate the output of these commands!