Click here to Skip to main content
15,881,757 members
Articles / Desktop Programming / MFC
Article

Voice chat using a client-server architecture

Rate me:
Please Sign up or sign in to vote.
4.77/5 (33 votes)
2 Aug 20033 min read 248.6K   12.1K   84   72
Voice chat networking

Application Details

This software is based on the client - server architecture. Commmunication between the clients is established through the server. Initially server is started. Clients connects to the server host. Server sends the new client list to all the existing clients. The client can select destination user from the user combo box. The software also provides save and play (user can save the sound and play it later). Client also has volume control feature. When client application is started microphone select option (recording) is enabled and microphone mute option is checked (playing) automatically by the program (user doesn't have to worry about the external settings).

Technical Details

Display Class

The recording and playing threads are created in OnInitDialog() of the Display class.
C++
//    Create and Start Recorder Thread
record = new RecordSound(this);
record->CreateThread();
    
//Create and Start Player Thread
play = new PlaySound1(this);
play->CreateThread();

Thread functions are based on the code by great person, Paul Cheffers (from codeguru site). I am grateful to him for making my dream project into reality. PreCreateHeader() of the Display class (from constructor) creates some buffers for playing wavedata. (This prevents creation of buffers during runtime...)

When the client presses the connect button OnConnect() of the Display class the client connects to the server and displays the userlist and start button. On pressing the start button recording and playing is started by sending message to recording and playing threads. (OnStart function)

C++
record->PostThreadMessage(WM_RECORDSOUND_STARTRECORDING, 0, 0);
play->PostThreadMessage(WM_PLAYSOUND_STARTPLAYING, 0, 0);
These messages will activate corresponding functions defined in the message maps of the respective thread classes.

On pressing the stop button recording and playing is stopped by in the same way as above (OnStop Function). It also contains other functions which will be activated on pressing the buttons and some functions are activated from other classes. (mysocket and RecordSound classes).

mysocket class

OnReceive: When data arrives at the client it will call the Display Class's receive function which plays the sound by sending a message to the PlaySound Thread.
C++
play->PostThreadMessage(WM_PLAYSOUND_PLAYBLOCK, 0, (LPARAM) lpHdr);

Message Format

Total length : 2020 bytes
  • 15 : header (destination username or special status)
  • 5 : Length of actual data
  • 2000 : Reserved for actual data.

RecordSound Class

PreCreateHeader()function creates buffers for recording data. These are added using waveInPrepareHeader() and waveInAddBuffer() functions in OnStartRecording function. (Called when Start button is clicked...as explained earlier..)

Playsound1 Class

Contains the functions for starting, playing and stopping wavedata. Buffers are created initially in the Display class itself.

Other classes

MicMute, MicPhone, Mixer are the special classes to add several extra features to Voice - Chat function. Some of the concepts are collected from various developers at the codeguru and codeproject sites. I am grateful to those developers....!!!

Running the Application

First start the server application (with port number xxx). Then start a minimum of 2 clients on any hosts (same or different). Mention server host address and port xxx with username xyz. Then click the connect button. The userlist will be displayed. Select the user and click the start button to start the chat...

Note: Any client can chat with any other client and hence a client can receive data from any number of clients. Performance depends upon the situation. Developers are free to use their own ideas.. (please let me know if you see some new mechanism..)

I am eagerly awaiting your doubts and suggestions at nsry2002@yahoo.co.in.

I am grateful to codeguru and codeproject site for connecting developers....and helping to realise their dreams..!!!

License

This article has no explicit license attached to it but may contain usage terms in the article text or the download files themselves. If in doubt please contact the author via the discussion board below.

A list of licenses authors might use can be found here


Written By
Web Developer
India India
Nagareshwar is a security enthusiastic person involved in reverse engineering, vulnerability research, coding security tools etc. He spend most of the time in uncovering the secrets of computer world.

He holds 'Bachelor of Engineering' degree from National Institute of Technology of Karnataka, India. He had professional experience of 2.5 years in Novell. At Novell he was working on various security products including 'Novell Secure Login' and CASA.

For more details visit his website http://securityxploded.com

Comments and Discussions

 
QuestionNot working Pin
Itamarc1012-Dec-15 0:31
Itamarc1012-Dec-15 0:31 
Questionnoises on the line Pin
Peter Eugene Coleman9-Jan-14 5:08
Peter Eugene Coleman9-Jan-14 5:08 
GeneralMy vote of 5 Pin
shaima'6-Oct-13 1:57
shaima'6-Oct-13 1:57 
Questiondelayed sound Pin
Member 334484831-Mar-13 19:56
Member 334484831-Mar-13 19:56 
Questioncode voice Pin
Member 886496816-Jun-12 10:28
Member 886496816-Jun-12 10:28 
GeneralMy vote of 4 Pin
deexian10-Nov-10 5:15
deexian10-Nov-10 5:15 
Generalmemory leaks and PtrList in Server is not stable to hold clients Pin
captainc/c++24-Apr-08 1:23
captainc/c++24-Apr-08 1:23 
QuestionURGENT!!! how can I send wave file to the server? Pin
unique_136412-Oct-07 5:08
unique_136412-Oct-07 5:08 
QuestionHow can this be done in asp chat to use voice chat? Pin
dhrupodi27-Jul-07 8:14
dhrupodi27-Jul-07 8:14 
GeneralVoice Recording??!! Pin
DexterND14-May-07 1:48
DexterND14-May-07 1:48 
GeneralThanks a lot! Pin
zaodt2-May-07 5:56
zaodt2-May-07 5:56 
Smile | :) Smile | :) Smile | :)
Generalhey plz plz plz Pin
troog13-Apr-07 12:44
troog13-Apr-07 12:44 
Generalplz, neeed help Pin
Nona4ever5-Dec-06 7:36
Nona4ever5-Dec-06 7:36 
GeneralRe: plz, neeed help Pin
Nagareshwar6-Dec-06 5:19
Nagareshwar6-Dec-06 5:19 
GeneralVoice Chat in Mobile Devices Pin
yktan5-Jul-06 17:42
yktan5-Jul-06 17:42 
Generalerror Exosip setup.h Pin
tranthanhthi7-May-06 17:32
tranthanhthi7-May-06 17:32 
Generalgive me details Pin
mohamadrbayati11-Aug-05 10:04
mohamadrbayati11-Aug-05 10:04 
GeneralHelping Gramma Pin
Member 198432622-May-05 11:37
Member 198432622-May-05 11:37 
GeneralFor any one Pin
Anonymous13-Aug-04 10:11
Anonymous13-Aug-04 10:11 
Generalneed help Pin
saima11-Jun-04 4:48
saima11-Jun-04 4:48 
GeneralRe: need help Pin
waseemaashu6-Jan-10 4:53
waseemaashu6-Jan-10 4:53 
Generalvoice and data on ip network Pin
febad9-Jun-04 13:20
febad9-Jun-04 13:20 
QuestionCan connect to 2 PCs on LAN??? Pin
wenfoo17-May-04 18:24
wenfoo17-May-04 18:24 
AnswerRe: Can connect to 2 PCs on LAN??? Pin
Nagareshwar18-May-04 3:51
Nagareshwar18-May-04 3:51 
GeneralRe: Can connect to 2 PCs on LAN??? Pin
wenfoo19-May-04 18:55
wenfoo19-May-04 18:55 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.