Tastudio - Branches - fix screenshot hover, and also set the screenshot hover size to a "1x" resolution for the given core

This commit is contained in:
adelikat 2015-07-25 21:31:06 -04:00
parent 91c12d06b6
commit a2edd3a018
3 changed files with 15 additions and 3 deletions

View File

@ -45,7 +45,7 @@ namespace BizHawk.Client.Common
bs.PutLump(nframebuffer, delegate(Stream s)
{
var vp = new BitmapBufferVideoProvider(b.OSDFrameBuffer);
QuickBmpFile.Save(vp, s, b.OSDFrameBuffer.Width, b.OSDFrameBuffer.Height); // todo: choose size more smarterly
QuickBmpFile.Save(vp, s, b.OSDFrameBuffer.Width, b.OSDFrameBuffer.Height);
});
bs.PutLump(nlaglog, delegate(BinaryWriter bw)
{

View File

@ -279,8 +279,11 @@ namespace BizHawk.Client.EmuHawk
private void ScreenShotPopUp(TasBranch branch, int index)
{
int x = this.Location.X - Tastudio.ScreenshotControl.Width;
int y = this.Location.Y + (BranchView.RowHeight * index);
Point locationOnForm = this.FindForm().PointToClient(
this.Parent.PointToScreen(this.Location));
int x = locationOnForm.X - Tastudio.ScreenshotControl.Width;
int y = locationOnForm.Y + (BranchView.RowHeight * index);
Tastudio.ScreenshotControl.Location = new Point(x, y);

View File

@ -82,6 +82,15 @@ namespace BizHawk.Client.EmuHawk
public TAStudio()
{
InitializeComponent();
if (Global.Emulator != null)
{
// Set the screenshot to "1x" resolution of the core
// TODO: cores like n64 and psx are going to still have sizes too big for the control
// Find a smart way to keep them small
ScreenshotControl.Size = new Size(Global.Emulator.VideoProvider().BufferWidth, Global.Emulator.VideoProvider().BufferHeight);
}
ScreenshotControl.Visible = false;
Controls.Add(ScreenshotControl);
ScreenshotControl.BringToFront();