ScummVM API documentation
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
macosx-text-to-speech.h
1 /* ScummVM - Graphic Adventure Engine
2  *
3  * ScummVM is the legal property of its developers, whose names
4  * are too numerous to list here. Please refer to the COPYRIGHT
5  * file distributed with this source distribution.
6  *
7  * This program is free software: you can redistribute it and/or modify
8  * it under the terms of the GNU General Public License as published by
9  * the Free Software Foundation, either version 3 of the License, or
10  * (at your option) any later version.
11  *
12  * This program is distributed in the hope that it will be useful,
13  * but WITHOUT ANY WARRANTY; without even the implied warranty of
14  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15  * GNU General Public License for more details.
16  *
17  * You should have received a copy of the GNU General Public License
18  * along with this program. If not, see <http://www.gnu.org/licenses/>.
19  *
20  */
21 
22 #ifndef BACKENDS_TEXT_TO_SPEECH_MACOSX_H
23 #define BACKENDS_TEXT_TO_SPEECH_MACOSX_H
24 
25 #include "common/scummsys.h"
26 
27 #if defined(USE_TTS) && defined(MACOSX)
28 
29 #include "common/text-to-speech.h"
30 #include "common/queue.h"
31 #include "common/ustr.h"
32 
33 class MacOSXTextToSpeechManager : public Common::TextToSpeechManager {
34 public:
35  MacOSXTextToSpeechManager();
36  ~MacOSXTextToSpeechManager() override;
37 
38  bool say(const Common::U32String &str, Action action) override;
39 
40  bool stop() override;
41  bool pause() override;
42  bool resume() override;
43 
44  bool isSpeaking() override;
45  bool isPaused() override;
46  bool isReady() override;
47 
48  void setVoice(unsigned index) override;
49 
50  void setRate(int rate) override;
51 
52  void setPitch(int pitch) override;
53 
54  void setVolume(unsigned volume) override;
55 
56  void setLanguage(Common::String language) override;
57 
58  int getDefaultVoice() override;
59 
60  void freeVoiceData(void *data) override;
61 
62  bool startNextSpeech();
63 
64 private:
65  void updateVoices() override;
66 
67  Common::Queue<Common::String> _messageQueue;
68  Common::String _currentSpeech;
69  bool _paused;
70 };
71 
72 #endif
73 
74 #endif // BACKENDS_TEXT_TO_SPEECH_MACOSX_H
75 
Definition: str.h:59
virtual void setRate(int rate)
Definition: text-to-speech.h:258
virtual bool stop()
Definition: text-to-speech.h:210
virtual void setVoice(unsigned index)
Definition: text-to-speech.h:246
virtual void freeVoiceData(void *data)
Definition: text-to-speech.h:338
virtual bool isSpeaking()
Definition: text-to-speech.h:229
virtual void setVolume(unsigned volume)
Definition: text-to-speech.h:282
virtual bool say(const U32String &str, Action action)
Definition: text-to-speech.h:178
virtual void setPitch(int pitch)
Definition: text-to-speech.h:270
virtual bool isReady()
Definition: text-to-speech.h:239
Definition: ustr.h:57
virtual bool pause()
Definition: text-to-speech.h:215
virtual void setLanguage(String language)
virtual int getDefaultVoice()
Definition: text-to-speech.h:323
Definition: text-to-speech.h:145
virtual bool resume()
Definition: text-to-speech.h:224
virtual bool isPaused()
Definition: text-to-speech.h:234