mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 03:44:13 +08:00
(PCK): set ContainedFormats property.
This commit is contained in:
parent
1dbe45cf1e
commit
c2b8285aa2
@ -68,6 +68,11 @@ namespace GameRes.Formats.Tamamo
|
|||||||
public override bool IsHierarchic { get { return false; } }
|
public override bool IsHierarchic { get { return false; } }
|
||||||
public override bool CanWrite { get { return false; } }
|
public override bool CanWrite { get { return false; } }
|
||||||
|
|
||||||
|
public PckOpener ()
|
||||||
|
{
|
||||||
|
ContainedFormats = new[] { "PNG", "DDS", "OGG", "WAV", "TXT", "DAT/GENERIC" };
|
||||||
|
}
|
||||||
|
|
||||||
public override ArcFile TryOpen (ArcView file)
|
public override ArcFile TryOpen (ArcView file)
|
||||||
{
|
{
|
||||||
if (!file.View.AsciiEqual (4, "_FILE001"))
|
if (!file.View.AsciiEqual (4, "_FILE001"))
|
||||||
@ -99,7 +104,7 @@ namespace GameRes.Formats.Tamamo
|
|||||||
pos = name_end+1;
|
pos = name_end+1;
|
||||||
uint enc_size = index.ToUInt32 (pos);
|
uint enc_size = index.ToUInt32 (pos);
|
||||||
pos += 4;
|
pos += 4;
|
||||||
var entry = FormatCatalog.Instance.Create<PackedEntry> (name);
|
var entry = Create<PackedEntry> (name);
|
||||||
entry.Offset = data_offset;
|
entry.Offset = data_offset;
|
||||||
entry.Size = enc_size;
|
entry.Size = enc_size;
|
||||||
entry.UnpackedSize = size;
|
entry.UnpackedSize = size;
|
||||||
@ -257,4 +262,9 @@ namespace GameRes.Formats.Tamamo
|
|||||||
return key;
|
return key;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
[Export(typeof(ResourceAlias))]
|
||||||
|
[ExportMetadata("Extension", "TMX")]
|
||||||
|
[ExportMetadata("Target", "DAT/GENERIC")]
|
||||||
|
public class TmxFormat : ResourceAlias { }
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user