mirror of
https://github.com/crskycode/GARbro.git
synced 2024-12-24 20:04:13 +08:00
(RealLive): NWK audio archives.
This commit is contained in:
parent
878415e71e
commit
e738da02a1
@ -2,7 +2,7 @@
|
|||||||
//! \date Mon Apr 18 14:59:12 2016
|
//! \date Mon Apr 18 14:59:12 2016
|
||||||
//! \brief RealLive engine audio archive.
|
//! \brief RealLive engine audio archive.
|
||||||
//
|
//
|
||||||
// Copyright (C) 2016 by morkt
|
// Copyright (C) 2016-2018 by morkt
|
||||||
//
|
//
|
||||||
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
// Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||||
// of this software and associated documentation files (the "Software"), to
|
// of this software and associated documentation files (the "Software"), to
|
||||||
@ -39,14 +39,31 @@ namespace GameRes.Formats.RealLive
|
|||||||
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 OvkOpener ()
|
||||||
|
{
|
||||||
|
Extensions = new string[] { "ovk", "nwk" };
|
||||||
|
}
|
||||||
|
|
||||||
public override ArcFile TryOpen (ArcView file)
|
public override ArcFile TryOpen (ArcView file)
|
||||||
{
|
{
|
||||||
if (!file.Name.HasExtension (".ovk"))
|
uint entry_size;
|
||||||
|
string entry_ext;
|
||||||
|
if (file.Name.HasExtension (".ovk"))
|
||||||
|
{
|
||||||
|
entry_size = 0x10;
|
||||||
|
entry_ext = "ogg";
|
||||||
|
}
|
||||||
|
else if (file.Name.HasExtension (".nwk"))
|
||||||
|
{
|
||||||
|
entry_size = 0xC;
|
||||||
|
entry_ext = "nwa";
|
||||||
|
}
|
||||||
|
else
|
||||||
return null;
|
return null;
|
||||||
int count = file.View.ReadInt32 (0);
|
int count = file.View.ReadInt32 (0);
|
||||||
if (!IsSaneCount (count))
|
if (!IsSaneCount (count))
|
||||||
return null;
|
return null;
|
||||||
uint data_offset = 4 + (uint)count * 0x10;
|
uint data_offset = 4 + (uint)count * entry_size;
|
||||||
if (data_offset >= file.MaxOffset)
|
if (data_offset >= file.MaxOffset)
|
||||||
return null;
|
return null;
|
||||||
|
|
||||||
@ -61,7 +78,7 @@ namespace GameRes.Formats.RealLive
|
|||||||
if (offset < data_offset)
|
if (offset < data_offset)
|
||||||
return null;
|
return null;
|
||||||
var entry = new Entry {
|
var entry = new Entry {
|
||||||
Name = string.Format ("{0}#{1:D5}.ogg", base_name, id),
|
Name = string.Format ("{0}#{1:D5}.{2}", base_name, id, entry_ext),
|
||||||
Type = "audio",
|
Type = "audio",
|
||||||
Offset = offset,
|
Offset = offset,
|
||||||
Size = size,
|
Size = size,
|
||||||
@ -69,7 +86,7 @@ namespace GameRes.Formats.RealLive
|
|||||||
if (!entry.CheckPlacement (file.MaxOffset))
|
if (!entry.CheckPlacement (file.MaxOffset))
|
||||||
return null;
|
return null;
|
||||||
dir.Add (entry);
|
dir.Add (entry);
|
||||||
index_offset += 0x10;
|
index_offset += entry_size;
|
||||||
}
|
}
|
||||||
return new ArcFile (file, this, dir);
|
return new ArcFile (file, this, dir);
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user