summaryrefslogtreecommitdiffstatshomepage
path: root/src
diff options
context:
space:
mode:
author Nathan Woods <npwoods@mess.org>2016-12-23 09:41:11 -0500
committer Nathan Woods <npwoods@mess.org>2017-01-14 11:45:10 -0500
commitacdefe2ecc087a8b5fc8ab3453162bd20935b9c2 (patch)
treef8443dbff0e97f30431c16263db4dbf97ad379d7 /src
parent19529fe768ac5c58d9201d508e76c50aa61ab138 (diff)
[Imgtool Mac] Adding support for MacRoman encoding
Diffstat (limited to 'src')
-rw-r--r--src/tools/imgtool/modules/mac.cpp30
1 files changed, 30 insertions, 0 deletions
diff --git a/src/tools/imgtool/modules/mac.cpp b/src/tools/imgtool/modules/mac.cpp
index 36295ada397..b379286438d 100644
--- a/src/tools/imgtool/modules/mac.cpp
+++ b/src/tools/imgtool/modules/mac.cpp
@@ -6343,6 +6343,35 @@ static imgtoolerr_t mac_image_suggesttransfer(imgtool::partition &partition, con
/*************************************
+*
+* MacOS Roman Conversion
+*
+*************************************/
+
+static const char32_t macos_roman_code_page[128] =
+{
+ // 0x80 - 0x8F
+ 0x00C4, 0x00C5, 0x00C7, 0x00C9, 0x00D1, 0x00D6, 0x00DC, 0x00E1, 0x00E0, 0x00E2, 0x00E4, 0x00E3, 0x00E5, 0x00E7, 0x00E9, 0x00E8,
+ // 0x90 - 0x9F
+ 0x00EA, 0x00EB, 0x00ED, 0x00EC, 0x00EE, 0x00EF, 0x00F1, 0x00F3, 0x00F2, 0x00F4, 0x00F6, 0x00F5, 0x00FA, 0x00F9, 0x00FB, 0x00FC,
+ // 0xA0 - 0xAF
+ 0x2020, 0x00B0, 0x00A2, 0x00A3, 0x00A7, 0x2022, 0x00B6, 0x00DF, 0x00AE, 0x00A9, 0x2122, 0x00B4, 0x00A8, 0x2260, 0x00C6, 0x00D8,
+ // 0xB0 - 0xBF
+ 0x221E, 0x00B1, 0x2264, 0x2265, 0x00A5, 0x00B5, 0x2202, 0x2211, 0x220F, 0x03C0, 0x222B, 0x00AA, 0x00BA, 0x03A9, 0x00E6, 0x00F8,
+ // 0xC0 - 0xCF
+ 0x00BF, 0x00A1, 0x00AC, 0x221A, 0x0192, 0x2248, 0x2206, 0x00AB, 0x00BB, 0x2026, 0x00A0, 0x00C0, 0x00C3, 0x00D5, 0x0152, 0x0153,
+ // 0xD0 - 0xDF
+ 0x2013, 0x2014, 0x201C, 0x201D, 0x2018, 0x2019, 0x00F7, 0x25CA, 0x00FF, 0x0178, 0x2044, 0x20AC, 0x2039, 0x203A, 0xFB01, 0xFB02,
+ // 0xE0 - 0xEF
+ 0x2021, 0x00B7, 0x201A, 0x201E, 0x2030, 0x00C2, 0x00CA, 0x00C1, 0x00CB, 0x00C8, 0x00CD, 0x00CE, 0x00CF, 0x00CC, 0x00D3, 0x00D4,
+ // 0xF0 - 0xFF
+ 0xF8FF, 0x00D2, 0x00DA, 0x00DB, 0x00D9, 0x0131, 0x02C6, 0x02DC, 0x00AF, 0x02D8, 0x02D9, 0x02DA, 0x00B8, 0x02DD, 0x02DB, 0x02C7
+};
+
+static imgtool::simple_charconverter charconverter_macos_roman(macos_roman_code_page);
+
+
+/*************************************
*
* Module population
*
@@ -6376,6 +6405,7 @@ static void generic_mac_get_info(const imgtool_class *imgclass, uint32_t state,
case IMGTOOLINFO_PTR_GET_ICON_INFO: info->get_iconinfo = mac_image_geticoninfo; break;
case IMGTOOLINFO_PTR_SUGGEST_TRANSFER: info->suggest_transfer = mac_image_suggesttransfer; break;
case IMGTOOLINFO_PTR_FLOPPY_FORMAT: info->p = (void *) floppyoptions_apple35_mac; break;
+ case IMGTOOLINFO_PTR_CHARCONVERTER: info->charconverter = &charconverter_macos_roman; break;
}
}