COMMON: Rewrite Encoder and drop dependency on iconv (#2586)

Different platforms have different levels of support of encodings and
often have slight variations. We already have tables for most encoding
with only CJK missing. Full transcoding inclusion allows us to get reliable
encoding results independently of platform. The biggest con is the need for
external tables encoding.dat.

It removes a duplicate table for korean in graphics/korfont.cpp
This commit is contained in:
Vladimir Serbinenko 2020-11-15 16:20:35 +01:00 committed by GitHub
parent 228806a158
commit 68a9136e4d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
74 changed files with 40828 additions and 2997 deletions

View file

@ -169,8 +169,6 @@ protected:
virtual bool setGraphicsMode(int mode, uint flags) override;
virtual int getGraphicsMode() const override;
#endif
protected:
virtual char *convertEncoding(const char *to, const char *from, const char *string, size_t length) override;
};
#endif