user156073
user156073

Reputation: 2001

java : voice chat and text chat

I want to make a card game made in Java. People can run it on their pc. They can add their friends to their contacts list and when there are 4 players online they can begin a game by one of the players hosting the game. The players can communicate by text or by voice chat Think of it like a chat client that allows users to play a card game and allows voice chat between the 4 players at the same time.

i dont know how do go abt the above project.Can anyone suggest me some framework or other things that i can use to devlop the above app? Will it be like a p2p application?

Upvotes: 0

Views: 5143

Answers (2)

Ira M
Ira M

Reputation: 47

As I understand you are going to make some kind of browser or desktop game app with both text and audio chat options.

For chat app you will need a backend and client-side solutions.

If I understand you right, you have not much experience with chat apps, so preparing everything from scratch might be tricky for you.

Therefore, I'd recommend trying a ready backend and SDK for developing chat and audio chat part of your app. That should spare a lot of effort and work for you and you will be able to concentrate on UI implementation of your chat and audio chat.

Since you need both text chat and audio chat solutions, I can recommend ConnectyCube, since there you can find both at one place. For browser or desktop apps you can use JS SDK. Here is the documentation how to connect it to your project.

Upvotes: 0

Boris Pavlović
Boris Pavlović

Reputation: 64622

Start with chat using this tutorial. Run your own jabber client or use gTalk and write some code for the client side.

Upvotes: 1

Related Questions