What's the easiest java multiplayer network game?
We are instructed to create a Java multiplayer game, and yet I still have no idea what is the easiest multiplayer game for a Java beginner li开发者_运维问答ke me.
Any suggestions would help a lot. Thanks in advance :)
Multiplayer tic-tac-toe would be trivial to build the game logic, and allow you to concentrate on the multiplayer / networking aspect.
I would suggest a multiplayer hangman where you bound the number of words a user can try to those contained in /usr/share/dict/words. Hangman is nice since it is simply a text based game where determining when the game state implies a win or a loss is extremely simple (either the number of wrong guesses has been made or all letters in the answer string have been guessed).
I agree with Slomojo, multiplayer Tic-Tac-Toe is a good starting point. In fact, I found that a third-party SDK named Skiller actually provides it as a free multiplayer game with source code. I hope that helps.
How about pong maybe? really depends on the genre of games you're interested in.
Check out a related thread here.
Casino games are simple and multiplayer. Roulette, for example, is really very simple. Blackjack and Craps are a bit more complex.
精彩评论