* README.md:

* DiscImageChef.DiscImages/DIM.cs:
	* DiscImageChef.DiscImages/DiscImageChef.DiscImages.csproj:
	  Added support for X68k .DIM format.

	* DiscImageChef.CommonTypes/MediaType.cs:
	  Added missing NEC and SHARP floppy types.

	* DiscImageChef.DiscImages/BLU.cs:
	* DiscImageChef.DiscImages/GDI.cs:
	* DiscImageChef.DiscImages/Nero.cs:
	* DiscImageChef.DiscImages/CopyQM.cs:
	* DiscImageChef.DiscImages/CDRDAO.cs:
	* DiscImageChef.DiscImages/CDRWin.cs:
	* DiscImageChef.DiscImages/TeleDisk.cs:
	* DiscImageChef.DiscImages/Apple2MG.cs:
	* DiscImageChef.DiscImages/DiskCopy42.cs:
	* DiscImageChef.DiscImages/Alcohol120.cs:
	* DiscImageChef.DiscImages/BlindWrite5.cs:
	* DiscImageChef.DiscImages/BlindWrite4.cs:
	* DiscImageChef.DiscImages/ZZZRawImage.cs:
	  In verbose show disk image type and comments.
This commit is contained in:
2016-08-21 17:35:35 +01:00
parent 7d845a08cc
commit 985dc6333e
19 changed files with 580 additions and 3 deletions

View File

@@ -1,3 +1,7 @@
2016-08-21 Natalia Portillo <claunia@claunia.com>
* MediaType.cs: Added missing NEC and SHARP floppy types.
2016-08-09 Natalia Portillo <claunia@claunia.com> 2016-08-09 Natalia Portillo <claunia@claunia.com>
* DiscImageChef.CommonTypes.csproj: Bumped version to * DiscImageChef.CommonTypes.csproj: Bumped version to

View File

@@ -360,6 +360,10 @@ namespace DiscImageChef.CommonTypes
NEC_8_SD, NEC_8_SD,
/// <summary>8", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, MFM</summary> /// <summary>8", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, MFM</summary>
NEC_8_DD, NEC_8_DD,
/// <summary>8", SS, SD, 77 tracks, 26 spt, 128 bytes/sector, FM</summary>
NEC_525_SD,
/// <summary>8", SS, SD, 77 tracks, 26 spt, 256 bytes/sector, MFM?</summary>
NEC_525_DD,
/// <summary>5,25", DS, HD, 80 tracks, 8 spt, 1024 bytes/sector, MFM</summary> /// <summary>5,25", DS, HD, 80 tracks, 8 spt, 1024 bytes/sector, MFM</summary>
NEC_525_HD, NEC_525_HD,
/// <summary>3,5", DS, HD, 80 tracks, 8 spt, 1024 bytes/sector, MFM</summary> /// <summary>3,5", DS, HD, 80 tracks, 8 spt, 1024 bytes/sector, MFM</summary>
@@ -369,10 +373,14 @@ namespace DiscImageChef.CommonTypes
#endregion NEC standard floppy formats #endregion NEC standard floppy formats
#region SHARP standard floppy formats #region SHARP standard floppy formats
/// <summary>5,25", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, FM</summary> /// <summary>5,25", DS, HD, 77 tracks, 8 spt, 1024 bytes/sector, FM</summary>
SHARP_525, SHARP_525,
/// <summary>3,5", DS, DD, 77 tracks, 8 spt, 1024 bytes/sector, FM</summary> /// <summary>3,5", DS, HD, 80 tracks, 9 spt, 1024 bytes/sector, FM</summary>
SHARP_525_9,
/// <summary>3,5", DS, HD, 77 tracks, 8 spt, 1024 bytes/sector, FM</summary>
SHARP_35, SHARP_35,
/// <summary>3,5", DS, HD, 80 tracks, 9 spt, 1024 bytes/sector, FM</summary>
SHARP_35_9,
#endregion SHARP standard floppy formats #endregion SHARP standard floppy formats
#region ECMA floppy standards #region ECMA floppy standards

View File

@@ -735,6 +735,8 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.readableSectorTags.Add(SectorTagType.CDTrackFlags); ImageInfo.readableSectorTags.Add(SectorTagType.CDTrackFlags);
} }
DicConsole.VerboseWriteLine("Alcohol 120% image describes a disc of type {0}", ImageInfo.mediaType);
return true; return true;
} }

View File

@@ -365,6 +365,10 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.xmlMediaType = XmlMediaType.BlockMedia; ImageInfo.xmlMediaType = XmlMediaType.BlockMedia;
DicConsole.VerboseWriteLine("2MG image contains a disk of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("2MG comments: {0}", ImageInfo.imageComments);
return true; return true;
} }

