So here's the situation, I have to develop a multi-player game using c in unix. Now i created the sockets and the server and client are communicating ok. Now this game includes a board, so each client has its own 2d array of 100x40, and they are sending the x and y position using the read/write (which is working ok too) to the server.
Now, in the server, I'm using fork() so that new clients can join the game. In the child's section, I'm receiving the x and y position. Now my question is, how can I store the x and y position to a "global" board[100][40] found in the server (so I may check for collisions etc). The difficulty I'm finding is that each child is having its own version of the board since I'm using fork(), and I'm only updating the board of that particular child. I would like that each time the client sends it x and y position, I place them in the board found in server.
I've read that I would need to use some sort of IPC, like shared memory, but can't figure it out. If anyone could help it would be greatly appreciated, Thanks.