From e43e89e5cc53b8d1bddfd1e486524608261394a3 Mon Sep 17 00:00:00 2001 From: nattthebear Date: Wed, 22 Jul 2015 18:02:38 -0400 Subject: [PATCH] tasproj branch thumbnail: change load to simply load whatever size is present in the zip file. --- BizHawk.Client.Common/QuickBmpFile.cs | 21 +++++++++++++++++++ .../movie/tasproj/TasBranch.cs | 4 ++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/BizHawk.Client.Common/QuickBmpFile.cs b/BizHawk.Client.Common/QuickBmpFile.cs index f3e48eb06d..4bab0dc427 100644 --- a/BizHawk.Client.Common/QuickBmpFile.cs +++ b/BizHawk.Client.Common/QuickBmpFile.cs @@ -189,6 +189,20 @@ namespace BizHawk.Client.Common } } + /// + /// if passed to QuickBMPFile.Load(), will size itself to match the incoming bmp + /// + public class LoadedBMP : IVideoProvider + { + public int[] VideoBuffer { get; set; } + public int[] GetVideoBuffer() { return VideoBuffer; } + public int VirtualWidth { get { return BufferWidth; } } + public int VirtualHeight { get { return BufferHeight; } } + public int BufferWidth { get; set; } + public int BufferHeight { get; set; } + public int BackgroundColor { get { return unchecked((int)0xff000000); } } + } + public unsafe static bool Load(IVideoProvider v, Stream s) { var bf = BITMAPFILEHEADER.FromStream(s); @@ -204,6 +218,13 @@ namespace BizHawk.Client.Common byte[] src = new byte[in_w * in_h * 4]; s.Read(src, 0, src.Length); + if (v is LoadedBMP) + { + var l = v as LoadedBMP; + l.BufferWidth = in_w; + l.BufferHeight = in_h; + l.VideoBuffer = new int[in_w * in_h]; + } int[] dst = v.GetVideoBuffer(); fixed (byte *srcp = src) diff --git a/BizHawk.Client.Common/movie/tasproj/TasBranch.cs b/BizHawk.Client.Common/movie/tasproj/TasBranch.cs index 6583006bb1..7fe935ceec 100644 --- a/BizHawk.Client.Common/movie/tasproj/TasBranch.cs +++ b/BizHawk.Client.Common/movie/tasproj/TasBranch.cs @@ -98,9 +98,9 @@ namespace BizHawk.Client.Common bl.GetLump(nframebuffer, true, delegate(Stream s, long length) { - b.OSDFrameBuffer = new BitmapBuffer(160, 120); // todo: choose size more smarterly - var vp = new BitmapBufferVideoProvider(b.OSDFrameBuffer); + var vp = new QuickBmpFile.LoadedBMP(); QuickBmpFile.Load(vp, s); + b.OSDFrameBuffer = new BitmapBuffer(vp.BufferWidth, vp.BufferHeight, vp.VideoBuffer); }); bl.GetLump(nlaglog, true, delegate(BinaryReader br)