View File

@@ -215,6 +215,8 @@ namespace DiscImageChef.ImagePlugins
if(bptag > 0) if(bptag > 0)
ImageInfo.readableSectorTags.Add(SectorTagType.AppleSectorTag); ImageInfo.readableSectorTags.Add(SectorTagType.AppleSectorTag);
DicConsole.VerboseWriteLine("BLU image contains a disk of type {0}", ImageInfo.mediaType);
return true; return true;
} }

View File

@@ -837,6 +837,10 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.imageComments = header.comments; ImageInfo.imageComments = header.comments;
DicConsole.VerboseWriteLine("BlindWrite image describes a disc of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("BlindrWrite comments: {0}", ImageInfo.imageComments);
return true; return true;
} }

View File

@@ -1110,6 +1110,8 @@ namespace DiscImageChef.ImagePlugins
if(fullToc != null) if(fullToc != null)
ImageInfo.readableMediaTags.Add(MediaTagType.CD_FullTOC); ImageInfo.readableMediaTags.Add(MediaTagType.CD_FullTOC);
DicConsole.VerboseWriteLine("BlindWrite image describes a disc of type {0}", ImageInfo.mediaType);
return true; return true;
} }

View File

@@ -946,6 +946,10 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc; ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc;
DicConsole.VerboseWriteLine("CDRDAO image describes a disc of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("CDRDAO comments: {0}", ImageInfo.imageComments);
return true; return true;
} }
catch(Exception ex) catch(Exception ex)

View File

@@ -1282,6 +1282,10 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc; ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc;
DicConsole.VerboseWriteLine("CDRWIN image describes a disc of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("CDRWIN comments: {0}", ImageInfo.imageComments);
return true; return true;
} }
catch(Exception ex) catch(Exception ex)

View File

@@ -1,3 +1,24 @@
2016-08-21 Natalia Portillo <claunia@claunia.com>
* DIM.cs:
* DiscImageChef.DiscImages.csproj: Added support for X68k .DIM
format.
* BLU.cs:
* GDI.cs:
* Nero.cs:
* CopyQM.cs:
* CDRDAO.cs:
* CDRWin.cs:
* TeleDisk.cs:
* Apple2MG.cs:
* DiskCopy42.cs:
* Alcohol120.cs:
* BlindWrite5.cs:
* BlindWrite4.cs:
* ZZZRawImage.cs: In verbose show disk image type and
comments.
2016-08-18 Natalia Portillo <claunia@claunia.com> 2016-08-18 Natalia Portillo <claunia@claunia.com>
* BlindWrite5.cs: * BlindWrite5.cs:

View File

@@ -404,6 +404,10 @@ namespace DiscImageChef.ImagePlugins
decodedImage.Close(); decodedImage.Close();
stream.Close(); stream.Close();
DicConsole.VerboseWriteLine("CopyQM image contains a disk of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("CopyQM comments: {0}", ImageInfo.imageComments);
return true; return true;
} }

View File

