Files
Aaru/Aaru.Images/Virtual98/Identify.cs

84 lines
3.3 KiB
C#
Raw Normal View History

// /***************************************************************************
2020-02-27 12:31:25 +00:00
// Aaru Data Preservation Suite
// ----------------------------------------------------------------------------
//
// Filename : Identify.cs
// Author(s) : Natalia Portillo <claunia@claunia.com>
//
// Component : Disk image plugins.
//
// --[ Description ] ----------------------------------------------------------
//
// Identifies Virtual98 disk 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/>.
//
// ----------------------------------------------------------------------------
2024-12-19 10:45:18 +00:00
// Copyright © 2011-2025 Natalia Portillo
// ****************************************************************************/
using System.IO;
using System.Linq;
using System.Text;
2020-02-27 00:33:26 +00:00
using Aaru.CommonTypes.Interfaces;
using Aaru.Helpers;
using Aaru.Logging;
namespace Aaru.Images;
2022-03-06 13:29:38 +00:00
public sealed partial class Virtual98
{
2023-10-03 23:34:59 +01:00
#region IWritableImage Members
2022-03-06 13:29:38 +00:00
/// <inheritdoc />
public bool Identify(IFilter imageFilter)
{
2022-03-06 13:29:38 +00:00
Stream stream = imageFilter.GetDataForkStream();
stream.Seek(0, SeekOrigin.Begin);
2020-02-29 18:03:35 +00:00
2022-03-06 13:29:38 +00:00
// Even if comment is supposedly ASCII, I'm pretty sure most emulators allow Shift-JIS to be used :p
var shiftjis = Encoding.GetEncoding("shift_jis");
2024-05-01 04:05:22 +01:00
if(stream.Length < Marshal.SizeOf<Virtual98Header>()) return false;
byte[] hdrB = new byte[Marshal.SizeOf<Virtual98Header>()];
stream.EnsureRead(hdrB, 0, hdrB.Length);
2022-03-06 13:29:38 +00:00
_v98Hdr = Marshal.ByteArrayToStructureLittleEndian<Virtual98Header>(hdrB);
2024-05-01 04:05:22 +01:00
if(!_v98Hdr.signature.SequenceEqual(_signature)) return false;
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME,
2024-05-01 04:05:22 +01:00
"v98hdr.signature = \"{0}\"",
2022-03-06 13:29:38 +00:00
StringHandlers.CToString(_v98Hdr.signature, shiftjis));
2020-02-29 18:03:35 +00:00
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME,
2024-05-01 04:05:22 +01:00
"v98hdr.comment = \"{0}\"",
2022-03-06 13:29:38 +00:00
StringHandlers.CToString(_v98Hdr.comment, shiftjis));
2020-02-29 18:03:35 +00:00
2025-08-17 06:11:22 +01:00
AaruLogging.Debug(MODULE_NAME, "v98hdr.padding = {0}", _v98Hdr.padding);
AaruLogging.Debug(MODULE_NAME, "v98hdr.mbsize = {0}", _v98Hdr.mbsize);
AaruLogging.Debug(MODULE_NAME, "v98hdr.sectorsize = {0}", _v98Hdr.sectorsize);
AaruLogging.Debug(MODULE_NAME, "v98hdr.sectors = {0}", _v98Hdr.sectors);
AaruLogging.Debug(MODULE_NAME, "v98hdr.surfaces = {0}", _v98Hdr.surfaces);
AaruLogging.Debug(MODULE_NAME, "v98hdr.cylinders = {0}", _v98Hdr.cylinders);
AaruLogging.Debug(MODULE_NAME, "v98hdr.totals = {0}", _v98Hdr.totals);
2022-03-06 13:29:38 +00:00
return true;
}
2023-10-03 23:34:59 +01:00
#endregion
}