From 8d04dc32a97c529e55dbf216513429b497063655 Mon Sep 17 00:00:00 2001 From: zeromus Date: Thu, 7 Sep 2017 22:39:06 -0500 Subject: [PATCH] discsystem: add a utility method for my own use, no interest to anybody else --- BizHawk.Emulation.DiscSystem/Disc.cs | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) diff --git a/BizHawk.Emulation.DiscSystem/Disc.cs b/BizHawk.Emulation.DiscSystem/Disc.cs index ea971e56e9..88b38540ae 100644 --- a/BizHawk.Emulation.DiscSystem/Disc.cs +++ b/BizHawk.Emulation.DiscSystem/Disc.cs @@ -74,12 +74,36 @@ namespace BizHawk.Emulation.DiscSystem } } + /// + /// Easily extracts a mode1 sector range (suitable for extracting ISO FS data files) + /// + public byte[] Easy_Extract_Mode1(int lba_start, int lba_count, int byteLength = -1) + { + int totsize = lba_count * 2048; + byte[] ret = new byte[totsize]; + var dsr = new DiscSectorReader(this); + dsr.Policy.DeterministicClearBuffer = false; + for (int i = 0; i < lba_count; i++) + { + dsr.ReadLBA_2048(lba_start + i, ret, i*2048); + } + if (byteLength != -1 && byteLength != totsize) + { + byte[] newret = new byte[byteLength]; + Array.Copy(ret, newret, byteLength); + return newret; + } + return ret; + } + /// /// The DiscMountPolicy used to mount the disc. Consider this read-only. /// NOT SURE WE NEED THIS /// //public DiscMountPolicy DiscMountPolicy; + + //---------------------------------------------------------------------------- ///