12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- using System.Collections.Generic;
- using System.IO;
- using System.Linq;
- using System.Reflection;
- using Masuit.Tools.Mime;
- namespace Masuit.Tools.Files.FileDetector.Detectors;
- [FormatCategory(FormatCategory.Image)]
- internal class DirectDrawSurfaceFormatDetector : AbstractSignatureDetector
- {
- private static readonly SignatureInformation[] DdsSignatureInfo = {
- new() { Position = 0, Signature = new byte [] { 0x44, 0x44, 0x53, 0x20 } },
- };
- public override string Extension => "dds";
- protected override SignatureInformation[] SignatureInformations => DdsSignatureInfo;
- public override string MimeType => new MimeMapper().GetMimeFromExtension("." + Extension);
- public override List<FormatCategory> FormatCategories => GetType().GetCustomAttributes<FormatCategoryAttribute>().Select(a => a.Category).ToList();
- public override bool Detect(Stream stream)
- {
- if (base.Detect(stream))
- {
- byte[] buffer = new byte[4];
- stream.Read(buffer, 0, 4);
- int dwSize = (buffer[3] << 24) + (buffer[2] << 16) + (buffer[1] << 8) + buffer[0];
- if (dwSize != 0x7C)
- {
- return false;
- }
- stream.Read(buffer, 0, 4);
- int dwFlags = (buffer[3] << 24) + (buffer[2] << 16) + (buffer[1] << 8) + buffer[0];
- if ((dwFlags & 0x1) != 0 && (dwFlags & 0x2) != 0 && (dwFlags & 0x4) != 0 && (dwFlags & 0x1000) != 0)
- {
- return true;
- }
- }
- return false;
- }
- public override string ToString() => "DirectDraw Surface(DDS) Detector";
- }
|