mirror of
https://github.com/crskycode/GARbro.git
synced 2026-07-08 01:30:18 +08:00
(RepiPack): use ToLowerShiftJis extension method.
This commit is contained in:
@@ -47,7 +47,7 @@ namespace GameRes.Formats.Littlewitch
|
|||||||
|
|
||||||
public byte[] CreateKey ()
|
public byte[] CreateKey ()
|
||||||
{
|
{
|
||||||
var name_bytes = DatOpener.ToLowerAscii (Name);
|
var name_bytes = Name.ToLowerShiftJis();
|
||||||
int name_length = name_bytes.Length;
|
int name_length = name_bytes.Length;
|
||||||
var md5 = new MD5();
|
var md5 = new MD5();
|
||||||
Array.Reverse (name_bytes);
|
Array.Reverse (name_bytes);
|
||||||
@@ -208,7 +208,7 @@ namespace GameRes.Formats.Littlewitch
|
|||||||
{
|
{
|
||||||
var md5 = new MD5();
|
var md5 = new MD5();
|
||||||
FormatCatalog.Instance.ReadFileList (ListFileName, name => {
|
FormatCatalog.Instance.ReadFileList (ListFileName, name => {
|
||||||
var name_bytes = ToLowerAscii (name);
|
var name_bytes = name.ToLowerShiftJis();
|
||||||
var hash = md5.ComputeHash (name_bytes);
|
var hash = md5.ComputeHash (name_bytes);
|
||||||
dict[hash] = name;
|
dict[hash] = name;
|
||||||
});
|
});
|
||||||
@@ -219,20 +219,6 @@ namespace GameRes.Formats.Littlewitch
|
|||||||
}
|
}
|
||||||
return dict;
|
return dict;
|
||||||
}
|
}
|
||||||
|
|
||||||
internal static byte[] ToLowerAscii (string text)
|
|
||||||
{
|
|
||||||
var text_bytes = Encodings.cp932.GetBytes (text);
|
|
||||||
for (int i = 0; i < text_bytes.Length; ++i)
|
|
||||||
{
|
|
||||||
byte c = text_bytes[i];
|
|
||||||
if (c >= 'A' && c <= 'Z')
|
|
||||||
text_bytes[i] += 0x20;
|
|
||||||
else if (c > 0x7F && c < 0xA1 || c > 0xDF)
|
|
||||||
++i;
|
|
||||||
}
|
|
||||||
return text_bytes;
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
internal class Md5Comparer : IEqualityComparer<byte[]>
|
internal class Md5Comparer : IEqualityComparer<byte[]>
|
||||||
|
|||||||
Reference in New Issue
Block a user