I have just started programing and i have done some stuff with XNA. i created my first 3d game similar to minecraft.

but its boring. so i decided to take a look at networking as there was a tutorial on the msdn. website. It turns out that the code there was only for the XBox and i started looking around the Internet to find something more useful until I cam across someone saying that XNA doesn't support what I am looking for.

I am seriously considering buying a book for XNA 4.0 (I hate looking for tutorials for hours) but before I do this, I want to know whether networking is possible between PCs. And if it is not, what should I try to learn?

Managed DirectX? C++ DirectX? or something else?

link|improve this question
feedback

4 Answers

Yes it is possible to develop a networking game for PC and you are not as limited as in the XBox, you can make your own communication system or use one of the available libaries out there:

http://www.runuo.com/home/

http://code.google.com/p/lidgren-network/

There are more libraries to make it easier but those 2 are the ones i remember from the top of my head.


As for tutorials, first link will take a few to load but it is a good one:

http://web.archive.org/web/20080328180845/www.ziggyware.com/readarticle.php?article_id=168

http://code.google.com/p/lidgren-network/wiki/Quickstart

link|improve this answer
feedback

XNA provides access to the "LIVE" system - as in "Xbox LIVE" and "Games for Windows - LIVE".

On the Xbox 360 you can only go through the XNA networking system. There are no other options.

On Windows, on the other hand, you can only use LIVE if you have an agreement with Microsoft. So if that is not the case, your only option is to implement your own networking on top of what the .NET framework provides (XNA runs on the .NET framework). For networked games the classes you are interested in are in the System.Net.Sockets namespace.

Now you could just open up a socket and start sending data. But you probably want to use UDP - which has good performance but is unreliable - so you're probably best off using a library like Lidgren (or one of the others Prix mentioned) to add a reliability layer and a bunch of other nice stuff.

link|improve this answer
feedback

You mention wanting to look for books. I recommend you get this book if you decide to buy one.

I have Learning XNA 3.0 sitting next to me and it really helped teach me a great deal. The guy is great. His new copy doesn't seem THAT different, but different enough such that if you're first learning from Learning XNA 3.0, you'll get a little tripped up.

... also, you can buy it cheaper here.

link|improve this answer
feedback

Possible, but hard. I'm no programmer, but go take a look at SteamPlay. It now has cross-platform multilayer, just go look at Portal 2. It runs on both the Xbox 360 and PC, and they can each play with each other. I'm fairly certain that there is a freeware(?) SDK available if you want to tinker with it. I'm not sure if this answered your question, but I found it interesting.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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