mirror of
https://github.com/AppleWin/AppleWin.git
synced 2026-04-21 07:17:41 +00:00
Remove the top-level AppleWin folder
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
#include "StdAfx.h"
|
||||
|
||||
#ifdef USE_SPEECH_API
|
||||
#include <sapi.h>
|
||||
#include "Speech.h"
|
||||
|
||||
CSpeech::~CSpeech(void)
|
||||
{
|
||||
// Don't do this: causes crash on app exit!
|
||||
//if (m_cpVoice)
|
||||
// m_cpVoice->Release();
|
||||
}
|
||||
|
||||
bool CSpeech::Init(void)
|
||||
{
|
||||
HRESULT hr = CoCreateInstance(CLSID_SpVoice, NULL, CLSCTX_INPROC, IID_ISpVoice, (LPVOID*)&m_cpVoice);
|
||||
return hr == S_OK;
|
||||
}
|
||||
|
||||
void CSpeech::Reset(void)
|
||||
{
|
||||
if (!m_cpVoice)
|
||||
return;
|
||||
|
||||
HRESULT hr = m_cpVoice->Speak(NULL, SPF_PURGEBEFORESPEAK, 0);
|
||||
_ASSERT(hr == S_OK);
|
||||
}
|
||||
|
||||
void CSpeech::Speak(const char* const pBuffer)
|
||||
{
|
||||
if (!m_cpVoice)
|
||||
return;
|
||||
|
||||
size_t uSize;
|
||||
errno_t err = mbstowcs_s(&uSize, NULL, 0, pBuffer, 0);
|
||||
if (err)
|
||||
return;
|
||||
|
||||
WCHAR* pszWTextString = new WCHAR[uSize];
|
||||
if (!pszWTextString)
|
||||
return;
|
||||
|
||||
err = mbstowcs_s(&uSize, pszWTextString, uSize, pBuffer, uSize);
|
||||
if (err)
|
||||
{
|
||||
delete [] pszWTextString;
|
||||
return;
|
||||
}
|
||||
|
||||
HRESULT hr = m_cpVoice->Speak(pszWTextString, SPF_ASYNC | SPF_IS_NOT_XML, 0);
|
||||
_ASSERT(hr == S_OK);
|
||||
|
||||
hr = m_cpVoice->Resume();
|
||||
_ASSERT(hr == S_OK);
|
||||
|
||||
delete [] pszWTextString;
|
||||
}
|
||||
|
||||
#endif // USE_SPEECH_API
|
||||
Reference in New Issue
Block a user