Age | Commit message (Collapse) | Author | |
---|---|---|---|
2019-09-05 | COMMON: Add string size computation to Encoding. | Jaromir Wysoglad | |
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-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-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 | 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 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 | COMMON: Add encoding conversion using iconv | Jaromir Wysoglad | |