mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 03:44:13 +08:00
(TryOpen): use lazy evaluation for filename extension check.
This commit is contained in:
parent
5d876b69bc
commit
f15676d0a1
@ -64,8 +64,8 @@ namespace GameRes
|
|||||||
/// </returns>
|
/// </returns>
|
||||||
public static ArcFile TryOpen (string filename)
|
public static ArcFile TryOpen (string filename)
|
||||||
{
|
{
|
||||||
|
var ext = new Lazy<string> (() => Path.GetExtension (filename).TrimStart ('.').ToLower());
|
||||||
var file = new ArcView (filename);
|
var file = new ArcView (filename);
|
||||||
string ext = Path.GetExtension (filename).TrimStart ('.').ToLower();
|
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
uint signature = file.View.ReadUInt32 (0);
|
uint signature = file.View.ReadUInt32 (0);
|
||||||
@ -73,7 +73,9 @@ namespace GameRes
|
|||||||
{
|
{
|
||||||
var range = FormatCatalog.Instance.LookupSignature<ArchiveFormat> (signature);
|
var range = FormatCatalog.Instance.LookupSignature<ArchiveFormat> (signature);
|
||||||
// check formats that match filename extension first
|
// check formats that match filename extension first
|
||||||
foreach (var impl in range.OrderByDescending (f => f.Extensions.First() == ext))
|
if (range.Skip(1).Any()) // if range.Count() > 1
|
||||||
|
range = range.OrderByDescending (f => f.Extensions.First() == ext.Value);
|
||||||
|
foreach (var impl in range)
|
||||||
{
|
{
|
||||||
try
|
try
|
||||||
{
|
{
|
||||||
|
Loading…
x
Reference in New Issue
Block a user