mirror of
https://github.com/crskycode/GARbro.git
synced 2024-11-27 07:34:00 +08:00
implemented Majiro archives version 3.
This commit is contained in:
parent
429ac63a30
commit
63e83447ff
@ -34,17 +34,6 @@ using GameRes.Utility;
|
||||
|
||||
namespace GameRes.Formats.Majiro
|
||||
{
|
||||
internal class MajiroArchive : ArcFile
|
||||
{
|
||||
public uint Key { get; private set; }
|
||||
|
||||
public MajiroArchive (ArcView arc, ArchiveFormat impl, ICollection<Entry> dir, uint key)
|
||||
: base (arc, impl, dir)
|
||||
{
|
||||
Key = key;
|
||||
}
|
||||
}
|
||||
|
||||
public class MajiroOptions : ResourceOptions
|
||||
{
|
||||
public uint Key { get; set; }
|
||||
@ -56,7 +45,7 @@ namespace GameRes.Formats.Majiro
|
||||
{
|
||||
public override string Tag { get { return "MAJIRO"; } }
|
||||
public override string Description { get { return "Majiro game engine resource archive"; } }
|
||||
public override uint Signature { get { return 0x696a614d; } }
|
||||
public override uint Signature { get { return 0x696a614d; } } // 'Maji'
|
||||
public override bool IsHierarchic { get { return false; } }
|
||||
public override bool CanCreate { get { return true; } }
|
||||
|
||||
@ -67,18 +56,15 @@ namespace GameRes.Formats.Majiro
|
||||
|
||||
public override ArcFile TryOpen (ArcView file)
|
||||
{
|
||||
int version;
|
||||
if (file.View.AsciiEqual (0, "MajiroArcV1.000\0"))
|
||||
version = 1;
|
||||
else if (file.View.AsciiEqual (0, "MajiroArcV2.000\0"))
|
||||
version = 2;
|
||||
else
|
||||
if (!file.View.AsciiEqual (4, "roArcV"))
|
||||
return null;
|
||||
int version = file.View.ReadByte (0xA) - '0';
|
||||
if (version < 1 || version > 3 || !file.View.AsciiEqual (0xB, ".000\0"))
|
||||
return null;
|
||||
int count = file.View.ReadInt32 (16);
|
||||
uint names_offset = file.View.ReadUInt32 (20);
|
||||
uint data_offset = file.View.ReadUInt32 (24);
|
||||
if (data_offset <= names_offset || count > 0xfffff || count < 0
|
||||
|| data_offset >= file.MaxOffset)
|
||||
if (data_offset <= names_offset || data_offset >= file.MaxOffset || !IsSaneCount (count))
|
||||
return null;
|
||||
int table_size = count + (1 == version ? 1 : 0);
|
||||
int entry_size = 4 * (version + 1);
|
||||
@ -92,7 +78,8 @@ namespace GameRes.Formats.Majiro
|
||||
file.View.Read (names_offset, names, 0, (uint)names_size);
|
||||
int names_pos = 0;
|
||||
int table_pos = 0x1c;
|
||||
uint offset_next = file.View.ReadUInt32 (table_pos+4);
|
||||
int hash_size = version < 3 ? 4 : 8;
|
||||
uint offset_next = file.View.ReadUInt32 (table_pos+hash_size);
|
||||
|
||||
var dir = new List<Entry> (count);
|
||||
for (int i = 0; i < count; ++i)
|
||||
@ -105,13 +92,13 @@ namespace GameRes.Formats.Majiro
|
||||
names_size -= name_len+1;
|
||||
names_pos = zero+1;
|
||||
uint offset = offset_next;
|
||||
offset_next = file.View.ReadUInt32 (table_pos + entry_size + 4);
|
||||
offset_next = file.View.ReadUInt32 (table_pos + entry_size + hash_size);
|
||||
var entry = FormatCatalog.Instance.CreateEntry (name);
|
||||
entry.Offset = offset;
|
||||
if (1 == version)
|
||||
entry.Size = offset_next >= offset ? offset_next - offset : 0;
|
||||
else
|
||||
entry.Size = file.View.ReadUInt32 (table_pos + 8);
|
||||
entry.Size = file.View.ReadUInt32 (table_pos + hash_size + 4);
|
||||
table_pos += entry_size;
|
||||
if (offset < data_offset || !entry.CheckPlacement (file.MaxOffset))
|
||||
return null;
|
||||
|
@ -60,7 +60,11 @@ Ryoujoku Idol Mesu Dorei<br/>
|
||||
Yakuchu!<br/>
|
||||
</td></tr>
|
||||
<tr><td>*.tgf</td><td>-</td><td>No</td></tr>
|
||||
<tr class="odd"><td>*.arc</td><td><tt>MajiroArcV1.000</tt><br/><tt>MajiroArcV2.000</tt></td><td>Yes</td><td rowspan="3">Majiro</td><td rowspan="3">Chikan Kizoku<br/>Reconquista</td></tr>
|
||||
<tr class="odd"><td>*.arc</td><td><tt>MajiroArcV1.000</tt><br/><tt>MajiroArcV2.000</tt><br/><tt>MajiroArcV3.000</tt></td><td>Yes</td><td rowspan="3">Majiro</td><td rowspan="3">
|
||||
Chikan Kizoku<br/>
|
||||
Reconquista<br/>
|
||||
White ~blanche comme la lune~<br/>
|
||||
</td></tr>
|
||||
<tr class="odd"><td>*.rct</td><td><tt>\x98\x5A\x92\x9AT</tt></td><td>Yes</td></tr>
|
||||
<tr class="odd"><td>*.rc8</td><td><tt>\x98\x5A\x92\x9A8_00</tt></td><td>No</td></tr>
|
||||
<tr><td>*.dat</td><td><tt>NEKOPACK</tt></td><td>No</td><td>Rosebleu</td><td>Inpyuri -Hito to Anata to Ayakashi to-</td></tr>
|
||||
|
Loading…
Reference in New Issue
Block a user