2015-10-19 02:04:38 +01:00
|
|
|
|
// /***************************************************************************
|
|
|
|
|
|
// The Disc Image Chef
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
|
|
|
|
|
//
|
|
|
|
|
|
// Filename : Apple2.cs
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
2015-10-19 02:04:38 +01:00
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// Component : Device structures decoders.
|
2015-10-19 02:04:38 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ Description ] ----------------------------------------------------------
|
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// Decodes Apple ][ floppy structures.
|
2015-10-19 02:04:38 +01:00
|
|
|
|
//
|
|
|
|
|
|
// --[ License ] --------------------------------------------------------------
|
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// 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
|
2015-10-19 02:04:38 +01:00
|
|
|
|
// License, or (at your option) any later version.
|
|
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// 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.
|
2015-10-19 02:04:38 +01:00
|
|
|
|
//
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// 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/>.
|
2015-10-19 02:04:38 +01:00
|
|
|
|
//
|
|
|
|
|
|
// ----------------------------------------------------------------------------
|
2016-07-28 18:13:49 +01:00
|
|
|
|
// Copyright © 2011-2016 Natalia Portillo
|
2015-10-19 02:04:38 +01:00
|
|
|
|
// ****************************************************************************/
|
2016-07-28 18:13:49 +01:00
|
|
|
|
|
2015-10-19 02:04:38 +01:00
|
|
|
|
using System;
|
2015-10-19 02:13:54 +01:00
|
|
|
|
using System.Runtime.InteropServices;
|
2015-10-19 02:04:38 +01:00
|
|
|
|
|
|
|
|
|
|
namespace DiscImageChef.Decoders.Floppy
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Methods and structures for Apple ][ floppy decoding
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public static class Apple2
|
|
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// GCR-encoded Apple ][ GCR floppy track
|
|
|
|
|
|
/// </summary>
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public struct RawTrack
|
2015-10-19 02:04:38 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Track preamble, set to self-sync 0xFF, between 40 and 95 bytes
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public byte[] gap;
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public RawSector[] sectors;
|
2015-10-19 02:04:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// GCR-encoded Apple ][ GCR floppy sector
|
|
|
|
|
|
/// </summary>
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public struct RawSector
|
2015-10-19 02:04:38 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Address field
|
|
|
|
|
|
/// </summary>
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public RawDataField addressField;
|
2015-10-19 02:04:38 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Track preamble, set to self-sync 0xFF, between 5 and 10 bytes
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public byte[] innerGap;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Data field
|
|
|
|
|
|
/// </summary>
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public RawDataField dataField;
|
2015-10-19 02:04:38 +01:00
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Track preamble, set to self-sync 0xFF, between 14 and 24 bytes
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public byte[] gap;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// GCR-encoded Apple ][ GCR floppy sector address field
|
|
|
|
|
|
/// </summary>
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public struct RawAddressField
|
2015-10-19 02:04:38 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Always 0xD5, 0xAA, 0x96
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
|
|
|
|
public byte[] prologue;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Volume number encoded as:
|
|
|
|
|
|
/// volume[0] = (decodedVolume >> 1) | 0xAA
|
|
|
|
|
|
/// volume[1] = decodedVolume | 0xAA
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public byte[] volume;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Track number encoded as:
|
|
|
|
|
|
/// track[0] = (decodedTrack >> 1) | 0xAA
|
|
|
|
|
|
/// track[1] = decodedTrack | 0xAA
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public byte[] track;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Sector number encoded as:
|
|
|
|
|
|
/// sector[0] = (decodedSector >> 1) | 0xAA
|
|
|
|
|
|
/// sector[1] = decodedSector | 0xAA
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public byte[] sector;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// decodedChecksum = decodedVolume ^ decodedTrack ^ decodedSector
|
|
|
|
|
|
/// checksum[0] = (decodedChecksum >> 1) | 0xAA
|
|
|
|
|
|
/// checksum[1] = decodedChecksum | 0xAA
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 2)]
|
|
|
|
|
|
public byte[] checksum;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Always 0xDE, 0xAA, 0xEB
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
|
|
|
|
public byte[] epilogue;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// GCR-encoded Apple ][ GCR floppy sector data field
|
|
|
|
|
|
/// </summary>
|
2015-10-19 02:13:54 +01:00
|
|
|
|
public struct RawDataField
|
2015-10-19 02:04:38 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Always 0xD5, 0xAA, 0xAD
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
|
|
|
|
public byte[] prologue;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Encoded data bytes.
|
|
|
|
|
|
/// 410 bytes for 5to3 (aka DOS 3.2) format
|
|
|
|
|
|
/// 342 bytes for 6to2 (aka DOS 3.3) format
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
public byte[] data;
|
|
|
|
|
|
public byte checksum;
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Always 0xDE, 0xAA, 0xEB
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
|
|
|
|
|
public byte[] epilogue;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|