@@ -0,0 +1,505 @@
// /***************************************************************************
// The Disc Image Chef
// ----------------------------------------------------------------------------
//
// Filename : DIM.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Component
//
// --[ Description ] ----------------------------------------------------------
//
// Description
//
// --[ 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-2016 Natalia Portillo
// ****************************************************************************/
using System;
using System.IO;
using System.Collections.Generic;
using DiscImageChef.Console;
using DiscImageChef.CommonTypes;
using System.Linq;
using System.Text;
namespace DiscImageChef.ImagePlugins
{
// Checked using several images and strings inside Apple's DiskImages.framework
class DIM : ImagePlugin
{
#region Internal enumerations
enum DiskType : byte
{
HD2 = 0,
HS2 = 1,
HC2 = 2,
HDE2 = 3,
HQ2 = 9,
N88 = 17
}
#endregion
#region Internal constants
readonly byte[] HeaderID = { 0x44, 0x49, 0x46, 0x43, 0x20, 0x48, 0x45, 0x41, 0x44, 0x45, 0x52, 0x20, 0x20 };
#endregion
#region Internal variables
/// <summary>Start of data sectors in disk image, should be 0x100</summary>
const uint dataOffset = 0x100;
/// <summary>Disk image file</summary>
string dimImagePath;
byte[] comment;
byte[] hdrId;
DiskType dskType;
#endregion
public DIM()
{
Name = "DIM Disk Image";
PluginUUID = new Guid("0240B7B1-E959-4CDC-B0BD-386D6E467B88");
ImageInfo = new ImageInfo();
ImageInfo.readableSectorTags = new List<SectorTagType>();
ImageInfo.readableMediaTags = new List<MediaTagType>();
ImageInfo.imageHasPartitions = false;
ImageInfo.imageHasSessions = false;
ImageInfo.imageVersion = null;
ImageInfo.imageApplication = null;
ImageInfo.imageApplicationVersion = null;
ImageInfo.imageCreator = null;
ImageInfo.imageComments = null;
ImageInfo.mediaManufacturer = null;
ImageInfo.mediaModel = null;
ImageInfo.mediaSerialNumber = null;
ImageInfo.mediaBarcode = null;
ImageInfo.mediaPartNumber = null;
ImageInfo.mediaSequence = 0;
ImageInfo.lastMediaSequence = 0;
ImageInfo.driveManufacturer = null;
ImageInfo.driveModel = null;
ImageInfo.driveSerialNumber = null;
ImageInfo.driveFirmwareRevision = null;
}
public override bool IdentifyImage(string imagePath)
{
FileStream stream = new FileStream(imagePath, FileMode.Open, FileAccess.Read);
stream.Seek(0, SeekOrigin.Begin);
if(stream.Length < dataOffset)
return false;
comment = new byte[60];
hdrId = new byte[13];
stream.Seek(0, SeekOrigin.Begin);
dskType = (DiskType)stream.ReadByte();
stream.Seek(0xAB, SeekOrigin.Begin);
stream.Read(hdrId, 0, 13);
stream.Seek(0xC2, SeekOrigin.Begin);
stream.Read(comment, 0, 60);
stream.Close();
return HeaderID.SequenceEqual(hdrId);
}
public override bool OpenImage(string imagePath)
{
FileStream stream = new FileStream(imagePath, FileMode.Open, FileAccess.Read);
stream.Seek(0, SeekOrigin.Begin);
if(stream.Length < dataOffset)
return false;
long diskSize = stream.Length - dataOffset;
comment = new byte[60];
hdrId = new byte[13];
stream.Seek(0, SeekOrigin.Begin);
dskType = (DiskType)stream.ReadByte();
stream.Seek(0xAB, SeekOrigin.Begin);
stream.Read(hdrId, 0, 13);
stream.Seek(0xC2, SeekOrigin.Begin);
stream.Read(comment, 0, 60);
stream.Close();
if(!HeaderID.SequenceEqual(hdrId))
return false;
ImageInfo.mediaType = MediaType.Unknown;
switch(dskType)
{
// 8 spt, 1024 bps
case DiskType.HD2:
if(diskSize % (2 * 8 * 1024) != 0)
{
DicConsole.ErrorWriteLine("DIM shows unknown image with {0} tracks", diskSize / (2 * 8 * 1024));
return false;
}
if(diskSize / (2 * 8 * 1024) == 77)
ImageInfo.mediaType = MediaType.SHARP_525;
ImageInfo.sectorSize = 1024;
break;
// 9 spt, 1024 bps
case DiskType.HS2:
if(diskSize % (2 * 9 * 512) != 0)
{
DicConsole.ErrorWriteLine("DIM shows unknown image with {0} tracks", diskSize / (2 * 9 * 512));
return false;
}
if(diskSize / (2 * 9 * 512) == 80)
ImageInfo.mediaType = MediaType.SHARP_525_9;
ImageInfo.sectorSize = 512;
break;
// 15 spt, 512 bps
case DiskType.HC2:
if(diskSize % (2 * 15 * 512) != 0)
{
DicConsole.ErrorWriteLine("DIM shows unknown image with {0} tracks", diskSize / (2 * 15 * 512));
return false;
}
if(diskSize / (2 * 15 * 512) == 80)
ImageInfo.mediaType = MediaType.DOS_525_HD;
ImageInfo.sectorSize = 512;
break;
// 9 spt, 1024 bps
case DiskType.HDE2:
if(diskSize % (2 * 9 * 512) != 0)
{
DicConsole.ErrorWriteLine("DIM shows unknown image with {0} tracks", diskSize / (2 * 9 * 512));
return false;
}
if(diskSize / (2 * 9 * 512) == 80)
ImageInfo.mediaType = MediaType.SHARP_35_9;
ImageInfo.sectorSize = 512;
break;
// 18 spt, 512 bps
case DiskType.HQ2:
if(diskSize % (2 * 18 * 512) != 0)
{
DicConsole.ErrorWriteLine("DIM shows unknown image with {0} tracks", diskSize / (2 * 18 * 512));
return false;
}
if(diskSize / (2 * 18 * 512) == 80)
ImageInfo.mediaType = MediaType.DOS_35_HD;
ImageInfo.sectorSize = 512;
break;
// 26 spt, 256 bps
case DiskType.N88:
if(diskSize % (2 * 26 * 256) == 0)
{
if(diskSize % (2 * 26 * 256) == 77)
ImageInfo.mediaType = MediaType.NEC_525_DD;
ImageInfo.sectorSize = 256;
}
else if(diskSize % (2 * 26 * 128) == 0)
{
if(diskSize % (2 * 26 * 128) == 77)
ImageInfo.mediaType = MediaType.NEC_525_SD;
ImageInfo.sectorSize = 256;
}
else
{
DicConsole.ErrorWriteLine("DIM shows unknown image with {0} tracks", diskSize / (2 * 26 * 256));
return false;
}
break;
default:
return false;
}
DicConsole.VerboseWriteLine("DIM image contains a disk of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("DIM comments: {0}", ImageInfo.imageComments);
dimImagePath = imagePath;
FileInfo fi = new FileInfo(imagePath);
ImageInfo.imageSize = (ulong)diskSize;
ImageInfo.imageCreationTime = fi.CreationTimeUtc;
ImageInfo.imageLastModificationTime = fi.LastWriteTimeUtc;
ImageInfo.imageName = Path.GetFileNameWithoutExtension(imagePath);
ImageInfo.sectors = ImageInfo.imageSize / ImageInfo.sectorSize;
ImageInfo.imageComments = StringHandlers.CToString(comment, Encoding.GetEncoding(932));
ImageInfo.xmlMediaType = XmlMediaType.BlockMedia;
return true;
}
public override bool ImageHasPartitions()
{
return false;
}
public override ulong GetImageSize()
{
return ImageInfo.imageSize;
}
public override ulong GetSectors()
{
return ImageInfo.sectors;
}
public override uint GetSectorSize()
{
return ImageInfo.sectorSize;
}
public override string GetImageFormat()
{
return "DIM disk image";
}
public override string GetImageVersion()
{
return ImageInfo.imageVersion;
}
public override string GetImageApplication()
{
return ImageInfo.imageApplication;
}
public override string GetImageApplicationVersion()
{
return ImageInfo.imageApplicationVersion;
}
public override string GetImageCreator()
{
return ImageInfo.imageCreator;
}
public override DateTime GetImageCreationTime()
{
return ImageInfo.imageCreationTime;
}
public override DateTime GetImageLastModificationTime()
{
return ImageInfo.imageLastModificationTime;
}
public override string GetImageName()
{
return ImageInfo.imageName;
}
public override string GetImageComments()
{
return ImageInfo.imageComments;
}
public override MediaType GetMediaType()
{
return ImageInfo.mediaType;
}
public override byte[] ReadSector(ulong sectorAddress)
{
return ReadSectors(sectorAddress, 1);
}
public override byte[] ReadSectors(ulong sectorAddress, uint length)
{
if(sectorAddress > ImageInfo.sectors - 1)
throw new ArgumentOutOfRangeException(nameof(sectorAddress), "Sector address not found");
if(sectorAddress + length > ImageInfo.sectors)
throw new ArgumentOutOfRangeException(nameof(length), "Requested more sectors than available");
byte[] buffer = new byte[length * ImageInfo.sectorSize];
FileStream stream = new FileStream(dimImagePath, FileMode.Open, FileAccess.Read);
stream.Seek((long)(dataOffset + sectorAddress * ImageInfo.sectorSize), SeekOrigin.Begin);
stream.Read(buffer, 0, (int)(length * ImageInfo.sectorSize));
stream.Close();
return buffer;
}
#region Unsupported features
public override byte[] ReadDiskTag(MediaTagType tag)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorTag(ulong sectorAddress, SectorTagType tag)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSector(ulong sectorAddress, uint track)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorTag(ulong sectorAddress, uint track, SectorTagType tag)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorsTag(ulong sectorAddress, uint length, SectorTagType tag)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectors(ulong sectorAddress, uint length, uint track)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorsTag(ulong sectorAddress, uint length, uint track, SectorTagType tag)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorLong(ulong sectorAddress)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorLong(ulong sectorAddress, uint track)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorsLong(ulong sectorAddress, uint length)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override byte[] ReadSectorsLong(ulong sectorAddress, uint length, uint track)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override string GetMediaManufacturer()
{
return null;
}
public override string GetMediaModel()
{
return null;
}
public override string GetMediaSerialNumber()
{
return null;
}
public override string GetMediaBarcode()
{
return null;
}
public override string GetMediaPartNumber()
{
return null;
}
public override int GetMediaSequence()
{
return 0;
}
public override int GetLastDiskSequence()
{
return 0;
}
public override string GetDriveManufacturer()
{
return null;
}
public override string GetDriveModel()
{
return null;
}
public override string GetDriveSerialNumber()
{
return null;
}
public override List<Partition> GetPartitions()
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override List<Track> GetTracks()
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override List<Track> GetSessionTracks(Session session)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override List<Track> GetSessionTracks(ushort session)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override List<Session> GetSessions()
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override bool? VerifySector(ulong sectorAddress)
{
return null;
}
public override bool? VerifySector(ulong sectorAddress, uint track)
{
throw new FeatureUnsupportedImageException("Feature not supported by image format");
}
public override bool? VerifySectors(ulong sectorAddress, uint length, out List<ulong> FailingLBAs, out List<ulong> UnknownLBAs)
{
FailingLBAs = new List<ulong>();
UnknownLBAs = new List<ulong>();
for(ulong i = 0; i < ImageInfo.sectors; i++)
UnknownLBAs.Add(i);
return null;
}
public override 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");
}
public override bool? VerifyMediaImage()
{
return null;
}
#endregion
}
}

