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
|
|
|
|
|
2016-10-07 00:43:12 +01:00
|
|
|
|
using System;
|
|
|
|
|
|
using System.Collections.Generic;
|
|
|
|
|
|
using System.IO;
|
2015-10-19 02:13:54 +01:00
|
|
|
|
using System.Runtime.InteropServices;
|
2016-10-07 00:43:12 +01:00
|
|
|
|
using DiscImageChef.Console;
|
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>
|
2016-10-07 00:43:12 +01:00
|
|
|
|
public class 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>
|
2016-10-07 00:43:12 +01:00
|
|
|
|
public class RawSector
|
2015-10-19 02:04:38 +01:00
|
|
|
|
{
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Address field
|
|
|
|
|
|
/// </summary>
|
2016-10-07 00:43:12 +01:00
|
|
|
|
public RawAddressField 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>
|
2016-10-07 00:43:12 +01:00
|
|
|
|
public class 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>
|
2016-10-07 00:43:12 +01:00
|
|
|
|
public class 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;
|
|
|
|
|
|
}
|
2016-10-07 00:43:12 +01:00
|
|
|
|
|
|
|
|
|
|
static readonly byte[] ReadTable5and3 =
|
|
|
|
|
|
{
|
|
|
|
|
|
// 00h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 10h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 20h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 30h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 40h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 50h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 60h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 70h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 80h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 90h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// A0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0xFF, 0x01, 0x02, 0x03,
|
|
|
|
|
|
// B0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x04, 0x05, 0x06, 0xFF, 0xFF, 0x07, 0x08, 0xFF, 0x09, 0x0A, 0x0B,
|
|
|
|
|
|
// C0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// D0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x0C, 0x0D, 0xFF, 0xFF, 0x0E, 0x0F, 0xFF, 0x10, 0x11, 0x12,
|
|
|
|
|
|
// E0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x13, 0x14, 0xFF, 0x15, 0x16, 0x17,
|
|
|
|
|
|
// F0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x18, 0x19, 0x1A, 0xFF, 0xFF, 0x1B, 0x1C, 0xFF, 0x1D, 0x1E, 0x1F
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
static readonly byte[] ReadTable6and2 =
|
|
|
|
|
|
{
|
|
|
|
|
|
// 00h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 10h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 20h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 30h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 40h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 50h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 60h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 70h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 80h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF,
|
|
|
|
|
|
// 90h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x00, 0x01, 0xFF, 0xFF, 0x02, 0x03, 0xFF, 0x04, 0x05, 0x06,
|
|
|
|
|
|
// A0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x07, 0x08, 0xFF, 0xFF, 0xFF, 0x09, 0x0A, 0x0B, 0x0C, 0x0D,
|
|
|
|
|
|
// B0h
|
|
|
|
|
|
0xFF, 0xFF, 0x0E, 0x0F, 0x10, 0x11, 0x12, 0x13, 0xFF, 0x14, 0x15, 0x16, 0x17, 0x18, 0x19, 0x1A,
|
|
|
|
|
|
// C0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x1B, 0xFF, 0x1C, 0x1D, 0x1E,
|
|
|
|
|
|
// D0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0x1F, 0xFF, 0xFF, 0x20, 0x21, 0xFF, 0x22, 0x23, 0x24, 0x25, 0x26, 0x27, 0x28,
|
|
|
|
|
|
// E0h
|
|
|
|
|
|
0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0x29, 0x2A, 0x2B, 0xFF, 0x2C, 0x2D, 0x2E, 0x2F, 0x30, 0x31, 0x32,
|
|
|
|
|
|
// F0h
|
|
|
|
|
|
0xFF, 0xFF, 0x33, 0x34, 0x35, 0x36, 0x37, 0x38, 0xFF, 0x39, 0x3A, 0x3B, 0x3C, 0x3D, 0x3E, 0x3F
|
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Decodes the 5and3 encoded data
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="data">5and3 encoded data.</param>
|
|
|
|
|
|
public static byte[] Decode5and3(byte[] data)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(data == null || data.Length != 410)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
byte[] buffer = new byte[data.Length];
|
|
|
|
|
|
byte carry = 0;
|
|
|
|
|
|
for(int i = 0; i < data.Length; i++)
|
|
|
|
|
|
{
|
|
|
|
|
|
carry ^= ReadTable5and3[data[i]];
|
|
|
|
|
|
buffer[i] = carry;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
byte[] output = new byte[256];
|
|
|
|
|
|
for(int i = 0; i < 51; i++)
|
|
|
|
|
|
{
|
|
|
|
|
|
byte b1 = buffer[51 * 3 - i];
|
|
|
|
|
|
byte b2 = buffer[51 * 2 - i];
|
|
|
|
|
|
byte b3 = buffer[51 - i];
|
|
|
|
|
|
byte b4 = (byte)(((b1 & 2) << 1 | (b2 & 2) | (b3 & 2) >> 1) & 0xFF);
|
|
|
|
|
|
byte b5 = (byte)(((b1 & 1) << 2 | (b2 & 1) << 1 | (b3 & 1)) & 0xFF);
|
|
|
|
|
|
output[250 - 5 * i] = (byte)(((buffer[i + 51 * 3 + 1] << 3) | ((b1 >> 2) & 0x7)) & 0xFF);
|
|
|
|
|
|
output[251 - 5 * i] = (byte)(((buffer[i + 51 * 4 + 1] << 3) | ((b2 >> 2) & 0x7)) & 0xFF);
|
|
|
|
|
|
output[252 - 5 * i] = (byte)(((buffer[i + 51 * 5 + 1] << 3) | ((b3 >> 2) & 0x7)) & 0xFF);
|
|
|
|
|
|
output[253 - 5 * i] = (byte)(((buffer[i + 51 * 6 + 1] << 3) | b4) & 0xFF);
|
|
|
|
|
|
output[254 - 5 * i] = (byte)(((buffer[i + 51 * 7 + 1] << 3) | b5) & 0xFF);
|
|
|
|
|
|
}
|
|
|
|
|
|
output[255] = (byte)(((buffer[409] << 3) | (buffer[0] & 0x7)) & 0xFF);
|
|
|
|
|
|
|
|
|
|
|
|
return output;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// <summary>
|
|
|
|
|
|
/// Decodes the 6and2 encoded data
|
|
|
|
|
|
/// </summary>
|
|
|
|
|
|
/// <param name="data">6and2 encoded data.</param>
|
|
|
|
|
|
public static byte[] Decode6and2(byte[] data)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(data == null || data.Length != 342)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
byte[] buffer = new byte[data.Length];
|
|
|
|
|
|
byte carry = 0;
|
|
|
|
|
|
for(int i = 0; i < data.Length; i++)
|
|
|
|
|
|
{
|
|
|
|
|
|
carry ^= ReadTable6and2[data[i]];
|
|
|
|
|
|
buffer[i] = carry;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
byte[] output = new byte[256];
|
|
|
|
|
|
for(uint i = 0; i < 256; i++)
|
|
|
|
|
|
{
|
|
|
|
|
|
output[i] = (byte)((buffer[86 + i] << 2) & 0xFF);
|
|
|
|
|
|
|
|
|
|
|
|
if(i < 86)
|
|
|
|
|
|
{
|
|
|
|
|
|
output[i] |= (byte)((((buffer[i] & 1) << 1)) & 0xFF);
|
|
|
|
|
|
output[i] |= (byte)((((buffer[i] & 2) >> 1)) & 0xFF);
|
|
|
|
|
|
}
|
|
|
|
|
|
else if(i < 86 * 2)
|
|
|
|
|
|
{
|
|
|
|
|
|
output[i] |= (byte)((((buffer[i - 86] & 4) >> 1)) & 0xFF);
|
|
|
|
|
|
output[i] |= (byte)((((buffer[i - 86] & 8) >> 3)) & 0xFF);
|
|
|
|
|
|
}
|
|
|
|
|
|
else
|
|
|
|
|
|
{
|
|
|
|
|
|
output[i] |= (byte)((((buffer[i - 86 * 2] & 0x10) >> 3)) & 0xFF);
|
|
|
|
|
|
output[i] |= (byte)((((buffer[i - 86 * 2] & 0x20) >> 5)) & 0xFF);
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return output;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static byte[] DecodeSector(RawSector sector)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(sector.addressField.prologue[0] == 0xD5 &&
|
|
|
|
|
|
sector.addressField.prologue[1] == 0xAA)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Pre DOS 3.3
|
|
|
|
|
|
if(sector.addressField.prologue[2] == 0xB5)
|
|
|
|
|
|
return Decode5and3(sector.dataField.data);
|
|
|
|
|
|
// DOS 3.3
|
|
|
|
|
|
if(sector.addressField.prologue[2] == 0x96)
|
|
|
|
|
|
return Decode6and2(sector.dataField.data);
|
|
|
|
|
|
// Unknown
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Not Apple ][ GCR?
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static RawSector MarshalSector(byte[] data, int offset = 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
int temp;
|
|
|
|
|
|
return MarshalSector(data, out temp, offset);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static RawSector MarshalSector(byte[] data, out int endOffset, int offset = 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
endOffset = offset;
|
|
|
|
|
|
|
|
|
|
|
|
// Not an Apple ][ GCR sector
|
|
|
|
|
|
if(data == null || data.Length < 363)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
RawSector sector;
|
|
|
|
|
|
int position = offset;
|
|
|
|
|
|
MemoryStream gaps;
|
|
|
|
|
|
bool onSync;
|
|
|
|
|
|
int syncCount;
|
|
|
|
|
|
|
|
|
|
|
|
try
|
|
|
|
|
|
{
|
|
|
|
|
|
while(position < data.Length)
|
|
|
|
|
|
{
|
|
|
|
|
|
// Prologue found
|
|
|
|
|
|
if(data[position] == 0xD5 && data[position + 1] == 0xAA)
|
|
|
|
|
|
{
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Prologue found at {0}", position);
|
|
|
|
|
|
|
|
|
|
|
|
// Epilogue not in correct position
|
|
|
|
|
|
if(data[position + 11] != 0xDE || data[position + 12] != 0xAA)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
sector = new RawSector();
|
|
|
|
|
|
sector.addressField = new RawAddressField();
|
|
|
|
|
|
sector.addressField.prologue = new byte[3];
|
|
|
|
|
|
sector.addressField.prologue[0] = data[position];
|
|
|
|
|
|
sector.addressField.prologue[1] = data[position + 1];
|
|
|
|
|
|
sector.addressField.prologue[2] = data[position + 2];
|
|
|
|
|
|
sector.addressField.volume = new byte[2];
|
|
|
|
|
|
sector.addressField.volume[0] = data[position + 3];
|
|
|
|
|
|
sector.addressField.volume[1] = data[position + 4];
|
|
|
|
|
|
sector.addressField.track = new byte[2];
|
|
|
|
|
|
sector.addressField.track[0] = data[position + 5];
|
|
|
|
|
|
sector.addressField.track[1] = data[position + 6];
|
|
|
|
|
|
sector.addressField.sector = new byte[2];
|
|
|
|
|
|
sector.addressField.sector[0] = data[position + 7];
|
|
|
|
|
|
sector.addressField.sector[1] = data[position + 8];
|
|
|
|
|
|
sector.addressField.checksum = new byte[2];
|
|
|
|
|
|
sector.addressField.checksum[0] = data[position + 9];
|
|
|
|
|
|
sector.addressField.checksum[1] = data[position + 10];
|
|
|
|
|
|
sector.addressField.epilogue = new byte[3];
|
|
|
|
|
|
sector.addressField.epilogue[0] = data[position + 11];
|
|
|
|
|
|
sector.addressField.epilogue[1] = data[position + 12];
|
|
|
|
|
|
sector.addressField.epilogue[2] = data[position + 13];
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Volume {0}", (((sector.addressField.volume[0] & 0x55) << 1) | (sector.addressField.volume[1] & 0x55)) & 0xFF);
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Track {0}", (((sector.addressField.track[0] & 0x55) << 1) | (sector.addressField.track[1] & 0x55)) & 0xFF);
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Sector {0}", (((sector.addressField.sector[0] & 0x55) << 1) | (sector.addressField.sector[1] & 0x55)) & 0xFF);
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Checksum {0}", (((sector.addressField.checksum[0] & 0x55) << 1) | (sector.addressField.checksum[1] & 0x55)) & 0xFF);
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Epilogue {0:X2}{1:X2}{2:X2}", sector.addressField.epilogue[0], sector.addressField.epilogue[1], sector.addressField.epilogue[2]);
|
|
|
|
|
|
|
|
|
|
|
|
position += 14;
|
|
|
|
|
|
syncCount = 0;
|
|
|
|
|
|
onSync = false;
|
|
|
|
|
|
gaps = new MemoryStream();
|
|
|
|
|
|
|
|
|
|
|
|
while(data[position] == 0xFF)
|
|
|
|
|
|
{
|
|
|
|
|
|
gaps.WriteByte(data[position]);
|
|
|
|
|
|
syncCount++;
|
|
|
|
|
|
onSync = syncCount >= 5;
|
|
|
|
|
|
position++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Lost sync
|
|
|
|
|
|
if(!onSync)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
// Prologue not found
|
|
|
|
|
|
if(data[position] != 0xD5 || data[position + 1] != 0xAA)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
sector.innerGap = gaps.ToArray();
|
|
|
|
|
|
sector.dataField = new RawDataField();
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Inner gap has {0} bytes", sector.innerGap.Length);
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Prologue found at {0}", position);
|
|
|
|
|
|
sector.dataField.prologue = new byte[3];
|
|
|
|
|
|
sector.dataField.prologue[0] = data[position];
|
|
|
|
|
|
sector.dataField.prologue[1] = data[position + 1];
|
|
|
|
|
|
sector.dataField.prologue[2] = data[position + 2];
|
|
|
|
|
|
position += 3;
|
|
|
|
|
|
|
|
|
|
|
|
gaps = new MemoryStream();
|
|
|
|
|
|
// Read data until epilogue is found
|
|
|
|
|
|
while(data[position + 1] != 0xDE || data[position + 2] != 0xAA)
|
|
|
|
|
|
{
|
|
|
|
|
|
gaps.WriteByte(data[position]);
|
|
|
|
|
|
position++;
|
|
|
|
|
|
|
|
|
|
|
|
// No space left for epilogue
|
|
|
|
|
|
if(position + 4 > data.Length)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sector.dataField.data = gaps.ToArray();
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Data has {0} bytes", sector.dataField.data.Length);
|
|
|
|
|
|
sector.dataField.checksum = data[position];
|
|
|
|
|
|
sector.dataField.epilogue = new byte[3];
|
|
|
|
|
|
sector.dataField.epilogue[0] = data[position + 1];
|
|
|
|
|
|
sector.dataField.epilogue[1] = data[position + 2];
|
|
|
|
|
|
sector.dataField.epilogue[2] = data[position + 3];
|
|
|
|
|
|
|
|
|
|
|
|
position += 4;
|
|
|
|
|
|
gaps = new MemoryStream();
|
|
|
|
|
|
// Read gap, if any
|
|
|
|
|
|
while(position < data.Length && data[position] == 0xFF)
|
|
|
|
|
|
{
|
|
|
|
|
|
gaps.WriteByte(data[position]);
|
|
|
|
|
|
position++;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
// Reduces last sector gap so doesn't eat next tracks's gap
|
|
|
|
|
|
if(gaps.Length > 5)
|
|
|
|
|
|
{
|
|
|
|
|
|
gaps.SetLength(gaps.Length / 2);
|
|
|
|
|
|
position -= (int)gaps.Length;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
sector.gap = gaps.ToArray();
|
|
|
|
|
|
// Return current position to be able to read separate sectors
|
|
|
|
|
|
endOffset = position;
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Got {0} bytes of gap", sector.gap.Length);
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Finished sector at {0}", position);
|
|
|
|
|
|
return sector;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(data[position] == 0xFF)
|
|
|
|
|
|
position++;
|
|
|
|
|
|
// Found data that is not sync or a prologue
|
|
|
|
|
|
else
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
catch(IndexOutOfRangeException)
|
|
|
|
|
|
{
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
return null;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static byte[] MarshalAddressField(RawAddressField addressField)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(addressField == null)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
MemoryStream raw = new MemoryStream();
|
|
|
|
|
|
raw.Write(addressField.prologue, 0, addressField.prologue.Length);
|
|
|
|
|
|
raw.Write(addressField.volume, 0, addressField.volume.Length);
|
|
|
|
|
|
raw.Write(addressField.track, 0, addressField.track.Length);
|
|
|
|
|
|
raw.Write(addressField.sector, 0, addressField.sector.Length);
|
|
|
|
|
|
raw.Write(addressField.checksum, 0, addressField.checksum.Length);
|
|
|
|
|
|
raw.Write(addressField.epilogue, 0, addressField.epilogue.Length);
|
|
|
|
|
|
|
|
|
|
|
|
return raw.ToArray();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static byte[] MarshalSector(RawSector sector)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(sector == null)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
MemoryStream raw = new MemoryStream();
|
|
|
|
|
|
raw.Write(sector.addressField.prologue, 0, sector.addressField.prologue.Length);
|
|
|
|
|
|
raw.Write(sector.addressField.volume, 0, sector.addressField.volume.Length);
|
|
|
|
|
|
raw.Write(sector.addressField.track, 0, sector.addressField.track.Length);
|
|
|
|
|
|
raw.Write(sector.addressField.sector, 0, sector.addressField.sector.Length);
|
|
|
|
|
|
raw.Write(sector.addressField.checksum, 0, sector.addressField.checksum.Length);
|
|
|
|
|
|
raw.Write(sector.addressField.epilogue, 0, sector.addressField.epilogue.Length);
|
|
|
|
|
|
raw.Write(sector.innerGap, 0, sector.innerGap.Length);
|
|
|
|
|
|
raw.Write(sector.dataField.prologue, 0, sector.dataField.prologue.Length);
|
|
|
|
|
|
raw.Write(sector.dataField.data, 0, sector.dataField.data.Length);
|
|
|
|
|
|
raw.WriteByte(sector.dataField.checksum);
|
|
|
|
|
|
raw.Write(sector.dataField.epilogue, 0, sector.dataField.epilogue.Length);
|
|
|
|
|
|
raw.Write(sector.gap, 0, sector.gap.Length);
|
|
|
|
|
|
|
|
|
|
|
|
return raw.ToArray();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static RawTrack MarshalTrack(byte[] data, int offset = 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
int temp;
|
|
|
|
|
|
return MarshalTrack(data, out temp, offset);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static RawTrack MarshalTrack(byte[] data, out int endOffset, int offset = 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
int position = offset;
|
|
|
|
|
|
bool firstSector = true;
|
|
|
|
|
|
bool onSync = false;
|
|
|
|
|
|
MemoryStream gaps = new MemoryStream();
|
|
|
|
|
|
int count = 0;
|
|
|
|
|
|
List<RawSector> sectors = new List<RawSector>();
|
|
|
|
|
|
byte[] trackNumber = new byte[2];
|
|
|
|
|
|
endOffset = offset;
|
|
|
|
|
|
|
|
|
|
|
|
while(position < data.Length && data[position] == 0xFF)
|
|
|
|
|
|
{
|
|
|
|
|
|
gaps.WriteByte(data[position]);
|
|
|
|
|
|
count++;
|
|
|
|
|
|
position++;
|
|
|
|
|
|
onSync = count >= 5;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(position >= data.Length)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
if(!onSync)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
while(position < data.Length)
|
|
|
|
|
|
{
|
|
|
|
|
|
int oldPosition = position;
|
|
|
|
|
|
RawSector sector = MarshalSector(data, out position, position);
|
|
|
|
|
|
if(sector == null)
|
|
|
|
|
|
break;
|
|
|
|
|
|
|
|
|
|
|
|
if(firstSector)
|
|
|
|
|
|
{
|
|
|
|
|
|
trackNumber[0] = sector.addressField.track[0];
|
|
|
|
|
|
trackNumber[1] = sector.addressField.track[1];
|
|
|
|
|
|
firstSector = false;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(sector.addressField.track[0] != trackNumber[0] ||
|
|
|
|
|
|
sector.addressField.track[1] != trackNumber[1])
|
|
|
|
|
|
{
|
|
|
|
|
|
position = oldPosition;
|
|
|
|
|
|
break;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
DicConsole.DebugWriteLine("Apple ][ GCR Decoder", "Adding sector {0} of track {1}", (((sector.addressField.sector[0] & 0x55) << 1) | (sector.addressField.sector[1] & 0x55)) & 0xFF, (((sector.addressField.track[0] & 0x55) << 1) | (sector.addressField.track[1] & 0x55)) & 0xFF);
|
|
|
|
|
|
sectors.Add(sector);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(sectors.Count == 0)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
RawTrack track = new RawTrack();
|
|
|
|
|
|
track.gap = gaps.ToArray();
|
|
|
|
|
|
track.sectors = sectors.ToArray();
|
|
|
|
|
|
endOffset = position;
|
|
|
|
|
|
return track;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static byte[] MarshalTrack(RawTrack track)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(track == null)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
MemoryStream raw = new MemoryStream();
|
|
|
|
|
|
raw.Write(track.gap, 0, track.gap.Length);
|
|
|
|
|
|
foreach(RawSector sector in track.sectors)
|
|
|
|
|
|
{
|
|
|
|
|
|
byte[] rawSector = MarshalSector(sector);
|
|
|
|
|
|
raw.Write(rawSector, 0, rawSector.Length);
|
|
|
|
|
|
}
|
|
|
|
|
|
return raw.ToArray();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static List<RawTrack> MarshalDisk(byte[] data, int offset = 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
int temp;
|
|
|
|
|
|
return MarshalDisk(data, out temp, offset);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static List<RawTrack> MarshalDisk(byte[] data, out int endOffset, int offset = 0)
|
|
|
|
|
|
{
|
|
|
|
|
|
endOffset = offset;
|
|
|
|
|
|
List<RawTrack> tracks = new List<RawTrack>();
|
|
|
|
|
|
int position = offset;
|
|
|
|
|
|
|
|
|
|
|
|
RawTrack track = MarshalTrack(data, out position, position);
|
|
|
|
|
|
while(track != null)
|
|
|
|
|
|
{
|
|
|
|
|
|
tracks.Add(track);
|
|
|
|
|
|
track = MarshalTrack(data, out position, position);
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
if(tracks.Count == 0)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
endOffset = position;
|
|
|
|
|
|
return tracks;
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static byte[] MarshalDisk(List<RawTrack> disk)
|
|
|
|
|
|
{
|
|
|
|
|
|
return MarshalDisk(disk.ToArray());
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static byte[] MarshalDisk(RawTrack[] disk)
|
|
|
|
|
|
{
|
|
|
|
|
|
if(disk == null)
|
|
|
|
|
|
return null;
|
|
|
|
|
|
|
|
|
|
|
|
MemoryStream raw = new MemoryStream();
|
|
|
|
|
|
foreach(RawTrack track in disk)
|
|
|
|
|
|
{
|
|
|
|
|
|
byte[] rawTrack = MarshalTrack(track);
|
|
|
|
|
|
raw.Write(rawTrack, 0, rawTrack.Length);
|
|
|
|
|
|
}
|
|
|
|
|
|
return raw.ToArray();
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
public static bool IsApple2GCR(byte[] data)
|
|
|
|
|
|
{
|
|
|
|
|
|
int position = 0;
|
|
|
|
|
|
RawSector sector = MarshalSector(data, out position, 0);
|
|
|
|
|
|
|
|
|
|
|
|
return sector != null && position != 0;
|
|
|
|
|
|
}
|
2015-10-19 02:04:38 +01:00
|
|
|
|
}
|
|
|
|
|
|
}
|
|
|
|
|
|
|