vote up 0 vote down star

Possible Duplicate:
Network Programming

I am developing a network game and I want a move made by another player to appear to others players, basically whatever happens on another players screen must be shown to others also. I want to know what would be the easiest way to do this and how?

Its a card playing game, so when a player clicks or move a card that must be broadcast to all other players engaged in that game

flag
1  
Exact (REALLY) duplicate: stackoverflow.com/questions/1407744/… – ChristopheD Sep 11 at 20:37
3  
please be more concise in you question. This is very vague and doesn't tell us much about what you are trying to do. What type of game is it? what type of network protocol are you using to communicate, what type (if any) data storage are you using? what libraries (if any) are you using. If you need an idea on how to ask a question, please visit support.microsoft.com/kb/555375 and of course stackoverflow.com/faq – Russ Sep 11 at 20:39
And it was closed last time, too. Van, you'll want to ask more specific questions if you want an answer. – Eric J. Sep 11 at 20:41
This is normally done using a server that queues and processes client events while updating the players. Clients then query the server to find the state of their particular player and reflect that state by updating their GUI. This is not trivial task. How much programming experience do you have? I could probably whip something together in an afternoon as a demonstration piece, but I'm sure that doing it on your own would go a long way to enhancing your programming knowledge. Perhaps start with something simpler, like sending a message across the network. – roygbiv Sep 11 at 20:45

closed as exact duplicate by dtb, Henk Holterman, Eric J., Ben S, crashmstr Sep 11 at 20:43

2 Answers

vote up 0 vote down

Very general and vague question, which will likely be closed, please be more specific the next time!

I can't give you more than a recommendation of a good title to read : Network Programming in .NET

Network programming in .NET is a new release from Elsevier Digital Press, and is available now at all good computer bookshops. The book is a complete introduction to developing network programs in both C# and VB.NET. It includes chapters on the fundamentals of network programming, TCP and UDP sockets, multicasting, HTTP and SMTP, Remoting, and Web services. Not only that, but it also covers rare, and hard-to-find practical information on Telephony, Packet capture, MSMQ, and IPv6. Whether you’re a professional network programmer, or just want to see what’s possible, you’ll find that .NET Network Programming is a complete guide to the capabilities of networking in the .NET framework.

link|flag
vote up 0 vote down

This question is too vague to expect reasonable answers. There are 4.3 gazillion possible ways to do what you are saying but only 34.8% of them have been documented in the secret book of good things. Without knowing anything about your environment I would suggest:

  1. Create a server component that listens for clients to log in
  2. Each client will log in and get a start position
  3. Every move by a client must be sent to the server and the server distributes the move to each client.

I don't expect that this is a useful answer. Is the game for the web?, A private network? Are you going to use TCP/IP etc etc etc ad infinitum. I would suggest that you think about what you are trying to accomplish and ask very specific questions.

link|flag

Not the answer you're looking for? Browse other questions tagged or ask your own question.