| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286 |
- /*
- * Copyright (c) 2014, Oculus VR, Inc.
- * All rights reserved.
- *
- * This source code is licensed under the BSD-style license found in the
- * LICENSE file in the root directory of this source tree. An additional grant
- * of patent rights can be found in the PATENTS file in the same directory.
- *
- */
- #define INTERACTIVE
- #if defined(INTERACTIVE)
- #include "Kbhit.h"
- #endif
- #include <stdio.h>
- #include <stdlib.h>
- #include <memory.h>
- #include "RakPeerInterface.h"
- #include "MessageIdentifiers.h"
- #include "RakSleep.h"
- #include "RakVoice.h"
- #include "RakNetStatistics.h"
- #include "GetTime.h"
- #include "RakAssert.h"
- #include "Gets.h"
- #include "DSoundVoiceAdapter.h"
- // Reads and writes per second of the sound data
- // Speex only supports these 3 values
- #define SAMPLE_RATE (8000)
- //#define SAMPLE_RATE (16000)
- //#define SAMPLE_RATE (32000)
- #define FRAMES_PER_BUFFER (2048 / (32000 / SAMPLE_RATE))
- // define sample type. Only short(16 bits sound) is supported at the moment.
- typedef short SAMPLE;
- RakNet::RakPeerInterface *rakPeer=NULL;
- RakNet::RakVoice rakVoice;
- struct myStat{
- unsigned int time;
- unsigned int bitsRec;
- unsigned int bitsSent;
- };
- // Keeps a record of the last 20 calls, to give a faster response to traffic change
- void LogStats(){
- const int numStats = 20;
- static myStat data[numStats];
- for(int i=0; i<=numStats-2; i++){
- data[i] = data[i+1];
- }
- RakNet::RakNetStatistics *rss=rakPeer->GetStatistics(rakPeer->GetSystemAddressFromIndex(0));
- unsigned int currTime = RakNet::GetTimeMS();
- data[numStats-1].time = currTime;
- data[numStats-1].bitsSent = BYTES_TO_BITS(rss->runningTotal[RakNet::USER_MESSAGE_BYTES_SENT]);
- data[numStats-1].bitsRec = BYTES_TO_BITS(rss->runningTotal[RakNet::USER_MESSAGE_BYTES_RECEIVED_PROCESSED]);
- float totalTime = (data[numStats-1].time - data[0].time) / 1000.f ;
- unsigned int totalBitsSent = data[numStats-1].bitsSent - data[0].bitsSent;
- unsigned int totalBitsRec = data[numStats-1].bitsRec - data[0].bitsRec;
- float bpsSent = totalBitsSent/totalTime;
- float bpsRec = totalBitsRec/totalTime;
- float avgBpsSent = rss->valueOverLastSecond[RakNet::USER_MESSAGE_BYTES_SENT];
- float avgBpsRec = rss->valueOverLastSecond[RakNet::USER_MESSAGE_BYTES_RECEIVED_PROCESSED];
- printf("avgKbpsSent=%02.1f avgKbpsRec=%02.1f kbpsSent=%02.1f kbpsRec=%02.1f \r", avgBpsSent/1000, avgBpsRec/1000, bpsSent/1000 , bpsRec/1000, rakVoice.GetBufferedBytesToReturn(RakNet::UNASSIGNED_RAKNET_GUID));
- //printf("MsgBuf=%6i SndBuf=%10i RcvBuf=%10i \r", rakVoice.GetRakPeerInterface()->GetStatistics(RakNet::UNASSIGNED_SYSTEM_ADDRESS)->messageSendBuffer[HIGH_PRIORITY], rakVoice.GetBufferedBytesToSend(RakNet::UNASSIGNED_SYSTEM_ADDRESS), rakVoice.GetBufferedBytesToReturn(RakNet::UNASSIGNED_SYSTEM_ADDRESS));
- }
- // Prints the current encoder parameters
- void PrintParameters(void)
- {
- printf("\nComplexity=%3d Noise filter=%3s VAD=%3s VBR=%3s\n"
- ,rakVoice.GetEncoderComplexity()
- ,(rakVoice.IsNoiseFilterActive()) ? "ON" : "OFF"
- ,(rakVoice.IsVADActive()) ? "ON" : "OFF"
- ,(rakVoice.IsVBRActive()) ? "ON" : "OFF");
- }
- //
- // Utility function to obtain a Console Window Handle (HWND), as explained in:
- // http://support.microsoft.com/kb/124103
- //
- HWND GetConsoleHwnd(void)
- {
- #define MY_BUFSIZE 1024 // Buffer size for console window titles.
- HWND hwndFound; // This is what is returned to the caller.
- TCHAR pszNewWindowTitle[MY_BUFSIZE]; // Contains fabricated
- // WindowTitle.
- TCHAR pszOldWindowTitle[MY_BUFSIZE]; // Contains original
- // WindowTitle.
- // Fetch current window title.
- GetConsoleTitle(pszOldWindowTitle, MY_BUFSIZE);
- // Format a "unique" NewWindowTitle.
- wsprintf(pszNewWindowTitle,TEXT("%d/%d"),
- GetTickCount(),
- GetCurrentProcessId());
- // Change current window title.
- SetConsoleTitle(pszNewWindowTitle);
- // Ensure window title has been updated.
- Sleep(40);
- // Look for NewWindowTitle.
- hwndFound=FindWindow(NULL, pszNewWindowTitle);
- // Restore original window title.
- SetConsoleTitle(pszOldWindowTitle);
- return(hwndFound);
- }
- int main(void)
- {
- printf("A sample on how to use RakVoice together with DirectSound.\n");
- printf("You need a microphone for this sample.\n");
- printf("RakVoice relies on Speex for voice encoding and decoding.\n");
- printf("See DependentExtensions/RakVoice/speex-1.2beta3 for speex projects.\n");
- printf("For windows, I had to define HAVE_CONFIG_H, include win32/config.h,\n");
- printf("and include the files under libspeex, except those that start with test.\n");
- printf("Difficulty: Advanced\n\n");
- bool mute=false;
- bool quit;
- char ch;
- char port[256];
- rakPeer = RakNet::RakPeerInterface::GetInstance();
- #if defined(INTERACTIVE)
- printf("Enter local port: ");
- Gets(port, sizeof(port));
- if (port[0]==0)
- #endif
- strcpy(port, "60000");
- RakNet::SocketDescriptor socketDescriptor(atoi(port),0);
- rakPeer->Startup(4, &socketDescriptor, 1);
- rakPeer->SetMaximumIncomingConnections(4);
- rakPeer->AttachPlugin(&rakVoice);
- rakVoice.Init(SAMPLE_RATE, FRAMES_PER_BUFFER*sizeof(SAMPLE));
- // Initialize our connection with DirectSound
- if (!RakNet::DSoundVoiceAdapter::Instance()->SetupAdapter(&rakVoice, GetConsoleHwnd(), DSSCL_EXCLUSIVE))
- {
- printf("An error occurred while initializing DirectSound.\n");
- exit(-1);
- }
- RakNet::Packet *p;
- quit=false;
- #if defined(INTERACTIVE)
- printf("(Q)uit. (C)onnect. (D)isconnect. (M)ute. ' ' for stats.\n");
- printf("(+/-)encoder complexity. (N)oise filter on/off. (V)AD on/off. (B)vbr on/off.\n");
- #else
- rakPeer->Connect("1.1.1.1", 60000, 0,0);
- #endif
- PrintParameters();
- while (!quit)
- {
- #if defined(INTERACTIVE)
- if (kbhit())
- {
- ch=getch();
- if (ch=='+'){
- // Increase encoder complexity
- int v = rakVoice.GetEncoderComplexity();
- if (v<10) rakVoice.SetEncoderComplexity(v+1);
- PrintParameters();
- }
- else if (ch=='-'){
- // Decrease encoder complexity
- int v = rakVoice.GetEncoderComplexity();
- if (v>0) rakVoice.SetEncoderComplexity(v-1);
- PrintParameters();
- }
- else if (ch=='n'){
- // Turn on/off noise filter
- rakVoice.SetNoiseFilter(!rakVoice.IsNoiseFilterActive());
- PrintParameters();
- }
- else if (ch=='v') {
- // Turn on/off Voice detection
- rakVoice.SetVAD(!rakVoice.IsVADActive());
- PrintParameters();
- }
- else if (ch=='b') {
- // Turn on/off VBR
- rakVoice.SetVBR(!rakVoice.IsVBRActive());
- PrintParameters();
- }
- else if (ch=='y')
- {
- quit=true;
- }
- else if (ch=='c')
- {
- char ip[256];
- printf("\nEnter IP of remote system: ");
- Gets(ip, sizeof(ip));
- if (ip[0]==0)
- strcpy(ip, "127.0.0.1");
- printf("\nEnter port of remote system: ");
- Gets(port, sizeof(port));
- if (port[0]==0)
- strcpy(port, "60000");
- rakPeer->Connect(ip, atoi(port), 0,0);
- }
- else if (ch=='m')
- {
- mute=!mute;
- RakNet::DSoundVoiceAdapter::Instance()->SetMute(mute);
- if (mute)
- printf("\nNow muted.\n");
- else
- printf("\nNo longer muted.\n");
- }
- else if (ch=='d')
- {
- rakPeer->Shutdown(100,0);
- }
- else if (ch==' ')
- {
- char message[2048];
- RakNet::RakNetStatistics *rss=rakPeer->GetStatistics(rakPeer->GetSystemAddressFromIndex(0));
- StatisticsToString(rss, message, 2);
- printf("%s", message);
- }
- else if (ch=='q')
- quit=true;
- ch=0;
- }
- #endif
- p=rakPeer->Receive();
- while (p)
- {
- if (p->data[0]==ID_CONNECTION_REQUEST_ACCEPTED)
- {
- printf("\nID_CONNECTION_REQUEST_ACCEPTED from %s\n", p->systemAddress.ToString());
- rakVoice.RequestVoiceChannel(p->guid);
- }
- else if (p->data[0]==ID_RAKVOICE_OPEN_CHANNEL_REQUEST)
- {
- printf("\nOpen Channel request from %s\n", p->systemAddress.ToString());
- }
- else if (p->data[0]==ID_RAKVOICE_OPEN_CHANNEL_REPLY)
- {
- printf("\nGot new channel from %s\n", p->systemAddress.ToString());
- }
- rakPeer->DeallocatePacket(p);
- p=rakPeer->Receive();
- }
-
- // Update our connection with DirectSound
- RakNet::DSoundVoiceAdapter::Instance()->Update();
- LogStats();
- RakSleep(20);
- }
- // Release any FMOD resources we used, and shutdown FMOD itself
- RakNet::DSoundVoiceAdapter::Instance()->Release();
- rakPeer->Shutdown(300);
- RakNet::RakPeerInterface::DestroyInstance(rakPeer);
- return 0;
- }
|