I want to keep it really simple at first. Basically allow two people to move two squares around with arrow keys and maybe have them detect when they hit each other.
Share
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
In the most abstract way possible:
You’re going to need some kind of central point for the different players to talk to unless you also want to be writing some kind of distributed networking code (hint: you don’t.)
Just about any kind of ‘server’ will do for this. The sever will let the players talk to each other.
Once you get the messages flowing between the users, then you’ll need to figure out what to do with them.
If I were you I’d go lookup some kind of basic chat room software, there’s loads out there, it will show you a way to do the message passing. Then maybe try seeing if there isn’t some way you could build a game on top of that.