I'm solving one problem and I've kinda stucked. I'll start with some background.
I'm programing memory game (for example it is something like this http://www.mathsisfun.com/games/memory/index.html). It should be client-server aplication.
client - in java
server - in C
situation is 1 server, N clients
server will have list of games - in each game two players
each game will be separately process in onw process - i use fork
client is java swing form aplication - and represets players
clients and server comunicate only with two methods (resp. functions)
client - void sendMessageToServer(String message), String recieveMessageFromerver()
server - recieveMessage(void *vptr, size_t maxlen,
int socketfileDesc) ,int sendMessageToClient(char* msg, int socket)
simply - i just send string messages from server to client, client to server I which are coded actions
Now my problem:
For easier testing client side a made server also in java, and I solve problem only with one game - one server, 2 clients (both in java)
so I have 3 classes
Clilent:
- show the from,
- has info about game,
- has static method CreateAndShowGUI(String serverInsanceHandle) => show - the form, make instance of client
Server:
- just two messages - recieve, send i mentioned before
Test:
public class Test {
/**
* @param args
*/
public static void main(String[] args) {
final Server server = new Server();
javax.swing.SwingUtilities.invokeLater(new Runnable() {
public void run() {
Client.createAndShowGUI(server);
Client.createAndShowGUI(server);
}
});
}
}
HERE:
My problem is this:
for simple testing I have game 4x4 cards this mean 8 pairs
I have array JButton[] buttonsArray = new JButton[16]; on each button is ImageIcon with picture of card, each button have added actionListenner(privateClass)
in privateClass which implements ActionListener is method actionPerformed and there I change set up of the client- I send message to server and server send me back message what I should do in client.
My problem is that I have two clients and one server.
When I make action in client1, it have effect only in client1, but I need somehow let now it to client2.
I can have field of cards what should be viewed on serverside,or I can have field of String messages - with coded changes, but I don't now how to let client2 know that client1 did some action. Comunication must be trough server:
Something like "Hello I'm client1 and I pressed button number 2 so you client2 should ask server for changes" but I' can't do this.
So what can I do?
NOTE: It should be "simulation" of TCP communication, so I'll use tcp sockets - but this is probably not important now.