GARbro-mirror/Legacy/PineSoft/ArcVoice.cs

80 lines
3.1 KiB
C#
Raw Normal View History

2019-03-23 23:42:38 +08:00
//! \file ArcVoice.cs
//! \date 2019 Mar 21
//! \brief PineSoft audio resource archive.
//
// Copyright (C) 2019 by morkt
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to
// deal in the Software without restriction, including without limitation the
// rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
// sell copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
// FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
// IN THE SOFTWARE.
//
using System;
using System.Collections.Generic;
using System.ComponentModel.Composition;
using System.IO;
namespace GameRes.Formats.PineSoft
{
[Export(typeof(ArchiveFormat))]
public class CmbAudioOpener : ArchiveFormat
{
public override string Tag { get { return "CMB/VOICE"; } }
public override string Description { get { return "PineSoft audio archive"; } }
public override uint Signature { get { return 0; } }
public override bool IsHierarchic { get { return false; } }
public override bool CanWrite { get { return false; } }
public CmbAudioOpener ()
{
Extensions = new string[] { "" };
}
public override ArcFile TryOpen (ArcView file)
{
if (file.MaxOffset <= 0x2C)
return null;
int header_size = file.View.ReadInt32 (0);
int count = file.View.ReadInt32 (0x24);
if (!IsSaneCount (count) || (count + 1) * 4 + 0x28 != header_size)
return null;
string base_name = Path.GetFileNameWithoutExtension (file.Name);
uint index_pos = 0x28;
uint next_offset = file.View.ReadUInt32 (index_pos);
var dir = new List<Entry> (count);
for (int i = 0; i < count; ++i)
{
index_pos += 4;
var entry = new Entry {
Name = string.Format ("{0}#{1:D5}", base_name, i),
Type = "audio"
};
entry.Offset = next_offset;
next_offset = file.View.ReadUInt32 (index_pos);
entry.Size = (uint)(next_offset - entry.Offset);
if (!entry.CheckPlacement (file.MaxOffset))
return null;
dir.Add (entry);
}
if (next_offset != file.MaxOffset)
return null;
return new ArcFile (file, this, dir);
}
}
}