X-Git-Url: https://git.distorted.org.uk/~mdw/sgt/putty/blobdiff_plain/facd762ca8b5eb6cad4171cb3deb2f3ef2957dc0..8dacc30e3a1bd57526c21b701383f69ef93a6703:/unix/uxucs.c diff --git a/unix/uxucs.c b/unix/uxucs.c index 928acae9..8731239f 100644 --- a/unix/uxucs.c +++ b/unix/uxucs.c @@ -58,7 +58,8 @@ int mb_to_wc(int codepage, int flags, char *mbstr, int mblen, } int wc_to_mb(int codepage, int flags, wchar_t *wcstr, int wclen, - char *mbstr, int mblen, char *defchr, int *defused) + char *mbstr, int mblen, char *defchr, int *defused, + struct unicode_data *ucsdata) { /* FIXME: we should remove the defused param completely... */ if (defused) @@ -97,13 +98,17 @@ int wc_to_mb(int codepage, int flags, wchar_t *wcstr, int wclen, return n; } else { return charset_from_unicode(&wcstr, &wclen, mbstr, mblen, codepage, - NULL, NULL, 0); + NULL, defchr?defchr:NULL, defchr?1:0); } } -void init_ucs(int font_charset) +/* + * Return value is TRUE if pterm is to run in direct-to-font mode. + */ +int init_ucs(struct unicode_data *ucsdata, + char *linecharset, int font_charset) { - int i; + int i, ret = 0; /* * In the platform-independent parts of the code, font_codepage @@ -111,15 +116,15 @@ void init_ucs(int font_charset) * support at all. So we set this to something which will never * be used. */ - font_codepage = -1; + ucsdata->font_codepage = -1; /* * line_codepage should be decoded from the specification in * cfg. */ - line_codepage = charset_from_mimeenc(cfg.line_codepage); - if (line_codepage == CS_NONE) - line_codepage = charset_from_xenc(cfg.line_codepage); + ucsdata->line_codepage = charset_from_mimeenc(linecharset); + if (ucsdata->line_codepage == CS_NONE) + ucsdata->line_codepage = charset_from_xenc(linecharset); /* * If line_codepage is _still_ CS_NONE, we assume we're using @@ -128,8 +133,11 @@ void init_ucs(int font_charset) * font we were given had an incomprehensible charset - then we * fall back to using the D800 page. */ - if (line_codepage == CS_NONE) - line_codepage = font_charset; + if (ucsdata->line_codepage == CS_NONE) + ucsdata->line_codepage = font_charset; + + if (ucsdata->line_codepage == CS_NONE) + ret = 1; /* * Set up unitab_line, by translating each individual character @@ -142,13 +150,14 @@ void init_ucs(int font_charset) c[0] = i; p = c; len = 1; - if (line_codepage == CS_NONE) - unitab_line[i] = 0xD800 | i; - else if (1 == charset_to_unicode(&p, &len, wc, 1, line_codepage, + if (ucsdata->line_codepage == CS_NONE) + ucsdata->unitab_line[i] = 0xD800 | i; + else if (1 == charset_to_unicode(&p, &len, wc, 1, + ucsdata->line_codepage, NULL, L"", 0)) - unitab_line[i] = wc[0]; + ucsdata->unitab_line[i] = wc[0]; else - unitab_line[i] = 0xFFFD; + ucsdata->unitab_line[i] = 0xFFFD; } /* @@ -169,9 +178,9 @@ void init_ucs(int font_charset) 0x2502, 0x2264, 0x2265, 0x03c0, 0x2260, 0x00a3, 0x00b7, 0x0020 }; if (i >= 0x5F && i < 0x7F) - unitab_xterm[i] = unitab_xterm_std[i & 0x1F]; + ucsdata->unitab_xterm[i] = unitab_xterm_std[i & 0x1F]; else - unitab_xterm[i] = unitab_line[i]; + ucsdata->unitab_xterm[i] = ucsdata->unitab_line[i]; } /* @@ -186,9 +195,9 @@ void init_ucs(int font_charset) p = c; len = 1; if (1 == charset_to_unicode(&p, &len, wc, 1, CS_CP437, NULL, L"", 0)) - unitab_scoacs[i] = wc[0]; + ucsdata->unitab_scoacs[i] = wc[0]; else - unitab_scoacs[i] = 0xFFFD; + ucsdata->unitab_scoacs[i] = 0xFFFD; } /* @@ -199,11 +208,13 @@ void init_ucs(int font_charset) * used in this way will be IBM or MS code pages anyway.) */ for (i = 0; i < 256; i++) { - int lineval = unitab_line[i]; + int lineval = ucsdata->unitab_line[i]; if (lineval < ' ' || (lineval >= 0x7F && lineval < 0xA0) || (lineval >= 0xD800 && lineval < 0xD820) || (lineval == 0xD87F)) - unitab_ctrl[i] = i; + ucsdata->unitab_ctrl[i] = i; else - unitab_ctrl[i] = 0xFF; + ucsdata->unitab_ctrl[i] = 0xFF; } + + return ret; }