Java Game Server

For discussions about game development that does not fit in any of the other topics.
Post Reply
Baseball435
Posts: 548
Joined: Sun May 30, 2010 3:49 am

Java Game Server

Post by Baseball435 »

Hey everyone, I have been searching google all night looking for a tutorial on creating a Java Game Server that will allow clients to connect and move around together. I know the basics of sockets and have created my own chat room but now I want to create a game server and client. So does anyone possibly know how/know a tutorial that they could link me to?

Thanks!
User avatar
Jackolantern
Posts: 10891
Joined: Wed Jul 01, 2009 11:00 pm

Re: Java Game Server

Post by Jackolantern »

The only good sources of info I have found on the matter are targeted towards Flash, which are a handful of MMO books. However, most of them use commercial server software, I assume, because of the complexity of making a solid game server.

I guess without a solid tutorial or book on the subject, you would want to get a firm grip on academic Java networking practices, maybe from something like "Java Network Programming", and then move on to basically whatever you can to get a handle on game server programming. Maybe even something like "MUD Game Programming" could help out. Although it is for MUDs, and is in C++, it is the only book I know of that goes through the entire process of creating a socket-based game server from scratch, and definitely the only one I know of centered on RPGs. You will have to do a lot of interpolation, though. There are a handful of "Multiplayer game programming" books, but most are not what they claim to be, as I have read pretty much all of them at some point or another, and they typically either talk about design instead of programming, or work through such toy programs that they are basically useless.

Basically, the topic is so vast that there will be few comprehensive tutorials out there for free, so books will likely be the only option.
The indelible lord of tl;dr
Baseball435
Posts: 548
Joined: Sun May 30, 2010 3:49 am

Re: Java Game Server

Post by Baseball435 »

Ahh thanks a lot! :)

~baseball435
Post Reply

Return to “General Development”