mirror of
https://github.com/aaru-dps/Aaru.git
synced 2025-12-16 19:24:25 +00:00
Refactor image classes and split them to smaller files.
This commit is contained in:
50
DiscImageChef.DiscImages/SuperCardPro/Constants.cs
Normal file
50
DiscImageChef.DiscImages/SuperCardPro/Constants.cs
Normal file
@@ -0,0 +1,50 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Constants.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Contains constants 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
/// <summary>
|
||||
/// SuperCardPro footer signature: "FPCS"
|
||||
/// </summary>
|
||||
const uint FOOTER_SIGNATURE = 0x53435046;
|
||||
/// <summary>
|
||||
/// SuperCardPro header signature: "SCP"
|
||||
/// </summary>
|
||||
readonly byte[] scpSignature = {0x53, 0x43, 0x50};
|
||||
/// <summary>
|
||||
/// SuperCardPro track header signature: "TRK"
|
||||
/// </summary>
|
||||
readonly byte[] trkSignature = {0x54, 0x52, 0x4B};
|
||||
}
|
||||
}
|
||||
94
DiscImageChef.DiscImages/SuperCardPro/Enums.cs
Normal file
94
DiscImageChef.DiscImages/SuperCardPro/Enums.cs
Normal file
@@ -0,0 +1,94 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Enums.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Contains enumerations 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
public enum ScpDiskType : byte
|
||||
{
|
||||
Commodore64 = 0x00,
|
||||
CommodoreAmiga = 0x04,
|
||||
AtariFMSS = 0x10,
|
||||
AtariFMDS = 0x11,
|
||||
AtariFSEx = 0x12,
|
||||
AtariSTSS = 0x14,
|
||||
AtariSTDS = 0x15,
|
||||
AppleII = 0x20,
|
||||
AppleIIPro = 0x21,
|
||||
Apple400K = 0x24,
|
||||
Apple800K = 0x25,
|
||||
Apple144 = 0x26,
|
||||
PC360K = 0x30,
|
||||
PC720K = 0x31,
|
||||
PC12M = 0x32,
|
||||
PC144M = 0x33,
|
||||
TandySSSD = 0x40,
|
||||
TandySSDD = 0x41,
|
||||
TandyDSSD = 0x42,
|
||||
TandyDSDD = 0x43,
|
||||
Ti994A = 0x50,
|
||||
RolandD20 = 0x60
|
||||
}
|
||||
|
||||
[Flags]
|
||||
public enum ScpFlags : byte
|
||||
{
|
||||
/// <summary>
|
||||
/// If set flux starts at index pulse
|
||||
/// </summary>
|
||||
Index = 0x00,
|
||||
/// <summary>
|
||||
/// If set drive is 96tpi
|
||||
/// </summary>
|
||||
Tpi = 0x02,
|
||||
/// <summary>
|
||||
/// If set drive is 360rpm
|
||||
/// </summary>
|
||||
Rpm = 0x04,
|
||||
/// <summary>
|
||||
/// If set image contains normalized data
|
||||
/// </summary>
|
||||
Normalized = 0x08,
|
||||
/// <summary>
|
||||
/// If set image is read/write capable
|
||||
/// </summary>
|
||||
Writable = 0x10,
|
||||
/// <summary>
|
||||
/// If set, image has footer
|
||||
/// </summary>
|
||||
HasFooter = 0x20
|
||||
}
|
||||
}
|
||||
}
|
||||
58
DiscImageChef.DiscImages/SuperCardPro/Helpers.cs
Normal file
58
DiscImageChef.DiscImages/SuperCardPro/Helpers.cs
Normal file
@@ -0,0 +1,58 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Helpers.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Contains helpers 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Text;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
static string ReadPStringUtf8(Stream stream, uint position)
|
||||
{
|
||||
if(position == 0) return null;
|
||||
|
||||
stream.Position = position;
|
||||
byte[] lenB = new byte[2];
|
||||
stream.Read(lenB, 0, 2);
|
||||
ushort len = BitConverter.ToUInt16(lenB, 0);
|
||||
|
||||
if(len == 0 || len + stream.Position >= stream.Length) return null;
|
||||
|
||||
byte[] str = new byte[len];
|
||||
stream.Read(str, 0, len);
|
||||
|
||||
return Encoding.UTF8.GetString(str);
|
||||
}
|
||||
}
|
||||
}
|
||||
61
DiscImageChef.DiscImages/SuperCardPro/Identify.cs
Normal file
61
DiscImageChef.DiscImages/SuperCardPro/Identify.cs
Normal file
@@ -0,0 +1,61 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Identify.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Identifies 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
using DiscImageChef.CommonTypes.Interfaces;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
public bool Identify(IFilter imageFilter)
|
||||
{
|
||||
Header = new ScpHeader();
|
||||
Stream stream = imageFilter.GetDataForkStream();
|
||||
stream.Seek(0, SeekOrigin.Begin);
|
||||
if(stream.Length < Marshal.SizeOf(Header)) return false;
|
||||
|
||||
byte[] hdr = new byte[Marshal.SizeOf(Header)];
|
||||
stream.Read(hdr, 0, Marshal.SizeOf(Header));
|
||||
|
||||
IntPtr hdrPtr = Marshal.AllocHGlobal(Marshal.SizeOf(Header));
|
||||
Marshal.Copy(hdr, 0, hdrPtr, Marshal.SizeOf(Header));
|
||||
Header = (ScpHeader)Marshal.PtrToStructure(hdrPtr, typeof(ScpHeader));
|
||||
Marshal.FreeHGlobal(hdrPtr);
|
||||
|
||||
return scpSignature.SequenceEqual(Header.signature);
|
||||
}
|
||||
}
|
||||
}
|
||||
63
DiscImageChef.DiscImages/SuperCardPro/Properties.cs
Normal file
63
DiscImageChef.DiscImages/SuperCardPro/Properties.cs
Normal file
@@ -0,0 +1,63 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Properties.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Contains properties 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using DiscImageChef.CommonTypes;
|
||||
using DiscImageChef.CommonTypes.Exceptions;
|
||||
using DiscImageChef.CommonTypes.Structs;
|
||||
using Schemas;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
public ImageInfo Info => imageInfo;
|
||||
|
||||
public string Name => "SuperCardPro";
|
||||
public Guid Id => new Guid("C5D3182E-1D45-4767-A205-E6E5C83444DC");
|
||||
|
||||
public string Format => "SuperCardPro";
|
||||
|
||||
public List<Partition> Partitions =>
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
|
||||
public List<Track> Tracks =>
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
|
||||
public List<Session> Sessions =>
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
|
||||
public List<DumpHardwareType> DumpHardware => null;
|
||||
public CICMMetadataType CicmMetadata => null;
|
||||
}
|
||||
}
|
||||
292
DiscImageChef.DiscImages/SuperCardPro/Read.cs
Normal file
292
DiscImageChef.DiscImages/SuperCardPro/Read.cs
Normal file
@@ -0,0 +1,292 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Read.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Reads 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using System.Linq;
|
||||
using System.Runtime.InteropServices;
|
||||
using DiscImageChef.CommonTypes.Enums;
|
||||
using DiscImageChef.CommonTypes.Interfaces;
|
||||
using DiscImageChef.Console;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
public bool Open(IFilter imageFilter)
|
||||
{
|
||||
Header = new ScpHeader();
|
||||
scpStream = imageFilter.GetDataForkStream();
|
||||
scpStream.Seek(0, SeekOrigin.Begin);
|
||||
if(scpStream.Length < Marshal.SizeOf(Header)) return false;
|
||||
|
||||
byte[] hdr = new byte[Marshal.SizeOf(Header)];
|
||||
scpStream.Read(hdr, 0, Marshal.SizeOf(Header));
|
||||
|
||||
IntPtr hdrPtr = Marshal.AllocHGlobal(Marshal.SizeOf(Header));
|
||||
Marshal.Copy(hdr, 0, hdrPtr, Marshal.SizeOf(Header));
|
||||
Header = (ScpHeader)Marshal.PtrToStructure(hdrPtr, typeof(ScpHeader));
|
||||
Marshal.FreeHGlobal(hdrPtr);
|
||||
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.signature = \"{0}\"",
|
||||
StringHandlers.CToString(Header.signature));
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.version = {0}.{1}", (Header.version & 0xF0) >> 4,
|
||||
Header.version & 0xF);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.type = {0}", Header.type);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.revolutions = {0}", Header.revolutions);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.start = {0}", Header.start);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.end = {0}", Header.end);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.flags = {0}", Header.flags);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.bitCellEncoding = {0}", Header.bitCellEncoding);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.heads = {0}", Header.heads);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.reserved = {0}", Header.reserved);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "header.checksum = 0x{0:X8}", Header.checksum);
|
||||
|
||||
if(!scpSignature.SequenceEqual(Header.signature)) return false;
|
||||
|
||||
ScpTracks = new Dictionary<byte, TrackHeader>();
|
||||
|
||||
for(byte t = Header.start; t <= Header.end; t++)
|
||||
{
|
||||
if(t >= Header.offsets.Length) break;
|
||||
|
||||
scpStream.Position = Header.offsets[t];
|
||||
TrackHeader trk =
|
||||
new TrackHeader {Signature = new byte[3], Entries = new TrackEntry[Header.revolutions]};
|
||||
scpStream.Read(trk.Signature, 0, trk.Signature.Length);
|
||||
trk.TrackNumber = (byte)scpStream.ReadByte();
|
||||
|
||||
if(!trk.Signature.SequenceEqual(trkSignature))
|
||||
{
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin",
|
||||
"Track header at {0} contains incorrect signature.", Header.offsets[t]);
|
||||
continue;
|
||||
}
|
||||
|
||||
if(trk.TrackNumber != t)
|
||||
{
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "Track number at {0} should be {1} but is {2}.",
|
||||
Header.offsets[t], t, trk.TrackNumber);
|
||||
continue;
|
||||
}
|
||||
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "Found track {0} at {1}.", t, Header.offsets[t]);
|
||||
|
||||
for(byte r = 0; r < Header.revolutions; r++)
|
||||
{
|
||||
byte[] rev = new byte[Marshal.SizeOf(typeof(TrackEntry))];
|
||||
scpStream.Read(rev, 0, Marshal.SizeOf(typeof(TrackEntry)));
|
||||
|
||||
IntPtr revPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(TrackEntry)));
|
||||
Marshal.Copy(rev, 0, revPtr, Marshal.SizeOf(typeof(TrackEntry)));
|
||||
trk.Entries[r] = (TrackEntry)Marshal.PtrToStructure(revPtr, typeof(TrackEntry));
|
||||
Marshal.FreeHGlobal(revPtr);
|
||||
// De-relative offsets
|
||||
trk.Entries[r].dataOffset += Header.offsets[t];
|
||||
}
|
||||
|
||||
ScpTracks.Add(t, trk);
|
||||
}
|
||||
|
||||
if(Header.flags.HasFlag(ScpFlags.HasFooter))
|
||||
{
|
||||
long position = scpStream.Position;
|
||||
scpStream.Seek(-4, SeekOrigin.End);
|
||||
|
||||
while(scpStream.Position >= position)
|
||||
{
|
||||
byte[] footerSig = new byte[4];
|
||||
scpStream.Read(footerSig, 0, 4);
|
||||
uint footerMagic = BitConverter.ToUInt32(footerSig, 0);
|
||||
|
||||
if(footerMagic == FOOTER_SIGNATURE)
|
||||
{
|
||||
scpStream.Seek(-Marshal.SizeOf(typeof(ScpFooter)), SeekOrigin.Current);
|
||||
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "Found footer at {0}", scpStream.Position);
|
||||
|
||||
byte[] ftr = new byte[Marshal.SizeOf(typeof(ScpFooter))];
|
||||
scpStream.Read(ftr, 0, Marshal.SizeOf(typeof(ScpFooter)));
|
||||
|
||||
IntPtr ftrPtr = Marshal.AllocHGlobal(Marshal.SizeOf(typeof(ScpFooter)));
|
||||
Marshal.Copy(ftr, 0, ftrPtr, Marshal.SizeOf(typeof(ScpFooter)));
|
||||
ScpFooter footer = (ScpFooter)Marshal.PtrToStructure(ftrPtr, typeof(ScpFooter));
|
||||
Marshal.FreeHGlobal(ftrPtr);
|
||||
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.manufacturerOffset = 0x{0:X8}",
|
||||
footer.manufacturerOffset);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.modelOffset = 0x{0:X8}",
|
||||
footer.modelOffset);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.serialOffset = 0x{0:X8}",
|
||||
footer.serialOffset);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.creatorOffset = 0x{0:X8}",
|
||||
footer.creatorOffset);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.applicationOffset = 0x{0:X8}",
|
||||
footer.applicationOffset);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.commentsOffset = 0x{0:X8}",
|
||||
footer.commentsOffset);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.creationTime = {0}",
|
||||
footer.creationTime);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.modificationTime = {0}",
|
||||
footer.modificationTime);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.applicationVersion = {0}.{1}",
|
||||
(footer.applicationVersion & 0xF0) >> 4,
|
||||
footer.applicationVersion & 0xF);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.hardwareVersion = {0}.{1}",
|
||||
(footer.hardwareVersion & 0xF0) >> 4, footer.hardwareVersion & 0xF);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.firmwareVersion = {0}.{1}",
|
||||
(footer.firmwareVersion & 0xF0) >> 4, footer.firmwareVersion & 0xF);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.imageVersion = {0}.{1}",
|
||||
(footer.imageVersion & 0xF0) >> 4, footer.imageVersion & 0xF);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "footer.signature = \"{0}\"",
|
||||
StringHandlers.CToString(BitConverter.GetBytes(footer.signature)));
|
||||
|
||||
imageInfo.DriveManufacturer = ReadPStringUtf8(scpStream, footer.manufacturerOffset);
|
||||
imageInfo.DriveModel = ReadPStringUtf8(scpStream, footer.modelOffset);
|
||||
imageInfo.DriveSerialNumber = ReadPStringUtf8(scpStream, footer.serialOffset);
|
||||
imageInfo.Creator = ReadPStringUtf8(scpStream, footer.creatorOffset);
|
||||
imageInfo.Application = ReadPStringUtf8(scpStream, footer.applicationOffset);
|
||||
imageInfo.Comments = ReadPStringUtf8(scpStream, footer.commentsOffset);
|
||||
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.driveManufacturer = \"{0}\"",
|
||||
imageInfo.DriveManufacturer);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.driveModel = \"{0}\"",
|
||||
imageInfo.DriveModel);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.driveSerialNumber = \"{0}\"",
|
||||
imageInfo.DriveSerialNumber);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.imageCreator = \"{0}\"",
|
||||
imageInfo.Creator);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.imageApplication = \"{0}\"",
|
||||
imageInfo.Application);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.imageComments = \"{0}\"",
|
||||
imageInfo.Comments);
|
||||
|
||||
imageInfo.CreationTime = footer.creationTime != 0
|
||||
? DateHandlers.UnixToDateTime(footer.creationTime)
|
||||
: imageFilter.GetCreationTime();
|
||||
|
||||
imageInfo.LastModificationTime = footer.modificationTime != 0
|
||||
? DateHandlers.UnixToDateTime(footer.modificationTime)
|
||||
: imageFilter.GetLastWriteTime();
|
||||
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.imageCreationTime = {0}",
|
||||
imageInfo.CreationTime);
|
||||
DicConsole.DebugWriteLine("SuperCardPro plugin", "ImageInfo.imageLastModificationTime = {0}",
|
||||
imageInfo.LastModificationTime);
|
||||
|
||||
imageInfo.ApplicationVersion =
|
||||
$"{(footer.applicationVersion & 0xF0) >> 4}.{footer.applicationVersion & 0xF}";
|
||||
imageInfo.DriveFirmwareRevision =
|
||||
$"{(footer.firmwareVersion & 0xF0) >> 4}.{footer.firmwareVersion & 0xF}";
|
||||
imageInfo.Version = $"{(footer.imageVersion & 0xF0) >> 4}.{footer.imageVersion & 0xF}";
|
||||
|
||||
break;
|
||||
}
|
||||
|
||||
scpStream.Seek(-8, SeekOrigin.Current);
|
||||
}
|
||||
}
|
||||
else
|
||||
{
|
||||
imageInfo.Application = "SuperCardPro";
|
||||
imageInfo.ApplicationVersion = $"{(Header.version & 0xF0) >> 4}.{Header.version & 0xF}";
|
||||
imageInfo.CreationTime = imageFilter.GetCreationTime();
|
||||
imageInfo.LastModificationTime = imageFilter.GetLastWriteTime();
|
||||
imageInfo.Version = "1.5";
|
||||
}
|
||||
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public byte[] ReadDiskTag(MediaTagType tag)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public byte[] ReadSector(ulong sectorAddress)
|
||||
{
|
||||
return ReadSectors(sectorAddress, 1);
|
||||
}
|
||||
|
||||
public byte[] ReadSectorTag(ulong sectorAddress, SectorTagType tag)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public byte[] ReadSectors(ulong sectorAddress, uint length)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public byte[] ReadSectorsTag(ulong sectorAddress, uint length, SectorTagType tag)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public byte[] ReadSectorLong(ulong sectorAddress)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public byte[] ReadSectorsLong(ulong sectorAddress, uint length)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public bool? VerifySector(ulong sectorAddress)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public bool? VerifySectors(ulong sectorAddress, uint length, out List<ulong> failingLbas,
|
||||
out List<ulong> unknownLbas)
|
||||
{
|
||||
throw new NotImplementedException("Flux decoding is not yet implemented.");
|
||||
}
|
||||
|
||||
public bool? VerifyMediaImage()
|
||||
{
|
||||
if(Header.flags.HasFlag(ScpFlags.Writable)) return null;
|
||||
|
||||
byte[] wholeFile = new byte[scpStream.Length];
|
||||
uint sum = 0;
|
||||
|
||||
scpStream.Position = 0;
|
||||
scpStream.Read(wholeFile, 0, wholeFile.Length);
|
||||
|
||||
for(int i = 0x10; i < wholeFile.Length; i++) sum += wholeFile[i];
|
||||
|
||||
return Header.checksum == sum;
|
||||
}
|
||||
}
|
||||
}
|
||||
92
DiscImageChef.DiscImages/SuperCardPro/Structs.cs
Normal file
92
DiscImageChef.DiscImages/SuperCardPro/Structs.cs
Normal file
@@ -0,0 +1,92 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System.Runtime.InteropServices;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
[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;
|
||||
public byte heads;
|
||||
public byte reserved;
|
||||
public uint checksum;
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 168)]
|
||||
public uint[] offsets;
|
||||
}
|
||||
|
||||
public struct TrackHeader
|
||||
{
|
||||
[MarshalAs(UnmanagedType.ByValArray, SizeConst = 3)]
|
||||
public byte[] Signature;
|
||||
public byte TrackNumber;
|
||||
public TrackEntry[] Entries;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
public struct TrackEntry
|
||||
{
|
||||
public uint indexTime;
|
||||
public uint trackLength;
|
||||
public uint dataOffset;
|
||||
}
|
||||
|
||||
[StructLayout(LayoutKind.Sequential, Pack = 1)]
|
||||
struct ScpFooter
|
||||
{
|
||||
public uint manufacturerOffset;
|
||||
public uint modelOffset;
|
||||
public uint serialOffset;
|
||||
public uint creatorOffset;
|
||||
public uint applicationOffset;
|
||||
public uint commentsOffset;
|
||||
public long creationTime;
|
||||
public long modificationTime;
|
||||
public byte applicationVersion;
|
||||
public byte hardwareVersion;
|
||||
public byte firmwareVersion;
|
||||
public byte imageVersion;
|
||||
public uint signature;
|
||||
}
|
||||
}
|
||||
}
|
||||
76
DiscImageChef.DiscImages/SuperCardPro/SuperCardPro.cs
Normal file
76
DiscImageChef.DiscImages/SuperCardPro/SuperCardPro.cs
Normal file
@@ -0,0 +1,76 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : SuperCardPro.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Manages 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using System.IO;
|
||||
using DiscImageChef.CommonTypes.Enums;
|
||||
using DiscImageChef.CommonTypes.Interfaces;
|
||||
using DiscImageChef.CommonTypes.Structs;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro : IMediaImage
|
||||
{
|
||||
// TODO: These variables have been made public so create-sidecar can access to this information until I define an API >4.0
|
||||
public ScpHeader Header;
|
||||
ImageInfo imageInfo;
|
||||
Stream scpStream;
|
||||
public Dictionary<byte, TrackHeader> ScpTracks;
|
||||
|
||||
public SuperCardPro()
|
||||
{
|
||||
imageInfo = new ImageInfo
|
||||
{
|
||||
ReadableSectorTags = new List<SectorTagType>(),
|
||||
ReadableMediaTags = new List<MediaTagType>(),
|
||||
HasPartitions = false,
|
||||
HasSessions = false,
|
||||
Version = null,
|
||||
Application = null,
|
||||
ApplicationVersion = null,
|
||||
Creator = null,
|
||||
Comments = null,
|
||||
MediaManufacturer = null,
|
||||
MediaModel = null,
|
||||
MediaSerialNumber = null,
|
||||
MediaBarcode = null,
|
||||
MediaPartNumber = null,
|
||||
MediaSequence = 0,
|
||||
LastMediaSequence = 0,
|
||||
DriveManufacturer = null,
|
||||
DriveModel = null,
|
||||
DriveSerialNumber = null,
|
||||
DriveFirmwareRevision = null
|
||||
};
|
||||
}
|
||||
}
|
||||
}
|
||||
93
DiscImageChef.DiscImages/SuperCardPro/Unsupported.cs
Normal file
93
DiscImageChef.DiscImages/SuperCardPro/Unsupported.cs
Normal file
@@ -0,0 +1,93 @@
|
||||
// /***************************************************************************
|
||||
// The Disc Image Chef
|
||||
// ----------------------------------------------------------------------------
|
||||
//
|
||||
// Filename : Unsupported.cs
|
||||
// Author(s) : Natalia Portillo <claunia@claunia.com>
|
||||
//
|
||||
// Component : Disk image plugins.
|
||||
//
|
||||
// --[ Description ] ----------------------------------------------------------
|
||||
//
|
||||
// Contains features unsupported by 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-2018 Natalia Portillo
|
||||
// ****************************************************************************/
|
||||
|
||||
using System.Collections.Generic;
|
||||
using DiscImageChef.CommonTypes.Enums;
|
||||
using DiscImageChef.CommonTypes.Exceptions;
|
||||
using DiscImageChef.CommonTypes.Structs;
|
||||
|
||||
namespace DiscImageChef.DiscImages
|
||||
{
|
||||
public partial class SuperCardPro
|
||||
{
|
||||
public byte[] ReadSectorLong(ulong sectorAddress, uint track)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public byte[] ReadSector(ulong sectorAddress, uint track)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public byte[] ReadSectorTag(ulong sectorAddress, uint track, SectorTagType tag)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public byte[] ReadSectors(ulong sectorAddress, uint length, uint track)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public byte[] ReadSectorsTag(ulong sectorAddress, uint length, uint track, SectorTagType tag)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public byte[] ReadSectorsLong(ulong sectorAddress, uint length, uint track)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public List<Track> GetSessionTracks(Session session)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public List<Track> GetSessionTracks(ushort session)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public bool? VerifySector(ulong sectorAddress, uint track)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
|
||||
public bool? VerifySectors(ulong sectorAddress, uint length, uint track, out List<ulong> failingLbas,
|
||||
out List<ulong> unknownLbas)
|
||||
{
|
||||
throw new FeatureUnsupportedImageException("Feature not supported by image format");
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user