Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-01 | TESTBED: Fix include guard in speech.h | Jaromir Wysoglad | |
2019-09-01 | WIN32: Use uint instead of unsigned int. | Jaromir Wysoglad | |
2019-09-01 | TTS: Better documentation of TTSVoice. | Jaromir Wysoglad | |
2019-09-01 | TTS: Rename LinuxTextToSpeechManager to SpeechDispatcherManager | Jaromir Wysoglad | |
Add a new define for the SpeechDispatcherManager | |||
2019-09-01 | TTS: Remove USE_PLATFORM_TTS defines | Jaromir Wysoglad | |
Use defined(USE_TTS) && defined(PLATFORM) instead | |||
2019-09-01 | TTS: Add summary of changes in sphelper-scummvm.h | Jaromir Wysoglad | |
2019-09-01 | TTS: Refactoring | Jaromir Wysoglad | |
Refactoring as suggested by bluegr on github. | |||
2019-09-01 | TESTBED: Don't build TTS tests if TTS is disabled | Jaromir Wysoglad | |
2019-09-01 | TTS: Document diferences in resume() | Jaromir Wysoglad | |
On linux the resume() behaves slightly differently than on other platforms. | |||
2019-09-01 | TTS: Fix missing indentation | Jaromir Wysoglad | |
2019-09-01 | JANITORIAL: Remove some trailing whitespaces | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement our own queuing on windows. | Jaromir Wysoglad | |
Similarly as on linux, there isn't enough control of the speech queue to properly implement INTERRUPT_NO_REPEAT. So since this commit we use our own queuing and use SAPI to speak each speech. This is done outside the main thread. | |||
2019-09-01 | TESTBED: Increase pause in TTS pause test | Jaromir Wysoglad | |
2019-09-01 | TTS: Add proper speech queuing, update INT_NO_REP. | Jaromir Wysoglad | |
Before I used SPD to queue messages and I had a copy of the queue, so I could requeue everything when resume is called(). But more control of the queue is needed, so I don't use the SPD's queue and instead start speeches from my queue one by one from another thread. INTERRUPT_NO_REPEAT now behaves as described in the documentation | |||
2019-09-01 | TTS: Update documentation of INTERRUPT_NO_REPEAT | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Improve some TTS tests | Jaromir Wysoglad | |
2019-09-01 | TTS: Improve documentation | Jaromir Wysoglad | |
2019-09-01 | TTS: Restart SPD if resume() fails. | Jaromir Wysoglad | |
2019-09-01 | TTS: Fix INTERRUPT_NO_REPEAT on Windows | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement *_NO_REPEAT actions and Fix state synchronization issues on macOS | Thierry Crozat | |
The NSSpeechSynthesizer is asynchronous and does not immediately start, pause, or stop the speech. As a result querrying the state of the NSSpeechSynthesizer does not alwats return the expected result (for example isSpeaking may not yet been true just after we requested starting to speak). So instead the TextToSpeechManager on macOS keeps track of the state itself. | |||
2019-09-01 | TESTBED: Make sure to process events while waiting for speech to finish | Thierry Crozat | |
Same implementations of TextToSpeechManager may require system events to be processed for the state synchronisation to work properly. This commit also fixes a few typos or inconsistencies in some texts. | |||
2019-09-01 | TESTBED: Move the TTS tests after the critical components | Thierry Crozat | |
2019-09-01 | TTS: Implement our own queuing for linux | Jaromir Wysoglad | |
It seems like, that at least some versions of speech-dispatcher aren't able to successfuly pause and resume. For me, when trying to pause, it still finishes the speech just being said instead of pausing it and then it puts it at the end of the speech queue with some speech-dispatcher internal commands added to it, which are also hearable. There is no way to find out where the speech ended when calling pause, so it is just stopped and when resume is called it is read from it's start again. | |||
2019-09-01 | TTS: Use QUEUE_NO_REPEAT action for tooltips | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Add tests for TTS *_NO_REPEAT actions | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Rewrite parts of TTS tests. | Jaromir Wysoglad | |
As suggested by Criezy on github | |||
2019-09-01 | TTS: Add *_NO_REPEAT actions | Jaromir Wysoglad | |
2019-09-01 | TESTBED: Add state queries to TTS tests. | Jaromir Wysoglad | |
2019-09-01 | TTS: Reimplement isSpeaking on Windows. | Jaromir Wysoglad | |
2019-09-01 | TTS: Fix pause() and resume() on linux | Jaromir Wysoglad | |
2019-09-01 | TESTBET: Add TTS tests | Jaromir Wysoglad | |
2019-09-01 | TTS: Make state switching faster on Linux | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement speech queueing on macOS | Thierry Crozat | |
2019-09-01 | TTS: Make one say() method non-virtual | Jaromir Wysoglad | |
2019-09-01 | TTS: Don't read tooltips when TTS is speaking | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement speech queueing on Linux and Win | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement OSD message reading | Jaromir Wysoglad | |
2019-09-01 | TTS: Add tooltip reading when they appear. | Jaromir Wysoglad | |
2019-09-01 | TTS: Fix reading of list widgets | Jaromir Wysoglad | |
The TTS read items from list widgets even when the mouse was outside the widget | |||
2019-09-01 | TTS: Stop or pause speaking on word boundaries in macOS implementation | Thierry Crozat | |
2019-09-01 | TTS: Improve documentation | Thierry Crozat | |
2019-09-01 | TTS: Implement TextToSpeechManager for macOS | Thierry Crozat | |
2019-09-01 | TTS: Add TTS support when compiling with msvc. | Jaromir Wysoglad | |
2019-09-01 | MORTEVIELLE: Improve voice mapping to characters. | Jaromir Wysoglad | |
* Return pitch -= 6 to females, this brings the pitch closer to zero * Add array of indices which ensures, that we use as many voices as we can. | |||
2019-09-01 | MORTEVIELLE: Refactoring as suggested by Criezy | Jaromir Wysoglad | |
* Add checks if ttsMan != null before trying to use it * Simplify startSpeech * Move haut to startSpeech and pass the character index to the startSpeech instead. | |||
2019-09-01 | MORTEVILLE: Stop speech when pressing F8. | Jaromir Wysoglad | |
2019-09-01 | TTS: Remove unneeded code | Jaromir Wysoglad | |
Remove debuging outputs Remove commented iconv implementation of text conversion to UTF-8 | |||
2019-09-01 | TTS: Add checks to configure. | Jaromir Wysoglad | |
Check for presence of required libraries Disable automatic build of TTS on MinGW32 | |||
2019-09-01 | TTS: Refactoring | Jaromir Wysoglad | |
* Delete multiple empty rows * Make getVolume non-virtual and leave just the implementation in base class * Resolve warning about signed / unsigned comparison in gui-manager * Clear availableVoices when updating voices on linux * By default set language to transMan language on windows (if the transMan is available) * Remove freeVoices method from Windows ttsMan, it isn't needed anymore | |||
2019-09-01 | TTS: Remove "static" from initTextToSpeech() | Jaromir Wysoglad | |