Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | |
2019-08-24 | COMMON: Add encoding conversion using iconv | Jaromir Wysoglad | |
2019-08-20 | COMMON: added support for ini files with non english characters | Andrei Prykhodko | |
2019-08-20 | COMMON: Handle invalid INI file characters gracefully | Filippos Karapetis | |
This replaces all the asserts with warning messages | |||
2019-08-19 | COMMON: fixed reading ini files which have not value for key | Andrei Prykhodko | |
2019-08-13 | LUA: Fix end of namespace comment | Cameron Cawley | |
2019-08-13 | LUA: Remove duplicate object file from module.mk | Cameron Cawley | |
2019-08-13 | COMMON: Move Lua into Common and make it into... | Nipun Garg | |
an engine feature | |||
2019-08-11 | COMMON: Implement FSNode::createDirectoryRecursive() | Cameron Cawley | |
2019-08-11 | COMMON: Add warnings on failed FSNode::createDirectory() | lolbot-iichan | |
2019-08-11 | COMMON: Implement createDirectory() method to Common::FSNode | lolbot-iichan | |
Added a simple wrapper for AbstractFSNode::create(true) since there was no way to create directories. | |||
2019-08-06 | BACKENDS: Rename and simplify AbstractFSNode::create() | Cameron Cawley | |
2019-07-30 | COMMON: Update getHumanReadableBytes() in util.h | Alexander Tkachev | |
Function now casts bytes (as <1024) to unsigned long int to correspond "%lu" format string. For consistency, KB are now printed as floating number. Finally, it looks like double is pretty precise to be used in comparisons, so I made the function a little bit shorter. | |||
2019-07-30 | COMMON: Add getHumanReadableBytes() in util.h | Alexander Tkachev | |
This function was used in cloud-related DownloadDialog before, and now it is also used in Options > Cloud tab. | |||
2019-07-24 | COMMON: Add Default Values for Joystick State Structure | D G Turner | |
This ensures that this has a defined value when used without the engine needing to set the field values directly i.e. as per CGE. | |||
2019-07-24 | COMMON: Add wrappers for iscntrl() and isgraph() | Cameron Cawley | |
2019-07-21 | COMMON: Add conversion table for CP1254 | lolbot-iichan | |
2019-07-18 | COMMON: Fix U32String initialization issues | Peter Kohaut | |
Bug 1: If the original C string contained chars > 127 they would be stored as huge u32 numbers due to the underflow as char is signed. It still might end-up with invalid UTF32 characters, but now the caller can control it. Bug 2: The inline storage was not properly initialized when U32String was initalized from shorter non-UTF32 strings. | |||
2019-07-16 | COMMON: Add Turkish language | lolbot-iichan | |
2019-07-13 | SDL: Fix compiler warning and joystick event handling | jepael | |
2019-07-08 | COMMON: Open the main menu when the joystick START button is pressed | Cameron Cawley | |