View File

@@ -50,6 +50,7 @@
<Compile Include="Alcohol120.cs" /> <Compile Include="Alcohol120.cs" />
<Compile Include="BlindWrite4.cs" /> <Compile Include="BlindWrite4.cs" />
<Compile Include="BlindWrite5.cs" /> <Compile Include="BlindWrite5.cs" />
<Compile Include="DIM.cs" />
</ItemGroup> </ItemGroup>
<Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" /> <Import Project="$(MSBuildBinPath)\Microsoft.CSharp.targets" />
<ItemGroup> <ItemGroup>

View File

@@ -440,6 +440,7 @@ namespace DiscImageChef.ImagePlugins
} }
ImageInfo.xmlMediaType = XmlMediaType.BlockMedia; ImageInfo.xmlMediaType = XmlMediaType.BlockMedia;
DicConsole.VerboseWriteLine("DiskCopy 4.2 image contains a disk of type {0}", ImageInfo.mediaType);
return true; return true;
} }

View File

@@ -428,6 +428,8 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc; ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc;
DicConsole.VerboseWriteLine("GDI image describes a disc of type {0}", ImageInfo.mediaType);
return true; return true;
} }
catch(Exception ex) catch(Exception ex)

View File

@@ -1714,6 +1714,7 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc; ImageInfo.xmlMediaType = XmlMediaType.OpticalDisc;
DicConsole.VerboseWriteLine("Nero image contains a disc of type {0}", ImageInfo.mediaType);
return true; return true;
} }

