* FileSystemIDandChk/ArrayFill.cs:

* FileSystemIDandChk/FileSystemIDandChk.csproj:
	  Added array filling class from mykohsu.

	* FileSystemIDandChk/Main.cs:
	  Print disk type as identified by image plugin

	* FileSystemIDandChk/ImagePlugins/ImagePlugin.cs:
	  Added more disk types

	* FileSystemIDandChk/ImagePlugins/TeleDisk.cs:
	  Added link to Dave's document.
	Completely implemented OpenImage() for standard
	  (non-compressed) teledisk images.
	Implemented GetImageSize(), GetSectors(), GetSectorSize(),
	  ReadSectors(), GetImageVersion(),
	  GetImageApplicationVersion(), GetImageCreationTime(),
	  GetImageLastModificationtime(), GetImageName(),
	  GetDiskType(), data sector decoders.

	* FileSystemIDandChk/TODO:
	  Discovered a filesystem specification present on ECMA-67.
	  Dunno if CP/M, FAT or a different one, must check.
	Teledisk plugin is working, but lacks "advanced compression"
	  and variable sectors per track support.
This commit is contained in:
2014-06-07 04:54:15 +01:00
parent 4a35b934e5
commit 8e0dde88bc
6 changed files with 661 additions and 16 deletions

View File

@@ -6,7 +6,6 @@
--- Add support for Alcohol images
--- Add support for Nero images
--- Add support for cdrdao images
--- Add support for Teledisk images
--- Add support for dump(8) images
--- Add support for IMD images
--- Add support for Kryoflux images
@@ -47,6 +46,7 @@ Filesystem plugins:
--- Add support for exFAT
--- Add support for FAT+
--- Add support for ReFS
--- Add support for ECMA-67
Partitioning scheme plugins:
--- Add support for Acorn partitions
@@ -62,4 +62,8 @@ Things to test/debug:
--- After moving to disc images, HFS CDs with 512 bytes/sector are not detected anymore
Other things:
--- Surprise!
--- Surprise!
Teledisk plugin:
--- Add support for "advanced compression"
--- Handle variable sectors per track situation. Teledisk seems to be able to read garbage from previous formattings.