2024-05-23 15:40:12 -04:00
|
|
|
namespace MPF.ExecutionContexts.Aaru
|
2024-05-21 16:38:53 -04:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Supported encodings for Aaru
|
|
|
|
|
/// </summary>
|
|
|
|
|
/// TODO: Use to verify encoding settings
|
|
|
|
|
public static class EncodingStrings
|
|
|
|
|
{
|
|
|
|
|
public const string ArabicMac = "x-mac-arabic";
|
|
|
|
|
public const string AtariASCII = "atascii";
|
|
|
|
|
public const string CentralEuropeanMac = "x-mac-ce";
|
|
|
|
|
public const string CommodorePETSCII = "petscii";
|
|
|
|
|
public const string CroatianMac = "x-mac-croatian";
|
|
|
|
|
public const string CyrillicMac = "x-mac-cryillic";
|
|
|
|
|
public const string FarsiMac = "x-mac-farsi";
|
|
|
|
|
public const string GreekMac = "x-mac-greek";
|
|
|
|
|
public const string HebrewMac = "x-mac-hebrew";
|
|
|
|
|
public const string RomanianMac = "x-mac-romanian";
|
|
|
|
|
public const string SinclairZXSpectrum = "spectrum";
|
|
|
|
|
public const string SinclairZX80 = "zx80";
|
|
|
|
|
public const string SinclairZX81 = "zx81";
|
|
|
|
|
public const string TurkishMac = "x-mac-turkish";
|
|
|
|
|
public const string UkrainianMac = "x-mac-ukrainian";
|
|
|
|
|
public const string Unicode = "utf-16";
|
|
|
|
|
public const string UnicodeBigEndian = "utf-16BE";
|
|
|
|
|
public const string UnicodeUTF32BigEndian = "utf-32BE";
|
|
|
|
|
public const string UnicodeUTF32 = "utf-32";
|
|
|
|
|
public const string UnicodeUTF7 = "utf-7";
|
|
|
|
|
public const string UnicodeUTF8 = "utf-8";
|
|
|
|
|
public const string USASCII = "us-ascii";
|
|
|
|
|
public const string WesternEuropeanAppleII = "apple2";
|
|
|
|
|
public const string WesternEuropeanAppleIIc = "apple2c";
|
|
|
|
|
public const string WesternEuropeanAppleIIe = "apple2e";
|
|
|
|
|
public const string WesternEuropeanAppleIIgs = "apple2gs";
|
|
|
|
|
public const string WesternEuropeanAppleLisa = "lisa";
|
|
|
|
|
public const string WesternEuropeanAtariST = "atarist";
|
|
|
|
|
public const string WesternEuropeanGEM = "gem";
|
|
|
|
|
public const string WesternEuropeanGEOS = "geos";
|
|
|
|
|
public const string WesternEuropeanISO = "iso-8859-1";
|
|
|
|
|
public const string WesternEuropeanMac = "macintosh";
|
|
|
|
|
public const string WesternEuropeanRadix50 = "radix50";
|
|
|
|
|
}
|
2025-11-25 09:14:46 -05:00
|
|
|
}
|