mirror of
https://mirror.ghproxy.com/https://github.com/dexyfex/CodeWalker
synced 2024-11-05 14:47:22 +08:00
703 lines
23 KiB
C#
703 lines
23 KiB
C#
using System;
|
|
using System.Collections.Generic;
|
|
using System.IO;
|
|
using System.Linq;
|
|
using System.Text;
|
|
using System.Threading.Tasks;
|
|
using TC = System.ComponentModel.TypeConverterAttribute;
|
|
using EXP = System.ComponentModel.ExpandableObjectConverter;
|
|
|
|
namespace CodeWalker.GameFiles
|
|
{
|
|
[TC(typeof(EXP))]public class AwcFile : PackedFile
|
|
{
|
|
public string Name { get; set; }
|
|
public RpfFileEntry FileEntry { get; set; }
|
|
public byte[] Data { get; set; }
|
|
|
|
public string ErrorMessage { get; set; }
|
|
|
|
public uint Magic { get; set; }
|
|
public ushort Version { get; set; }
|
|
public ushort Flags { get; set; }
|
|
public int StreamCount { get; set; }
|
|
public int InfoOffset { get; set; }
|
|
|
|
public bool MultiChannel { get; set; }
|
|
public byte[] MultiChannelData { get; set; }
|
|
|
|
public AwcStreamInfo[] StreamInfos { get; set; }
|
|
public uint[] AudioIds { get; set; }
|
|
public AwcAudio[] Audios { get; set; }
|
|
|
|
|
|
public void Load(byte[] data, RpfFileEntry entry)
|
|
{
|
|
|
|
//adapted from libertyV code
|
|
|
|
|
|
//MemoryStream ms = new MemoryStream(data);
|
|
Name = entry.Name;
|
|
FileEntry = entry;
|
|
Data = data;
|
|
|
|
if ((data == null) || (data.Length < 8))
|
|
{
|
|
ErrorMessage = "Data null or too short!";
|
|
return; //nothing to do, not enough data...
|
|
}
|
|
|
|
Magic = BitConverter.ToUInt32(data, 0);
|
|
|
|
Endianess endianess = Endianess.LittleEndian;
|
|
switch (Magic)
|
|
{
|
|
default:
|
|
ErrorMessage = "Unexpected Magic 0x" + Magic.ToString("X");
|
|
return;
|
|
case 0x54414441:
|
|
endianess = Endianess.LittleEndian;
|
|
break;
|
|
case 0x41444154:
|
|
endianess = Endianess.BigEndian;
|
|
break;
|
|
}
|
|
|
|
using (MemoryStream ms = new MemoryStream(data))
|
|
{
|
|
DataReader r = new DataReader(ms, endianess);
|
|
|
|
Magic = r.ReadUInt32();
|
|
Version = r.ReadUInt16();
|
|
Flags = r.ReadUInt16();
|
|
StreamCount = r.ReadInt32();
|
|
InfoOffset = r.ReadInt32();
|
|
|
|
|
|
//notes from libertyV:
|
|
// first bit - means that there are unknown word for each stream after this header
|
|
// second bit - I think that it means that not all the tags are in the start of the file, but all the tags of a stream are near the data tag
|
|
// third bit - Multi channel audio
|
|
|
|
if ((Flags >> 8) != 0xFF)
|
|
{
|
|
ErrorMessage = "Flags 0 not supported!";
|
|
return;
|
|
}
|
|
if ((Flags & 0xF8) != 0)
|
|
{
|
|
//ErrorMessage = "Flags 1 not supported!";
|
|
//return;
|
|
}
|
|
|
|
MultiChannel = ((Flags & 4) == 4);
|
|
|
|
|
|
var flag0 = ((Flags & 1) == 1);
|
|
var infoStart = 16 + (flag0 ? (StreamCount * 2) : 0);
|
|
|
|
ms.Position = infoStart;
|
|
|
|
List<AwcStreamInfo> infos = new List<AwcStreamInfo>();
|
|
Dictionary<uint, AwcStreamInfo> infoDict = new Dictionary<uint, AwcStreamInfo>();
|
|
List<uint> audioIds = new List<uint>();
|
|
List<AwcAudio> audios = new List<AwcAudio>();
|
|
|
|
for (int i = 0; i < StreamCount; i++)
|
|
{
|
|
var info = new AwcStreamInfo(r);
|
|
infos.Add(info);
|
|
infoDict[info.Id] = info;
|
|
}
|
|
for (int i = 0; i < StreamCount; i++)
|
|
{
|
|
var info = infos[i];
|
|
for (int j = 0; j < info.TagCount; j++)
|
|
{
|
|
var chunk = new AwcChunkInfo(r);
|
|
info.Chunks[chunk.Tag] = chunk;
|
|
}
|
|
}
|
|
|
|
StreamInfos = infos.ToArray();
|
|
|
|
|
|
|
|
byte hformat = 0xFA;// 250 0x6061D4FA & 0xFF; //JenkHash.GenHash("format");
|
|
byte hdata = 0x55;// 85 0x5EB5E655 & 0xFF; //JenkHash.GenHash("data");
|
|
byte hycd = 0x5C;// 92 YCD resource chunk... lip sync anims?
|
|
byte hunk = 0x36;// 54 unk chunk? small number of bytes (2+)
|
|
|
|
|
|
|
|
if (MultiChannel)
|
|
{
|
|
AwcStreamInfo stream0 = null;
|
|
if (!infoDict.TryGetValue(0, out stream0))
|
|
{
|
|
ErrorMessage = "Couldn't find MultiChannel stream0";
|
|
return;
|
|
}
|
|
|
|
AwcChunkInfo chunk72 = null;
|
|
if (!stream0.Chunks.TryGetValue(72, out chunk72))
|
|
{
|
|
ErrorMessage = "Couldn't find MultiChannel chunk72";
|
|
return;
|
|
}
|
|
|
|
ms.Position = chunk72.Offset;
|
|
|
|
AwcChannelChunkInfo chanInfo = new AwcChannelChunkInfo(r);
|
|
if (chanInfo.ChannelCount != StreamCount - 1)
|
|
{
|
|
ErrorMessage = "Channel Count did not match Stream Count";
|
|
return;
|
|
}
|
|
|
|
List<AwcChannelChunkItemInfo> chunkItems = new List<AwcChannelChunkItemInfo>();
|
|
for (int i = 0; i < chanInfo.ChannelCount; i++)
|
|
{
|
|
var itemInfo = new AwcChannelChunkItemInfo(r);
|
|
chunkItems.Add(itemInfo);
|
|
audioIds.Add(infos[i + 1].Id);
|
|
}
|
|
|
|
//AudioStreams.Add(new MultiChannelAudio(new ChunkStream(this.Stream, streamsChunks[0][Tag("data")]), channelsInfoHeader, streamsInfo, header.BigEndian));
|
|
|
|
AwcChunkInfo cdata = null;
|
|
if (!stream0.Chunks.TryGetValue(hdata, out cdata))
|
|
{
|
|
ErrorMessage = "Couldn't find Stream 0 data chunk";
|
|
return;
|
|
}
|
|
|
|
ms.Position = cdata.Offset;
|
|
var lastPos = cdata.Offset + cdata.Size;
|
|
//int chunkSize = 0x800;
|
|
uint bigChunkSize = chanInfo.ChunkSize;
|
|
var chanCount = chanInfo.ChannelCount;
|
|
|
|
MultiChannelData = r.ReadBytes(cdata.Size);
|
|
ms.Position = cdata.Offset;
|
|
|
|
//var d = data;//temporary
|
|
|
|
////this doesn't seem to work :(
|
|
//while (ms.Position < lastPos)
|
|
//{
|
|
// uint totalChunks = 0;
|
|
// var startPos = ms.Position;
|
|
// var curPos = startPos;
|
|
// //byte[] chunkdata = r.ReadBytes(chunkSize);
|
|
// //ms.Position = startPos;
|
|
// AwcChannelChunkHeader[] chanHeaders = new AwcChannelChunkHeader[chanCount];
|
|
// for (int i = 0; i < chanCount; i++)
|
|
// {
|
|
// var chanHeader = new AwcChannelChunkHeader(r);
|
|
// chanHeaders[i] = chanHeader;
|
|
// totalChunks += chanHeader.ChunkCount;
|
|
// }
|
|
// int headerSize = (int)(totalChunks * 4 + chanInfo.ChannelCount * AwcChannelChunkHeader.Size);
|
|
// headerSize += (((-headerSize) % chunkSize) + chunkSize) % chunkSize; //todo: simplify this!
|
|
// curPos += headerSize;
|
|
// AwcChannelChunk[] chanChunks = new AwcChannelChunk[chanCount];
|
|
// for (int i = 0; i < chanCount; i++)
|
|
// {
|
|
// var chanChunk = new AwcChannelChunk(r, chanHeaders[i], chunkItems[i]);
|
|
// chanChunks[i] = chanChunk;
|
|
// curPos += chanChunk.TotalDataSize;
|
|
// }
|
|
// if (curPos - startPos > chanInfo.ChunkSize)
|
|
// {
|
|
// ErrorMessage = "Chunk was bigger than the chunk size";
|
|
// break;
|
|
// }
|
|
// if ((totalChunks == 0) || ((startPos + chanInfo.ChunkSize) > lastPos))
|
|
// {
|
|
// ErrorMessage = "Unable to read chunk";
|
|
// break;
|
|
// }
|
|
// var newPos = startPos + bigChunkSize;
|
|
// if (newPos >= lastPos) break;
|
|
// ms.Position = newPos;
|
|
//}
|
|
|
|
|
|
|
|
}
|
|
else
|
|
{
|
|
|
|
for (int i = 0; i < StreamCount; i++)
|
|
{
|
|
var info = infos[i];
|
|
|
|
AwcChunkInfo cformat = null;
|
|
if (!info.Chunks.TryGetValue(hformat, out cformat))
|
|
{
|
|
ErrorMessage = "Couldn't find Stream " + i.ToString() + " format chunk";
|
|
continue;
|
|
}
|
|
|
|
AwcChunkInfo cdata = null;
|
|
if (!info.Chunks.TryGetValue(hdata, out cdata))
|
|
{
|
|
ErrorMessage = "Couldn't find Stream " + i.ToString() + " data chunk";
|
|
continue;
|
|
}
|
|
|
|
AwcChunkInfo cycd = null;
|
|
AwcAudioAnimClipDict oycd = null;
|
|
if (info.Chunks.TryGetValue(hycd, out cycd))
|
|
{
|
|
ms.Position = cycd.Offset;
|
|
oycd = new AwcAudioAnimClipDict(r, cycd);
|
|
}
|
|
|
|
AwcChunkInfo cunk = null;
|
|
AwcAudioUnk ounk = null;
|
|
if (info.Chunks.TryGetValue(hunk, out cunk))
|
|
{
|
|
ms.Position = cunk.Offset;
|
|
ounk = new AwcAudioUnk(r, cunk);
|
|
}
|
|
|
|
|
|
ms.Position = cformat.Offset;
|
|
AwcFormatChunk formatChunk = new AwcFormatChunk(r);
|
|
|
|
ms.Position = cdata.Offset;
|
|
AwcAudio audio = new AwcAudio(r, info, formatChunk, cdata);
|
|
|
|
audio.ClipDict = oycd;
|
|
audio.UnkData = ounk;
|
|
|
|
audios.Add(audio);
|
|
audioIds.Add(info.Id);
|
|
}
|
|
}
|
|
|
|
|
|
Audios = audios.ToArray();
|
|
AudioIds = audioIds.ToArray();
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
[TC(typeof(EXP))] public class AwcStreamInfo
|
|
{
|
|
public uint RawVal { get; set; }
|
|
public uint TagCount { get; set; }
|
|
public uint Id { get; set; }
|
|
|
|
public Dictionary<byte, AwcChunkInfo> Chunks { get; set; } = new Dictionary<byte, AwcChunkInfo>();
|
|
|
|
public AwcStreamInfo(DataReader r)
|
|
{
|
|
RawVal = r.ReadUInt32();
|
|
TagCount = (RawVal >> 29);
|
|
Id = (RawVal & 0x1FFFFFFF);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Id.ToString("X") + ": " + TagCount.ToString() + " tags";
|
|
}
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcChunkInfo
|
|
{
|
|
public ulong RawVal { get; set; }
|
|
public byte Tag { get; set; }
|
|
public int Size { get; set; }
|
|
public int Offset { get; set; }
|
|
|
|
public AwcChunkInfo(DataReader r)
|
|
{
|
|
RawVal = r.ReadUInt64();
|
|
Tag = (byte)(RawVal >> 56);
|
|
Size = (int)((RawVal >> 28) & 0x0FFFFFFF);
|
|
Offset = (int)(RawVal & 0x0FFFFFFF);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Tag.ToString() + ": " + Size.ToString() + ", " + Offset.ToString();
|
|
}
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcChannelChunkInfo
|
|
{
|
|
public uint Unk0 { get; set; }
|
|
public uint ChunkSize { get; set; }
|
|
public uint ChannelCount { get; set; }
|
|
|
|
public AwcChannelChunkInfo(DataReader r)
|
|
{
|
|
Unk0 = r.ReadUInt32();
|
|
ChunkSize = r.ReadUInt32();
|
|
ChannelCount = r.ReadUInt32();
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Unk0.ToString() + ": " + ChunkSize.ToString() + ", " + ChannelCount.ToString() + " channels";
|
|
}
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcChannelChunkItemInfo
|
|
{
|
|
public uint Id { get; set; }
|
|
public uint Samples { get; set; }
|
|
public ushort Unk0 { get; set; }
|
|
public ushort SamplesPerSecond { get; set; }
|
|
public byte Unk1 { get; set; }
|
|
public byte RoundSize { get; set; }
|
|
public ushort Unk2 { get; set; }
|
|
|
|
public AwcChannelChunkItemInfo(DataReader r)
|
|
{
|
|
Id = r.ReadUInt32();
|
|
Samples = r.ReadUInt32();
|
|
Unk0 = r.ReadUInt16();
|
|
SamplesPerSecond = r.ReadUInt16();
|
|
Unk1 = r.ReadByte();
|
|
RoundSize = r.ReadByte();
|
|
Unk2 = r.ReadUInt16();
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return Id.ToString() + ": " + Samples.ToString() + " samples, " + SamplesPerSecond.ToString() + " samples/sec, size: " + RoundSize.ToString();
|
|
}
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcFormatChunk
|
|
{
|
|
public uint Samples { get; set; }
|
|
public int UnkMinusOne { get; set; }
|
|
public ushort SamplesPerSecond { get; set; }
|
|
public ushort Unk1 { get; set; }
|
|
public ushort Unk2 { get; set; }
|
|
public ushort Unk3 { get; set; }
|
|
public ushort Unk4 { get; set; }
|
|
public byte Unk5 { get; set; }
|
|
public byte Unk6 { get; set; }
|
|
|
|
public AwcFormatChunk(DataReader r)
|
|
{
|
|
Samples = r.ReadUInt32();
|
|
UnkMinusOne = r.ReadInt32();
|
|
SamplesPerSecond = r.ReadUInt16();
|
|
Unk1 = r.ReadUInt16();
|
|
Unk2 = r.ReadUInt16();
|
|
Unk3 = r.ReadUInt16();
|
|
Unk4 = r.ReadUInt16();
|
|
Unk5 = r.ReadByte();
|
|
Unk6 = r.ReadByte();
|
|
|
|
//Apparently sometimes this struct is longer? TODO: fix??
|
|
//r.ReadUInt16();
|
|
//r.ReadUInt16();
|
|
}
|
|
|
|
|
|
public override string ToString()
|
|
{
|
|
return Unk1.ToString() + ", " + Unk6.ToString() + ": " + Samples.ToString() + " samples, " + SamplesPerSecond.ToString() + " samples/sec";
|
|
}
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcAudio
|
|
{
|
|
public AwcStreamInfo StreamInfo { get; set; }
|
|
public AwcFormatChunk Format { get; set; }
|
|
public AwcChunkInfo DataInfo { get; set; }
|
|
public byte[] Data { get; set; }
|
|
|
|
public AwcAudioAnimClipDict ClipDict { get; set; }
|
|
public AwcAudioUnk UnkData { get; set; }
|
|
|
|
|
|
public short Channels = 1;
|
|
public short BitsPerSample = 4;//16;
|
|
public int SamplesPerSecond
|
|
{
|
|
get
|
|
{
|
|
return Format?.SamplesPerSecond ?? 0;
|
|
}
|
|
}
|
|
public int SampleCount
|
|
{
|
|
get
|
|
{
|
|
return (int)(Format?.Samples ?? 0);
|
|
}
|
|
}
|
|
|
|
|
|
public string Name
|
|
{
|
|
get
|
|
{
|
|
return "0x" + StreamInfo?.Id.ToString("X").PadLeft(8, '0') ?? "0";
|
|
}
|
|
}
|
|
public string Type
|
|
{
|
|
get
|
|
{
|
|
if (Format == null) return "Unknown";
|
|
|
|
string fmt = "ADPCM";
|
|
switch (Format.Unk6)
|
|
{
|
|
case 4:
|
|
break;
|
|
default:
|
|
break;
|
|
}
|
|
|
|
var hz = Format?.SamplesPerSecond ?? 0;
|
|
|
|
return fmt + ((hz > 0) ? (", " + hz.ToString() + " Hz") : "");
|
|
}
|
|
}
|
|
public string LengthStr
|
|
{
|
|
get
|
|
{
|
|
if (Format == null) return "0:00";
|
|
float sec = (float)Format.Samples / Format.SamplesPerSecond;
|
|
TimeSpan ts = TimeSpan.FromSeconds(sec);
|
|
return ts.ToString("m\\:ss");
|
|
}
|
|
}
|
|
|
|
|
|
public AwcAudio(DataReader r, AwcStreamInfo s, AwcFormatChunk f, AwcChunkInfo d)
|
|
{
|
|
StreamInfo = s;
|
|
Format = f;
|
|
DataInfo = d;
|
|
|
|
Data = r.ReadBytes(d.Size);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
var hash = (StreamInfo?.Id.ToString("X") ?? "0").PadLeft(8, '0');
|
|
return "0x" + hash + ": " + Format?.ToString() ?? "AwcAudio";
|
|
}
|
|
|
|
|
|
|
|
public Stream GetWavStream()
|
|
{
|
|
MemoryStream ms = new MemoryStream();
|
|
BinaryWriter w = new BinaryWriter(ms);
|
|
|
|
|
|
//see http://icculus.org/SDL_sound/downloads/external_documentation/wavecomp.htm
|
|
//see https://github.com/naudio/NAudio/blob/master/NAudio/Wave/WaveFormats/AdpcmWaveFormat.cs
|
|
//see https://msdn.microsoft.com/en-us/library/windows/desktop/ff538799(v=vs.85).aspx
|
|
|
|
|
|
int sampleCount = SampleCount;
|
|
int samplesPerSec = SamplesPerSecond;
|
|
//short sampleSize = (short)((BitsPerSample / 8) * Channels);//2
|
|
//int avgBytesPerSec = sampleSize * samplesPerSec;
|
|
short blockAlign = 512;
|
|
|
|
short samplesPerBlock = (short)((((blockAlign - (7 * Channels)) * 8) / (BitsPerSample * Channels)) + 2);
|
|
int avgBytesPerSec = ((samplesPerSec / samplesPerBlock) * blockAlign);
|
|
|
|
w.Write("RIFF".ToCharArray());
|
|
w.Write(0); //file size written later...
|
|
w.Write("WAVE".ToCharArray());
|
|
w.Write("fmt ".ToCharArray());
|
|
w.Write(50); //(PCM:16) //header size
|
|
w.Write((short)2); //pcm format tag 1=PCM, 2=ADPCM
|
|
w.Write(Channels);
|
|
w.Write(samplesPerSec);
|
|
w.Write(avgBytesPerSec);
|
|
w.Write(blockAlign);// sampleSize);
|
|
w.Write(BitsPerSample);
|
|
w.Write((short)32);//extra byte count for WAVEFORMATEX
|
|
|
|
w.Write(samplesPerBlock);
|
|
w.Write((short)7);//num coefficients
|
|
w.Write((short)256); //coeff 0
|
|
w.Write((short)0);
|
|
w.Write((short)512); //coeff 1
|
|
w.Write((short)-256);
|
|
w.Write((short)0); //coeff 2
|
|
w.Write((short)0);
|
|
w.Write((short)192); //coeff 3
|
|
w.Write((short)64);
|
|
w.Write((short)240); //coeff 4
|
|
w.Write((short)0);
|
|
w.Write((short)460); //coeff 5
|
|
w.Write((short)-208);
|
|
w.Write((short)392); //coeff 6
|
|
w.Write((short)-232);
|
|
|
|
w.Write("data".ToCharArray());
|
|
w.Write(0); //data size written later...
|
|
|
|
if (sampleCount != 0)
|
|
{
|
|
|
|
//var sc = sampleCount * sampleSize;
|
|
var datalen = Data.Length;
|
|
w.Write(Data);
|
|
}
|
|
else
|
|
{
|
|
w.Write(Data);
|
|
}
|
|
|
|
ms.Position = 4;
|
|
w.Write((int)ms.Length - 8);
|
|
|
|
ms.Position = 74;// 40;
|
|
w.Write((int)ms.Length - 78);// 44);
|
|
|
|
w.Flush();
|
|
|
|
ms.Position = 0;
|
|
return ms;
|
|
}
|
|
|
|
|
|
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcAudioAnimClipDict
|
|
{
|
|
public byte[] Data { get; set; }
|
|
public ClipDictionary ClipDict { get; set; }
|
|
|
|
public AwcAudioAnimClipDict(DataReader r, AwcChunkInfo info)
|
|
{
|
|
Data = r.ReadBytes(info.Size);
|
|
|
|
if ((Data == null) || (Data.Length < 16)) return;
|
|
|
|
var data = Data;
|
|
|
|
RpfResourceFileEntry resentry = new RpfResourceFileEntry();
|
|
uint rsc7 = BitConverter.ToUInt32(data, 0);
|
|
int version = BitConverter.ToInt32(data, 4);
|
|
resentry.SystemFlags = BitConverter.ToUInt32(data, 8);
|
|
resentry.GraphicsFlags = BitConverter.ToUInt32(data, 12);
|
|
|
|
if (rsc7 != 0x37435352)
|
|
{ } //testing..
|
|
if (version != 46) //46 is Clip Dictionary...
|
|
{ }
|
|
|
|
int newlen = data.Length - 16; //trim the header from the data passed to the next step.
|
|
int arrlen = Math.Max(newlen, resentry.SystemSize + resentry.GraphicsSize);//expand it as necessary for the reader.
|
|
byte[] newdata = new byte[arrlen];
|
|
Buffer.BlockCopy(data, 16, newdata, 0, newlen);
|
|
data = newdata;
|
|
|
|
ResourceDataReader rd = new ResourceDataReader(resentry, data);
|
|
|
|
ClipDict = rd.ReadBlock<ClipDictionary>();
|
|
|
|
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
return (ClipDict?.ClipsMapEntries ?? 0).ToString() + " entries";
|
|
}
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcAudioUnk
|
|
{
|
|
public byte[] Data { get; set; }
|
|
|
|
public AwcAudioUnk(DataReader r, AwcChunkInfo info)
|
|
{
|
|
Data = r.ReadBytes(info.Size);
|
|
}
|
|
|
|
public override string ToString()
|
|
{
|
|
if (Data == null) return "";
|
|
StringBuilder sb = new StringBuilder();
|
|
for (int i = 0; i < Data.Length; i++)
|
|
{
|
|
if (sb.Length > 0) sb.Append(' ');
|
|
sb.Append(Data[i].ToString());
|
|
}
|
|
return sb.ToString();
|
|
}
|
|
}
|
|
|
|
|
|
[TC(typeof(EXP))] public class AwcChannelChunkHeader
|
|
{
|
|
public static uint Size = 16; //24 for ps3...
|
|
|
|
public uint StartChunk { get; set; }
|
|
public uint ChunkCount { get; set; }
|
|
public uint SamplesToSkip { get; set; } //mostly 0
|
|
public uint SamplesPerChunk { get; set; }
|
|
public uint DataSize { get; set; }
|
|
|
|
public AwcChannelChunkHeader(DataReader r)
|
|
{
|
|
StartChunk = r.ReadUInt32();
|
|
ChunkCount = r.ReadUInt32();
|
|
SamplesToSkip = r.ReadUInt32();
|
|
SamplesPerChunk = r.ReadUInt32();
|
|
DataSize = ChunkCount * 0x800;
|
|
|
|
//for ps3, two extra ints:
|
|
//uint unk0 = r.ReadUint32();
|
|
//DataSize = r.ReadUint32();
|
|
|
|
|
|
}
|
|
|
|
}
|
|
|
|
[TC(typeof(EXP))] public class AwcChannelChunk
|
|
{
|
|
public AwcChannelChunkHeader Header { get; set; }
|
|
public AwcChannelChunkItemInfo Info { get; set; }
|
|
public byte[] Data { get; set; }
|
|
|
|
public uint TotalDataSize { get; set; }
|
|
|
|
public AwcChannelChunk(DataReader r, AwcChannelChunkHeader h, AwcChannelChunkItemInfo i)
|
|
{
|
|
Header = h;
|
|
Info = i;
|
|
|
|
TotalDataSize = h.DataSize;
|
|
|
|
var rs = i?.RoundSize ?? 0;
|
|
int ds = (int)h.DataSize;
|
|
if (rs != 0)
|
|
{
|
|
TotalDataSize = (uint)(TotalDataSize + (((-ds) % rs) + rs) % rs);
|
|
}
|
|
}
|
|
|
|
}
|
|
|
|
}
|