// READERS / WRITERS /// <summary> /// Reads a data block from a file binary stream. /// </summary> /// <param name="binaryReader">Binary reader to read the block from. Must point to the beginning of the block.</param> /// <param name="index">Index within a sequence (starts at 0).</param> public void Read(SRBinaryReader binaryReader, int index) { try { binaryReader.Align(Alignment); SRTrace.WriteLine(""); SRTrace.WriteLine(" OBJECT #{0}: [file offset 0x{1:X8}]", index + 1, binaryReader.BaseStream.Position); handleOffset = binaryReader.ReadUInt64(); SRTrace.WriteLine(" Handle Offset: 0x{0:X16}", handleOffset); parentHandleOffset = binaryReader.ReadUInt64(); SRTrace.WriteLine(" Parent Handle Offset: 0x{0:X16}", parentHandleOffset); objectTypeHash = binaryReader.ReadInt32(); SRTrace.WriteLine(" Object Type Hash: 0x{0:X8}", objectTypeHash); var propertyCount = binaryReader.ReadUInt16(); SRTrace.WriteLine(" Number of Properties: {0}", propertyCount); var bufferSize = binaryReader.ReadUInt16(); SRTrace.WriteLine(" Buffer Size: {0}", bufferSize); var nameOffset = binaryReader.ReadUInt16(); SRTrace.WriteLine(" Name Offset: {0}", nameOffset); padding = binaryReader.ReadUInt16(); SRTrace.WriteLine(" Padding: {0}", padding); if (propertyCount == 0) throw new SRZoneFileException("Object has no properties."); propertyList = new List<SRZoneProperty>(propertyCount); var namePosition = binaryReader.BaseStream.Position + nameOffset - SRZoneProperty.DataOffset; name = null; for (int i = 0; i < propertyCount; i++) { long position = AlignUp(binaryReader.BaseStream.Position, SRZoneProperty.Alignment); SRZoneProperty property = SRZoneProperty.Create(binaryReader, i); propertyList.Add(property); if (position == namePosition) { if (property is SRZoneStringProperty) name = property.ToString(); else if (property.Type == SRZoneProperty.StringType) name = (i + 1).ToString(); else throw new SRZoneFileException("Name Offset does not point to a string property."); } } if (nameOffset != 0 && name == null) throw new SRZoneFileException("Name Offset does not point to a valid property."); } catch (Exception e) { // Add context information for the error message if (index >= 0) e.Data[BlockName] = index + 1; throw; } }
// READERS / WRITERS /// <summary> /// Reads a data block from a file binary stream. /// </summary> /// <param name="binaryReader">Binary reader to read the block from. Must point to the beginning of the block.</param> /// <param name="size">Maximum number of bytes to read.</param> public void Read(SRBinaryReader binaryReader) { binaryReader.Align(Alignment); SRTrace.WriteLine(""); SRTrace.WriteLine("WORLD ZONE HEADER: [file offset 0x{0:X8}]", binaryReader.BaseStream.Position); signature = new string(binaryReader.ReadChars(4)); SRTrace.WriteLine(" World Zone Signature: " + signature); if (signature != "SR3Z") throw new SRZoneFileException("Incorrect world zone signature.", binaryReader.BaseStream.Position - 4); version = binaryReader.ReadUInt32(); SRTrace.WriteLine(" World Zone Version: {0}", version); if (version != 29 && version != 32) // version 29 = SR3, 32 = SR4 throw new SRZoneFileException("Incorrect world zone version."); int v_file_header_ptr = binaryReader.ReadInt32(); SRTrace.WriteLine(" V-File Header Pointer: 0x{0:X8}", v_file_header_ptr); fileReferenceOffset = new SRPosition(binaryReader); SRTrace.WriteLine(" File Reference Offset: {0}", fileReferenceOffset.ToString()); fileReferencesPtr = binaryReader.ReadUInt32(); SRTrace.WriteLine(" WZ File Reference Ptr: 0x{0:X8}", fileReferencesPtr); int num_file_references = binaryReader.ReadInt16(); SRTrace.WriteLine(" Number of File Refs: {0}", num_file_references); zoneType = binaryReader.ReadByte(); string typeName = (zoneType < WorldZoneTypeNames.Length) ? WorldZoneTypeNames[zoneType] : "unknown"; SRTrace.WriteLine(" Zone Type: {0} ({1})", zoneType, typeName); int unused = binaryReader.ReadByte(); SRTrace.WriteLine(" Unused: {0}", unused); if (unused != 0) throw new SRZoneFileException("Expected unused field to be zero."); int interiorTriggerPtr = binaryReader.ReadInt32(); SRTrace.WriteLine(" Interior Trigger Ptr: 0x{0:X8} (run-time)", interiorTriggerPtr); if (interiorTriggerPtr != 0) throw new SRZoneFileException("Expected interior trigger pointer to be zero."); int numberOfTriggers = binaryReader.ReadInt16(); SRTrace.WriteLine(" Number of Triggers: {0,-10} (run-time)", numberOfTriggers); if (numberOfTriggers != 0) throw new SRZoneFileException("Expected number of triggers to be zero."); int extraObjects = binaryReader.ReadInt16(); SRTrace.WriteLine(" Extra Objects: {0}", extraObjects); if (extraObjects != 0) throw new SRZoneFileException("Expected extra objects to be zero."); binaryReader.BaseStream.Seek(24, SeekOrigin.Current); SRTrace.WriteLine(""); SRTrace.WriteLine(" MESH FILE REFERENCES: [file offset 0x{0:X8}]", binaryReader.BaseStream.Position); references = new List<SRZoneMeshFileReference>(num_file_references); for (int i = 0; i < num_file_references; i++) references.Add(new SRZoneMeshFileReference(binaryReader, i, vFileHeader)); }
// READERS / WRITERS /// <summary> /// Reads a section block from a .czn_pc file binary stream. /// </summary> /// <param name="binaryReader">Binary reader to read the block from. Must point to the beginning of the block.</param> /// <param name="index">Index within a sequence (starts at 0).</param> public void Read(SRBinaryReader binaryReader, int index) { try { binaryReader.Align(Alignment); SRTrace.WriteLine(""); SRTrace.WriteLine("SECTION #{0}: [file offset 0x{1:X8}]", index + 1, binaryReader.BaseStream.Position); sectionID = binaryReader.ReadUInt32(); SRTrace.WriteLine(" Section ID: 0x{0:X8}", sectionID); if (SectionType() < 0x2233 || SectionType() >= 0x2300) throw new SRZoneFileException("Invalid section ID. Not a valid zone file."); if (HasDescription()) SRTrace.WriteLine(" Description: " + Description()); var cpuSize = binaryReader.ReadUInt32(); SRTrace.WriteLine(" CPU Size: {0} bytes", cpuSize); gpuSize = 0; if (HasGPUData()) { gpuSize = binaryReader.ReadUInt32(); SRTrace.WriteLine(" GPU Size: {0} bytes", gpuSize); } if (cpuSize == 0) cpuData = null; else if (OptionParseObjects && SectionType() == 0x2234) cpuData = new SRZoneObjectSectionCpuData(binaryReader, (int)cpuSize); else cpuData = new SRRawDataBlock(binaryReader, (int)cpuSize); } catch (Exception e) { // Add context information for the error message if (index >= 0) e.Data[BlockName] = index + 1; throw; } }
/// <summary> /// Reads a property block from a file binary stream and creates a new property object containing the data. /// The returned property will be an instance of one of the concrete derived property classes. /// </summary> /// <param name="binaryReader">Binary reader to read the block from. Must point to the beginning of the block.</param> /// <param name="index">Index within a sequence (starts at 0).</param> /// <returns>The new zone property which was read from the input stream.</returns> public static SRZoneProperty Create(SRBinaryReader binaryReader, int index) { SRZoneProperty property; try { // Read the common header binaryReader.Align(Alignment); SRTrace.WriteLine(""); SRTrace.WriteLine(" PROPERTY #{0}: [file offset 0x{1:X8}]", index + 1, binaryReader.BaseStream.Position); UInt16 type = binaryReader.ReadUInt16(); string typeName = (type < PropertyTypeNames.Length) ? PropertyTypeNames[type] : "unknown"; SRTrace.WriteLine(" Type: {0} ({1})", type, typeName); UInt16 size = binaryReader.ReadUInt16(); SRTrace.WriteLine(" Size: {0} bytes", size); Int32 nameCrc = binaryReader.ReadInt32(); SRTrace.WriteLine(" Name CRC: 0x{0:X8} ({0})", nameCrc, nameCrc); // Create the appropriate derived class based on the header information property = Create(type, nameCrc); // Read the class-specific data into the derived class property.ReadData(binaryReader, size); // WARNING: There's a bunch of cruft after the "size" length which is part of the padding to // a dword boundry, but if we don't save it then the output file won't compare to the input file. if (OptionPreservePadding) { var paddingSize = AlignPaddingSize(binaryReader.BaseStream.Position, Alignment); if (paddingSize > 0) property.paddingData = new SRRawDataBlock(binaryReader, paddingSize); else property.paddingData = null; } } catch (Exception e) { // Add context information for the error message if (index >= 0) e.Data[BlockName] = index + 1; throw; } return property; }