Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-02 | COMMON: Don't include win32.h in common/encoding.h | SupSuper | |
2019-09-01 | COMMON: Add CP437 encoding conversion table. | Jaromir Wysoglad | |
2019-09-01 | COMMON: Add CP850 conversion. | Jaromir Wysoglad | |
CP850 is used by the mortevielle engine (and apparently by other engines too). Anytime an engine using CP850 encoding wants to use the TTS, the encoding has to be converted, so this is pretty important encoding conversion to support. Unfortunately SDL (when compiled without iconv) doesn't support this encoding (which means, there might not be a way to convert this encoding on some platforms), so I added a conversion table for this. | |||
2019-09-01 | TTS: Better documentation of TTSVoice. | 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 | JANITORIAL: Remove some trailing whitespaces | Jaromir Wysoglad | |
2019-09-01 | TTS: Update documentation of INTERRUPT_NO_REPEAT | Jaromir Wysoglad | |
2019-09-01 | TTS: Improve documentation | Jaromir Wysoglad | |
2019-09-01 | TTS: Add *_NO_REPEAT actions | Jaromir Wysoglad | |
2019-09-01 | TTS: Make one say() method non-virtual | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement speech queueing on Linux and Win | Jaromir Wysoglad | |
2019-09-01 | TTS: Improve documentation | Thierry Crozat | |
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: 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: Fix state switching on windows | Jaromir Wysoglad | |
Voice is changed when changing language on windows, so when poping state, the voice, that should get set has to be saved before changing the language. The speech shouldn't continue when changing state, so it is stopped in pushState and popState. | |||
2019-09-01 | TTS: Add getVoiceIndicesByGender to the base class | Jaromir Wysoglad | |
This is a way to easily get a list of voices with the given gender | |||
2019-09-01 | TTS: Add check to getVoice, fix typo. | Jaromir Wysoglad | |
Check if _availableVoices isn't empty. Replace availaible with available | |||
2019-09-01 | TTS: Update the TTS documentation | Jaromir Wysoglad | |
2019-09-01 | TTS: Move popState to the base class | Jaromir Wysoglad | |
2019-09-01 | TTS: Implement conversion to UTF-8 in say on linux | Jaromir Wysoglad | |
2019-09-01 | TTS: Add reference counting to TTSVoice | Jaromir Wysoglad | |
Also refactor TTSVoice destruction to use this reference counting. | |||
2019-09-01 | TTS: Implement default behavior of TTS setters | Jaromir Wysoglad | |
2019-09-01 | TTS: Add documentation to common/text-to-speech.h | Jaromir Wysoglad | |
2019-09-01 | TTS: Add age to TTSVoice | Jaromir Wysoglad | |
2019-09-01 | TTS: Finish implementing the Windows TTS manager | Jaromir Wysoglad | |
2019-09-01 | TTS: Add voice selection to options | Jaromir Wysoglad | |
2019-09-01 | TTS: Add text to speech to the GUI. | Jaromir Wysoglad | |
2019-09-01 | TTS: Add ttsStatus push and pop functions | Jaromir Wysoglad | |
2019-09-01 | TTS: Add checks for correct TTS engine state. | Jaromir Wysoglad | |
2019-09-01 | TTS: Resolve segfault when exiting scummvm | Jaromir Wysoglad | |
2019-09-01 | TTS: Add part of linux TTS | Jaromir Wysoglad | |
2019-09-01 | TTS: Create a TTS skeleton | Jaromir Wysoglad | |
2019-08-25 | COMMON: Don't include iconv.h in common/encoding.h | Jaromir Wysoglad | |
Move #include<iconv.h> from common/encoding.h to common/encoding.cpp and change the methods accordingly. This resulted in not saving the iconvHandle if using the "non-static" version of conversion, but it simplified the code and hopefuly resolved issues with forbidden symbols on some platforms. | |||
2019-08-25 | COMMON: Don't include config.h before scummsys.h | Jaromir Wysoglad | |
Thil should fix the ds build. For some reason I thought the forbidden.h wouldn't allow me to include the iconv.h, so I tryed to include it before the forbidden.h (it seems like I didn't have to do that.) | |||
2019-08-24 | COMMON: Convert endianity when needed in Encoding. | Jaromir Wysoglad | |
2019-08-24 | COMMON: Fix typos | Jaromir Wysoglad | |
2019-08-24 | COMMON: Encoding refactoring | Jaromir Wysoglad | |
2019-08-24 | COMMON: Add OSystem::convertEncoding documentation | Jaromir Wysoglad | |
2019-08-24 | COMMON: Add missing documentation. | Jaromir Wysoglad | |
2019-08-24 | JANITORIAL: Remove debuging code. | Jaromir Wysoglad | |
2019-08-24 | COMMON: Resolve endianity in Encoding | Jaromir Wysoglad | |
2019-08-24 | COMMON: Rename methods in Common::Encoding | Jaromir Wysoglad | |
2019-08-24 | COMMON: Refactor convertIconv | Jaromir Wysoglad | |
2019-08-24 | COMMON: Check for return values in Encoding | Jaromir Wysoglad | |
2019-08-24 | COMMON: Add propper Encoding setters | Jaromir Wysoglad | |
2019-08-24 | COMMON: Add documentation to Common::Encoding | Jaromir Wysoglad | |
2019-08-24 | COMMON: Add cyrilic transliteration to Encoding. | Jaromir Wysoglad | |
2019-08-24 | COMMON: Add transMan mapping encoding conversion. | Jaromir Wysoglad | |
2019-08-24 | COMMON: Use backend specific encoding conversion | Jaromir Wysoglad | |
2019-08-24 | OSYSTEM: Add convertEncoding virtual method | Jaromir Wysoglad | |