Files
Aaru/Aaru.Images/SuperCardPro/Structs.cs

107 lines
3.6 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// 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/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
2022-03-07 07:36:44 +00:00
using System.Runtime.InteropServices;
namespace Aaru.Images;
2022-03-06 13:29:38 +00:00
public sealed partial class SuperCardPro
{
2023-10-03 23:34:59 +01:00
#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
2022-03-06 13:29:38 +00:00
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct ScpHeader
{
2022-03-06 13:29:38 +00:00
[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;
2023-04-13 21:06:57 +02:00
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
2022-03-06 13:29:38 +00:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 168)]
public uint[] offsets;
}
2023-10-03 23:34:59 +01:00
#endregion
#region Nested type: TrackEntry
2022-03-06 13:29:38 +00:00
[StructLayout(LayoutKind.Sequential, Pack = 1)]
public struct TrackEntry
{
public uint indexTime;
public uint trackLength;
public uint dataOffset;
}
2023-10-03 23:34:59 +01:00
#endregion
#region Nested type: TrackHeader
public struct TrackHeader
2022-03-06 13:29:38 +00:00
{
2023-10-03 23:34:59 +01:00
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
public byte[] Signature;
public byte TrackNumber;
public TrackEntry[] Entries;
}
2023-10-03 23:34:59 +01:00
#endregion
}