-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
35 changed files
with
1,879 additions
and
180 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -202,5 +202,6 @@ publish | |
*.xpi | ||
*.crx | ||
|
||
*.dcb | ||
App_Data | ||
smtp.config |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,220 @@ | ||
using System; | ||
using System.Collections.Generic; | ||
using System.Diagnostics; | ||
using System.IO; | ||
using System.Linq; | ||
using System.Text; | ||
using System.Text.RegularExpressions; | ||
using System.Threading.Tasks; | ||
using System.Xml; | ||
using System.Xml.Linq; | ||
using System.Xml.Serialization; | ||
|
||
namespace HoloXPLOR.DataForge | ||
{ | ||
public static class CryXmlSerializer | ||
{ | ||
public static XmlDocument ReadFile(String inFile, Boolean writeLog = false) | ||
{ | ||
using (BinaryReader br = new BinaryReader(File.OpenRead(inFile))) | ||
{ | ||
String header = br.ReadCString(); | ||
|
||
if (header != "CryXmlB") | ||
{ | ||
throw new Exception("Unknown File Format"); | ||
} | ||
|
||
var headerLength = br.BaseStream.Position; | ||
var fileLength = br.ReadInt32(); | ||
|
||
var nodeTableOffset = br.ReadInt32(); | ||
var nodeTableCount = br.ReadInt32(); | ||
var nodeTableSize = 28; | ||
|
||
var referenceTableOffset = br.ReadInt32(); | ||
var referenceTableCount = br.ReadInt32(); | ||
var referenceTableSize = 8; | ||
|
||
var offset3 = br.ReadInt32(); | ||
var count3 = br.ReadInt32(); | ||
var length3 = 4; | ||
|
||
var contentOffset = br.ReadInt32(); | ||
var contentLength = br.ReadInt32(); | ||
|
||
if (writeLog) | ||
{ | ||
// Regex byteFormatter = new Regex("([0-9A-F]{8})"); | ||
Console.WriteLine("Header"); | ||
Console.WriteLine("0x{0:X6}: {1}", 0x00, header); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x00, fileLength); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x04, nodeTableOffset); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x08, nodeTableCount); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x12, referenceTableOffset); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x16, referenceTableCount); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x20, offset3); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x24, count3); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x28, contentOffset); | ||
Console.WriteLine("0x{0:X6}: {1:X8} (Dec: {1:D8})", headerLength + 0x32, contentLength); | ||
Console.WriteLine(""); | ||
Console.WriteLine("Node Table"); | ||
} | ||
|
||
List<CryXmlNode> nodeTable = new List<CryXmlNode> { }; | ||
br.BaseStream.Seek(nodeTableOffset, SeekOrigin.Begin); | ||
Int32 nodeID = 0; | ||
while (br.BaseStream.Position < nodeTableOffset + nodeTableCount * nodeTableSize) | ||
{ | ||
var position = br.BaseStream.Position; | ||
var value = new CryXmlNode | ||
{ | ||
NodeID = nodeID++, | ||
NodeNameOffset = br.ReadInt32(), | ||
ItemType = br.ReadInt32(), | ||
AttributeCount = br.ReadInt16(), | ||
ChildCount = br.ReadInt16(), | ||
ParentNodeID = br.ReadInt32(), | ||
FirstAttributeIndex = br.ReadInt32(), | ||
FirstChildIndex = br.ReadInt32(), | ||
Reserved = br.ReadInt32(), | ||
}; | ||
|
||
nodeTable.Add(value); | ||
if (writeLog) | ||
{ | ||
Console.WriteLine( | ||
"0x{0:X6}: {1:X8} {2:X8} {3:X4} {4:X4} {5:X8} {6:X8} {7:X8} {8:X8}", | ||
position, | ||
value.NodeNameOffset, | ||
value.ItemType, | ||
value.AttributeCount, | ||
value.ChildCount, | ||
value.ParentNodeID, | ||
value.FirstAttributeIndex, | ||
value.FirstChildIndex, | ||
value.Reserved); | ||
} | ||
} | ||
|
||
if (writeLog) | ||
{ | ||
Console.WriteLine(""); | ||
Console.WriteLine("Reference Table"); | ||
} | ||
|
||
List<CryXmlReference> attributeTable = new List<CryXmlReference> { }; | ||
br.BaseStream.Seek(referenceTableOffset, SeekOrigin.Begin); | ||
while (br.BaseStream.Position < referenceTableOffset + referenceTableCount * referenceTableSize) | ||
{ | ||
var position = br.BaseStream.Position; | ||
var value = new CryXmlReference | ||
{ | ||
NameOffset = br.ReadInt32(), | ||
ValueOffset = br.ReadInt32() | ||
}; | ||
|
||
attributeTable.Add(value); | ||
if (writeLog) | ||
{ | ||
Console.WriteLine("0x{0:X6}: {1:X8} {2:X8}", position, value.NameOffset, value.ValueOffset); | ||
} | ||
} | ||
if (writeLog) | ||
{ | ||
Console.WriteLine(""); | ||
Console.WriteLine("Order Table"); | ||
} | ||
|
||
List<Int32> table3 = new List<Int32> { }; | ||
br.BaseStream.Seek(offset3, SeekOrigin.Begin); | ||
while (br.BaseStream.Position < offset3 + count3 * length3) | ||
{ | ||
var position = br.BaseStream.Position; | ||
var value = br.ReadInt32(); | ||
|
||
table3.Add(value); | ||
if (writeLog) | ||
{ | ||
Console.WriteLine("0x{0:X6}: {1:X8}", position, value); | ||
} | ||
} | ||
|
||
if (writeLog) | ||
{ | ||
Console.WriteLine(""); | ||
Console.WriteLine("Dynamic Dictionary"); | ||
} | ||
|
||
List<CryXmlValue> dataTable = new List<CryXmlValue> { }; | ||
br.BaseStream.Seek(contentOffset, SeekOrigin.Begin); | ||
while (br.BaseStream.Position < br.BaseStream.Length) | ||
{ | ||
var position = br.BaseStream.Position; | ||
var value = new CryXmlValue | ||
{ | ||
Offset = (Int32)position - contentOffset, | ||
Value = br.ReadCString(), | ||
}; | ||
dataTable.Add(value); | ||
if (writeLog) | ||
{ | ||
Console.WriteLine("0x{0:X6}: {1:X8} {2}", position, value.Offset, value.Value); | ||
} | ||
} | ||
|
||
var dataMap = dataTable.ToDictionary(k => k.Offset, v => v.Value); | ||
|
||
var attributeIndex = 0; | ||
|
||
var xmlDoc = new XmlDocument(); | ||
|
||
var bugged = false; | ||
|
||
Dictionary<Int32, XmlElement> xmlMap = new Dictionary<Int32, XmlElement> { }; | ||
foreach (var node in nodeTable) | ||
{ | ||
XmlElement element = xmlDoc.CreateElement(dataMap[node.NodeNameOffset]); | ||
|
||
for (Int32 i = 0, j = node.AttributeCount; i < j; i++) | ||
{ | ||
if (dataMap.ContainsKey(attributeTable[attributeIndex].ValueOffset)) | ||
{ | ||
element.SetAttribute(dataMap[attributeTable[attributeIndex].NameOffset], dataMap[attributeTable[attributeIndex].ValueOffset]); | ||
} | ||
else | ||
{ | ||
bugged = true; | ||
element.SetAttribute(dataMap[attributeTable[attributeIndex].NameOffset], "BUGGED"); | ||
} | ||
attributeIndex++; | ||
} | ||
|
||
xmlMap[node.NodeID] = element; | ||
if (xmlMap.ContainsKey(node.ParentNodeID)) | ||
xmlMap[node.ParentNodeID].AppendChild(element); | ||
else | ||
xmlDoc.AppendChild(element); | ||
} | ||
|
||
return xmlDoc; | ||
} | ||
} | ||
|
||
public static TObject Deserialize<TObject>(String inFile) where TObject : class | ||
{ | ||
using (MemoryStream ms = new MemoryStream()) | ||
{ | ||
var xmlDoc = CryXmlSerializer.ReadFile(inFile); | ||
|
||
xmlDoc.Save(ms); | ||
|
||
ms.Seek(0, SeekOrigin.Begin); | ||
|
||
XmlSerializer xs = new XmlSerializer(typeof(TObject)); | ||
|
||
return xs.Deserialize(ms) as TObject; | ||
} | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.