summaryrefslogtreecommitdiff
path: root/plugins/!NotAdopted/WinterSpeak/speak/config/speech_interface.cpp
blob: c80a2191658a5aad6ed72a2572bcfdac4951229e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
//==============================================================================
// 	Miranda Speak Plugin, © 2002 Ryan Winter
//==============================================================================

#pragma warning(disable:4786)

#include "speech_interface.h"

#include "config/config_database.h"

#include <general/debug/debug.h>
#include <general/text_to_speech/speech_api_40a/speech_api_40a.h>
#include <general/text_to_speech/speech_api_51/speech_api_51.h>

//------------------------------------------------------------------------------
// public:
//------------------------------------------------------------------------------
SpeechInterface::SpeechInterface()
{
	CLASSCERR("SpeechInterface::SpeechInterface");
}

//------------------------------------------------------------------------------
SpeechInterface::~SpeechInterface()
{
	CLASSCERR("SpeechInterface::~SpeechInterface");
}

//------------------------------------------------------------------------------
TextToSpeech *
SpeechInterface::createTts(std::string &engine) const
{
	CLASSCERR("SpeechInterface::createTts()");

	TextToSpeech *tts = 0;

	if (SpeechApi40a::getDescription() == engine)
	{
		tts = new SpeechApi40a();
	}
	else if (SpeechApi51::getDescription() == engine)
	{
		tts = new SpeechApi51();
	}

	CLASSCERR("SpeechInterface::createTts() return " << tts);
	return tts;
}

//------------------------------------------------------------------------------
void
SpeechInterface::configureTts(TextToSpeech *tts, const VoiceDesc &desc) const
{
	CLASSCERR("SpeechInterface::configureTts(" << tts << ",)");

    if (!tts)
    {
        return;
    }
    
    tts->setVoice(desc.voice);
	tts->setVolume(desc.volume);
	tts->setRate(desc.rate);
	tts->setPitch(desc.pitch);
    tts->load();
}

//------------------------------------------------------------------------------
std::vector<std::string>
SpeechInterface::getAvailableEngines()
{
	CLASSCERR("SpeechInterface::getAvailableEngines");

    std::vector<std::string> engines;
    
    SpeechApi40a sapi40a;
    if (sapi40a.isAvailable())
    {
        engines.push_back(SpeechApi40a::getDescription());
    }

    SpeechApi51 sapi51;
    if (sapi51.isAvailable())
    {
        engines.push_back(SpeechApi51::getDescription());
    }

    return engines;
}

//==============================================================================