mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
107 lines
3.6 KiB
C#
107 lines
3.6 KiB
C#
// /***************************************************************************
|
|
// Aaru Data Preservation Suite
|
|
// ----------------------------------------------------------------------------
|
|
//
|
|
// Filename : Structs.cs
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
|
//
|
|
// Component : Disk image plugins.
|
|
//
|
|
// --[ Description ] ----------------------------------------------------------
|
|
//
|
|
// Contains structures for SuperCardPro flux images.
|
|
//
|
|
// --[ License ] --------------------------------------------------------------
|
|
//
|
|
// This library is free software; you can redistribute it and/or modify
|
|
// it under the terms of the GNU Lesser General Public License as
|
|
// published by the Free Software Foundation; either version 2.1 of the
|
|
// License, or (at your option) any later version.
|
|
//
|
|
// This library is distributed in the hope that it will be useful, but
|
|
// WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
// Lesser General Public License for more details.
|
|
//
|
|
// You should have received a copy of the GNU Lesser General Public
|
|
// License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
//
|
|
// ----------------------------------------------------------------------------
|
|
// Copyright © 2011-2025 Natalia Portillo
|
|
// ****************************************************************************/
|
|
|
|
using System.Runtime.InteropServices;
|
|
|
|
namespace Aaru.Images;
|
|
|
|
public sealed partial class SuperCardPro
|
|
{
|
|
#region Nested type: Footer
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
readonly struct Footer
|
|
{
|
|
public readonly uint manufacturerOffset;
|
|
public readonly uint modelOffset;
|
|
public readonly uint serialOffset;
|
|
public readonly uint creatorOffset;
|
|
public readonly uint applicationOffset;
|
|
public readonly uint commentsOffset;
|
|
public readonly long creationTime;
|
|
public readonly long modificationTime;
|
|
public readonly byte applicationVersion;
|
|
public readonly byte hardwareVersion;
|
|
public readonly byte firmwareVersion;
|
|
public readonly byte imageVersion;
|
|
public readonly uint signature;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Nested type: ScpHeader
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct ScpHeader
|
|
{
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
public byte[] signature;
|
|
public byte version;
|
|
public ScpDiskType type;
|
|
public byte revolutions;
|
|
public byte start;
|
|
public byte end;
|
|
public ScpFlags flags;
|
|
public byte bitCellEncoding; // 0 = 16 bit, otherwise value represent bits
|
|
public byte heads; // 1 = bottom side, 2 = top side, 0 = both
|
|
public byte resolution; // 25ns increments, ergo algorithm is 25ns + resolution * 25ns
|
|
public uint checksum; // for data starting at 0x10
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 168)]
|
|
public uint[] offsets;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Nested type: TrackEntry
|
|
|
|
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
|
public struct TrackEntry
|
|
{
|
|
public uint indexTime;
|
|
public uint trackLength;
|
|
public uint dataOffset;
|
|
}
|
|
|
|
#endregion
|
|
|
|
#region Nested type: TrackHeader
|
|
|
|
public struct TrackHeader
|
|
{
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
public byte[] Signature;
|
|
public byte TrackNumber;
|
|
public TrackEntry[] Entries;
|
|
}
|
|
|
|
#endregion
|
|
} |