View File

@@ -576,6 +576,10 @@ namespace DiscImageChef.ImagePlugins
ImageInfo.xmlMediaType = XmlMediaType.BlockMedia; ImageInfo.xmlMediaType = XmlMediaType.BlockMedia;
DicConsole.VerboseWriteLine("TeleDisk image contains a disk of type {0}", ImageInfo.mediaType);
if(!string.IsNullOrEmpty(ImageInfo.imageComments))
DicConsole.VerboseWriteLine("TeleDisk comments: {0}", ImageInfo.imageComments);
return true; return true;
} }

View File

@@ -31,9 +31,10 @@
// ****************************************************************************/ // ****************************************************************************/
using System; using System;
using System.IO;
using System.Collections.Generic; using System.Collections.Generic;
using System.IO;
using DiscImageChef.CommonTypes; using DiscImageChef.CommonTypes;
using DiscImageChef.Console;
namespace DiscImageChef.ImagePlugins namespace DiscImageChef.ImagePlugins
{ {
@@ -274,6 +275,8 @@ namespace DiscImageChef.ImagePlugins
break; break;
} }
DicConsole.VerboseWriteLine("Raw disk image contains a disk of type {0}", ImageInfo.mediaType);
return true; return true;
} }

View File

@@ -47,6 +47,7 @@ Supported disk image formats
* Alcohol 120% Media Descriptor Structure (.MDS/.MDF) * Alcohol 120% Media Descriptor Structure (.MDS/.MDF)
* BlindWrite 4 TOC files (.BWT/.BWI/.BWS) * BlindWrite 4 TOC files (.BWT/.BWI/.BWS)
* BlindWrite 5/6 TOC files (.B5T/.B5I and .B6T/.B6I) * BlindWrite 5/6 TOC files (.B5T/.B5I and .B6T/.B6I)
* X68k DIM disk image files (.DIM)
Supported partitioning schemes Supported partitioning schemes
============================== ==============================