2011-03-03 18:34:33 +00:00
|
|
|
using System;
|
|
|
|
|
using System.IO;
|
|
|
|
|
using System.Text;
|
|
|
|
|
using FileSystemIDandChk;
|
|
|
|
|
|
|
|
|
|
namespace FileSystemIDandChk.Plugins
|
|
|
|
|
{
|
|
|
|
|
class PCEnginePlugin : Plugin
|
|
|
|
|
{
|
|
|
|
|
public PCEnginePlugin(PluginBase Core)
|
|
|
|
|
{
|
|
|
|
|
base.Name = "PC Engine CD Plugin";
|
|
|
|
|
base.PluginUUID = new Guid("e5ee6d7c-90fa-49bd-ac89-14ef750b8af3");
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
public override bool Identify(ImagePlugins.ImagePlugin imagePlugin, ulong partitionOffset)
|
2011-03-03 18:34:33 +00:00
|
|
|
{
|
|
|
|
|
byte[] system_descriptor = new byte[23];
|
2014-04-14 01:14:20 +00:00
|
|
|
byte[] sector = imagePlugin.ReadSector(1 + partitionOffset);
|
2011-03-03 18:34:33 +00:00
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
Array.Copy(sector, 0x20, system_descriptor, 0, 23);
|
2011-03-03 18:34:33 +00:00
|
|
|
|
|
|
|
|
if(Encoding.ASCII.GetString(system_descriptor) == "PC Engine CD-ROM SYSTEM")
|
|
|
|
|
return true;
|
|
|
|
|
else
|
|
|
|
|
return false;
|
|
|
|
|
}
|
|
|
|
|
|
2014-04-14 01:14:20 +00:00
|
|
|
public override void GetInformation (ImagePlugins.ImagePlugin imagePlugin, ulong partitionOffset, out string information)
|
2011-03-03 18:34:33 +00:00
|
|
|
{
|
|
|
|
|
information = "";
|
|
|
|
|
}
|
|
|
|
|
}
|
2014-04-14 01:14:20 +00:00
|
|
|
}
|