CodeWalker/CodeWalker.Core/GameFiles/Resources/ResourceBaseTypes.cs
2019-01-16 00:51:53 +11:00

1469 lines
37 KiB
C#

/*
Copyright(c) 2015 Neodymium
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.
*/
//shamelessly stolen and mangled
using SharpDX;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace CodeWalker.GameFiles
{
[TypeConverter(typeof(ExpandableObjectConverter))] public class uint_r : ResourceSystemBlock
{
// Represents a uint that can be referenced in a resource structure.
/// <summary>
/// Gets the length of the uint.
/// </summary>
public override long BlockLength
{
get { return 4; }
}
/// <summary>
/// Gets or sets the uint value.
/// </summary>
public uint Value { get; set; }
public override void Read(ResourceDataReader reader, params object[] parameters)
{
Value = reader.ReadUInt32();
}
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
writer.Write(Value);
}
public static explicit operator uint(uint_r value)
{
return value.Value;
}
public static explicit operator uint_r(uint value)
{
var x = new uint_r();
x.Value = value;
return x;
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class string_r : ResourceSystemBlock
{
// Represents a string that can be referenced in a resource structure.
/// <summary>
/// Gets the length of the string.
/// </summary>
public override long BlockLength
{
get { return Value.Length + 1; }
}
/// <summary>
/// Gets or sets the string value.
/// </summary>
public string Value { get; set; }
public override void Read(ResourceDataReader reader, params object[] parameters)
{
Value = reader.ReadString();
}
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
writer.Write(Value);
}
public static explicit operator string(string_r value)
{
return value.Value;
}
public static explicit operator string_r(string value)
{
var x = new string_r();
x.Value = value;
return x;
}
public override string ToString()
{
return Value;
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public struct Matrix3_s
{
public Vector4 Row1 { get; set; }
public Vector4 Row2 { get; set; }
public Vector4 Row3 { get; set; }
// structure data
//public float Unknown_01 { get; set; }
//public float Unknown_02 { get; set; }
//public float Unknown_03 { get; set; }
//public float Unknown_04 { get; set; }
//public float Unknown_11 { get; set; }
//public float Unknown_12 { get; set; }
//public float Unknown_13 { get; set; }
//public float Unknown_14 { get; set; }
//public float Unknown_21 { get; set; }
//public float Unknown_22 { get; set; }
//public float Unknown_23 { get; set; }
//public float Unknown_24 { get; set; }
}
[TypeConverter(typeof(ExpandableObjectConverter))] public struct AABB_s
{
public Vector4 Min { get; set; }
public Vector4 Max { get; set; }
}
[TypeConverter(typeof(ExpandableObjectConverter))] public struct FlagsByte
{
public byte Value { get; set; }
public string Hex
{
get
{
return Convert.ToString(Value, 16).ToUpper().PadLeft(2, '0');
}
}
public string Bin
{
get
{
return Convert.ToString(Value, 2).PadLeft(8, '0');
}
}
public FlagsByte(byte v)
{
Value = v;
}
public override string ToString()
{
return Bin + " | 0x" + Hex + " | " + Value.ToString();
}
public string ToShortString()
{
return Bin + " | 0x" + Hex;
}
public string ToHexString()
{
return "0x" + Hex;
}
public static implicit operator FlagsByte(byte v)
{
return new FlagsByte(v);
}
public static implicit operator byte(FlagsByte v)
{
return v.Value; //implicit conversion
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public struct FlagsUshort
{
public ushort Value { get; set; }
public string Hex
{
get
{
return Convert.ToString(Value, 16).ToUpper().PadLeft(4, '0');
}
}
public string Bin
{
get
{
return Convert.ToString(Value, 2).PadLeft(16, '0');
}
}
public FlagsUshort(ushort v)
{
Value = v;
}
public override string ToString()
{
return Bin + " | 0x" + Hex + " | " + Value.ToString();
}
public string ToShortString()
{
return Bin + " | 0x" + Hex;
}
public static implicit operator FlagsUshort(ushort v)
{
return new FlagsUshort(v);
}
public static implicit operator ushort(FlagsUshort v)
{
return v.Value; //implicit conversion
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public struct FlagsUint
{
public uint Value { get; set; }
public string Hex
{
get
{
return Convert.ToString(Value, 16).ToUpper().PadLeft(8, '0');
}
}
public string Bin
{
get
{
return Convert.ToString(Value, 2).PadLeft(32, '0');
}
}
public FlagsUint(uint v)
{
Value = v;
}
public override string ToString()
{
return Bin + " | 0x" + Hex + " | " + Value.ToString();
}
public string ToShortString()
{
return Bin + " | 0x" + Hex;
}
public static implicit operator FlagsUint(uint v)
{
return new FlagsUint(v);
}
public static implicit operator uint(FlagsUint v)
{
return v.Value; //implicit conversion
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public abstract class ListBase<T> : ResourceSystemBlock, ICustomTypeDescriptor, IList<T> where T : IResourceSystemBlock, new()
{
// this is the data...
public List<T> Data { get; set; }
public T this[int index]
{
get
{
return Data[index];
}
set
{
Data[index] = value;
}
}
public int Count
{
get
{
return Data?.Count ?? 0;
}
}
public bool IsReadOnly
{
get
{
return false;
}
}
public ListBase()
{
//Data = new List<T>();
}
public void Add(T item)
{
if (Data == null)
{
Data = new List<T>();
}
Data.Add(item);
}
public void Clear()
{
Data.Clear();
}
public bool Contains(T item)
{
return Data.Contains(item);
}
public void CopyTo(T[] array, int arrayIndex)
{
Data.CopyTo(array, arrayIndex);
}
public IEnumerator<T> GetEnumerator()
{
return Data.GetEnumerator();
}
public int IndexOf(T item)
{
return Data.IndexOf(item);
}
public void Insert(int index, T item)
{
Data.Insert(index, item);
}
public bool Remove(T item)
{
return Data.Remove(item);
}
public void RemoveAt(int index)
{
Data.RemoveAt(index);
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
return Data.GetEnumerator();
}
public String GetClassName()
{
return TypeDescriptor.GetClassName(this, true);
}
public AttributeCollection GetAttributes()
{
return TypeDescriptor.GetAttributes(this, true);
}
public String GetComponentName()
{
return TypeDescriptor.GetComponentName(this, true);
}
public TypeConverter GetConverter()
{
return TypeDescriptor.GetConverter(this, true);
}
public EventDescriptor GetDefaultEvent()
{
return TypeDescriptor.GetDefaultEvent(this, true);
}
public PropertyDescriptor GetDefaultProperty()
{
return TypeDescriptor.GetDefaultProperty(this, true);
}
public object GetEditor(Type editorBaseType)
{
return TypeDescriptor.GetEditor(this, editorBaseType, true);
}
public EventDescriptorCollection GetEvents(Attribute[] attributes)
{
return TypeDescriptor.GetEvents(this, attributes, true);
}
public EventDescriptorCollection GetEvents()
{
return TypeDescriptor.GetEvents(this, true);
}
public object GetPropertyOwner(PropertyDescriptor pd)
{
return this;
}
public PropertyDescriptorCollection GetProperties()
{
var pds = new PropertyDescriptorCollection(null);
for (int i = 0; i < Data.Count; i++)
{
var pd = new ListBasePropertyDescriptor(this, i);
pds.Add(pd);
}
return pds;
}
public PropertyDescriptorCollection GetProperties(Attribute[] attributes)
{
return GetProperties();
}
public class ListBasePropertyDescriptor : PropertyDescriptor
{
private ListBase<T> collection = null;
private int index = -1;
public ListBasePropertyDescriptor(ListBase<T> coll, int i) : base("#" + i.ToString(), null)
{
collection = coll;
index = i;
}
public override AttributeCollection Attributes
{
get
{
return new AttributeCollection(null);
}
}
public override bool CanResetValue(object component)
{
return true;
}
public override Type ComponentType
{
get
{
return this.collection.GetType();
}
}
public override string DisplayName
{
get
{
return "[" + index.ToString() + "]";
}
}
public override string Description
{
get
{
return collection[index].ToString();
}
}
public override object GetValue(object component)
{
return this.collection[index];
}
public override bool IsReadOnly
{
get { return true; }
}
public override string Name
{
get { return "#" + index.ToString(); }
}
public override Type PropertyType
{
get { return this.collection[index].GetType(); }
}
public override void ResetValue(object component) { }
public override bool ShouldSerializeValue(object component)
{
return true;
}
public override void SetValue(object component, object value)
{
// this.collection[index] = value;
}
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourceSimpleArray<T> : ListBase<T> where T : IResourceSystemBlock, new()
{
/// <summary>
/// Gets the length of the data block.
/// </summary>
public override long BlockLength
{
get
{
long length = 0;
if (Data != null)
{
foreach (var x in Data)
length += x.BlockLength;
}
return length;
}
}
public ResourceSimpleArray()
{
//Data = new List<T>();
}
/// <summary>
/// Reads the data block.
/// </summary>
public override void Read(ResourceDataReader reader, params object[] parameters)
{
int numElements = Convert.ToInt32(parameters[0]);
Data = new List<T>(numElements);
for (int i = 0; i < numElements; i++)
{
T item = reader.ReadBlock<T>();
Data.Add(item);
}
}
/// <summary>
/// Writes the data block.
/// </summary>
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
foreach (var f in Data)
f.Write(writer);
}
public override Tuple<long, IResourceBlock>[] GetParts()
{
var list = new List<Tuple<long, IResourceBlock>>();
long length = 0;
if (Data != null)
{
foreach (var x in Data)
{
list.Add(new Tuple<long, IResourceBlock>(length, x));
length += x.BlockLength;
}
}
return list.ToArray();
}
public override string ToString()
{
return "(Count: " + Count.ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourceSimpleList64<T> : ResourceSystemBlock where T : IResourceSystemBlock, new()
{
public override long BlockLength
{
get { return 16; }
}
// structure data
public ulong EntriesPointer { get; private set; }
public ushort EntriesCount { get; private set; }
public ushort EntriesCapacity { get; private set; }
// reference data
//public ResourceSimpleArray<T> Entries;
public T[] data_items { get; private set; }
/// <summary>
/// Reads the data-block from a stream.
/// </summary>
public override void Read(ResourceDataReader reader, params object[] parameters)
{
// read structure data
this.EntriesPointer = reader.ReadUInt64();
this.EntriesCount = reader.ReadUInt16();
this.EntriesCapacity = reader.ReadUInt16();
reader.Position += 4;
// read reference data
//this.Entries = reader.ReadBlockAt<ResourceSimpleArray<T>>(
// this.EntriesPointer, // offset
// this.EntriesCount
//);
//TODO: NEEDS TO BE TESTED!!!
data_items = new T[EntriesCount];
var posbckp = reader.Position;
reader.Position = (long)EntriesPointer;
for (int i = 0; i < EntriesCount; i++)
{
data_items[i] = reader.ReadBlock<T>();
}
reader.Position = posbckp;
}
/// <summary>
/// Writes the data-block to a stream.
/// </summary>
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
// update structure data //TODO: fix
//this.EntriesPointer = (ulong)(this.Entries != null ? this.Entries.Position : 0);
//this.EntriesCount = (ushort)(this.Entries != null ? this.Entries.Count : 0);
//this.EntriesCapacity = (ushort)(this.Entries != null ? this.Entries.Count : 0);
// write structure data
writer.Write(this.EntriesPointer);
writer.Write(this.EntriesCount);
writer.Write(this.EntriesCapacity);
writer.Write((uint)0x00000000);
}
/// <summary>
/// Returns a list of data blocks which are referenced by this block.
/// </summary>
public override IResourceBlock[] GetReferences()
{
var list = new List<IResourceBlock>();
//if (Entries != null) list.Add(Entries);
return list.ToArray();
}
public override string ToString()
{
return "(Count: " + EntriesCount.ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public struct ResourceSimpleList64Ptr
{
// structure data
public ulong EntriesPointer { get; private set; }
public ushort EntriesCount { get; private set; }
public ushort EntriesCapacity { get; private set; }
public uint Unused1 { get; private set; }
public override string ToString()
{
return "(Count: " + EntriesCount.ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourcePointerArray64<T> : ResourceSystemBlock, IList<T> where T : IResourceSystemBlock, new()
{
public int GetNonEmptyNumber()
{
int i = 0;
foreach (var q in data_items)
if (q != null)
i++;
return i;
}
public override long BlockLength
{
get { return (data_items!=null)?8 * data_items.Length:0; }
}
//// structure data
//public List<ulong> data_pointers;
//// reference data
//public List<T> data_items;
public ulong[] data_pointers { get; private set; }
public T[] data_items { get; private set; }
public ResourcePointerArray64()
{
//data_items = new List<T>();
}
public override void Read(ResourceDataReader reader, params object[] parameters)
{
int numElements = Convert.ToInt32(parameters[0]);
// read structure data
//data_pointers = new List<ulong>();
//for (int i = 0; i < numElements; i++)
//{
// data_pointers.Add(reader.ReadUInt64());
//}
data_pointers = reader.ReadUlongsAt((ulong)reader.Position, (uint)numElements);
//foreach (var dp in data_pointers)
//{
// if (dp == 0)
// {
// }
//}
// read reference data
//data_items = new List<T>();
//for (int i = 0; i < numElements; i++)
//{
// data_items.Add(
// reader.ReadBlockAt<T>(data_pointers[i])
// );
//}
data_items = new T[numElements];
for (int i = 0; i < numElements; i++)
{
data_items[i] = reader.ReadBlockAt<T>(data_pointers[i]);
}
}
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
// update...
//data_pointers = new List<ulong>();
//foreach (var x in data_items)
// if (x != null)
// data_pointers.Add((uint)x.Position);
// else
// data_pointers.Add((uint)0);
//TODO: fix!
// write...
foreach (var x in data_pointers)
writer.Write(x);
}
public override IResourceBlock[] GetReferences()
{
var list = new List<IResourceBlock>();
foreach (var x in data_items)
list.Add(x);
return list.ToArray();
}
public int IndexOf(T item)
{
throw new NotImplementedException();
}
public void Insert(int index, T item)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
//data_items.RemoveAt(index);
throw new NotImplementedException();
}
public T this[int index]
{
get
{
return data_items[index];
}
set
{
throw new NotImplementedException();
}
}
public void Add(T item)
{
//data_items.Add(item);
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(T item)
{
throw new NotImplementedException();
}
public void CopyTo(T[] array, int arrayIndex)
{
throw new NotImplementedException();
}
public int Count
{
//get { return data_items.Count; }
get { return (data_items != null) ? data_items.Length : 0; }
}
public bool IsReadOnly
{
get { return false; }
}
public bool Remove(T item)
{
//return data_items.Remove(item);
throw new NotImplementedException();
}
public IEnumerator<T> GetEnumerator()
{
//return data_items.GetEnumerator();
throw new NotImplementedException();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
public override string ToString()
{
return "(Count: " + ((data_items != null) ? data_items.Length : 0).ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourcePointerArray64_s<T> : ResourceSystemBlock, IList<T> where T : struct
{
//public int GetNonEmptyNumber()
//{
// int i = 0;
// foreach (var q in data_items)
// if (q != null)
// i++;
// return i;
//}
public override long BlockLength
{
get { return (data_items != null) ? 8 * data_items.Length : 0; }
}
//// structure data
//public List<ulong> data_pointers;
//// reference data
//public List<T> data_items;
public ulong[] data_pointers { get; private set; }
public T[] data_items { get; private set; }
public ResourcePointerArray64_s()
{
//data_items = new List<T>();
}
public override void Read(ResourceDataReader reader, params object[] parameters)
{
int numElements = Convert.ToInt32(parameters[0]);
// read structure data
//data_pointers = new List<ulong>();
//for (int i = 0; i < numElements; i++)
//{
// data_pointers.Add(reader.ReadUInt64());
//}
data_pointers = reader.ReadUlongsAt((ulong)reader.Position, (uint)numElements);
//foreach (var dp in data_pointers)
//{
// if (dp == 0)
// {
// }
//}
// read reference data
//data_items = new List<T>();
//for (int i = 0; i < numElements; i++)
//{
// data_items.Add(
// reader.ReadBlockAt<T>(data_pointers[i])
// );
//}
data_items = new T[numElements];
for (int i = 0; i < numElements; i++)
{
data_items[i] = reader.ReadStructAt<T>((long)data_pointers[i]);
}
}
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
// update...
//data_pointers = new List<ulong>();
//foreach (var x in data_items)
// if (x != null)
// data_pointers.Add((uint)x.Position);
// else
// data_pointers.Add((uint)0);
//TODO: fix!
// write...
foreach (var x in data_pointers)
writer.Write(x);
}
public override IResourceBlock[] GetReferences()
{
var list = new List<IResourceBlock>();
//foreach (var x in data_items) //TODO: fix
// list.Add(x);
return list.ToArray();
}
public int IndexOf(T item)
{
throw new NotImplementedException();
}
public void Insert(int index, T item)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
//data_items.RemoveAt(index);
throw new NotImplementedException();
}
public T this[int index]
{
get
{
return data_items[index];
}
set
{
throw new NotImplementedException();
}
}
public void Add(T item)
{
//data_items.Add(item);
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(T item)
{
throw new NotImplementedException();
}
public void CopyTo(T[] array, int arrayIndex)
{
throw new NotImplementedException();
}
public int Count
{
//get { return data_items.Count; }
get { return (data_items != null) ? data_items.Length : 0; }
}
public bool IsReadOnly
{
get { return false; }
}
public bool Remove(T item)
{
//return data_items.Remove(item);
throw new NotImplementedException();
}
public IEnumerator<T> GetEnumerator()
{
//return data_items.GetEnumerator();
throw new NotImplementedException();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
public override string ToString()
{
return "(Count: " + ((data_items != null) ? data_items.Length : 0).ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourcePointerList64<T> : ResourceSystemBlock, IList<T> where T : IResourceSystemBlock, new()
{
public override long BlockLength
{
get { return 16; }
}
// structure data
public ulong EntriesPointer { get; private set; }
public ushort EntriesCount { get; private set; }
public ushort EntriesCapacity { get; private set; }
// reference data
//public ResourcePointerArray64<T> Entries;
public ulong[] data_pointers { get; private set; }
public T[] data_items { get; private set; }
public override void Read(ResourceDataReader reader, params object[] parameters)
{
this.EntriesPointer = reader.ReadUInt64();
this.EntriesCount = reader.ReadUInt16();
this.EntriesCapacity = reader.ReadUInt16();
reader.Position += 4;
//this.Entries = reader.ReadBlockAt<ResourcePointerArray64<T>>(
// this.EntriesPointer, // offset
// this.EntriesCount
//);
data_pointers = reader.ReadUlongsAt(EntriesPointer, EntriesCount);
data_items = new T[EntriesCount];
for (int i = 0; i < EntriesCount; i++)
{
data_items[i] = reader.ReadBlockAt<T>(data_pointers[i]);
}
}
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
// update... //TODO: fix...
//this.EntriesPointer = (ulong)(this.Entries != null ? this.Entries.Position : 0);
//this.EntriesCount = (ushort)(this.Entries != null ? this.Entries.Count : 0);
//this.EntriesCapacity = (ushort)(this.Entries != null ? this.Entries.Count : 0);
// write...
writer.Write(EntriesPointer);
writer.Write(EntriesCount);
writer.Write(EntriesCapacity);
writer.Write((uint)0x0000000);
}
public override IResourceBlock[] GetReferences()
{
var list = new List<IResourceBlock>();
//if (Entries != null) list.Add(Entries); //TODO: fix..
return list.ToArray();
}
public int IndexOf(T item)
{
throw new NotImplementedException();
}
public void Insert(int index, T item)
{
throw new NotImplementedException();
}
public void RemoveAt(int index)
{
throw new NotImplementedException();
}
public T this[int index]
{
get
{
return data_items[index];
}
set
{
throw new NotImplementedException();
}
}
public void Add(T item)
{
throw new NotImplementedException();
}
public void Clear()
{
throw new NotImplementedException();
}
public bool Contains(T item)
{
throw new NotImplementedException();
}
public void CopyTo(T[] array, int arrayIndex)
{
throw new NotImplementedException();
}
public int Count
{
get { return EntriesCount; }
}
public bool IsReadOnly
{
get { return false; }
}
public bool Remove(T item)
{
throw new NotImplementedException();
}
public IEnumerator<T> GetEnumerator()
{
throw new NotImplementedException();
}
System.Collections.IEnumerator System.Collections.IEnumerable.GetEnumerator()
{
throw new NotImplementedException();
}
public IResourceBlock CheckForCast(ResourceDataReader reader, params object[] parameters)
{
throw new NotImplementedException();
}
public override string ToString()
{
return "(Count: " + EntriesCount.ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourceSimpleArrayArray64<T> : ListBase<ResourceSimpleArray<T>> where T : IResourceSystemBlock, new()
{
/// <summary>
/// Gets the length of the data block.
/// </summary>
public override long BlockLength
{
get
{
long len = 8 * Data.Count;
foreach (var f in Data)
len += f.BlockLength;
return len;
}
}
public ResourceSimpleArrayArray64()
{
Data = new List<ResourceSimpleArray<T>>();
}
public List<ulong> ptr_list { get; private set; }
/// <summary>
/// Reads the data block.
/// </summary>
public override void Read(ResourceDataReader reader, params object[] parameters)
{
if (parameters[1] is uint[])
{
//version for raw arrays from dexy
var numEl2 = (uint[])parameters[1];
ptr_list = new List<ulong>();
for (int i = 0; i < numEl2.Length; i++)
ptr_list.Add(reader.ReadUInt64());
for (int i = 0; i < numEl2.Length; i++)
{
var xarr = reader.ReadBlockAt<ResourceSimpleArray<T>>(ptr_list[i], numEl2[i]);
Data.Add(xarr);
}
return;
}
var numEl = (ResourceSimpleArray<uint_r>)parameters[1];
ptr_list = new List<ulong>();
for (int i = 0; i < numEl.Count; i++)
ptr_list.Add(reader.ReadUInt64());
for (int i = 0; i < numEl.Count; i++)
{
var xarr = reader.ReadBlockAt<ResourceSimpleArray<T>>(ptr_list[i], (uint)numEl[i]);
Data.Add(xarr);
}
//int numElements = Convert.ToInt32(parameters[0]);
//Data = new List<T>();
//for (int i = 0; i < numElements; i++)
//{
// T item = reader.ReadBlock<T>();
// Data.Add(item);
//}
}
/// <summary>
/// Writes the data block.
/// </summary>
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
//foreach (var f in Data)
// f.Write(writer);
ptr_list = new List<ulong>();
foreach (var x in Data)
ptr_list.Add((ulong)x.FilePosition);
foreach (var x in ptr_list)
writer.Write(x);
foreach (var x in Data)
x.Write(writer);
}
public override IResourceBlock[] GetReferences()
{
var children = new List<IResourceBlock>();
//if (Data != null) children.AddRange(Data);
return children.ToArray();
}
public override Tuple<long, IResourceBlock>[] GetParts()
{
var children = new List<Tuple<long, IResourceBlock>>();
if (Data != null)
{
long len = 8 * Data.Count;
foreach (var f in Data)
{
children.Add(new Tuple<long, IResourceBlock>(len, f));
len += f.BlockLength;
}
}
return children.ToArray();
}
public override string ToString()
{
return "(Count: " + ((ptr_list != null) ? ptr_list.Count : 0).ToString() + ")";
}
}
[TypeConverter(typeof(ExpandableObjectConverter))] public class ResourceSimpleArray2<T, U> : ResourceSystemBlock where T : IResourceSystemBlock, new() where U : IResourceSystemBlock, new()
{
public ResourceSimpleArray<T> Array1 { get; private set; }
public ResourceSimpleArray<U> Array2 { get; private set; }
/// <summary>
/// Gets the length of the data block.
/// </summary>
public override long BlockLength
{
get
{
return Array1.BlockLength + Array2.BlockLength;
}
}
/// <summary>
/// Reads the data block.
/// </summary>
public override void Read(ResourceDataReader reader, params object[] parameters)
{
int numElements1 = Convert.ToInt32(parameters[0]);
int numElements2 = Convert.ToInt32(parameters[1]);
Array1 = reader.ReadBlock<ResourceSimpleArray<T>>(numElements1);
Array2 = reader.ReadBlock<ResourceSimpleArray<U>>(numElements2);
}
/// <summary>
/// Writes the data block.
/// </summary>
public override void Write(ResourceDataWriter writer, params object[] parameters)
{
writer.WriteBlock(Array1);
writer.WriteBlock(Array2);
}
public override Tuple<long, IResourceBlock>[] GetParts()
{
var list = new List<Tuple<long, IResourceBlock>>();
list.Add(new Tuple<long, IResourceBlock>(0, Array1));
list.Add(new Tuple<long, IResourceBlock>(Array1.BlockLength, Array2));
return list.ToArray();
}
public override string ToString()
{
return "(Count1: " + ((Array1 != null) ? Array1.Count : 0).ToString() + ", Count2: " + ((Array2 != null) ? Array2.Count : 0).ToString() + ")";
}
}
}